summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2004-03-03 20:22:45 +0000
committerAron Griffis <agriffis@gentoo.org>2004-03-03 20:22:45 +0000
commit2203bac9650fb3ba5076c55e4fdd63c7bbcaf821 (patch)
treebfdae4e83a54dfeb9b9c26fa621912b2339f2a98 /app-shells
parentAdd alpha and ia64 keywords to linux-headers-2.4.23 which should fix compilat... (diff)
downloadgentoo-2-2203bac9650fb3ba5076c55e4fdd63c7bbcaf821.tar.gz
gentoo-2-2203bac9650fb3ba5076c55e4fdd63c7bbcaf821.tar.bz2
gentoo-2-2203bac9650fb3ba5076c55e4fdd63c7bbcaf821.zip
Add missing keywords back into this ebuild (where did they go, plasmaroo?) and mark immediately stable on ia64 to clean up compilation issues with the older versions
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/sash/ChangeLog9
-rw-r--r--app-shells/sash/sash-3.7.ebuild14
2 files changed, 18 insertions, 5 deletions
diff --git a/app-shells/sash/ChangeLog b/app-shells/sash/ChangeLog
index 770896687a6b..7e1f3a81523e 100644
--- a/app-shells/sash/ChangeLog
+++ b/app-shells/sash/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-shells/sash
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.18 2004/02/14 22:23:05 plasmaroo Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.19 2004/03/03 20:22:45 agriffis Exp $
+
+*sash-3.7 (03 Mar 2004)
+
+ 03 Mar 2004; <agriffis@gentoo.org> sash-3.7.ebuild:
+ Add missing keywords back into this ebuild (where did they go, plasmaroo?) and
+ mark immediately stable on ia64 to clean up compilation issues with the older
+ versions
14 Feb 2004; <plasmaroo@gentoo.org> files/sash-3.6-readline.patch:
Fixed an upstream bug in the readline patch, this should solve
diff --git a/app-shells/sash/sash-3.7.ebuild b/app-shells/sash/sash-3.7.ebuild
index 80b86c8f055b..92a2798fa1ab 100644
--- a/app-shells/sash/sash-3.7.ebuild
+++ b/app-shells/sash/sash-3.7.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/sash-3.7.ebuild,v 1.2 2004/03/02 16:43:31 iggy Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/sash-3.7.ebuild,v 1.3 2004/03/03 20:22:45 agriffis Exp $
-inherit eutils
+inherit eutils flag-o-matic
DESCRIPTION="A small static UNIX Shell with readline support"
HOMEPAGE="http://www.canb.auug.org.au/~dbell/ http://dimavb.st.simbirsk.su/vlk/"
@@ -11,7 +11,7 @@ SRC_URI="http://www.canb.auug.org.au/~dbell/programs/${P}.tar.gz"
LICENSE="freedist"
SLOT="0"
IUSE="readline"
-KEYWORDS="~x86 s390"
+KEYWORDS="~x86 s390 ~ppc ~sparc ~alpha ~hppa ~mips ia64 ~ppc64"
DEPEND="virtual/glibc
>=sys-libs/zlib-1.1.4
@@ -23,7 +23,13 @@ src_unpack() {
cd ${S}
epatch ${FILESDIR}/sash-3.6-fix-includes.patch
- [ `use readline` ] && epatch ${FILESDIR}/sash-3.6-readline.patch
+ use readline && epatch ${FILESDIR}/sash-3.6-readline.patch
+
+ # this indicates broken header files but don't know what to do
+ # about it yet. (03 Mar 2004 agriffis)
+ use ia64 && append-flags -Du64=__u64 -Du32=__u32 -Ds64=__s64 -Ds32=__s32
+
+ # use our CFLAGS in the Makefile
sed -e "s:-O3:${CFLAGS}:" -i Makefile
}