diff options
author | 2008-02-10 15:51:29 +0000 | |
---|---|---|
committer | 2008-02-10 15:51:29 +0000 | |
commit | 1e82b8235acc15c7ea681649af4a72bf7ca30aae (patch) | |
tree | 9b21a16b559359351f4dd6ce45003dfa2e41e7de /net-libs | |
parent | keyword ~x86-fbsd (diff) | |
download | gentoo-2-1e82b8235acc15c7ea681649af4a72bf7ca30aae.tar.gz gentoo-2-1e82b8235acc15c7ea681649af4a72bf7ca30aae.tar.bz2 gentoo-2-1e82b8235acc15c7ea681649af4a72bf7ca30aae.zip |
old
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/rb_libtorrent/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild | 50 |
2 files changed, 4 insertions, 51 deletions
diff --git a/net-libs/rb_libtorrent/ChangeLog b/net-libs/rb_libtorrent/ChangeLog index 941cbc12d756..ce07b0bdb3b4 100644 --- a/net-libs/rb_libtorrent/ChangeLog +++ b/net-libs/rb_libtorrent/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/rb_libtorrent # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.41 2008/02/05 15:47:53 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.42 2008/02/10 15:51:29 armin76 Exp $ + + 10 Feb 2008; Raúl Porcel <armin76@gentoo.org> -rb_libtorrent-0.12.ebuild: + old 05 Feb 2008; Samuli Suominen <drac@gentoo.org> rb_libtorrent-0.12.1.ebuild: diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild deleted file mode 100644 index b39fb7dbc9d1..000000000000 --- a/net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.12.ebuild,v 1.5 2007/06/27 17:55:19 angelos Exp $ - -WANT_AUTOCONF="latest" -WANT_AUTOMAKE="latest" -inherit eutils autotools - -MY_P="${P/rb_/}" -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="BitTorrent library written in C++ for *nix." -HOMEPAGE="http://www.rasterbar.com/products/libtorrent/" -SRC_URI="mirror://sourceforge/libtorrent/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86 ~x86-fbsd" -IUSE="debug" - -DEPEND="dev-libs/boost - !net-libs/libtorrent" -RDEPEND="${DEPEND}" - -pkg_setup() { - # We need boost built with threads - if ! has_version ">=dev-libs/boost-1.34_pre20061214" && \ - ! built_with_use "dev-libs/boost" threads; then - eerror "${PN} needs dev-libs/boost built with threads USE flag" - die "dev-libs/boost is built without threads USE flag" - fi -} - -src_compile() { - BOOST_LIBS="--with-boost-date-time=boost_date_time-mt \ - --with-boost-filesystem=boost_filesystem-mt \ - --with-boost-thread=boost_thread-mt \ - --with-boost-regex=boost_regex-mt \ - --with-boost-program_options=boost_program_options-mt" - - econf $(use_enable debug) \ - ${BOOST_LIBS} \ - LDFLAGS="${LDFLAGS} -pthread" || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc ChangeLog AUTHORS NEWS README -} |