diff options
Diffstat (limited to 'dev-lisp/abcl-cvs/abcl-cvs-0.ebuild')
-rw-r--r-- | dev-lisp/abcl-cvs/abcl-cvs-0.ebuild | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/dev-lisp/abcl-cvs/abcl-cvs-0.ebuild b/dev-lisp/abcl-cvs/abcl-cvs-0.ebuild index f1a4d590ddf2..e562afccc937 100644 --- a/dev-lisp/abcl-cvs/abcl-cvs-0.ebuild +++ b/dev-lisp/abcl-cvs/abcl-cvs-0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/abcl-cvs/abcl-cvs-0.ebuild,v 1.1 2005/06/10 15:26:53 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/abcl-cvs/abcl-cvs-0.ebuild,v 1.2 2005/06/20 21:15:30 mkennedy Exp $ ECVS_SERVER="cvs.sourceforge.net:/cvsroot/armedbear-j" if [ -z "${ECVS_BRANCH}" ]; then @@ -11,7 +11,7 @@ ECVS_USER="anonymous" ECVS_PASS="" ECVS_CVS_OPTIONS="-dP" -inherit cvs java-pkg +inherit cvs java-pkg eutils DESCRIPTION="Armed Bear Common Lisp is a Common Lisp implementation for the JVM." HOMEPAGE="http://armedbear-j.sourceforge.net/" @@ -19,7 +19,7 @@ SRC_URI="" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" -IUSE="" +IUSE="debug libabcl jpty" DEPEND="virtual/jdk" @@ -27,7 +27,11 @@ S=${WORKDIR}/${ECVS_MODULE} src_compile() { chmod +x ${S}/{configure,mkinstalldirs} - econf --with-jdk=`java-config -O` || die + econf --with-jdk=`java-config -O` \ + `use_enable debug debug` \ + `use_enable libabcl libabcl` \ + `use_enable jpty jpty` \ + || die make || die } @@ -38,4 +42,11 @@ src_install() { insinto /usr/share/j doins -r themes dobin ${FILESDIR}/{abcl,j} + if use jpty; then + dobin src/jpty/jpty + fi + if use libabcl; then + exeinto /usr/$(get_libdir)/abcl + doexe src/org/armedbear/lisp/libabcl.so + fi } |