diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-09-08 08:54:19 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-09-08 08:54:19 +0000 |
commit | af81e3cbd1b679706117340a721fbcf600cf89c6 (patch) | |
tree | 7c046e88c519a5f6f10574e31c01c669936115bd /app-text/openjade | |
parent | Version bump, see bug #63063. (diff) | |
download | historical-af81e3cbd1b679706117340a721fbcf600cf89c6.tar.gz historical-af81e3cbd1b679706117340a721fbcf600cf89c6.tar.bz2 historical-af81e3cbd1b679706117340a721fbcf600cf89c6.zip |
Don't unset C[XX]FLAGS. This closes bug #59514.
Diffstat (limited to 'app-text/openjade')
-rw-r--r-- | app-text/openjade/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/openjade/Manifest | 10 | ||||
-rw-r--r-- | app-text/openjade/openjade-1.3.2-r1.ebuild | 12 |
3 files changed, 15 insertions, 12 deletions
diff --git a/app-text/openjade/ChangeLog b/app-text/openjade/ChangeLog index 99f7d2552fd1..b0253b3dd36b 100644 --- a/app-text/openjade/ChangeLog +++ b/app-text/openjade/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/openjade # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/openjade/ChangeLog,v 1.36 2004/08/07 21:38:24 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/openjade/ChangeLog,v 1.37 2004/09/08 08:54:19 usata Exp $ + + 08 Sep 2004; Mamoru KOMACHI <usata@gentoo.org> openjade-1.3.2-r1.ebuild: + Don't unset C[XX]FLAGS. This closes bug #59514. 07 Aug 2004; Tom Martin <slarti@gentoo.org> openjade-1.3.1-r5.ebuild, openjade-1.3.1-r6.ebuild, openjade-1.3.2-r1.ebuild: diff --git a/app-text/openjade/Manifest b/app-text/openjade/Manifest index b4fe6c5467a0..b8580246a690 100644 --- a/app-text/openjade/Manifest +++ b/app-text/openjade/Manifest @@ -1,11 +1,11 @@ -MD5 8facc9f36a17a9f7c5c3b84a3a57cad6 openjade-1.3.2-r1.ebuild 2701 -MD5 4655811db5cf646ec56c7bd5c6303ccb openjade-1.3.1-r6.ebuild 2703 -MD5 9f33fb7aa333fa30c236361daaecd0ae ChangeLog 5630 +MD5 289532a03bf964b7df29433fc3ec23a8 ChangeLog 5755 MD5 3990bd140eb4c19446f2d564005a8781 openjade-1.3.1-r5.ebuild 3442 +MD5 4655811db5cf646ec56c7bd5c6303ccb openjade-1.3.1-r6.ebuild 2703 +MD5 6b0edbdb5504467e55cbaa1718835cf7 openjade-1.3.2-r1.ebuild 2729 MD5 8b06382cdd39a4055e58476e211925c2 files/digest-openjade-1.3.1-r5 67 MD5 8b06382cdd39a4055e58476e211925c2 files/digest-openjade-1.3.1-r6 67 MD5 7aec561045cfe90b07ce666881668288 files/digest-openjade-1.3.2-r1 66 +MD5 7b4fc3abf04cdb88a197065eaf3b4e53 files/openjade-1.3.1.dsssl-catalog 269 +MD5 97ffae1d667ab6f72f6e716bac5f3833 files/openjade-1.3.2-msggen.pl.patch 418 MD5 7b4fc3abf04cdb88a197065eaf3b4e53 files/openjade-1.3.2.dsssl-catalog 269 MD5 7b4fc3abf04cdb88a197065eaf3b4e53 files/openjade-1.3.dsssl-catalog 269 -MD5 97ffae1d667ab6f72f6e716bac5f3833 files/openjade-1.3.2-msggen.pl.patch 418 -MD5 7b4fc3abf04cdb88a197065eaf3b4e53 files/openjade-1.3.1.dsssl-catalog 269 diff --git a/app-text/openjade/openjade-1.3.2-r1.ebuild b/app-text/openjade/openjade-1.3.2-r1.ebuild index 02a4e8468c69..d7799da7c69b 100644 --- a/app-text/openjade/openjade-1.3.2-r1.ebuild +++ b/app-text/openjade/openjade-1.3.2-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/openjade/openjade-1.3.2-r1.ebuild,v 1.21 2004/08/07 21:38:24 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/openjade/openjade-1.3.2-r1.ebuild,v 1.22 2004/09/08 08:54:19 usata Exp $ -inherit libtool sgml-catalog eutils +inherit libtool sgml-catalog eutils flag-o-matic DESCRIPTION="Jade is an implementation of DSSSL - an ISO standard for formatting SGML and XML documents" HOMEPAGE="http://openjade.sourceforge.net" @@ -29,15 +29,14 @@ src_compile() { # Please note! Opts are disabled. If you know what you're doing # feel free to remove this line. It may cause problems with # docbook-sgml-utils among other things. - CFLAGS="" - CXXFLAGS="" + export ALLOWED_FLAGS="-O -O1 -O2 -pipe -g" + strip-flags # Default CFLAGS and CXXFLAGS is -O2 but this make openjade segfault # on hppa. Using -O1 works fine. So I force it here. if [ "${ARCH}" = "hppa" ] then - CFLAGS="-O1 -pipe" - CXXFLAGS="-O1 -pipe" + replace-flags -O[2] -O1 fi ln -s config/configure.in configure.in @@ -57,6 +56,7 @@ src_compile() { src_install() { dodir /usr dodir /usr/lib + make prefix=${D}/usr \ datadir=${D}/usr/share/sgml/${P} \ install || die |