diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-11-21 10:30:07 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-11-21 10:30:07 +0000 |
commit | ebb886197325cba1e3e93cfb878929d1cd4b6f5c (patch) | |
tree | 764e27300c82f63a773f801be011fbe4c95ee132 /dev-libs/slib | |
parent | This is the /etc/pam.d file necessary for sudo. Missed commiting it (diff) | |
download | gentoo-2-ebb886197325cba1e3e93cfb878929d1cd4b6f5c.tar.gz gentoo-2-ebb886197325cba1e3e93cfb878929d1cd4b6f5c.tar.bz2 gentoo-2-ebb886197325cba1e3e93cfb878929d1cd4b6f5c.zip |
*** empty log message ***
Diffstat (limited to 'dev-libs/slib')
-rw-r--r-- | dev-libs/slib/files/digest-slib-2.3.8-r2 | 1 | ||||
-rw-r--r-- | dev-libs/slib/slib-2.3.8-r2.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-libs/slib/files/digest-slib-2.3.8-r2 b/dev-libs/slib/files/digest-slib-2.3.8-r2 new file mode 100644 index 000000000000..5cc6ed134490 --- /dev/null +++ b/dev-libs/slib/files/digest-slib-2.3.8-r2 @@ -0,0 +1 @@ +MD5 26d74cbbaea3be998ff639c4429dbacb slib2c8.zip diff --git a/dev-libs/slib/slib-2.3.8-r2.ebuild b/dev-libs/slib/slib-2.3.8-r2.ebuild new file mode 100644 index 000000000000..7e9d00bf9bd6 --- /dev/null +++ b/dev-libs/slib/slib-2.3.8-r2.ebuild @@ -0,0 +1,32 @@ +# 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.3.8-r2.ebuild,v 1.1 2000/11/21 10:28:29 achim Exp $ + +P=slib2c8 +A=${P}.zip +S=${WORKDIR}/slib +DESCRIPTION="" +SRC_URI="http://swissnet.ai.mit.edu/ftpdir/scm/${A}" +HOMEPAGE="http://swissnet.ai.mit.edu/~jaffer/SLIB.html" + +DEPEND=">=app-arch/unzip-5.21 + >=dev-util/guile-1.4" + +src_install () { + + cd ${S} + 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 +} + |