From 02e859783b7a0a48488bcd575f9347d65637334f Mon Sep 17 00:00:00 2001 From: Karl Trygve Kalleberg Date: Fri, 16 Aug 2002 14:35:06 +0000 Subject: Fixes #6408. --- dev-lisp/bigloo/bigloo-2.5a.ebuild | 70 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 dev-lisp/bigloo/bigloo-2.5a.ebuild (limited to 'dev-lisp/bigloo/bigloo-2.5a.ebuild') diff --git a/dev-lisp/bigloo/bigloo-2.5a.ebuild b/dev-lisp/bigloo/bigloo-2.5a.ebuild new file mode 100644 index 000000000000..c69bc0cf4459 --- /dev/null +++ b/dev-lisp/bigloo/bigloo-2.5a.ebuild @@ -0,0 +1,70 @@ +# 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/bigloo/bigloo-2.5a.ebuild,v 1.1 2002/08/16 14:35:06 karltk Exp $ + +S=${WORKDIR}/${PN}${PV} +DESCRIPTION="Bigloo Scheme compiler for x86, sparc, alpha, ppc and JVM" +SRC_URI="ftp://ftp-sop.inria.fr/mimosa/fp/Bigloo/bigloo${PV}.tar.gz" +HOMEPAGE="http://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html" +DEPEND="" +#RDEPEND="" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +src_compile() { + local myconf + local myjava=`java-config --java` + local myjavac=`java-config --javac` + + use java && + myconf="--jvm=force --java=$myjava --javac=$myjavac" \ + || myconf="--jvm=no" + + + ./configure \ + --native=yes \ + --cflags="${CFLAGS}" \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man/man1 \ + --docdir=/usr/share/doc/${PV} \ + $myconf || die "./configure failed" + + cp Makefile.config Makefile.config.orig + sed "s/JCFLAGS=-O/JCFLAGS=/" \ + < Makefile.config.orig \ + > Makefile.config + echo LD_LIBRARY_PATH=${S}/lib/${PV} >> Makefile.config + + cp bde/Makefile bde/Makefile.orig + sed "s/\$(BOOTBINDIR)\/afile jas/LD_LIBRARY_PATH=\$(LD_LIBRARY_PATH) \$(BOOTBINDIR)\/afile jas/" \ + < bde/Makefile.orig \ + > bde/Makefile + + cp Makefile.config Makefile.config.fixed + + make || die +} + +src_install () { + dodir /usr/bin + dodir /usr/lib + dodir /usr/share/doc/${PF} + dodir /usr/share/man/man1 + dodir /usr/share/info + + sed \ + -e "s:^BINDIR=\(.*\):BINDIR=${D}\1:" \ + -e "s:^LIBDIR=\(.*\):LIBDIR=${D}\1:" \ + -e "s:^MANDIR=\(.*\):MANDIR=${D}\1:" \ + -e "s:^INFODIR=\(.*\):INFODIR=${D}\1:" \ + -e "s:^DOCDIR=\(.*\):DOCDIR=${D}\1:" \ + < Makefile.config.fixed \ + > Makefile.config + + dodir /etc/env.d + echo "LDPATH=/usr/lib/bigloo/${PV}/" \ + > ${D}/etc/env.d/25bigloo + make install || die +} -- cgit v1.2.3-65-gdbad