Gentoo Archives: gentoo-commits

From: "Christian Faulhammer (fauli)" <fauli@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/qof: ChangeLog qof-0.8.1.ebuild qof-0.8.0.ebuild
Date: Mon, 04 Jan 2010 13:31:32
Message-Id: E1NRn1u-0008IM-88@stork.gentoo.org
1 fauli 10/01/04 13:31:30
2
3 Modified: ChangeLog
4 Added: qof-0.8.1.ebuild
5 Removed: qof-0.8.0.ebuild
6 Log:
7 version bump
8 (Portage version: 2.1.6.13/cvs/Linux i686)
9
10 Revision Changes Path
11 1.25 dev-libs/qof/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qof/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qof/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qof/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/qof/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 9 Jun 2009 18:38:56 -0000 1.24
24 +++ ChangeLog 4 Jan 2010 13:31:29 -0000 1.25
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/qof
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/qof/ChangeLog,v 1.24 2009/06/09 18:38:56 fauli Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/qof/ChangeLog,v 1.25 2010/01/04 13:31:29 fauli Exp $
31 +
32 +*qof-0.8.1 (04 Jan 2010)
33 +
34 + 04 Jan 2010; Christian Faulhammer <fauli@g.o> -qof-0.8.0.ebuild,
35 + +qof-0.8.1.ebuild:
36 + version bump
37
38 *qof-0.8.0 (09 Jun 2009)
39
40
41
42
43 1.1 dev-libs/qof/qof-0.8.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qof/qof-0.8.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/qof/qof-0.8.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: qof-0.8.1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/qof/qof-0.8.1.ebuild,v 1.1 2010/01/04 13:31:29 fauli Exp $
53
54 EAPI=2
55
56 inherit eutils
57
58 DESCRIPTION="A Query Object Framework"
59 HOMEPAGE="http://qof.alioth.debian.org/"
60 SRC_URI="https://alioth.debian.org/frs/download.php/3059/${P}.tar.gz"
61 LICENSE="GPL-2"
62
63 SLOT="2"
64
65 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
66
67 IUSE="doc nls"
68
69 RDEPEND="gnome-extra/libgda:3
70 dev-libs/libxml2
71 >=dev-db/sqlite-2.8.0:0"
72 DEPEND="${DEPEND}
73 dev-util/pkgconfig
74 !dev-libs/qof:0
75 doc? ( app-doc/doxygen
76 dev-texlive/texlive-latex )"
77
78 src_prepare() {
79 # Upstream not willing to remove those stupid flags...
80 epatch "${FILESDIR}/${PN}-0.8.0-remove_spurious_CFLAGS.patch"
81 }
82
83 src_configure() {
84 econf $(use_enable doc html-docs) --disable-error-on-warning \
85 $(use_enable nls) --enable-sqlite $(use_enable doc doxygen) \
86 $(use_enable doc latex-docs) --enable-gdabackend --enable-gdasql \
87 --disable-deprecated-glib --disable-dot \
88 || die
89 }
90 src_compile() {
91 emake -j1 || die
92 }
93
94 src_install() {
95 emake -j1 DESTDIR="${D}" install || die
96 }