blob: 1ed8613962f6d8029f40d369ce4f92c2e580c002 (
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/drizzle/drizzle-2010.03.1347.ebuild,v 1.1 2010/03/19 13:49:46 flameeyes Exp $
EAPI=2
inherit flag-o-matic libtool autotools eutils
DESCRIPTION="Database optimized for Cloud and Net applications"
HOMEPAGE="http://drizzle.org"
SRC_URI="http://launchpad.net/drizzle/cherry/2010-03-15/+download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
# don't add an ssl USE flag here, since it's not ssl support that
# we're to use, but rather MD5 support
IUSE="debug tcmalloc doc memcache curl pam gearman gnutls openssl"
# upstream bug #499911
RESTRICT="memcache? ( test ) !curl? ( test )"
RDEPEND="tcmalloc? ( dev-util/google-perftools )
dev-db/libdrizzle
sys-libs/readline
sys-apps/util-linux
dev-libs/libpcre
dev-libs/libevent
dev-libs/protobuf
gearman? ( sys-cluster/gearmand )
pam? ( sys-libs/pam )
curl? ( net-misc/curl )
gnutls? ( net-libs/gnutls )
memcache? ( dev-libs/libmemcached )"
DEPEND="${RDEPEND}
dev-util/gperf
doc? ( app-doc/doxygen )"
RDEPEND="${RDEPEND}
curl? (
gnutls? ( || ( net-misc/curl[-ssl] net-misc/curl[gnutls] ) )
openssl? ( net-misc/curl[-gnutls,-nss] )
)"
# The dependencies related to the curl, gnutls and openssl USE flag
# are overly complicated, but are needed this way. The gnutls and
# openssl USE flag here are to choose the implementation of the MD5
# interface to use, rather than the provider of SSL-layer
# functions. Unfortunately since curl is a dependency and that can use
# either for its SSL support, we have to be wary of the possibility of
# the two libraries to be loaded together (which would create a very
# bad situation!), so we force the choice to be the same across the two.
# See upstream bg for the whole shebang:
# https://bugs.launchpad.net/drizzle/+bug/499958
pkg_setup() {
elog "This is a work-in-progress ebuild, some features will require"
elog "manual configuration and others aren't fleshed out just yet."
elog "Use it at your risk."
if use gnutls && use openssl; then
eerror "You cannot use both GnuTLS and OpenSSL at the same time"
eerror "to provide the MD5 plugin. Please choose only one USE flag"
eerror "between gnutls and openssl."
die "Both gnutls and openssl USE flags enabled."
fi
enewuser drizzle -1 -1 /dev/null nogroup
}
src_prepare() {
epatch "${FILESDIR}/${PN}-2009.12.1240-nolint.patch"
AT_M4DIR="m4" eautoreconf
elibtoolize
}
src_configure() {
local myconf=
if use debug; then
append-flags -DDEBUG
fi
if use gnutls; then
myconf="${myconf} --with-md5-plugin"
export ac_cv_libcrypto=no
elif use openssl; then
myconf="${myconf} --with-md5-plugin"
export ac_cv_libgnutls_openssl=no
else
myconf="${myconf} --without-md5-plugin"
fi
econf \
--disable-static \
--disable-dependency-tracking \
--disable-mtmalloc \
$(use_enable tcmalloc) \
$(use_enable memcache libmemcached) \
$(use_enable gearman libgearman) \
$(use_with curl auth-http-plugin) \
$(use_with pam auth-pam-plugin) \
--without-hello-world-plugin \
${myconf}
}
src_compile() {
emake || die "build failed"
if use doc; then
emake doxygen || die "doxygen failed"
fi
}
src_test() {
# Explicitly allow parallel make check
emake check || die "tests failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS NEWS README || die
find "${D}" -name '*.la' -delete || die
if use doc; then
docinto apidoc
pushd docs/html
dohtml -r .
popd
fi
newinitd "${FILESDIR}"/drizzle.init.d drizzled || die
newconfd "${FILESDIR}"/drizzle.conf.d drizzled || die
if ! use gearman; then
sed -i -e '/need gearmand/d' "${D}"/etc/init.d/drizzled \
|| die "unable to sed init script (gearman)"
fi
if ! use memcache; then
sed -i -e '/need memcached/d' "${D}"/etc/init.d/drizzled \
|| die "unable to sed init script (memcache)"
fi
keepdir /var/run/drizzle || die
keepdir /var/log/drizzle || die
keepdir /var/lib/drizzle/drizzled || die
keepdir /etc/drizzle || die
fperms 0755 /var/run/drizzle || die
fperms 0755 /var/log/drizzle || die
fperms -R 0700 /var/lib/drizzle || die
fowners drizzle:nogroup /var/run/drizzle || die
fowners drizzle:nogroup /var/log/drizzle || die
fowners -R drizzle:nogroup /var/lib/drizzle || die
}
pkg_postinst() {
if use pam; then
ewarn "Be warned that we're still lacking a pam configuration"
ewarn "file so the PAM authentication will not work by default"
fi
}
|