Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/libdbi: libdbi-0.8.3.ebuild ChangeLog
Date: Fri, 10 Oct 2008 00:24:49
Message-Id: E1Ko5oE-0000wL-Ve@stork.gentoo.org
1 robbat2 08/10/10 00:24:46
2
3 Modified: libdbi-0.8.3.ebuild ChangeLog
4 Log:
5 Make documentation build properly optional instead of dependant on system contents.
6 (Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc1-10246-gca5de40 x86_64)
7
8 Revision Changes Path
9 1.4 dev-db/libdbi/libdbi-0.8.3.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi/libdbi-0.8.3.ebuild?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi/libdbi-0.8.3.ebuild?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi/libdbi-0.8.3.ebuild?r1=1.3&r2=1.4
14
15 Index: libdbi-0.8.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-db/libdbi/libdbi-0.8.3.ebuild,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -p -w -b -B -u -u -r1.3 -r1.4
21 --- libdbi-0.8.3.ebuild 5 Oct 2008 21:12:19 -0000 1.3
22 +++ libdbi-0.8.3.ebuild 10 Oct 2008 00:24:46 -0000 1.4
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi/libdbi-0.8.3.ebuild,v 1.3 2008/10/05 21:12:19 flameeyes Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi/libdbi-0.8.3.ebuild,v 1.4 2008/10/10 00:24:46 robbat2 Exp $
28
29 inherit eutils autotools multilib
30
31 @@ -11,10 +11,10 @@ LICENSE="LGPL-2.1"
32 RDEPEND="virtual/libc"
33 DEPEND=">=sys-apps/sed-4
34 dev-util/pkgconfig
35 - app-text/openjade
36 + doc? ( app-text/openjade )
37 ${RDEPEND}"
38 PDEPEND=">=dev-db/libdbi-drivers-0.8.3"
39 -IUSE=""
40 +IUSE="doc"
41 KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
42 SLOT=0
43
44 @@ -24,6 +24,7 @@ src_unpack() {
45 cd "${S}"
46 epatch "${FILESDIR}"/libdbi-0.8.1-pkg-config.patch
47 cp -f "${FILESDIR}"/dbi.pc.in "${S}"/dbi.pc.in
48 + epatch "${FILESDIR}"/libdbi-0.8.3-doc-build-fix.patch
49
50 # configure.in has been changed
51 eautoreconf || die "eautoreconf failed"
52 @@ -32,7 +33,7 @@ src_unpack() {
53 src_compile() {
54 # should append CFLAGS, not replace them
55 sed -i.orig -e 's/^CFLAGS = /CFLAGS += /g' src/Makefile.in
56 - econf || die "econf failed"
57 + econf $(use_enable doc docs) || die "econf failed"
58 emake || die "emake failed"
59 }
60
61
62
63
64 1.23 dev-db/libdbi/ChangeLog
65
66 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi/ChangeLog?rev=1.23&view=markup
67 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi/ChangeLog?rev=1.23&content-type=text/plain
68 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi/ChangeLog?r1=1.22&r2=1.23
69
70 Index: ChangeLog
71 ===================================================================
72 RCS file: /var/cvsroot/gentoo-x86/dev-db/libdbi/ChangeLog,v
73 retrieving revision 1.22
74 retrieving revision 1.23
75 diff -p -w -b -B -u -u -r1.22 -r1.23
76 --- ChangeLog 5 Oct 2008 21:12:19 -0000 1.22
77 +++ ChangeLog 10 Oct 2008 00:24:46 -0000 1.23
78 @@ -1,6 +1,11 @@
79 # ChangeLog for dev-db/libdbi
80 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
81 -# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi/ChangeLog,v 1.22 2008/10/05 21:12:19 flameeyes Exp $
82 +# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi/ChangeLog,v 1.23 2008/10/10 00:24:46 robbat2 Exp $
83 +
84 + 10 Oct 2008; Robin H. Johnson <robbat2@g.o>
85 + +files/libdbi-0.8.3-doc-build-fix.patch, libdbi-0.8.3.ebuild:
86 + Make documentation build properly optional instead of dependant on system
87 + contents.
88
89 05 Oct 2008; Diego Pettenò <flameeyes@g.o> libdbi-0.8.3.ebuild:
90 Fix build-time dependencies.