mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Update ebuild for 2.1.x'es.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15968 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
2b16fa1f41
commit
c1f5e06edc
@ -2,7 +2,7 @@
|
|||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
# $Header$
|
# $Header$
|
||||||
|
|
||||||
# This script should work fine for the whole 1.9.x (and hopefully 2.0.x)
|
# This script should work fine for the whole 2.1.x (and hopefully 2.2.x)
|
||||||
# releases with a simple rename. See
|
# releases with a simple rename. See
|
||||||
# http://bugs.gentoo.org/show_bug.cgi?id=122337 for discussion and history
|
# http://bugs.gentoo.org/show_bug.cgi?id=122337 for discussion and history
|
||||||
# about this file.
|
# about this file.
|
||||||
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
inherit eutils gnome2
|
inherit eutils gnome2
|
||||||
|
|
||||||
DOC_VER="1.9.0"
|
DOC_VER="2.0.1"
|
||||||
|
|
||||||
DESCRIPTION="A personal finance manager (unstable version)."
|
DESCRIPTION="A personal finance manager (unstable version)."
|
||||||
HOMEPAGE="http://www.gnucash.org/"
|
HOMEPAGE="http://www.gnucash.org/"
|
||||||
@ -20,60 +20,75 @@ SRC_URI="mirror://sourceforge/gnucash/${P}.tar.gz
|
|||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
KEYWORDS="~amd64 ~x86"
|
KEYWORDS="~amd64 ~x86"
|
||||||
IUSE="postgres ofx hbci chipcard doc debug quotes"
|
IUSE="ofx hbci chipcard doc debug quotes nls"
|
||||||
# mt940
|
# mt940
|
||||||
|
|
||||||
RDEPEND=">=dev-libs/glib-2.4.0
|
RDEPEND=">=dev-libs/glib-2.6.3
|
||||||
>=dev-util/guile-1.6
|
>=dev-scheme/guile-1.8
|
||||||
amd64? ( >=dev-util/guile-1.6.4-r2 )
|
=dev-scheme/slib-3.1.1*
|
||||||
>=dev-libs/slib-2.3.8
|
|
||||||
>=sys-libs/zlib-1.1.4
|
>=sys-libs/zlib-1.1.4
|
||||||
>=dev-libs/popt-1.5
|
>=dev-libs/popt-1.5
|
||||||
>=x11-libs/gtk+-2.4
|
>=x11-libs/gtk+-2.6
|
||||||
>=gnome-base/libgnomeui-2.4
|
>=gnome-base/libgnomeui-2.4
|
||||||
>=gnome-base/libgnomeprint-2.10
|
>=gnome-base/libgnomeprint-2.10
|
||||||
>=gnome-base/libgnomeprintui-2.10
|
>=gnome-base/libgnomeprintui-2.10
|
||||||
>=gnome-base/libglade-2.4
|
>=gnome-base/libglade-2.4
|
||||||
>=gnome-extra/gtkhtml-3.6
|
>=gnome-extra/gtkhtml-3.10.1
|
||||||
>=dev-libs/libxml2-2.5.10
|
>=dev-libs/libxml2-2.5.10
|
||||||
>=dev-libs/g-wrap-1.3.4
|
|
||||||
>=gnome-base/gconf-2
|
>=gnome-base/gconf-2
|
||||||
>=app-text/scrollkeeper-0.3
|
>=app-text/scrollkeeper-0.3
|
||||||
>=x11-libs/goffice-0.0.4
|
>=x11-libs/goffice-0.1.0
|
||||||
doc? ( app-doc/doxygen )
|
|
||||||
ofx? ( >=dev-libs/libofx-0.7.0 )
|
ofx? ( >=dev-libs/libofx-0.7.0 )
|
||||||
hbci? ( net-libs/aqbanking
|
hbci? ( net-libs/aqbanking
|
||||||
chipcard? ( sys-libs/libchipcard )
|
chipcard? ( sys-libs/libchipcard )
|
||||||
)
|
)
|
||||||
quotes? ( dev-perl/Crypt-SSLeay
|
quotes? ( dev-perl/DateManip
|
||||||
dev-perl/Finance-Quote
|
dev-perl/Finance-Quote-1.11
|
||||||
dev-perl/HTML-TableExtract )
|
dev-perl/HTML-TableExtract )
|
||||||
postgres? ( dev-db/postgresql )
|
|
||||||
app-text/docbook-xsl-stylesheets
|
app-text/docbook-xsl-stylesheets
|
||||||
=app-text/docbook-xml-dtd-4.1.2*"
|
=app-text/docbook-xml-dtd-4.1.2*
|
||||||
|
nls? ( dev-util/intltool )
|
||||||
|
media-libs/libart_lgpl
|
||||||
|
x11-libs/pango"
|
||||||
|
|
||||||
DEPEND="${RDEPEND}
|
DEPEND="${RDEPEND}
|
||||||
|
doc? ( app-doc/doxygen
|
||||||
|
media-gfx/graphviz
|
||||||
|
virtual/tetex )
|
||||||
dev-util/pkgconfig
|
dev-util/pkgconfig
|
||||||
nls? ( sys-devel/gettext )"
|
sys-devel/libtool
|
||||||
|
>=dev-lang/swig-1.3.28"
|
||||||
|
|
||||||
|
S="${S}."
|
||||||
|
|
||||||
pkg_setup() {
|
pkg_setup() {
|
||||||
built_with_use libgsf gnome || die "libgsf must be built with gnome"
|
built_with_use gnome-extra/libgsf gnome || die "gnome-extra/libgsf must be built with gnome"
|
||||||
built_with_use goffice gnome || die "goffice must be built with gnome"
|
built_with_use x11-libs/goffice gnome || die "x11-libs/goffice must be built with gnome"
|
||||||
|
if ! built_with_use dev-scheme/guile regex deprecated discouraged; then
|
||||||
|
die "dev-scheme/guile must be built with USE=\"regex deprecated discouraged\""
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
src_compile() {
|
src_compile() {
|
||||||
local myconf_warnings="--enable-error-on-warning --enable-compile-warnings"
|
local myconf_warnings="--enable-error-on-warning --enable-compile-warnings"
|
||||||
|
|
||||||
|
if use doc ; then
|
||||||
|
myconf="${myconf} --enable-latex-docs"
|
||||||
|
fi
|
||||||
|
|
||||||
econf \
|
econf \
|
||||||
$(use_enable debug) \
|
$(use_enable debug) \
|
||||||
$(use_enable postgres sql) \
|
|
||||||
$(use_enable ofx) \
|
$(use_enable ofx) \
|
||||||
$(use_enable doc doxygen) \
|
$(use_enable doc doxygen) \
|
||||||
|
$(use_enable doc html-docs) \
|
||||||
|
$(use_enable doc dot) \
|
||||||
$(use_enable hbci) \
|
$(use_enable hbci) \
|
||||||
${myconf_warnings} \
|
${myconf} || die "econf failed"
|
||||||
|| die "econf failed"
|
|
||||||
emake -j1 || die "emake failed"
|
|
||||||
|
|
||||||
cd ${WORKDIR}/gnucash-docs-${DOC_VER}
|
MAKEOPTS="-j1"
|
||||||
|
emake || die "emake failed"
|
||||||
|
|
||||||
|
cd "${WORKDIR}/gnucash-docs-${DOC_VER}"
|
||||||
econf || die "doc econf failed"
|
econf || die "doc econf failed"
|
||||||
emake || die "doc emake failed"
|
emake || die "doc emake failed"
|
||||||
}
|
}
|
||||||
@ -82,12 +97,12 @@ src_compile() {
|
|||||||
|
|
||||||
src_install() {
|
src_install() {
|
||||||
gnome2_src_install || die "gnome2_src_install failed"
|
gnome2_src_install || die "gnome2_src_install failed"
|
||||||
dodoc AUTHORS ChangeLog* DOCUMENTERS HACKING INSTALL LICENSE NEWS TODO README* doc/README*
|
dodoc AUTHORS ChangeLog* COPYING DOCUMENTERS HACKING INSTALL LICENSE NEWS TODO README* doc/README*
|
||||||
make_desktop_entry ${P} "GnuCash ${PV}" gnucash-icon.png "GNOME;Office;Finance"
|
make_desktop_entry ${P} "GnuCash ${PV}" gnucash-icon.png "GNOME;Office;Finance"
|
||||||
|
|
||||||
cd ${WORKDIR}/${PN}-docs-${DOC_VER}
|
cd "${WORKDIR}/${PN}-docs-${DOC_VER}"
|
||||||
make DESTDIR=${D} \
|
make DESTDIR="${D}" \
|
||||||
scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper \
|
scrollkeeper_localstate_dir="${D}/var/lib/scrollkeeper" \
|
||||||
install || die "doc install failed"
|
install || die "doc install failed"
|
||||||
rm -rf ${D}/var/lib/scrollkeeper
|
rm -rf "${D}/var/lib/scrollkeeper"
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user