Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/qof/
Date: Sat, 02 Jan 2016 20:40:05
Message-Id: 1451767033.d90263891d379efa0fbac798fa7c3785d4d2e7fc.pacho@gentoo
1 commit: d90263891d379efa0fbac798fa7c3785d4d2e7fc
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 2 20:37:13 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 2 20:37:13 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9026389
7
8 dev-libs/qof: Drop old
9
10 Package-Manager: portage-2.2.26
11
12 dev-libs/qof/qof-0.8.8.ebuild | 62 -------------------------------------------
13 1 file changed, 62 deletions(-)
14
15 diff --git a/dev-libs/qof/qof-0.8.8.ebuild b/dev-libs/qof/qof-0.8.8.ebuild
16 deleted file mode 100644
17 index bda1645..0000000
18 --- a/dev-libs/qof/qof-0.8.8.ebuild
19 +++ /dev/null
20 @@ -1,62 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -GCONF_DEBUG="no"
27 -GNOME2_LA_PUNT="yes"
28 -
29 -inherit autotools eutils gnome2
30 -
31 -DESCRIPTION="A Query Object Framework"
32 -HOMEPAGE="https://alioth.debian.org/projects/qof/"
33 -SRC_URI="mirror://debian//pool/main/q/${PN}/${PN}_${PV}.orig.tar.gz"
34 -LICENSE="GPL-2"
35 -
36 -SLOT="2"
37 -KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
38 -IUSE="doc nls sqlite"
39 -
40 -RDEPEND="
41 - dev-libs/libxml2
42 - dev-libs/glib:2
43 - sqlite? ( >=dev-db/sqlite-2.8.0:0 )
44 -"
45 -DEPEND="${RDEPEND}
46 - virtual/pkgconfig
47 - virtual/yacc
48 - >=sys-devel/gettext-0.19.2
49 - !dev-libs/qof:0
50 - doc? (
51 - app-doc/doxygen
52 - dev-texlive/texlive-latex )
53 -"
54 -
55 -src_prepare() {
56 - # Remove some CFLAGS
57 - epatch "${FILESDIR}"/${PN}-0.8.8-cflags.patch
58 -
59 - # Delay build of unittests, bug #197999
60 - epatch "${FILESDIR}"/${PN}-0.8.8-unittest.patch
61 -
62 - # Fix use and build with yacc
63 - epatch "${FILESDIR}"/${PN}-0.8.8-unistd-define.patch
64 - epatch "${FILESDIR}"/${PN}-0.8.8-yacc-build.patch
65 - rm lib/libsql/{lexer.c,parser.c,parser.h} || die
66 -
67 - eautoreconf
68 - gnome2_src_prepare
69 -}
70 -
71 -src_configure() {
72 - gnome2_src_configure \
73 - --disable-error-on-warning \
74 - --disable-static \
75 - --disable-gdasql \
76 - --disable-gdabackend \
77 - $(use_enable nls) \
78 - $(use_enable sqlite) \
79 - $(use_enable doc doxygen) \
80 - $(use_enable doc latex-docs) \
81 - $(use_enable doc html-docs)
82 -}