diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2006-10-11 20:46:28 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2006-10-11 20:46:28 +0000 |
commit | e00da2d542d9fd6129541693f39cecb401e4100f (patch) | |
tree | a3925b18927c2ea17a24f076070e1437b8ebd0ab /app-office/gnucash | |
parent | Marked ~amd64, with small ebuild change. Dmitry S. Kulyabov in bug #148980 (diff) | |
download | gentoo-2-e00da2d542d9fd6129541693f39cecb401e4100f.tar.gz gentoo-2-e00da2d542d9fd6129541693f39cecb401e4100f.tar.bz2 gentoo-2-e00da2d542d9fd6129541693f39cecb401e4100f.zip |
change the USE flag handling a little, to fix bug #143772
(Portage version: 2.1.2_pre2-r8)
Diffstat (limited to 'app-office/gnucash')
-rw-r--r-- | app-office/gnucash/ChangeLog | 5 | ||||
-rw-r--r-- | app-office/gnucash/gnucash-2.0.2.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/app-office/gnucash/ChangeLog b/app-office/gnucash/ChangeLog index f49ccc5b35e6..cf0e040c534e 100644 --- a/app-office/gnucash/ChangeLog +++ b/app-office/gnucash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-office/gnucash # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.97 2006/10/11 09:54:24 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.98 2006/10/11 20:46:28 seemant Exp $ + + 11 Oct 2006; Seemant Kulleen <seemant@gentoo.org> gnucash-2.0.2.ebuild: + change the USE flag handling a little, to fix bug #143772 *gnucash-2.0.2 (11 Oct 2006) diff --git a/app-office/gnucash/gnucash-2.0.2.ebuild b/app-office/gnucash/gnucash-2.0.2.ebuild index b0abf42b9fe7..afc168726140 100644 --- a/app-office/gnucash/gnucash-2.0.2.ebuild +++ b/app-office/gnucash/gnucash-2.0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.0.2.ebuild,v 1.1 2006/10/11 09:54:24 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.0.2.ebuild,v 1.2 2006/10/11 20:46:28 seemant Exp $ inherit eutils gnome2 @@ -43,11 +43,11 @@ RDEPEND=">=dev-libs/glib-2.4.0 dev-perl/HTML-TableExtract ) app-text/docbook-xsl-stylesheets =app-text/docbook-xml-dtd-4.1.2* - nls? ( dev-util/intltool ) - tetex? ( app-text/tetex )" + nls? ( dev-util/intltool )" DEPEND="${RDEPEND} - doc? ( app-doc/doxygen ) + doc? ( app-doc/doxygen + app-text/tetex ) dev-util/pkgconfig" pkg_setup() { @@ -60,7 +60,6 @@ src_compile() { local myconf if use doc ; then - myconf="$(use_enable graphviz dot)" myconf="${myconf} $(use_enable tetex latex-docs)" fi @@ -69,6 +68,7 @@ src_compile() { $(use_enable ofx) \ $(use_enable doc doxygen) \ $(use_enable doc html-docs) \ + $(use_enable doc dot) \ $(use_enable hbci) \ --enable-locale-specific-tax \ ${myconf} || die "econf failed" |