diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2008-07-08 03:53:13 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2008-07-08 03:53:13 +0000 |
commit | 4043c6336b81485719699a2d188281d15410ed28 (patch) | |
tree | 9cf35da91083ede8128d95684a8aeb960d56bb50 /net-p2p/transmission | |
parent | Keyword ~amd64. (diff) | |
download | gentoo-2-4043c6336b81485719699a2d188281d15410ed28.tar.gz gentoo-2-4043c6336b81485719699a2d188281d15410ed28.tar.bz2 gentoo-2-4043c6336b81485719699a2d188281d15410ed28.zip |
version bump from upstream
(Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc4-git4 i686)
Diffstat (limited to 'net-p2p/transmission')
-rw-r--r-- | net-p2p/transmission/ChangeLog | 8 | ||||
-rw-r--r-- | net-p2p/transmission/transmission-1.22.ebuild | 35 |
2 files changed, 42 insertions, 1 deletions
diff --git a/net-p2p/transmission/ChangeLog b/net-p2p/transmission/ChangeLog index 02bfd251382e..151a95a58fa1 100644 --- a/net-p2p/transmission/ChangeLog +++ b/net-p2p/transmission/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-p2p/transmission # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/ChangeLog,v 1.62 2008/05/13 02:54:27 compnerd Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/ChangeLog,v 1.63 2008/07/08 03:53:13 compnerd Exp $ + +*transmission-1.22 (08 Jul 2008) + + 08 Jul 2008; Saleem Abdulrasool <compnerd@gentoo.org> + +transmission-1.22.ebuild: + Version bump from upstream *transmission-1.20 (13 May 2008) diff --git a/net-p2p/transmission/transmission-1.22.ebuild b/net-p2p/transmission/transmission-1.22.ebuild new file mode 100644 index 000000000000..f3bc005ed111 --- /dev/null +++ b/net-p2p/transmission/transmission-1.22.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-1.22.ebuild,v 1.1 2008/07/08 03:53:13 compnerd Exp $ + +inherit autotools eutils + +DESCRIPTION="Simple BitTorrent client" +HOMEPAGE="http://www.transmissionbt.com/" +SRC_URI="http://download.transmissionbt.com/transmission/files/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" +IUSE="gtk libnotify" + +RDEPEND=">=dev-libs/glib-2.16 + >=dev-libs/openssl-0.9.8 + gtk? ( >=x11-libs/gtk+-2.6 ) + libnotify? ( >=x11-libs/libnotify-0.4.4 )" +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/pkgconfig-0.19 + gtk? ( >=dev-util/intltool-0.35 )" + +src_compile() { + econf $(use_with gtk) $(use_enable libnotify) --with-wx-config=no || die "configure failed" + emake || die "build failed" +} + +src_install() { + make DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS NEWS + + doinitd "${FILESDIR}/transmission-daemon" +} |