diff options
author | Christoph Mende <angelos@gentoo.org> | 2008-02-06 14:16:09 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2008-02-06 14:16:09 +0000 |
commit | e9382caad6a32c9218c1c1783ea79f8f48d288ef (patch) | |
tree | 0e6b2fbfd0844ed39bd05def548f4ab08eeb54cd /net-p2p/btg | |
parent | x86 stable, remove old (diff) | |
download | gentoo-2-e9382caad6a32c9218c1c1783ea79f8f48d288ef.tar.gz gentoo-2-e9382caad6a32c9218c1c1783ea79f8f48d288ef.tar.bz2 gentoo-2-e9382caad6a32c9218c1c1783ea79f8f48d288ef.zip |
Stable on amd64, remove old
(Portage version: 2.1.4.1)
Diffstat (limited to 'net-p2p/btg')
-rw-r--r-- | net-p2p/btg/ChangeLog | 6 | ||||
-rw-r--r-- | net-p2p/btg/btg-0.9.6-r1.ebuild | 4 | ||||
-rw-r--r-- | net-p2p/btg/btg-0.9.6.ebuild | 89 |
3 files changed, 7 insertions, 92 deletions
diff --git a/net-p2p/btg/ChangeLog b/net-p2p/btg/ChangeLog index df5400dfb4ec..7bcb0997c1b9 100644 --- a/net-p2p/btg/ChangeLog +++ b/net-p2p/btg/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-p2p/btg # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/btg/ChangeLog,v 1.5 2008/01/06 21:58:15 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/btg/ChangeLog,v 1.6 2008/02/06 14:16:09 angelos Exp $ + + 06 Feb 2008; Christoph Mende <angelos@gentoo.org> -btg-0.9.6.ebuild, + btg-0.9.6-r1.ebuild: + Stable on amd64, remove old 06 Jan 2008; Raúl Porcel <armin76@gentoo.org> btg-0.9.6-r1.ebuild: Add ~x86 wrt #204491 diff --git a/net-p2p/btg/btg-0.9.6-r1.ebuild b/net-p2p/btg/btg-0.9.6-r1.ebuild index 661171037fed..a7e84d51ab95 100644 --- a/net-p2p/btg/btg-0.9.6-r1.ebuild +++ b/net-p2p/btg/btg-0.9.6-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/btg/btg-0.9.6-r1.ebuild,v 1.2 2008/01/06 21:58:15 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/btg/btg-0.9.6-r1.ebuild,v 1.3 2008/02/06 14:16:09 angelos Exp $ inherit eutils @@ -10,7 +10,7 @@ SRC_URI="mirror://berlios/${PN}/${P}-p1.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="debug doc event-callback gtk minimal ncurses session test upnp webinterface" RDEPEND="dev-libs/boost diff --git a/net-p2p/btg/btg-0.9.6.ebuild b/net-p2p/btg/btg-0.9.6.ebuild deleted file mode 100644 index c00afa47363f..000000000000 --- a/net-p2p/btg/btg-0.9.6.ebuild +++ /dev/null @@ -1,89 +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/btg/btg-0.9.6.ebuild,v 1.5 2007/11/13 16:36:26 angelos Exp $ - -inherit eutils - -DESCRIPTION="bittorrent client using rb_libtorrent" -HOMEPAGE="http://btg.berlios.de/" -SRC_URI="mirror://berlios/${PN}/${P}-p1.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64" -IUSE="debug doc event-callback gtk minimal ncurses session test upnp webinterface" - -RDEPEND="dev-libs/boost - dev-libs/expat - dev-libs/libgcrypt - dev-libs/libgpg-error - dev-libs/libtasn1 - dev-util/dialog - net-libs/gnutls - net-libs/rb_libtorrent - gtk? ( >=dev-cpp/gtkmm-2.4 - x11-libs/pango ) - webinterface? ( =dev-lang/php-5* )" -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.21 - doc? ( app-doc/doxygen )" - -S="${WORKDIR}/${PN}-${PV/_rc*}" - -pkg_setup() { - if ! built_with_use --missing true "dev-libs/boost" threads && \ - ! built_with_use --missing true "dev-libs/boost" threadsonly ; then - echo - elog "Compile dev-libs/boost with USE=threads or USE=threadsonly" - elog "if you want threading support for btg" - echo - fi -} - -src_compile() { - local myconf="" - - if built_with_use --missing true "dev-libs/boost" threads || \ - built_with_use --missing true "dev-libs/boost" threadsonly ; then - myconf="--with-boost-iostreams=boost_iostreams-mt \ - --with-boost-filesystem=boost_filesystem-mt \ - --with-boost-thread=boost_thread-mt \ - --with-boost-date-time=boost_date_time-mt \ - --with-boost-program_options=boost_program_options-mt" - fi - - econf \ - $(use_enable debug) \ - $(use_enable gtk gui) \ - $(use_enable ncurses cli) \ - $(use_enable upnp) \ - $(use_enable event-callback) \ - $(use_enable session session-saving) \ - $(use_enable test unittest) \ - $(use_enable webinterface www) \ - $(use_enable !minimal command-list) \ - ${myconf} \ - --disable-dependency-tracking \ - || die - - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc AUTHORS ChangeLog README TODO - - newinitd "${FILESDIR}/btgd-init" ${PN} - newconfd "${FILESDIR}/btgd-confd" ${PN} -} - -pkg_postinst() { - enewgroup p2p - enewuser p2p -1 -1 /home/p2p p2p - - echo - elog "BTG needs a daemon.ini and client.ini, to create them run btg-config" - elog "and put them in the user running btg (/home/p2p by default)" - echo -} |