blob: 157b3781997eaece6929947095cfdd9a34c3fc29 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="2"
inherit flag-o-matic eutils
MY_PN="MonetDB"
MY_P=${MY_PN}-${PV}
DESCRIPTION="fundamental libraries used in the other parts of the MonetDB/SQL suite"
HOMEPAGE="http://monetdb.cwi.nl/"
SRC_URI="http://dev.monetdb.org/downloads/sources/Oct2010-SP1/${MY_P}.tar.bz2"
RESTRICT="primaryuri"
LICENSE="MonetDBPL-1.1"
SLOT="5"
KEYWORDS="~amd64 ~x86"
IUSE="bzip2 curl debug iconv perl python zlib"
RDEPEND=">=dev-libs/libpcre-4.5
>=dev-libs/openssl-0.9.8
sys-libs/readline
python? ( >=dev-lang/python-2.4 )
perl? ( dev-lang/perl )
iconv? ( virtual/libiconv )
bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) )
zlib? ( sys-libs/zlib )
curl? ( net-misc/curl )"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"
src_configure() {
local myconf=
if use debug; then
myconf+=" --enable-strict --disable-optimize --enable-debug --enable-assert"
else
myconf+=" --disable-strict --disable-debug --disable-assert"
fi
# Deal with auto-dependencies
use python && myconf+=" $(use_with python)"
use perl && myconf+=" $(use_with perl)"
use iconv && myconf+=" $(use_with iconv)"
use bzip2 && myconf+=" $(use_with bzip2 bz2)"
use zlib && myconf+=" $(use_with zlib z)"
use curl && myconf+=" $(use_with curl)"
econf ${myconf} || die "econf"
}
src_compile() {
emake || die "emake"
}
src_install() {
emake DESTDIR="${D}" install || die "install"
# prevent binaries from being installed in wrong paths (FHS 2.3)
rm "${D}"/usr/bin/monetdb-config
dosbin conf/monetdb-config
# remove windows cruft
find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff"
}
|