summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wever <weeve@gentoo.org>2004-01-11 03:47:17 +0000
committerJason Wever <weeve@gentoo.org>2004-01-11 03:47:17 +0000
commit0c9e03eeef6440e359e6d0f299f852a1cb243cab (patch)
treeb0548d1cfe1da240edf38fc1bf9cf1a79746d09c /app-shells/esh
parentNew version (diff)
downloadhistorical-0c9e03eeef6440e359e6d0f299f852a1cb243cab.tar.gz
historical-0c9e03eeef6440e359e6d0f299f852a1cb243cab.tar.bz2
historical-0c9e03eeef6440e359e6d0f299f852a1cb243cab.zip
Added ~sparc keyword and fix to the ebuild for non-x86 arches since upstream included binary files in source tarball for some odd reason.
Diffstat (limited to 'app-shells/esh')
-rw-r--r--app-shells/esh/ChangeLog8
-rw-r--r--app-shells/esh/Manifest4
-rw-r--r--app-shells/esh/esh-0.8.5.ebuild9
3 files changed, 14 insertions, 7 deletions
diff --git a/app-shells/esh/ChangeLog b/app-shells/esh/ChangeLog
index 169780d0ac11..0381b262401c 100644
--- a/app-shells/esh/ChangeLog
+++ b/app-shells/esh/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-shells/esh
-# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/ChangeLog,v 1.7 2003/02/12 05:20:59 vapier Exp $
+# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/ChangeLog,v 1.8 2004/01/11 03:47:09 weeve Exp $
+
+ 10 Jan 2004; Jason Wever <weeve@gentoo.org> esh-0.8.5.ebuild:
+ Added ~sparc keyword and fix to the ebuild for non-x86 arches since upstream
+ included binary files in source tarball for some odd reason.
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
diff --git a/app-shells/esh/Manifest b/app-shells/esh/Manifest
index 35584b2d0c20..d5b45077f232 100644
--- a/app-shells/esh/Manifest
+++ b/app-shells/esh/Manifest
@@ -1,5 +1,5 @@
-MD5 e4d706dc58f2471ef30df78bfeddb25c ChangeLog 1171
+MD5 e5dc639f06e403c88d5778020653c326 ChangeLog 1377
MD5 4bc0f17ad0d8273290dca2b75159844f esh-0.8-r2.ebuild 947
-MD5 b2440612a4f2a9276af539edbe5bf7ac esh-0.8.5.ebuild 956
+MD5 db8953a6849e95da156a9bd14571544b esh-0.8.5.ebuild 1101
MD5 997445899c25c702dde5dcd3f0686513 files/digest-esh-0.8-r2 58
MD5 bec99ff5c3fa0239930b36a4e7d415a2 files/digest-esh-0.8.5 61
diff --git a/app-shells/esh/esh-0.8.5.ebuild b/app-shells/esh/esh-0.8.5.ebuild
index 82a4b3f97891..3017dd2c7489 100644
--- a/app-shells/esh/esh-0.8.5.ebuild
+++ b/app-shells/esh/esh-0.8.5.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/esh-0.8.5.ebuild,v 1.8 2003/02/13 09:29:06 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/esh-0.8.5.ebuild,v 1.9 2004/01/11 03:47:09 weeve Exp $
S=${WORKDIR}/esh
DESCRIPTION="A UNIX Shell with a simplified Scheme syntax"
SRC_URI="http://slon.ttk.ru/esh/${P}.tar.gz"
HOMEPAGE="http://slon.ttk.ru/esh/"
-KEYWORDS="x86 -ppc"
+KEYWORDS="x86 -ppc ~sparc"
SLOT="0"
LICENSE="GPL-2"
@@ -22,6 +22,9 @@ src_compile() {
-e "s:^LIB=:LIB=-lncurses :" \
-e "s:-ltermcap::" \
Makefile.orig > Makefile
+ # For some reason, this tarball has binary files in it for x86.
+ # So, if we're not x86, make clean first.
+ [ ! `use x86` ] && make clean
make || die
}