summaryrefslogtreecommitdiff
blob: d459e7e62a4714377e8676db635c4e3a0ec74f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/qof/Attic/qof-0.7.5-r1.ebuild,v 1.9 2012/06/16 12:03:22 pacho dead $

EAPI=4

inherit eutils

DESCRIPTION="A Query Object Framework"
HOMEPAGE="http://qof.alioth.debian.org/"
SRC_URI="mirror://sourceforge/qof/${P}.tar.gz"
LICENSE="GPL-2"

SLOT="0"

KEYWORDS="amd64 ~ppc ~ppc64 sparc x86"

IUSE="doc nls sqlite"

RDEPEND="
	dev-libs/libxml2:2
	dev-libs/glib:2
	sqlite? ( dev-db/sqlite:0 )
"
DEPEND="${RDEPEND}
	virtual/pkgconfig
	!dev-libs/qof:2
	doc? ( app-doc/doxygen )"

src_prepare() {
	# Upstream not willing to remove those stupid flags...
	epatch "${FILESDIR}/${PN}-0.7.4-remove_spurious_CFLAGS.patch"
}

src_configure() {
	econf \
		--disable-error-on-warning \
		--disable-dot \
		--disable-gdabackend \
		--disable-gdasql \
		$(use_enable doc doxygen) \
		$(use_enable doc html-docs) \
		$(use_enable nls) \
		$(use_enable sqlite)
}