Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/btpd: ChangeLog btpd-0.15.ebuild
Date: Tue, 02 Jun 2009 10:59:30
Message-Id: E1MBRiK-0003Sl-IF@stork.gentoo.org
1 flameeyes 09/06/02 10:59:28
2
3 Modified: ChangeLog
4 Added: btpd-0.15.ebuild
5 Log:
6 Version bump, make shadow just a runtime dependency (so that it shows that it needs porting). Closes bug #195132.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 net-p2p/btpd/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/btpd/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/btpd/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/btpd/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-p2p/btpd/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 25 Dec 2007 14:30:46 -0000 1.7
23 +++ ChangeLog 2 Jun 2009 10:59:28 -0000 1.8
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-p2p/btpd
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/btpd/ChangeLog,v 1.7 2007/12/25 14:30:46 phreak Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/btpd/ChangeLog,v 1.8 2009/06/02 10:59:28 flameeyes Exp $
30 +
31 +*btpd-0.15 (02 Jun 2009)
32 +
33 + 02 Jun 2009; Diego E. Pettenò <flameeyes@g.o> +btpd-0.15.ebuild:
34 + Version bump, make shadow just a runtime dependency (so that it shows that
35 + it needs porting). Closes bug #195132.
36
37 25 Dec 2007; Christian Heim <phreak@g.o> metadata.xml:
38 Removing metalgod from metadata.xml as per #99350.
39
40
41
42 1.1 net-p2p/btpd/btpd-0.15.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/btpd/btpd-0.15.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/btpd/btpd-0.15.ebuild?rev=1.1&content-type=text/plain
46
47 Index: btpd-0.15.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-p2p/btpd/btpd-0.15.ebuild,v 1.1 2009/06/02 10:59:28 flameeyes Exp $
52
53 DESCRIPTION="BitTorrent client consisting of a daemon and client"
54 HOMEPAGE="http://www.murmeldjur.se/btpd/"
55 SRC_URI="http://www.murmeldjur.se/btpd/${P}.tar.gz http://people.su.se/~rnyberg/btpd/${P}.tar.gz"
56
57 LICENSE="BSD"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60 IUSE=""
61
62 RDEPEND="net-misc/curl
63 dev-libs/openssl"
64 DEPEND="${RDEPEND}"
65
66 # for the init.d script; this should probably be fixed not to require
67 # this so that it can work on G/FBSD too.
68 RDEPEND="${RDEPEND}
69 sys-apps/shadow"
70
71 src_install() {
72 emake DESTDIR="${D}" install || die "emake install failed"
73
74 newinitd "${FILESDIR}/initd_btpd" btpd || die
75 newconfd "${FILESDIR}/confd_btpd" btpd || die
76
77 dodoc CHANGES COPYRIGHT README || die
78 }