diff options
author | 2006-08-31 07:36:41 +0000 | |
---|---|---|
committer | 2006-08-31 07:36:41 +0000 | |
commit | 8a0b9b25408192b1eeca8c7243d77b5bdbfe1a56 (patch) | |
tree | 1e2cb334fe8c9f1fb4d23520729c98a410ef3134 /net-libs | |
parent | Final cleanup and added latest version (diff) | |
download | gentoo-2-8a0b9b25408192b1eeca8c7243d77b5bdbfe1a56.tar.gz gentoo-2-8a0b9b25408192b1eeca8c7243d77b5bdbfe1a56.tar.bz2 gentoo-2-8a0b9b25408192b1eeca8c7243d77b5bdbfe1a56.zip |
Version bump, thanks to Daniel Webert and CJ Kucera, bug #144926 and #145384.
(Portage version: 2.1.1_rc1-r2)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libtorrent/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/libtorrent/files/digest-libtorrent-0.10.1 | 3 | ||||
-rw-r--r-- | net-libs/libtorrent/libtorrent-0.10.1.ebuild | 37 |
3 files changed, 47 insertions, 1 deletions
diff --git a/net-libs/libtorrent/ChangeLog b/net-libs/libtorrent/ChangeLog index 36dd157487c2..cccae7058e06 100644 --- a/net-libs/libtorrent/ChangeLog +++ b/net-libs/libtorrent/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/libtorrent # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.63 2006/07/21 00:47:01 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.64 2006/08/31 07:36:40 flameeyes Exp $ + +*libtorrent-0.10.1 (31 Aug 2006) + + 31 Aug 2006; Diego Pettenò <flameeyes@gentoo.org> + +libtorrent-0.10.1.ebuild: + Version bump, thanks to Daniel Webert and CJ Kucera, bug #144926 and #145384. 21 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> -libtorrent-0.8.3.ebuild: diff --git a/net-libs/libtorrent/files/digest-libtorrent-0.10.1 b/net-libs/libtorrent/files/digest-libtorrent-0.10.1 new file mode 100644 index 000000000000..484665a4c63a --- /dev/null +++ b/net-libs/libtorrent/files/digest-libtorrent-0.10.1 @@ -0,0 +1,3 @@ +MD5 a8aaf9d41a5bcf695ee91e4cfb2cd203 libtorrent-0.10.1.tar.gz 447888 +RMD160 1cc40a2543e075658012b00f9709550de0c0a8d0 libtorrent-0.10.1.tar.gz 447888 +SHA256 945185c2cc2d81c8c98f3ea22576bd86acb208dbb9d79333724c268c331e351d libtorrent-0.10.1.tar.gz 447888 diff --git a/net-libs/libtorrent/libtorrent-0.10.1.ebuild b/net-libs/libtorrent/libtorrent-0.10.1.ebuild new file mode 100644 index 000000000000..491b927e0910 --- /dev/null +++ b/net-libs/libtorrent/libtorrent-0.10.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.10.1.ebuild,v 1.1 2006/08/31 07:36:40 flameeyes Exp $ + +inherit eutils toolchain-funcs flag-o-matic libtool + +DESCRIPTION="LibTorrent is a BitTorrent library written in C++ for *nix." +HOMEPAGE="http://libtorrent.rakshasa.no/" +SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" + +IUSE="debug" + +RDEPEND=">=dev-libs/libsigc++-2" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.11" + +src_compile() { + [[ $(tc-arch) = "x86" ]] && filter-flags -fomit-frame-pointer + replace-flags -Os -O2 + + elibtoolize + econf \ + $(use_enable debug) \ + --disable-dependency-tracking \ + || die "econf failed" + + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog NEWS README TODO +} |