summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2007-06-27 17:58:44 +0000
committerRaúl Porcel <armin76@gentoo.org>2007-06-27 17:58:44 +0000
commit852d3020badea2e0b74db266378c811e1102f332 (patch)
tree46cca052fd61397cd27c025ec331a55b14f99989 /net-libs/rb_libtorrent
parentStable on amd64 (diff)
downloadgentoo-2-852d3020badea2e0b74db266378c811e1102f332.tar.gz
gentoo-2-852d3020badea2e0b74db266378c811e1102f332.tar.bz2
gentoo-2-852d3020badea2e0b74db266378c811e1102f332.zip
old
(Portage version: 2.1.3_rc5)
Diffstat (limited to 'net-libs/rb_libtorrent')
-rw-r--r--net-libs/rb_libtorrent/ChangeLog5
-rw-r--r--net-libs/rb_libtorrent/files/digest-rb_libtorrent-0.113
-rw-r--r--net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild50
3 files changed, 4 insertions, 54 deletions
diff --git a/net-libs/rb_libtorrent/ChangeLog b/net-libs/rb_libtorrent/ChangeLog
index 354d481cbb96..4b877c12410e 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-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.16 2007/06/27 17:55:19 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.17 2007/06/27 17:58:44 armin76 Exp $
+
+ 27 Jun 2007; Raúl Porcel <armin76@gentoo.org> -rb_libtorrent-0.11.ebuild:
+ old
27 Jun 2007; Christoph Mende <angelos@gentoo.org>
rb_libtorrent-0.12.ebuild:
diff --git a/net-libs/rb_libtorrent/files/digest-rb_libtorrent-0.11 b/net-libs/rb_libtorrent/files/digest-rb_libtorrent-0.11
deleted file mode 100644
index 95d3f3d7464c..000000000000
--- a/net-libs/rb_libtorrent/files/digest-rb_libtorrent-0.11
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 56e9071b95a6e3f9377121f2fead3499 libtorrent-0.11.tar.gz 1130537
-RMD160 24e871a048fd085e24c60f1eaece6cd432d4d64b libtorrent-0.11.tar.gz 1130537
-SHA256 f350e0af6b42c2cdb1f19008b00fe5f0b70236817f532a94bcb1e3ef6ebba0d7 libtorrent-0.11.tar.gz 1130537
diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.11.ebuild
deleted file mode 100644
index 6fa704d0b25a..000000000000
--- a/net-libs/rb_libtorrent/rb_libtorrent-0.11.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.11.ebuild,v 1.9 2007/06/12 19:57:15 armin76 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
-}