diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2001-12-01 20:26:34 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2001-12-01 20:26:34 +0000 |
commit | 1386a9a59938d06866deabe90ffedf4503cef4b3 (patch) | |
tree | bc34d82fe9fe996aae0e0cb8551acb5b9357c2d4 /dev-libs/slib/slib-2.4.2.ebuild | |
parent | fam added (diff) | |
download | gentoo-2-1386a9a59938d06866deabe90ffedf4503cef4b3.tar.gz gentoo-2-1386a9a59938d06866deabe90ffedf4503cef4b3.tar.bz2 gentoo-2-1386a9a59938d06866deabe90ffedf4503cef4b3.zip |
new version
Diffstat (limited to 'dev-libs/slib/slib-2.4.2.ebuild')
-rw-r--r-- | dev-libs/slib/slib-2.4.2.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-libs/slib/slib-2.4.2.ebuild b/dev-libs/slib/slib-2.4.2.ebuild new file mode 100644 index 000000000000..7bf9821ed4d3 --- /dev/null +++ b/dev-libs/slib/slib-2.4.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-libs/slib/slib-2.4.2.ebuild,v 1.1 2001/12/01 20:26:34 azarah Exp $ + +P=slib2d2 +S=${WORKDIR}/slib +DESCRIPTION="SLIB is a library providing functions for Scheme implementations." +SRC_URI="http://swissnet.ai.mit.edu/ftpdir/scm/${P}.zip" +HOMEPAGE="http://swissnet.ai.mit.edu/~jaffer/SLIB.html" + +RDEPEND=">=dev-util/guile-1.4" + +DEPEND="${RDEPEND} + >=app-arch/unzip-5.21 + >=dev-util/guile-1.4" + + +src_install () { + + insinto /usr/share/guile/site/slib + doins *.scm + dodoc ANNOUNCE ChangeLog FAQ README + doinfo slib.info +} + +pkg_postinst () { + + if [ "${ROOT}" == "/" ] + then + echo "Installing..." + guile -c "(use-modules (ice-9 slib)) (require 'new-catalog)" "/" + fi +} |