blob: 567edea3bee041362fad36776b27f091b0a8cc5a (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/gnucash-docs/gnucash-docs-2.4.1.ebuild,v 1.8 2012/03/25 14:50:42 armin76 Exp $
EAPI="4"
GCONF_DEBUG=no
inherit gnome2
DESCRIPTION="Documentation package for GnuCash"
HOMEPAGE="http://www.gnucash.org/"
SRC_URI="mirror://sourceforge/gnucash/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2 FDL-1.1"
KEYWORDS="amd64 ppc ~ppc64 x86"
IUSE=""
RDEPEND="gnome-extra/yelp
!<=app-office/gnucash-2.2.1"
DEPEND="${RDEPEND}
>=dev-libs/libxml2-2.5.10:2
dev-libs/libxslt
>=app-text/scrollkeeper-0.3.4
app-text/docbook-xsl-stylesheets
app-text/docbook-xml-dtd:4.1.2"
pkg_postinst() {
gnome2_pkg_postinst
if ! has_version "dev-java/fop"; then
elog "You need dev-java/fop to generate pdf files."
fi
}
|