diff options
author | 2005-02-08 11:22:34 +0000 | |
---|---|---|
committer | 2005-02-08 11:22:34 +0000 | |
commit | b9037a296b36b031d6c47abf5cd6a32fbd1c697d (patch) | |
tree | e3359f5422933eac282203536ff5b0c319394ca1 /app-office/lyx | |
parent | Replace removed defination in binutils as per bug #81210 (diff) | |
download | historical-b9037a296b36b031d6c47abf5cd6a32fbd1c697d.tar.gz historical-b9037a296b36b031d6c47abf5cd6a32fbd1c697d.tar.bz2 historical-b9037a296b36b031d6c47abf5cd6a32fbd1c697d.zip |
Filters -Os (may result in compilation failure on some systems); bug #73984.
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'app-office/lyx')
-rw-r--r-- | app-office/lyx/ChangeLog | 5 | ||||
-rw-r--r-- | app-office/lyx/Manifest | 12 | ||||
-rw-r--r-- | app-office/lyx/lyx-1.3.5.ebuild | 4 |
3 files changed, 12 insertions, 9 deletions
diff --git a/app-office/lyx/ChangeLog b/app-office/lyx/ChangeLog index 5a7055a6ce87..221fc975b902 100644 --- a/app-office/lyx/ChangeLog +++ b/app-office/lyx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-office/lyx # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/ChangeLog,v 1.56 2005/01/01 15:36:38 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/ChangeLog,v 1.57 2005/02/08 11:22:34 usata Exp $ + + 08 Feb 2005; Mamoru KOMACHI <usata@gentoo.org> lyx-1.3.5.ebuild: + Filters -Os (may result in compilation failure on some systems); bug #73984. 15 Dec 2004; Dylan Carlson <absinthe@gentoo.org> lyx-1.3.5.ebuild: Stable on amd64. diff --git a/app-office/lyx/Manifest b/app-office/lyx/Manifest index 89e1ee085f2a..7fc3a0b91f20 100644 --- a/app-office/lyx/Manifest +++ b/app-office/lyx/Manifest @@ -1,11 +1,11 @@ -MD5 7263633d4e25d51786fb5b98c1882142 ChangeLog 9035 MD5 a9bb0709bc1751805c02f2d858c2e337 lyx-1.3.4.ebuild 3108 +MD5 5077cf22d4ab44f2ac043bade962fede lyx-1.3.5.ebuild 3354 +MD5 5999f7d01da01aa8175d22a9ce87f333 ChangeLog 9177 MD5 c472f5fd1646eb8bca71d8df5cb2bdcc metadata.xml 164 -MD5 376caf431347b216e0c61169347b0b15 lyx-1.3.5.ebuild 3352 -MD5 296163b72f99143379e73e616ce4e728 files/digest-lyx-1.3.4 239 -MD5 f6bf30211847fb321f0000cd415d9e5b files/lyx-1.3.2-nomktex.patch 449 -MD5 363bfca924cf46b61d21faa4dbfcd43f files/lyx-1.3.3-configure-diff 1953 MD5 962a15cb903b1048986422c10e21f058 files/lyx.desktop 188 -MD5 b86918456f67f911e357a76308cd0fdb files/lyx-1.3.4-gcc34.patch 6589 +MD5 363bfca924cf46b61d21faa4dbfcd43f files/lyx-1.3.3-configure-diff 1953 +MD5 f6bf30211847fb321f0000cd415d9e5b files/lyx-1.3.2-nomktex.patch 449 MD5 5ccd191a3dc796feeda9dcee291d2863 files/digest-lyx-1.3.5 239 +MD5 296163b72f99143379e73e616ce4e728 files/digest-lyx-1.3.4 239 +MD5 b86918456f67f911e357a76308cd0fdb files/lyx-1.3.4-gcc34.patch 6589 MD5 2a779b20a7425abd5eea3b5ee01698f7 files/lyx-1.3.5-boost.patch 655 diff --git a/app-office/lyx/lyx-1.3.5.ebuild b/app-office/lyx/lyx-1.3.5.ebuild index bf033291fd31..33e7baed9b00 100644 --- a/app-office/lyx/lyx-1.3.5.ebuild +++ b/app-office/lyx/lyx-1.3.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/lyx-1.3.5.ebuild,v 1.9 2005/01/01 15:36:38 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/lyx-1.3.5.ebuild,v 1.10 2005/02/08 11:22:34 usata Exp $ inherit kde-functions eutils libtool @@ -70,7 +70,7 @@ src_compile() { $(use_enable nls) \ $(use_enable debug) \ ${myconf} \ - --enable-optimization="$flags" \ + --enable-optimization="${flags/-Os}" \ || die # bug 57479 emake || die "emake failed" |