diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-06-02 10:59:28 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-06-02 10:59:28 +0000 |
commit | 11025bc12e79656d0d55e4b68bef9d94e1ee4023 (patch) | |
tree | fb6946f353e429613b1aa85f245469fad46e2f57 /net-p2p/btpd | |
parent | Version bump. (diff) | |
download | gentoo-2-11025bc12e79656d0d55e4b68bef9d94e1ee4023.tar.gz gentoo-2-11025bc12e79656d0d55e4b68bef9d94e1ee4023.tar.bz2 gentoo-2-11025bc12e79656d0d55e4b68bef9d94e1ee4023.zip |
Version bump, make shadow just a runtime dependency (so that it shows that it needs porting). Closes bug #195132.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-p2p/btpd')
-rw-r--r-- | net-p2p/btpd/ChangeLog | 10 | ||||
-rw-r--r-- | net-p2p/btpd/btpd-0.15.ebuild | 30 |
2 files changed, 38 insertions, 2 deletions
diff --git a/net-p2p/btpd/ChangeLog b/net-p2p/btpd/ChangeLog index 65c5a5049a26..6b6ee3a8bc33 100644 --- a/net-p2p/btpd/ChangeLog +++ b/net-p2p/btpd/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-p2p/btpd -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/btpd/ChangeLog,v 1.7 2007/12/25 14:30:46 phreak Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/btpd/ChangeLog,v 1.8 2009/06/02 10:59:28 flameeyes Exp $ + +*btpd-0.15 (02 Jun 2009) + + 02 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org> +btpd-0.15.ebuild: + Version bump, make shadow just a runtime dependency (so that it shows that + it needs porting). Closes bug #195132. 25 Dec 2007; Christian Heim <phreak@gentoo.org> metadata.xml: Removing metalgod from metadata.xml as per #99350. diff --git a/net-p2p/btpd/btpd-0.15.ebuild b/net-p2p/btpd/btpd-0.15.ebuild new file mode 100644 index 000000000000..3e18d84f0923 --- /dev/null +++ b/net-p2p/btpd/btpd-0.15.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/btpd/btpd-0.15.ebuild,v 1.1 2009/06/02 10:59:28 flameeyes Exp $ + +DESCRIPTION="BitTorrent client consisting of a daemon and client" +HOMEPAGE="http://www.murmeldjur.se/btpd/" +SRC_URI="http://www.murmeldjur.se/btpd/${P}.tar.gz http://people.su.se/~rnyberg/btpd/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="net-misc/curl + dev-libs/openssl" +DEPEND="${RDEPEND}" + +# for the init.d script; this should probably be fixed not to require +# this so that it can work on G/FBSD too. +RDEPEND="${RDEPEND} + sys-apps/shadow" + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + newinitd "${FILESDIR}/initd_btpd" btpd || die + newconfd "${FILESDIR}/confd_btpd" btpd || die + + dodoc CHANGES COPYRIGHT README || die +} |