summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-01-02 21:37:13 +0100
committerPacho Ramos <pacho@gentoo.org>2016-01-02 21:37:13 +0100
commitd90263891d379efa0fbac798fa7c3785d4d2e7fc (patch)
tree8ac7260afe57f52445e4af30ea19790f4ef82e5c /dev-libs/qof
parentgames-board/ascal: Fix building with latest glibmm/libsigc++ (diff)
downloadgentoo-d90263891d379efa0fbac798fa7c3785d4d2e7fc.tar.gz
gentoo-d90263891d379efa0fbac798fa7c3785d4d2e7fc.tar.bz2
gentoo-d90263891d379efa0fbac798fa7c3785d4d2e7fc.zip
dev-libs/qof: Drop old
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-libs/qof')
-rw-r--r--dev-libs/qof/qof-0.8.8.ebuild62
1 files changed, 0 insertions, 62 deletions
diff --git a/dev-libs/qof/qof-0.8.8.ebuild b/dev-libs/qof/qof-0.8.8.ebuild
deleted file mode 100644
index bda16457c865..000000000000
--- a/dev-libs/qof/qof-0.8.8.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit autotools eutils gnome2
-
-DESCRIPTION="A Query Object Framework"
-HOMEPAGE="https://alioth.debian.org/projects/qof/"
-SRC_URI="mirror://debian//pool/main/q/${PN}/${PN}_${PV}.orig.tar.gz"
-LICENSE="GPL-2"
-
-SLOT="2"
-KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
-IUSE="doc nls sqlite"
-
-RDEPEND="
- dev-libs/libxml2
- dev-libs/glib:2
- sqlite? ( >=dev-db/sqlite-2.8.0:0 )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- virtual/yacc
- >=sys-devel/gettext-0.19.2
- !dev-libs/qof:0
- doc? (
- app-doc/doxygen
- dev-texlive/texlive-latex )
-"
-
-src_prepare() {
- # Remove some CFLAGS
- epatch "${FILESDIR}"/${PN}-0.8.8-cflags.patch
-
- # Delay build of unittests, bug #197999
- epatch "${FILESDIR}"/${PN}-0.8.8-unittest.patch
-
- # Fix use and build with yacc
- epatch "${FILESDIR}"/${PN}-0.8.8-unistd-define.patch
- epatch "${FILESDIR}"/${PN}-0.8.8-yacc-build.patch
- rm lib/libsql/{lexer.c,parser.c,parser.h} || die
-
- eautoreconf
- gnome2_src_prepare
-}
-
-src_configure() {
- gnome2_src_configure \
- --disable-error-on-warning \
- --disable-static \
- --disable-gdasql \
- --disable-gdabackend \
- $(use_enable nls) \
- $(use_enable sqlite) \
- $(use_enable doc doxygen) \
- $(use_enable doc latex-docs) \
- $(use_enable doc html-docs)
-}