blob: bbad6907efaeb88bcff7dca0c988bae1ede5496e (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog/swi-prolog-5.6.47.ebuild,v 1.1 2007/11/21 08:18:52 keri Exp $
inherit eutils flag-o-matic java-pkg-opt-2
PATCHSET_VER="0"
DESCRIPTION="free, small, and standard compliant Prolog compiler"
HOMEPAGE="http://www.swi-prolog.org/"
SRC_URI="http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/pl-${PV}.tar.gz
mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE="berkdb debug doc gmp hardened java minimal odbc readline ssl static latex threads zlib X"
DEPEND="!dev-lang/swi-prolog-lite
sys-libs/ncurses
zlib? ( sys-libs/zlib )
odbc? ( dev-db/unixODBC )
berkdb? ( sys-libs/db )
readline? ( sys-libs/readline )
gmp? ( dev-libs/gmp )
ssl? ( dev-libs/openssl )
java? ( >=virtual/jdk-1.4
dev-java/junit )
X? (
media-libs/jpeg
x11-libs/libX11
x11-libs/libXft
x11-libs/libXpm
x11-libs/libXt
x11-libs/libICE
x11-libs/libSM
x11-proto/xproto )"
S="${WORKDIR}/pl-${PV}"
src_unpack() {
unpack ${A}
cd "${S}"
EPATCH_FORCE=yes
EPATCH_SUFFIX=patch
epatch "${WORKDIR}"/${PV}
}
src_compile() {
einfo "Building SWI-Prolog compiler"
use hardened && append-flags -fno-unit-at-a-time
use debug && append-flags -DO_DEBUG
local threadconf
if use java && ! use minimal || use threads ; then
threadconf="--enable-mt"
else
threadconf="--disable-mt"
fi
cd "${S}"/src
econf \
--libdir=/usr/$(get_libdir) \
${threadconf} \
$(use_enable gmp) \
$(use_enable readline) \
$(use_enable !static shared) \
--disable-custom-flags \
|| die "econf failed"
emake || die "emake failed"
if ! use minimal ; then
einfo "Building SWI-Prolog additional packages"
cd "${S}/packages"
econf \
--libdir=/usr/$(get_libdir) \
${threadconf} \
$(use_enable !static shared) \
--without-C-sicstus \
--with-chr \
--with-clib \
--with-clpqr \
--with-cpp \
--with-cppproxy \
$(use_with berkdb db) \
--with-http \
--without-jasmine \
$(use_with java jpl) \
$(use_with latex ltx2htm) \
--with-nlp \
$(use_with odbc) \
--with-pldoc \
--with-plunit \
--with-semweb \
--with-sgml \
--with-sgml/RDF \
$(use_with ssl) \
--with-table \
$(use_with X xpce) \
$(use_with zlib) \
|| die "packages econf failed"
emake || die "packages emake failed"
fi
}
src_install() {
emake -C src DESTDIR="${D}" install || die "install src failed"
if ! use minimal ; then
emake -C packages DESTDIR="${D}" install || die "install packages failed"
if use doc ; then
emake -C packages DESTDIR="${D}" html-install || die "html-install failed"
emake -C packages/cppproxy DESTDIR="${D}" install-examples || die "install-examples failed"
fi
fi
dodoc ANNOUNCE ChangeLog INSTALL INSTALL.notes PORTING README README.GUI VERSION
}
src_test() {
cd "${S}/src"
emake check || die "make check failed. See above for details."
if ! use minimal ; then
cd "${S}/packages"
emake check || die "make check failed. See above for details."
fi
}
|