forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysql-proxy-0.8.2-r1.ebuild
51 lines (45 loc) · 1.24 KB
/
mysql-proxy-0.8.2-r1.ebuild
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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils versionator
MY_PV=$(get_version_component_range 1-2)
DESCRIPTION="A Proxy for the MySQL Client/Server protocol"
HOMEPAGE="http://dev.mysql.com/doc/mysql-proxy/en/"
SRC_URI="https://launchpad.net/${PN}/${MY_PV}/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples"
RDEPEND=">=dev-libs/libevent-2.1
>=dev-libs/glib-2.16
>=dev-lang/lua-5.1:0"
DEPEND="${RDEPEND}
>=virtual/mysql-5.0
virtual/pkgconfig"
src_prepare() {
sed -i \
-e 's|_EVENT_VERSION|LIBEVENT_VERSION|g' \
src/chassis-mainloop.c || die
}
src_configure() {
econf \
--includedir=/usr/include/${PN} \
--with-mysql \
--with-lua \
|| die "econf failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
newconfd "${FILESDIR}"/${PN}.confd-0.8.0-r1 ${PN} || die
dodoc ChangeLog NEWS README
if use examples; then
docinto examples
dodoc examples/*.lua || die
dodoc lib/*.lua || die
fi
# mysql-proxy will refuse to start unless the config file is at most 0660.
insinto /etc/mysql
insopts -m0660
doins "${FILESDIR}"/${PN}.cnf || die
}