summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Kennedy <mkennedy@gentoo.org>2003-04-15 21:34:03 +0000
committerMatthew Kennedy <mkennedy@gentoo.org>2003-04-15 21:34:03 +0000
commit897958c4764dfc43551f069360745aaca3da8ca5 (patch)
tree1371b1ef90190c169fa218ccb22e21f4243aa87c /app-shells
parentadding some ~alpha keywords. (diff)
downloadgentoo-2-897958c4764dfc43551f069360745aaca3da8ca5.tar.gz
gentoo-2-897958c4764dfc43551f069360745aaca3da8ca5.tar.bz2
gentoo-2-897958c4764dfc43551f069360745aaca3da8ca5.zip
minor version bump
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/scsh/ChangeLog7
-rw-r--r--app-shells/scsh/files/digest-scsh-0.6.41
-rw-r--r--app-shells/scsh/scsh-0.6.4.ebuild35
3 files changed, 42 insertions, 1 deletions
diff --git a/app-shells/scsh/ChangeLog b/app-shells/scsh/ChangeLog
index f69d394a29b3..3235a226de22 100644
--- a/app-shells/scsh/ChangeLog
+++ b/app-shells/scsh/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-shells/scsh
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/scsh/ChangeLog,v 1.8 2003/03/16 05:37:15 mkennedy Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/scsh/ChangeLog,v 1.9 2003/04/15 21:34:03 mkennedy Exp $
+
+*scsh-0.6.4 (15 Apr 2003)
+
+ 15 Apr 2003; Matthew Kennedy <mkennedy@gentoo.org> scsh-0.6.4.ebuild:
+ minor version bump
*scsh-0.6.3 (15 Mar 2003)
diff --git a/app-shells/scsh/files/digest-scsh-0.6.4 b/app-shells/scsh/files/digest-scsh-0.6.4
new file mode 100644
index 000000000000..b80a6167bd61
--- /dev/null
+++ b/app-shells/scsh/files/digest-scsh-0.6.4
@@ -0,0 +1 @@
+MD5 799a2ae32552245af85245ee72fb63a3 scsh-0.6.4.tar.gz 4302231
diff --git a/app-shells/scsh/scsh-0.6.4.ebuild b/app-shells/scsh/scsh-0.6.4.ebuild
new file mode 100644
index 000000000000..3f915c3798ca
--- /dev/null
+++ b/app-shells/scsh/scsh-0.6.4.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/scsh/scsh-0.6.4.ebuild,v 1.1 2003/04/15 21:34:03 mkennedy Exp $
+
+DESCRIPTION="Unix shell embedded in Scheme"
+SRC_URI="ftp://ftp.scsh.net/pub/scsh/0.6/${P}.tar.gz"
+HOMEPAGE="http://www.scsh.net/"
+
+SLOT="0"
+LICENSE="as-is | BSD | GPL-2"
+KEYWORDS="x86 ppc sparc"
+
+IUSE=""
+DEPEND=""
+
+src_compile() {
+ econf --prefix=/usr --libdir=/usr/lib --includedir=/usr/include || die
+ make || die
+}
+
+src_install() {
+ einstall prefix=${D}/usr \
+ htmldir=${D}/usr/share/doc/${PF}/html \
+ incdir=${D}/usr/include \
+ mandir=${D}/usr/share/man/man1 \
+ libdir=${D}/usr/lib || die
+ dodoc RELEASE
+
+ # Let scsh install the documentation and then clean up afterwards
+ dosed "s:${D}::" /usr/share/man/man1/scsh.1
+ dodir /usr/share/doc/${PF}
+ find /usr/share/doc/
+ mv ${D}/usr/lib/scsh/doc/* ${D}/usr/share/doc/${PF}
+ rmdir ${D}/usr/lib/scsh/doc
+}