diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2007-12-12 05:35:11 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2007-12-12 05:35:11 +0000 |
commit | a6581e2512faa17a8d1cbf4e88c80d396ee8e4b3 (patch) | |
tree | 0556135f15b18254701778737defc641629b60f0 /net-p2p | |
parent | fixed string quoting issue in bug 201182 (diff) | |
download | gentoo-2-a6581e2512faa17a8d1cbf4e88c80d396ee8e4b3.tar.gz gentoo-2-a6581e2512faa17a8d1cbf4e88c80d396ee8e4b3.tar.bz2 gentoo-2-a6581e2512faa17a8d1cbf4e88c80d396ee8e4b3.zip |
version bump from upstream
(Portage version: 2.1.4_rc9)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/transmission/ChangeLog | 8 | ||||
-rw-r--r-- | net-p2p/transmission/files/digest-transmission-0.96 | 3 | ||||
-rw-r--r-- | net-p2p/transmission/transmission-0.96.ebuild | 30 |
3 files changed, 40 insertions, 1 deletions
diff --git a/net-p2p/transmission/ChangeLog b/net-p2p/transmission/ChangeLog index 16e283f1abe6..7fa839a5e6c4 100644 --- a/net-p2p/transmission/ChangeLog +++ b/net-p2p/transmission/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-p2p/transmission # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/ChangeLog,v 1.42 2007/12/07 04:39:48 compnerd Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/ChangeLog,v 1.43 2007/12/12 05:35:10 compnerd Exp $ + +*transmission-0.96 (12 Dec 2007) + + 12 Dec 2007; Saleem Abdulrasool <compnerd@gentoo.org> + +transmission-0.96.ebuild: + Version bump from upstream (bug #201857) 07 Dec 2007; Saleem Abdulrasool <compnerd@gentoo.org> -files/transmission-0.91-potfiles-fix.patch, -files/transmission.png, diff --git a/net-p2p/transmission/files/digest-transmission-0.96 b/net-p2p/transmission/files/digest-transmission-0.96 new file mode 100644 index 000000000000..287d6b1eed14 --- /dev/null +++ b/net-p2p/transmission/files/digest-transmission-0.96 @@ -0,0 +1,3 @@ +MD5 99da8d1c1c82e229e0458679f651da23 transmission-0.96.tar.bz2 2721923 +RMD160 726044622a3e8f7784e28e84debdea546d58036c transmission-0.96.tar.bz2 2721923 +SHA256 21ad7f6ee07ac2e8a4bb0c37f98504db437ce483cc598730d8ecf2a358fae275 transmission-0.96.tar.bz2 2721923 diff --git a/net-p2p/transmission/transmission-0.96.ebuild b/net-p2p/transmission/transmission-0.96.ebuild new file mode 100644 index 000000000000..0587d7b067fa --- /dev/null +++ b/net-p2p/transmission/transmission-0.96.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-0.96.ebuild,v 1.1 2007/12/12 05:35:10 compnerd Exp $ + +DESCRIPTION="Simple BitTorrent client" +HOMEPAGE="http://transmission.m0k.org/" +SRC_URI="http://download.m0k.org/transmission/files/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" +IUSE="gtk" + +RDEPEND=">=dev-libs/glib-2.6 + >=dev-libs/openssl-0.9.8 + gtk? ( >=x11-libs/gtk+-2.6 )" +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/pkgconfig-0.19 + gtk? ( >=dev-util/intltool-0.35 )" + +src_compile() { + econf $(use_with gtk) --without-wx || die "configure failed" + emake || die "build failed" +} + +src_install() { + make DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS NEWS +} |