diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-02-24 22:31:38 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-02-24 22:31:38 +0000 |
commit | efcfc320e6151fbb981df01dc7c74d46badbe889 (patch) | |
tree | 333cf4dbb8b5644a26628d1c74bfe63c5da12eb1 /app-shells/scsh | |
parent | missing ebuild (diff) | |
download | gentoo-2-efcfc320e6151fbb981df01dc7c74d46badbe889.tar.gz gentoo-2-efcfc320e6151fbb981df01dc7c74d46badbe889.tar.bz2 gentoo-2-efcfc320e6151fbb981df01dc7c74d46badbe889.zip |
Scheme Shell 0.6.0
Diffstat (limited to 'app-shells/scsh')
-rw-r--r-- | app-shells/scsh/ChangeLog | 16 | ||||
-rw-r--r-- | app-shells/scsh/files/digest-scsh-0.6.0 | 1 | ||||
-rw-r--r-- | app-shells/scsh/scsh-0.6.0.ebuild | 48 |
3 files changed, 65 insertions, 0 deletions
diff --git a/app-shells/scsh/ChangeLog b/app-shells/scsh/ChangeLog new file mode 100644 index 000000000000..83cec7fcc498 --- /dev/null +++ b/app-shells/scsh/ChangeLog @@ -0,0 +1,16 @@ +# ChangeLog for app-shells/scsh +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-shells/scsh/ChangeLog,v 1.1 2002/02/24 22:31:38 karltk Exp $ + +*scsh-0.6.0 ( 25 Feb 2002 ) + + 25 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> ChangeLog scsh-0.6.0 files/digest-scsh-0.6.0: + + Scsh is a Unix shell embedded in Scheme. It provides full access to POSIX as + well as extensions common to most Unix implementations. Scsh also features + many abstractions to ease system programming: process abstraction, + event-based interrupt handling, sophisticated I/O support and enables + concurrent system programming. + + Ebuild contributed by Matthew Kennedy <mbkennedy@ieee.org>. + diff --git a/app-shells/scsh/files/digest-scsh-0.6.0 b/app-shells/scsh/files/digest-scsh-0.6.0 new file mode 100644 index 000000000000..79ca145c501e --- /dev/null +++ b/app-shells/scsh/files/digest-scsh-0.6.0 @@ -0,0 +1 @@ +MD5 ed5a6106e436c9f35f9aed4f2b8ecb5e scsh-0.6.0.tar.gz 2356002 diff --git a/app-shells/scsh/scsh-0.6.0.ebuild b/app-shells/scsh/scsh-0.6.0.ebuild new file mode 100644 index 000000000000..a030ff40befa --- /dev/null +++ b/app-shells/scsh/scsh-0.6.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: System Team <system@gentoo.org> +# Author: Matthew Kennedy <mbkennedy@ieee.org> +# $Header: /var/cvsroot/gentoo-x86/app-shells/scsh/scsh-0.6.0.ebuild,v 1.1 2002/02/24 22:31:38 karltk Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Scsh is a Unix shell embedded in Scheme" +SRC_URI="ftp://ftp.scsh.net/pub/scsh/0.6/scsh-0.6.0.tar.gz" +HOMEPAGE="http://www.scsh.net/" + +DEPEND="virtual/glibc" + +src_compile() { + ./configure --prefix=/ --host=${CHOST} \ + --mandir=/usr/share/man \ + --libdir=/usr/lib \ + --includedir=/usr/include + make || die +} + +src_install() { + make prefix=${D} \ + htmldir=${D}/usr/share/doc/${P}/html \ + incdir=${D}/usr/include \ + libdir=${D}/usr/lib \ + mandir=${D}/usr/share/man \ + install || die + + dodoc COPYING INSTALL RELEASE + + + # Scsh doesn't have a very consistent documentation + # structure. It's possible to override the placement of the + # HTML during make install, but not the other documentation in + # TeX, DVI and PS formats. + + # Thus we let scsh install the documentation and then clean up + # afterwards. + + mv ${D}/usr/lib/scsh/doc/* ${D}/usr/share/doc/${P} + rmdir ${D}/usr/lib/scsh/doc + find ${D}/usr/share/doc/${P} \( -name \*.ps -o \ + -name \*.txt -o \ + -name \*.dvi -o \ + -name \*.tex \) \ + -print | xargs gzip +} |