diff options
Diffstat (limited to 'net-p2p/rtorrent')
-rw-r--r-- | net-p2p/rtorrent/ChangeLog | 7 | ||||
-rw-r--r-- | net-p2p/rtorrent/Manifest | 12 | ||||
-rw-r--r-- | net-p2p/rtorrent/files/digest-rtorrent-0.4.0 | 1 | ||||
-rw-r--r-- | net-p2p/rtorrent/rtorrent-0.4.0.ebuild | 40 |
4 files changed, 49 insertions, 11 deletions
diff --git a/net-p2p/rtorrent/ChangeLog b/net-p2p/rtorrent/ChangeLog index a4ae3f37a81b..08163335582b 100644 --- a/net-p2p/rtorrent/ChangeLog +++ b/net-p2p/rtorrent/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/rtorrent # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.22 2005/11/19 21:14:19 dang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.23 2005/11/21 21:32:41 flameeyes Exp $ + +*rtorrent-0.4.0 (21 Nov 2005) + + 21 Nov 2005; Diego Pettenò <flameeyes@gentoo.org> +rtorrent-0.4.0.ebuild: + Bump following upstream. 19 Nov 2005; <dang@gentoo.org> rtorrent-0.3.6.ebuild: Marked stable on amd64 diff --git a/net-p2p/rtorrent/Manifest b/net-p2p/rtorrent/Manifest index a3054a1437a6..3dd8b2769788 100644 --- a/net-p2p/rtorrent/Manifest +++ b/net-p2p/rtorrent/Manifest @@ -1,16 +1,8 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 8e27483ab7d935b9de6810006d8a9b86 ChangeLog 3771 MD5 224ce847e3dadbc09533fa0de3d53564 files/digest-rtorrent-0.3.0 66 MD5 bbb25789b80690a06bae3aeb2f18b16f files/digest-rtorrent-0.3.6 66 +MD5 68495c48ac3f70023ce4894e94c112ff files/digest-rtorrent-0.4.0 66 MD5 dc4336d6e768b550ef6da8f6c965d234 metadata.xml 374 MD5 20a482073194c199f5f03c6b7cdc6323 rtorrent-0.3.0.ebuild 1101 MD5 466bd8550bfde557ff42dc8b3c7974e5 rtorrent-0.3.6.ebuild 1104 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2 (GNU/Linux) - -iD8DBQFDf5WoomPajV0RnrERAoUIAJ0ROgZ6hgrCvkC/s4OKiPVtFZ0lQwCfdtQw -br6LgNXy2yiKyLQBPhrXvCY= -=1Kd9 ------END PGP SIGNATURE----- +MD5 40deea563f3b18413b2bbaae87ce9551 rtorrent-0.4.0.ebuild 1105 diff --git a/net-p2p/rtorrent/files/digest-rtorrent-0.4.0 b/net-p2p/rtorrent/files/digest-rtorrent-0.4.0 new file mode 100644 index 000000000000..ea4db923d0fe --- /dev/null +++ b/net-p2p/rtorrent/files/digest-rtorrent-0.4.0 @@ -0,0 +1 @@ +MD5 15ae323de79e18a224665dee45ee3ba2 rtorrent-0.4.0.tar.gz 223962 diff --git a/net-p2p/rtorrent/rtorrent-0.4.0.ebuild b/net-p2p/rtorrent/rtorrent-0.4.0.ebuild new file mode 100644 index 000000000000..e1ab2ef966a6 --- /dev/null +++ b/net-p2p/rtorrent/rtorrent-0.4.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.4.0.ebuild,v 1.1 2005/11/21 21:32:41 flameeyes Exp $ + +inherit eutils toolchain-funcs flag-o-matic + +DESCRIPTION="BitTorrent Client using libtorrent" +HOMEPAGE="http://libtorrent.rakshasa.no/" +SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="debug" + +DEPEND=">=net-libs/libtorrent-0.8.0 + >=dev-libs/libsigc++-2.0 + >=net-misc/curl-7.12 + sys-libs/ncurses" + +src_compile() { + [[ $(tc-arch) = "x86" ]] && filter-flags -fomit-frame-pointer + econf \ + $(use_enable debug) \ + --disable-dependency-tracking \ + || die "econf failed" + + emake || die "emake failed" +} + +pkg_postinst() { + einfo "rtorrent now supports a configuration file." + einfo "A sample configuration file for rtorrent is can be found" + einfo "in ${ROOT}usr/share/doc/${PF}/rtorrent.rc.gz." +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS README TODO doc/rtorrent.rc +} |