diff options
Diffstat (limited to 'gnome-apps/gnucash/gnucash-1.4.7-r2.ebuild')
-rw-r--r-- | gnome-apps/gnucash/gnucash-1.4.7-r2.ebuild | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/gnome-apps/gnucash/gnucash-1.4.7-r2.ebuild b/gnome-apps/gnucash/gnucash-1.4.7-r2.ebuild index e4982ef89f8b..fca008aca0e6 100644 --- a/gnome-apps/gnucash/gnucash-1.4.7-r2.ebuild +++ b/gnome-apps/gnucash/gnucash-1.4.7-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/gnome-apps/gnucash/gnucash-1.4.7-r2.ebuild,v 1.3 2000/11/27 22:48:59 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-apps/gnucash/gnucash-1.4.7-r2.ebuild,v 1.4 2001/04/29 18:42:54 achim Exp $ A=${P}.tar.gz S=${WORKDIR}/${P} @@ -11,21 +11,27 @@ HOMEPAGE="http://gnucash.sourceforge.net" DEPEND=">=gnome-base/gnome-libs-1.2.4 >=gnome-base/libxml-1.8.10 + >=sys-devel/perl-4 >=dev-lang/swig-1.3_alpha4 - >=dev-libs/slib-2.3.8" + >=dev-libs/slib-2.3.8 + nls? ( sys-devel/gettext )" src_compile() { - cd ${S} - try ./configure --prefix=/opt/gnome --host=${CHOST} --with-catgets + local myconf + if [ -z "`use nls`" ] ; then + myconf="--disable-nls" + fi + try ./configure --prefix=/opt/gnome --host=${CHOST} $myconf try make } src_install () { - cd ${S} try make DESTDIR=${D} install + dodoc AUTHORS COPYING ChangeLog NEWS REDAME TODO + } |