diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-07-22 11:23:05 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-07-22 11:23:05 +0000 |
commit | 837ab19b115817e3a5dc1dd97bd926756c94b8fb (patch) | |
tree | 77990a372bd4fb3d1d4a1ad7b6f633c841ef9a73 /dev-lisp | |
parent | Made ogg optional again, read comment in ebuild. (diff) | |
download | historical-837ab19b115817e3a5dc1dd97bd926756c94b8fb.tar.gz historical-837ab19b115817e3a5dc1dd97bd926756c94b8fb.tar.bz2 historical-837ab19b115817e3a5dc1dd97bd926756c94b8fb.zip |
Gauche 0.6; needed by gauche-gl
Diffstat (limited to 'dev-lisp')
-rw-r--r-- | dev-lisp/gauche/ChangeLog | 8 | ||||
-rw-r--r-- | dev-lisp/gauche/files/digest-gauche-0.6 | 1 | ||||
-rw-r--r-- | dev-lisp/gauche/gauche-0.6.ebuild | 35 |
3 files changed, 43 insertions, 1 deletions
diff --git a/dev-lisp/gauche/ChangeLog b/dev-lisp/gauche/ChangeLog index d018454720c7..353a04889126 100644 --- a/dev-lisp/gauche/ChangeLog +++ b/dev-lisp/gauche/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-lisp/gauche # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gauche/ChangeLog,v 1.2 2002/07/11 23:58:09 karltk Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gauche/ChangeLog,v 1.3 2002/07/22 11:23:05 karltk Exp $ + +*gauche-0.6 (19 Jul 2002) + + 19 Jul 2002; Karl Trygve Kalleberg <karltk@gentoo.org> gauche-0.6.ebuild files/digest-gauche-0.6: + + New upstream version. *gauche-0.5.7 (12 Jul 2002) diff --git a/dev-lisp/gauche/files/digest-gauche-0.6 b/dev-lisp/gauche/files/digest-gauche-0.6 new file mode 100644 index 000000000000..49de02e0c078 --- /dev/null +++ b/dev-lisp/gauche/files/digest-gauche-0.6 @@ -0,0 +1 @@ +MD5 8c330754c85fe968d0a934f636a5a86d Gauche-0.6.tgz 2302932 diff --git a/dev-lisp/gauche/gauche-0.6.ebuild b/dev-lisp/gauche/gauche-0.6.ebuild new file mode 100644 index 000000000000..b7d186f59a74 --- /dev/null +++ b/dev-lisp/gauche/gauche-0.6.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gauche/gauche-0.6.ebuild,v 1.1 2002/07/22 11:23:05 karltk Exp $ + +S=${WORKDIR}/Gauche-${PV} +DESCRIPTION="A Unix system friendly scheme interpreter" +SRC_URI="mirror://sourceforge/gauche/Gauche-${PV}.tgz" +HOMEPAGE="http://gauche.sf.net" +DEPEND="virtual/glibc" +RDEPEND="$DEPEND" +SLOT="0" +LICENSE="BSD" +KEYWORDS="x86 sparc64" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + emake || die + #make || die +} + +src_install () { +# make DESTDIR=${D} install || die + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die + dodoc COPYING INSTALL ChangeLog VERSION + doman doc/gosh.1 doc/gauche-config.1 + dodoc doc/README +} |