summaryrefslogtreecommitdiff
blob: e28b523cf3f6998d0ef355b3824b505e9464a73b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# 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.8.ebuild,v 1.4 2005/02/19 20:36:35 weeve 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 || die "econf failed"
	MAKEOPTS="-j1" emake || die "make failed"
}

src_install() {
	cd ${S}/src
	einstall

	cd ${S}
	dodoc ANNOUNCE ChangeLog INSTALL INSTALL.notes PORTING README VERSION
}