blob: 486f466123a277ed9ebc2f0fea40d36b2e7b7fe3 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-proxy/mysql-proxy-0.8.0.ebuild,v 1.1 2010/05/14 10:34:29 wschlich Exp $
EAPI=2
inherit eutils
DESCRIPTION="A Proxy for the MySQL Client/Server protocol"
HOMEPAGE="http://forge.mysql.com/wiki/MySQL_Proxy"
SRC_URI="mirror://mysql/Downloads/MySQL-Proxy/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples"
RDEPEND=">=dev-libs/libevent-1.4
>=dev-libs/glib-2.16
>=dev-lang/lua-5.1"
DEPEND="${RDEPEND}
>=virtual/mysql-5.0
dev-util/pkgconfig"
RESTRICT="test"
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 ${PN} || die
dodoc ChangeLog NEWS README
if useq examples; then
docinto examples
dodoc examples/*.lua
fi
}
pkg_postinst() {
einfo
einfo "You might want to have a look at"
einfo "http://dev.mysql.com/tech-resources/articles/proxy-gettingstarted.html"
einfo "on how to get started with MySQL Proxy."
einfo
}
|