summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-08-15 00:52:32 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-08-15 00:52:32 +0000
commit81c503031132bb1801c12a2a85f506a94c25ec86 (patch)
tree1296d6763845ed08021c0aaa0bead308e7686e08 /app-text/aiksaurus
parentadded libpng to DEPEND (diff)
downloadgentoo-2-81c503031132bb1801c12a2a85f506a94c25ec86.tar.gz
gentoo-2-81c503031132bb1801c12a2a85f506a94c25ec86.tar.bz2
gentoo-2-81c503031132bb1801c12a2a85f506a94c25ec86.zip
removed -fno-exceptions flag from CFLAGS
Diffstat (limited to 'app-text/aiksaurus')
-rw-r--r--app-text/aiksaurus/ChangeLog7
-rw-r--r--app-text/aiksaurus/aiksaurus-0.15-r1.ebuild6
2 files changed, 11 insertions, 2 deletions
diff --git a/app-text/aiksaurus/ChangeLog b/app-text/aiksaurus/ChangeLog
index 7a36aef1b56f..6304fbe9567f 100644
--- a/app-text/aiksaurus/ChangeLog
+++ b/app-text/aiksaurus/ChangeLog
@@ -1,9 +1,14 @@
# ChangeLog for app-text/aiksaurus
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/app-text/aiksaurus/ChangeLog,v 1.2 2002/07/16 03:41:08 owen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/aiksaurus/ChangeLog,v 1.3 2002/08/15 00:52:32 seemant Exp $
*aiksaurus-0.15.ebuild (31 May 2002)
+ 14 Aug 2002; Seemant Kulleen <seemant@gentoo.org> aiksaurus-0.15-r1.ebuild :
+
+ Removed "-fno-exceptions" from user's CFLAGS and CXXFLAGS to make this
+ compile. Thanks to bar4ka@bol.com.br (bar4ka) in bug #6481.
+
15 Jul 2002; Owen Stampflee <owen@gentoo.org> :
Added KEYWORDS.
diff --git a/app-text/aiksaurus/aiksaurus-0.15-r1.ebuild b/app-text/aiksaurus/aiksaurus-0.15-r1.ebuild
index 19d4f5b46e93..77b7d2fb1bf9 100644
--- a/app-text/aiksaurus/aiksaurus-0.15-r1.ebuild
+++ b/app-text/aiksaurus/aiksaurus-0.15-r1.ebuild
@@ -2,6 +2,8 @@
# Distributed under the terms of the GNU General Public License, v2 or later
# /space/gentoo/cvsroot/gentoo-x86/app-text/aiksaurus/aiksaurus-0.15.ebuild,v 1.1 2002/05/31 17:54:03 danarmak Exp
+inherit flag-o-matic
+
S=${WORKDIR}/Aiksaurus-${PV}
DESCRIPTION="A thesaurus lib, tool and database"
SRC_URI="http://www.aiksaurus.com/dist/TAR/Aiksaurus-${PV}.tar.gz"
@@ -20,7 +22,9 @@ src_unpack() {
}
src_compile() {
- cd ${S}
+
+ filter-flags -fno-exceptions
+
./configure --prefix=/usr || die
emake || die
}