diff options
author | George Shapovalov <george@gentoo.org> | 2004-01-10 06:26:25 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2004-01-10 06:26:25 +0000 |
commit | 666590b5b3b24c3391fecd09dbb759d5a0e69e6a (patch) | |
tree | c94f750cb1001bdea256943357fd9b10647053de /dev-lang/swi-prolog-lite/swi-prolog-lite-5.2.11.ebuild | |
parent | Added ~amd64. (diff) | |
download | gentoo-2-666590b5b3b24c3391fecd09dbb759d5a0e69e6a.tar.gz gentoo-2-666590b5b3b24c3391fecd09dbb759d5a0e69e6a.tar.bz2 gentoo-2-666590b5b3b24c3391fecd09dbb759d5a0e69e6a.zip |
another update
Diffstat (limited to 'dev-lang/swi-prolog-lite/swi-prolog-lite-5.2.11.ebuild')
-rw-r--r-- | dev-lang/swi-prolog-lite/swi-prolog-lite-5.2.11.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-lang/swi-prolog-lite/swi-prolog-lite-5.2.11.ebuild b/dev-lang/swi-prolog-lite/swi-prolog-lite-5.2.11.ebuild new file mode 100644 index 000000000000..bee6d7563be9 --- /dev/null +++ b/dev-lang/swi-prolog-lite/swi-prolog-lite-5.2.11.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog-lite/swi-prolog-lite-5.2.11.ebuild,v 1.1 2004/01/10 06:26:15 george Exp $ + +IUSE="readline static" + +S="${WORKDIR}/pl-${PV}" +DESCRIPTION="free, small, and standard compliant Prolog compiler" +HOMEPAGE="http://www.swi-prolog.org/" +SRC_URI="http://www.swi.psy.uva.nl/cgi-bin/nph-download/SWI-Prolog/pl-${PV}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="sys-libs/ncurses + sys-apps/gawk + sys-apps/sed + sys-devel/binutils + readline? ( sys-libs/readline )" + +src_compile() { + cd ${S}/src + #S="${S}/src" + + local myconf + use readline || myconf="${myconf} --disable-readline" + use static && myconf="${myconf} --disable-shared" + + econf ${myconf} --enable-mt + MAKEOPTS="-j1" emake || die "make failed" +} + +src_install() { + cd ${S}/src + einstall + + cd ${S} + dodoc ANNOUNCE ChangeLog INSTALL INSTALL.notes PORTING README VERSION +} |