diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-02-25 16:24:08 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-02-25 16:24:08 +0000 |
commit | c059701f053da881949ec81ad873c9818778240e (patch) | |
tree | db27b5c2e2db8869a8b667dccca8475e02c8dcd3 /net-p2p/rtorrent | |
parent | Fixed typo, thank Anton Bolshakov for report in bug #142778. (diff) | |
download | historical-c059701f053da881949ec81ad873c9818778240e.tar.gz historical-c059701f053da881949ec81ad873c9818778240e.tar.bz2 historical-c059701f053da881949ec81ad873c9818778240e.zip |
old
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'net-p2p/rtorrent')
-rw-r--r-- | net-p2p/rtorrent/Manifest | 2 | ||||
-rw-r--r-- | net-p2p/rtorrent/rtorrent-0.7.8.ebuild | 49 |
2 files changed, 0 insertions, 51 deletions
diff --git a/net-p2p/rtorrent/Manifest b/net-p2p/rtorrent/Manifest index 1aec4c46f732..a58621a7d8a8 100644 --- a/net-p2p/rtorrent/Manifest +++ b/net-p2p/rtorrent/Manifest @@ -1,6 +1,4 @@ -DIST rtorrent-0.7.8.tar.gz 489952 RMD160 77f9b1627a65804d54f204919c7b2d58c95d751b SHA1 9d3e2bba17a2049992001f1d1457e1f8f6c5973b SHA256 93c0291ac06cafd2466e7c0c1ce918544e49b15effc1d55b1e8a903e3d0f1d8c DIST rtorrent-0.7.9.tar.gz 489174 RMD160 8cfee138c0142ad22830b3d518e198f163063a84 SHA1 0b53bd3b2c15f93352607ab3685916fe27033450 SHA256 f06f72b1fec94177147b1db0aab15be4f62d1b0354811a67ae74e0cd1e50a119 -EBUILD rtorrent-0.7.8.ebuild 1352 RMD160 d704efe894bb41462909142168592578e20bda9b SHA1 4bfcd0bcfdc2147173f91e2300c60137f3bf888a SHA256 cd6f238487b9db8e51c9bd567712f7e65851409b8947a153e418c4ace4dcc1b0 EBUILD rtorrent-0.7.9.ebuild 1321 RMD160 05dae6bd7b6c85a3a10f227db1461dd1fce65e46 SHA1 eeb3d6cca988d634a1db59d80271707c6630721b SHA256 1ea31a9d4ebb2a54ee6a287120d40415216d0703abf047013e17cf62f7bbdedc MISC ChangeLog 14549 RMD160 7c298299f3bfbad026095b6eaaa9f2e64261623f SHA1 7bd2a90e27f590aab6107570bd768930d2b98117 SHA256 d91b17ac6cd036fecd58f925e388e879200958df079ef2189a9e414921b0467b MISC metadata.xml 424 RMD160 876cded3dbbceea6740eba9b76df952e4ccba094 SHA1 0840c9f44d278be83028950b8a0437ea8b81bcde SHA256 e5f66fec21c1690d34b2a562a6c7edced69477abc3996b9f35e611e31667ec17 diff --git a/net-p2p/rtorrent/rtorrent-0.7.8.ebuild b/net-p2p/rtorrent/rtorrent-0.7.8.ebuild deleted file mode 100644 index b502c00e0db5..000000000000 --- a/net-p2p/rtorrent/rtorrent-0.7.8.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v 1.6 2007/11/13 16:32:17 drac 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 ppc64 ~sparc x86 ~x86-fbsd" -IUSE="debug" - -RDEPEND=">=net-libs/libtorrent-0.11.${PV##*.} - >=dev-libs/libsigc++-2.0 - >=net-misc/curl-7.15 - sys-libs/ncurses" -DEPEND="${RDEPEND}" - -src_compile() { - replace-flags -Os -O2 - append-flags -fno-strict-aliasing - - if [[ $(tc-arch) = "x86" ]]; then - filter-flags -fomit-frame-pointer -fforce-addr - fi - - econf \ - $(use_enable debug) \ - --disable-xmlrpc-c \ - --disable-dependency-tracking \ - || die "econf failed" - # --disable-xmlrpc-c: I want to keep it disabled while >=dev-libs/xmlrpc-c-1.07 is masked - - emake || die "emake failed" -} - -pkg_postinst() { - elog "rtorrent now supports a configuration file." - elog "A sample configuration file for rtorrent is can be found" - elog "in ${ROOT}usr/share/doc/${PF}/rtorrent.rc.gz." -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS README TODO doc/rtorrent.rc -} |