diff options
author | 2006-11-23 09:44:37 +0000 | |
---|---|---|
committer | 2006-11-23 09:44:37 +0000 | |
commit | 29710b7edafe2a73aa0c5e6bf8568da2fa05112a (patch) | |
tree | 57107118c15c2ac128ef66874f65839b1af1514e /dev-lang/swi-prolog-lite/swi-prolog-lite-5.2.11.ebuild | |
parent | Stable on hppa. (diff) | |
download | historical-29710b7edafe2a73aa0c5e6bf8568da2fa05112a.tar.gz historical-29710b7edafe2a73aa0c5e6bf8568da2fa05112a.tar.bz2 historical-29710b7edafe2a73aa0c5e6bf8568da2fa05112a.zip |
Remove old and unmaintained package. dev-lang/swi-prolog-lite has been superceded by dev-lang/swi-prolog
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 | 45 |
1 files changed, 0 insertions, 45 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 deleted file mode 100644 index f0028e46e7b0..000000000000 --- a/dev-lang/swi-prolog-lite/swi-prolog-lite-5.2.11.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# 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.8 2005/09/17 03:00:23 vapier Exp $ - -inherit eutils - -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="~alpha ~amd64 ~ppc ~sparc ~x86" -IUSE="readline static threads" - -DEPEND="sys-libs/ncurses - readline? ( sys-libs/readline )" - -S=${WORKDIR}/pl-${PV} - -src_unpack() { - unpack ${A} - cd "${S}"/src - epatch "${FILESDIR}"/destdir.patch - epatch "${FILESDIR}"/${P}-parallel-build.patch - sed -i \ - -e '/COFLAGS=/s:=.*:=$CFLAGS:' \ - -e '/LDFLAGS=/s:-O3::' \ - configure || die -} - -src_compile() { - cd src - econf \ - $(use_enable readline) \ - $(use_enable !static shared) \ - $(use_enable threads mt) \ - || die "econf failed" - emake || die "make failed" -} - -src_install() { - make -C src DESTDIR="${D}" install || die - dodoc ANNOUNCE ChangeLog INSTALL INSTALL.notes PORTING README VERSION -} |