blob: 64f4757af40924ab573047b0bab5c95166f8be96 (
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
41
42
43
44
45
|
# 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.3.14.ebuild,v 1.6 2005/09/17 03:05:04 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/BETA/pl-${PV}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ppc-macos ~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
}
|