diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-03-06 06:05:34 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-03-06 06:05:34 +0000 |
commit | 5f8ec88fd90caf83853b8b5857fdf138ae75ad24 (patch) | |
tree | 3ff649abcd01e5f57a32beffa4fce1f21195d2f6 /dev-util/guile | |
parent | *** empty log message *** (diff) | |
download | historical-5f8ec88fd90caf83853b8b5857fdf138ae75ad24.tar.gz historical-5f8ec88fd90caf83853b8b5857fdf138ae75ad24.tar.bz2 historical-5f8ec88fd90caf83853b8b5857fdf138ae75ad24.zip |
Updates
Diffstat (limited to 'dev-util/guile')
-rw-r--r-- | dev-util/guile/guile-1.4-r3.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dev-util/guile/guile-1.4-r3.ebuild b/dev-util/guile/guile-1.4-r3.ebuild new file mode 100644 index 000000000000..a52984f319d7 --- /dev/null +++ b/dev-util/guile/guile-1.4-r3.ebuild @@ -0,0 +1,41 @@ +# 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-util/guile/guile-1.4-r3.ebuild,v 1.1 2001/03/06 06:05:34 achim Exp $ + +P=guile-1.4 +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Guile is an interpreter for Scheme" +SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/guile/${A} + ftp://prep.ai.mit.edu/gnu/guile/${A}" +HOMEPAGE="http://www.gnu.org/software/guile/" + +DEPEND="virtual/glibc + >=sys-libs/ncurses-5.1 + >=sys-libs/readline-4.1" + + +src_unpack() { + + unpack ${A} + cd ${S} + cp ${FILESDIR}/net_db.c libguile/ + +} + +src_compile() { + cd ${S} + try ./configure --host=${CHOST} --prefix=/usr --infodir=/usr/share/info --with-threads --with-modules + try make +} + +src_install() { + cd ${S} + try make prefix=${D}/usr infodir=${D}/usr/share/info install + dodoc AUTHORS COPYING ChangeLog GUILE-VERSION HACKING NEWS README SNAPSHOTS THANKS +} + + + + |