Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/dbhub: dbhub-0.451.ebuild ChangeLog
Date: Tue, 29 Jun 2010 19:53:58
Message-Id: 20100629195352.7167E2C621@corvid.gentoo.org
1 ssuominen 10/06/29 19:53:52
2
3 Modified: dbhub-0.451.ebuild ChangeLog
4 Log:
5 Fix building with -Wl,--as-needed wrt #276928 by Diego E. Pettenò.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.3 net-p2p/dbhub/dbhub-0.451.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/dbhub/dbhub-0.451.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/dbhub/dbhub-0.451.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/dbhub/dbhub-0.451.ebuild?r1=1.2&r2=1.3
14
15 Index: dbhub-0.451.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-p2p/dbhub/dbhub-0.451.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- dbhub-0.451.ebuild 30 Jun 2008 12:52:45 -0000 1.2
22 +++ dbhub-0.451.ebuild 29 Jun 2010 19:53:52 -0000 1.3
23 @@ -1,8 +1,9 @@
24 -# Copyright 1999-2008 Gentoo Foundation
25 +# Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/dbhub/dbhub-0.451.ebuild,v 1.2 2008/06/30 12:52:45 corsair Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/dbhub/dbhub-0.451.ebuild,v 1.3 2010/06/29 19:53:52 ssuominen Exp $
29
30 -inherit eutils
31 +EAPI=2
32 +inherit autotools eutils
33
34 DESCRIPTION="Hub software for Direct Connect, fork of opendchub"
35 HOMEPAGE="http://www.dbhub.org"
36 @@ -14,25 +15,21 @@
37 IUSE="debug perl nls switch_user"
38
39 DEPEND="perl? ( dev-lang/perl )
40 - switch_user? ( sys-libs/libcap )"
41 -
42 -src_unpack() {
43 - unpack ${A}
44 - cd "${S}"
45 + switch_user? ( sys-libs/libcap )"
46
47 +src_prepare() {
48 epatch "${FILESDIR}"/${PN}-gentoo.patch
49 + eautoreconf
50 }
51
52 -src_compile() {
53 - econf \
54 +src_configure() {
55 + econf \
56 $(use_enable nls) \
57 $(use_enable perl) \
58 $(use_enable switch_user) \
59 - $(use_enable debug) \
60 - || die "econf failed"
61 - emake || die "emake failed"
62 + $(use_enable debug)
63 }
64
65 src_install() {
66 - emake DESTDIR="${D}" install || die "emake install failed"
67 + emake DESTDIR="${D}" install || die
68 }
69
70
71
72 1.29 net-p2p/dbhub/ChangeLog
73
74 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/dbhub/ChangeLog?rev=1.29&view=markup
75 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/dbhub/ChangeLog?rev=1.29&content-type=text/plain
76 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/dbhub/ChangeLog?r1=1.28&r2=1.29
77
78 Index: ChangeLog
79 ===================================================================
80 RCS file: /var/cvsroot/gentoo-x86/net-p2p/dbhub/ChangeLog,v
81 retrieving revision 1.28
82 retrieving revision 1.29
83 diff -u -r1.28 -r1.29
84 --- ChangeLog 30 Jun 2008 12:52:45 -0000 1.28
85 +++ ChangeLog 29 Jun 2010 19:53:52 -0000 1.29
86 @@ -1,6 +1,10 @@
87 # ChangeLog for net-p2p/dbhub
88 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
89 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/dbhub/ChangeLog,v 1.28 2008/06/30 12:52:45 corsair Exp $
90 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
91 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/dbhub/ChangeLog,v 1.29 2010/06/29 19:53:52 ssuominen Exp $
92 +
93 + 29 Jun 2010; Samuli Suominen <ssuominen@g.o> dbhub-0.451.ebuild,
94 + files/dbhub-gentoo.patch:
95 + Fix building with -Wl,--as-needed wrt #276928 by Diego E. Pettenò.
96
97 30 Jun 2008; Markus Rothe <corsair@g.o> dbhub-0.451.ebuild:
98 Added ~ppc