diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2002-08-19 05:32:15 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2002-08-19 05:32:15 +0000 |
commit | fbeb1a90f81aac0ec4fb1066dcd3397ea7c53708 (patch) | |
tree | 9f78ecd4497269ebb1246887c8c5fb7d8a0f71b6 /app-office/gnucash | |
parent | CFLAGS fix (diff) | |
download | historical-fbeb1a90f81aac0ec4fb1066dcd3397ea7c53708.tar.gz historical-fbeb1a90f81aac0ec4fb1066dcd3397ea7c53708.tar.bz2 historical-fbeb1a90f81aac0ec4fb1066dcd3397ea7c53708.zip |
Fixes #6193
Diffstat (limited to 'app-office/gnucash')
-rw-r--r-- | app-office/gnucash/ChangeLog | 7 | ||||
-rw-r--r-- | app-office/gnucash/gnucash-1.6.6-r1.ebuild | 9 |
2 files changed, 13 insertions, 3 deletions
diff --git a/app-office/gnucash/ChangeLog b/app-office/gnucash/ChangeLog index 1ac8fbe24084..bb3b6b9ee771 100644 --- a/app-office/gnucash/ChangeLog +++ b/app-office/gnucash/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for app-office/gnucash # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.5 2002/08/19 00:01:11 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.6 2002/08/19 05:32:15 leonardop Exp $ *gnucash-1.6.7 (19 Aug 2002) 19 Aug 2002; Spider <spider@gentoo.org> gnucash-1.6.7.ebuild : @@ -9,6 +9,11 @@ *gnucash-1.6.6-r1 (07 Aug 2002) + 19 Aug 2002; L. Boshell <leonardop@gentoo.org> gnucash-1.6.6-r1.ebuild: + Make sure to avoid the C flag `-fomit-frame-pointer', since it causes + problems in the compilation phase. Thanks to Jacob Perkins and Paul Belt + for pointing this out on bug #6193. + 07 Aug 2002; L. Boshell <leonardop@gentoo.org> gnucash-1.6.6-r1.ebuild: Reworked dependencies. Add support for PostgreSQL. diff --git a/app-office/gnucash/gnucash-1.6.6-r1.ebuild b/app-office/gnucash/gnucash-1.6.6-r1.ebuild index 072a363ed152..08544aa24e0a 100644 --- a/app-office/gnucash/gnucash-1.6.6-r1.ebuild +++ b/app-office/gnucash/gnucash-1.6.6-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-1.6.6-r1.ebuild,v 1.1 2002/08/08 03:23:32 leonardop Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-1.6.6-r1.ebuild,v 1.2 2002/08/19 05:32:15 leonardop Exp $ S=${WORKDIR}/${P} DESCRIPTION="A personal finance manager" @@ -45,11 +45,16 @@ src_compile() { use nls || myconf="--disable-nls" use postgres && myconf="$myconf --enable-sql" + # The configure script for this package implements gcc calls that are + # incompatible with the flag `-fomit-frame-pointer'. + CFLAGS=${CFLAGS/-fomit-frame-pointer/} + econf --enable-profile \ --enable-rpc \ $myconf || die "Configuration failed" - make || die # Doesn't work with make -j 4 (hallski) + + make || die "Compilation failed" # Doesn't work with make -j 4 (hallski) } src_install () { |