summaryrefslogtreecommitdiff
blob: 16c26baf1648e19ef5f2e6a8e4c9d8745b5dc3de (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
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI="2"

inherit flag-o-matic

MY_PN="MonetDB5-server"
MY_P=${MY_PN}-${PV}

DESCRIPTION="MonetDB's MAL-based server. This can be used with and is recommended for SQL."
HOMEPAGE="http://monetdb.cwi.nl/"
SRC_URI="http://dev.monetdb.org/downloads/sources/Oct2010/${MY_P}.tar.bz2"
RESTRICT="primaryuri"

LICENSE="MonetDBPL-1.1"
SLOT="5"
KEYWORDS="~amd64 ~x86"
IUSE="bzip2 curl debug iconv rdf xml zlib"

RDEPEND=">=dev-libs/libpcre-4.5
	>=dev-libs/openssl-0.9.8
	sys-libs/readline
	curl? ( net-misc/curl )
	iconv? ( virtual/libiconv )
	bzip2? ( || ( app-arch/bzip2 app-arch/pbzip2 ) )
	zlib? ( sys-libs/zlib )
	rdf? ( >=media-libs/raptor-1.4.16 )
	xml? ( dev-libs/libxml2 )
	>=dev-db/monetdb-common-1.40.1
	>=dev-db/monetdb-client-1.40.1"
DEPEND="${RDEPEND}"

S="${WORKDIR}/${MY_P}"

pkg_setup() {
	enewgroup monetdb 61 || die "problem adding 'monetdb' group"
	enewuser monetdb 61 -1 /dev/null monetdb || die "problem adding 'monetdb' user"
}

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 curl    && myconf+=" $(use_with curl)"
	use iconv   && myconf+=" $(use_with iconv)"
	use bzip2   && myconf+=" $(use_with bzip2 bz2)"
	use zlib    && myconf+=" $(use_with zlib z)"
	use xml     && myconf+=" $(use_with xml libxml2)"
	use rdf     && myconf+=" $(use_with rdf raptor)"

	econf ${myconf} || die "econf"
}

src_compile() {
	emake || die "emake"
}

src_install() {
	emake DESTDIR="${D}" install || die "install"

	# set proper ACL
	chown -R monetdb:monetdb "${D}"/var/lib/MonetDB5
	chmod -R 0750 "${D}"/var/lib/MonetDB5
	keepdir /var/lib/MonetDB5/dbfarm

	# prevent binaries from being installed in wrong paths (FHS 2.3)
	rm "${D}"/usr/bin/monetdb5-config
	dosbin conf/monetdb5-config

	# rewrites to match FHS-2.3
	dosed "s:/var/lib/log:/var/log:g" /etc/monetdb5.conf
	dosed "s:/var/lib/run:/var/run:g" /etc/monetdb5.conf
	fowners monetdb:monetdb /etc/monetdb5.conf
	fperms 0644 /etc/monetdb5.conf

	# directory moves to match FHS-2.3
	mv "${D}"/var/lib/log "${D}"/var/log
	mv "${D}"/var/lib/run "${D}"/var/run
	chown -R monetdb:root "${D}"/var/run/MonetDB
	chmod -R 0755 "${D}"/var/run/MonetDB
	chown -R monetdb:monetdb "${D}"/var/log/MonetDB
	chmod -R 0750 "${D}"/var/log/MonetDB

	# remove windows cruft
	find "${D}" -name "*.bat" -exec rm "{}" \; || die "removing windows stuff"
}