diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2009-03-07 14:54:03 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2009-03-07 14:54:03 +0000 |
commit | 708ec547b9bdec98d77c3c2701c41f990ed83738 (patch) | |
tree | 8817e515447a6118de07d26fa79f65bfbd0294d3 /net-p2p | |
parent | Remove old ebuild. (diff) | |
download | gentoo-2-708ec547b9bdec98d77c3c2701c41f990ed83738.tar.gz gentoo-2-708ec547b9bdec98d77c3c2701c41f990ed83738.tar.bz2 gentoo-2-708ec547b9bdec98d77c3c2701c41f990ed83738.zip |
Remove old version.
(Portage version: 2.2_rc20/cvs/Linux 2.6.29-rc6 i686)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/btg/ChangeLog | 5 | ||||
-rw-r--r-- | net-p2p/btg/btg-0.9.6-r1.ebuild | 91 |
2 files changed, 4 insertions, 92 deletions
diff --git a/net-p2p/btg/ChangeLog b/net-p2p/btg/ChangeLog index b8936448a320..75ca56c8f1b6 100644 --- a/net-p2p/btg/ChangeLog +++ b/net-p2p/btg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-p2p/btg # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/btg/ChangeLog,v 1.12 2009/02/16 00:26:18 loki_val Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/btg/ChangeLog,v 1.13 2009/03/07 14:54:03 betelgeuse Exp $ + + 07 Mar 2009; Petteri Räty <betelgeuse@gentoo.org> -btg-0.9.6-r1.ebuild: + Remove old version. 16 Feb 2009; Peter Alfredsen <loki_val@gentoo.org> +files/btg-0.9.7-gcc43.patch, btg-0.9.7.ebuild: diff --git a/net-p2p/btg/btg-0.9.6-r1.ebuild b/net-p2p/btg/btg-0.9.6-r1.ebuild deleted file mode 100644 index 43d9630af474..000000000000 --- a/net-p2p/btg/btg-0.9.6-r1.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# 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.4 2008/06/20 10:09:57 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 ~x86" -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-0.12* - 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} - - use gtk && make_desktop_entry btgui "BTG GUI Client" btg "Network;P2P" -} - -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 home of the user running btg (/home/p2p/.btg by default)" - echo -} |