summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Birchinger <joker@gentoo.org>2004-05-07 15:04:34 +0000
committerChristian Birchinger <joker@gentoo.org>2004-05-07 15:04:34 +0000
commit40f4a4d8ce7e8bd77a7419c3bafab2e66e128b53 (patch)
tree9a8680bc99110961efd2a002ba455d2aae6341be /app-editors/joe
parentMove CFLAGS filtering stuff inside of src_unpack (diff)
downloadhistorical-40f4a4d8ce7e8bd77a7419c3bafab2e66e128b53.tar.gz
historical-40f4a4d8ce7e8bd77a7419c3bafab2e66e128b53.tar.bz2
historical-40f4a4d8ce7e8bd77a7419c3bafab2e66e128b53.zip
Moved replace-flags from global section into src_compile
Diffstat (limited to 'app-editors/joe')
-rw-r--r--app-editors/joe/Manifest2
-rw-r--r--app-editors/joe/joe-3.0-r1.ebuild8
2 files changed, 5 insertions, 5 deletions
diff --git a/app-editors/joe/Manifest b/app-editors/joe/Manifest
index 7c38818a76c1..4c37b693885f 100644
--- a/app-editors/joe/Manifest
+++ b/app-editors/joe/Manifest
@@ -2,7 +2,7 @@ MD5 b1d8c1a6bb4f77caf0ab8ca8e470b13d ChangeLog 2478
MD5 00633259847518bde188d48a0bb3ecd7 joe-2.9.5.ebuild 849
MD5 8adfaa8e8f0f139b4fce6316bff1f18d joe-2.9.8.ebuild 828
MD5 b4ab76dfa8ad207c491c059ecec6710f joe-2.9.8_pre1.ebuild 677
-MD5 f3b4ec1903d9ea4bd61e47c7dba84344 joe-3.0-r1.ebuild 1234
+MD5 c39c1ae758e506438b0bb02bb3916bcf joe-3.0-r1.ebuild 1236
MD5 2d0cff8feae94e95e4d345c184aedf2e files/digest-joe-2.9.5 58
MD5 d69aa486eb5c743045dd6323ceede7e3 files/digest-joe-2.9.8 61
MD5 26aed7d89377d2c69fa8915653718a0b files/digest-joe-2.9.8_pre1 63
diff --git a/app-editors/joe/joe-3.0-r1.ebuild b/app-editors/joe/joe-3.0-r1.ebuild
index ea83cd80f1f9..ba045c0f188f 100644
--- a/app-editors/joe/joe-3.0-r1.ebuild
+++ b/app-editors/joe/joe-3.0-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/joe/joe-3.0-r1.ebuild,v 1.1 2004/05/07 14:20:31 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/joe/joe-3.0-r1.ebuild,v 1.2 2004/05/07 15:04:34 joker Exp $
IUSE=""
@@ -18,9 +18,6 @@ DEPEND=">=sys-libs/ncurses-5.2-r2"
PROVIDE="virtual/editor"
-# Bug 34609 (joe 2.9.8 editor seg-faults on 'find and replace' when compiled with -Os)
-replace-flags "-Os" "-O2"
-
src_unpack() {
unpack ${A}
cd ${S}
@@ -32,6 +29,9 @@ src_unpack() {
}
src_compile() {
+ # Bug 34609 (joe 2.9.8 editor seg-faults on 'find and replace' when compiled with -Os)
+ replace-flags "-Os" "-O2"
+
econf || die
make || die
}