diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-04-14 21:56:22 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-04-14 21:56:22 +0000 |
commit | 4785dd5bf8a38256da7af73d72e14d82a83f65eb (patch) | |
tree | 6b8f70c883c900de67e1a9f6358eb6dc792cf1e4 /app-office/gnucash | |
parent | Add a pch USE flag to Qt:4 split ebuilds, bug 217712. (diff) | |
download | gentoo-2-4785dd5bf8a38256da7af73d72e14d82a83f65eb.tar.gz gentoo-2-4785dd5bf8a38256da7af73d72e14d82a83f65eb.tar.bz2 gentoo-2-4785dd5bf8a38256da7af73d72e14d82a83f65eb.zip |
unbreak configure
(Portage version: 2.1.5_rc2)
Diffstat (limited to 'app-office/gnucash')
-rw-r--r-- | app-office/gnucash/ChangeLog | 5 | ||||
-rw-r--r-- | app-office/gnucash/gnucash-2.2.4.ebuild | 15 |
2 files changed, 9 insertions, 11 deletions
diff --git a/app-office/gnucash/ChangeLog b/app-office/gnucash/ChangeLog index 7d0464ad49b3..712f4d2de1be 100644 --- a/app-office/gnucash/ChangeLog +++ b/app-office/gnucash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-office/gnucash # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.158 2008/04/14 21:15:05 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.159 2008/04/14 21:56:22 eva Exp $ + + 14 Apr 2008; Gilles Dartiguelongue <eva@gentoo.org> gnucash-2.2.4.ebuild: + unbreak configure 14 Apr 2008; Gilles Dartiguelongue <eva@gentoo.org> gnucash-2.2.4.ebuild: Fix dependency (gnomeprint isn't needed because gtkhtml-3.14 support diff --git a/app-office/gnucash/gnucash-2.2.4.ebuild b/app-office/gnucash/gnucash-2.2.4.ebuild index fac31d82a195..5eeabe4694d0 100644 --- a/app-office/gnucash/gnucash-2.2.4.ebuild +++ b/app-office/gnucash/gnucash-2.2.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.2.4.ebuild,v 1.3 2008/04/14 21:15:05 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.2.4.ebuild,v 1.4 2008/04/14 21:56:22 eva Exp $ EAPI=1 @@ -52,6 +52,9 @@ PDEPEND="doc? ( >=app-doc/gnucash-docs-${DOC_VER} )" ELTCONF="--patch-only" DOC="AUTHORS ChangeLog* DOCUMENTERS HACKING NEWS TODO README* doc/README*" +# FIXME: no the best thing to do but it'd be even better to fix autofoo +MAKEOPTS="${MAKEOPTS} -j1" + pkg_setup() { local will_die=false local flags="deprecated regex" @@ -81,16 +84,8 @@ pkg_setup() { --disable-error-on-warning" } -src_compile() { - gnome2_src_compile -j1 -} - -src_install() { - gnome2_src_install -j1 -} - src_test() { GUILE_WARN_DEPRECATED=no \ - emake -j1 check \ + emake check \ || die "Make check failed. See above for details." } |