diff options
-rw-r--r-- | dev-python/python-libtorrent/ChangeLog | 4 | ||||
-rw-r--r-- | dev-python/python-libtorrent/Manifest | 16 | ||||
-rw-r--r-- | dev-python/python-libtorrent/python-libtorrent-0.4.0.ebuild | 8 |
3 files changed, 20 insertions, 8 deletions
diff --git a/dev-python/python-libtorrent/ChangeLog b/dev-python/python-libtorrent/ChangeLog index c8217f126..465c5b128 100644 --- a/dev-python/python-libtorrent/ChangeLog +++ b/dev-python/python-libtorrent/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 04 Dec 2006; Raul Porcel (armin76) <armin76@gmail.com> + python-libtorrent-0.4.0.ebuild: + Need boost with threads USE-flag + 28 Nov 2006; Raul Porcel (armin76) <armin76@gmail.com> -python-libtorrent-0.3.0.ebuild, +python-libtorrent-0.4.0.ebuild: version bump diff --git a/dev-python/python-libtorrent/Manifest b/dev-python/python-libtorrent/Manifest index ac87974dd..111968d1f 100644 --- a/dev-python/python-libtorrent/Manifest +++ b/dev-python/python-libtorrent/Manifest @@ -1,12 +1,12 @@ DIST python-libtorrent_0.4.0.tar.gz 344507 RMD160 ebbf5dbba7261575ff6bd1ea05eb98787b03ee81 SHA1 61d89637b09745e8dd1a6fdfceaf3983c2ded8ea SHA256 6df6a913b4d206b133bd0a80880c3f1830ecfcfc0b5bb6984b55ab2a61e8cc81 -EBUILD python-libtorrent-0.4.0.ebuild 442 RMD160 82743052661d07c6b3653b0697131908309b77e5 SHA1 3248370c02f1ac5903d9528f0ed6fbd3a4e9f135 SHA256 36ace80295e56385b9f4f54526e10c21b7d15274608003f29d1966194c2929ee -MD5 716dde6d4844b6cb0bd9d2c358bd6954 python-libtorrent-0.4.0.ebuild 442 -RMD160 82743052661d07c6b3653b0697131908309b77e5 python-libtorrent-0.4.0.ebuild 442 -SHA256 36ace80295e56385b9f4f54526e10c21b7d15274608003f29d1966194c2929ee python-libtorrent-0.4.0.ebuild 442 -MISC ChangeLog 637 RMD160 6502d29717fc1c525148e7a5124185a5ea81400a SHA1 3fe9b1505308169482f45e0d3663ec52765eb67e SHA256 0cf7f5e8a163e49e1ea8baf6299c2d2052e79c08e236e13b53f141eda76d5ec8 -MD5 4640aaa13d316b358b0e6423010e582d ChangeLog 637 -RMD160 6502d29717fc1c525148e7a5124185a5ea81400a ChangeLog 637 -SHA256 0cf7f5e8a163e49e1ea8baf6299c2d2052e79c08e236e13b53f141eda76d5ec8 ChangeLog 637 +EBUILD python-libtorrent-0.4.0.ebuild 631 RMD160 46ae607efe6b8e18ef57947762e5a6ce4ba3c971 SHA1 3c667b948588835701fb71fd9b429a1f3a9f25e7 SHA256 79d5aae622bf81cf7f8d73606adfd8715b54951bec0d2ac1881aef71c2b7bd38 +MD5 3b69529f7fc98bc8ec6cb6cd9536022d python-libtorrent-0.4.0.ebuild 631 +RMD160 46ae607efe6b8e18ef57947762e5a6ce4ba3c971 python-libtorrent-0.4.0.ebuild 631 +SHA256 79d5aae622bf81cf7f8d73606adfd8715b54951bec0d2ac1881aef71c2b7bd38 python-libtorrent-0.4.0.ebuild 631 +MISC ChangeLog 764 RMD160 cc199882a34f6719e55ac6be7378dd510e02461c SHA1 02e2d1432b134acc275b5e1e599195d69c5b34fc SHA256 129a137c9054352ad6051561b1531982d465458adef9f222fc40d309957feb3e +MD5 e65899e743daf4d6459c110a486a8e61 ChangeLog 764 +RMD160 cc199882a34f6719e55ac6be7378dd510e02461c ChangeLog 764 +SHA256 129a137c9054352ad6051561b1531982d465458adef9f222fc40d309957feb3e ChangeLog 764 MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 MD5 1e678929a9fec6632e227bdf2262e9a1 metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 metadata.xml 170 diff --git a/dev-python/python-libtorrent/python-libtorrent-0.4.0.ebuild b/dev-python/python-libtorrent/python-libtorrent-0.4.0.ebuild index d4af2730a..546354f9d 100644 --- a/dev-python/python-libtorrent/python-libtorrent-0.4.0.ebuild +++ b/dev-python/python-libtorrent/python-libtorrent-0.4.0.ebuild @@ -17,3 +17,11 @@ S="${WORKDIR}/${PN}" DEPEND=">=dev-lang/python-2.3 dev-libs/boost" RDEPEND="${DEPEND}" + +pkg_setup() { + if ! built_with_use dev-libs/boost threads; then + eerror "dev-libs/boost has to be built with threads USE-flag." + die "Missing threads USE-flag for dev-libs/boost" + fi +} + |