summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Kennedy <mkennedy@gentoo.org>2003-03-16 05:37:31 +0000
committerMatthew Kennedy <mkennedy@gentoo.org>2003-03-16 05:37:31 +0000
commit8d46582a8468b035189fede806d64da4bbdf1510 (patch)
tree65590461489bd10da9cca07cb67dd5abb5fa1664 /app-shells/scsh
parentremoved crusty ebuilds (diff)
downloadhistorical-8d46582a8468b035189fede806d64da4bbdf1510.tar.gz
historical-8d46582a8468b035189fede806d64da4bbdf1510.tar.bz2
historical-8d46582a8468b035189fede806d64da4bbdf1510.zip
Minor version bump. Moved from /bin to /usr/bin. Documentation fix.
Diffstat (limited to 'app-shells/scsh')
-rw-r--r--app-shells/scsh/ChangeLog7
-rw-r--r--app-shells/scsh/files/digest-scsh-0.6.31
-rw-r--r--app-shells/scsh/scsh-0.6.3.ebuild36
3 files changed, 43 insertions, 1 deletions
diff --git a/app-shells/scsh/ChangeLog b/app-shells/scsh/ChangeLog
index 3680133ad8ba..f69d394a29b3 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.7 2003/02/12 05:21:23 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/scsh/ChangeLog,v 1.8 2003/03/16 05:37:15 mkennedy Exp $
+
+*scsh-0.6.3 (15 Mar 2003)
+
+ 15 Mar 2003; Matthew Kennedy <mkennedy@gentoo.org> scsh-0.6.3.ebuild:
+ Minor version bump. Moved from /bin to /usr/bin. Documentation fix.
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
diff --git a/app-shells/scsh/files/digest-scsh-0.6.3 b/app-shells/scsh/files/digest-scsh-0.6.3
new file mode 100644
index 000000000000..eb1ef1269622
--- /dev/null
+++ b/app-shells/scsh/files/digest-scsh-0.6.3
@@ -0,0 +1 @@
+MD5 ec4ebdf8dcacd54a3f1ffd0cabe536ae scsh-0.6.3.tar.gz 4362555
diff --git a/app-shells/scsh/scsh-0.6.3.ebuild b/app-shells/scsh/scsh-0.6.3.ebuild
new file mode 100644
index 000000000000..6f04a850a045
--- /dev/null
+++ b/app-shells/scsh/scsh-0.6.3.ebuild
@@ -0,0 +1,36 @@
+# 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.3.ebuild,v 1.1 2003/03/16 05:37:31 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
+}