blob: 18899b0b08d45c72da2fab11fef8831fc25a0b60 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild,v 1.2 2012/03/01 12:16:02 djc Exp $
EAPI=2
inherit multilib toolchain-funcs flag-o-matic eutils
DESCRIPTION="DBI module for Lua"
HOMEPAGE="http://code.google.com/p/luadbi/"
SRC_URI="http://luadbi.googlecode.com/files/${PN}.${PV}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="mysql postgres sqlite"
RDEPEND=">=dev-lang/lua-5.1
mysql? ( virtual/mysql )
postgres? ( dev-db/postgresql-base )
sqlite? ( >=dev-db/sqlite-3 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S="${WORKDIR}"
src_prepare() {
epatch "${FILESDIR}/${PV}-Makefile.patch"
epatch "${FILESDIR}/${PV}-postgres-path.patch"
sed -i -e "s#^INSTALL_DIR_LUA=.*#INSTALL_DIR_LUA=$(pkg-config --variable INSTALL_LMOD lua)#" "${S}/Makefile"
sed -i -e "s#^INSTALL_DIR_BIN=.*#INSTALL_DIR_BIN=$(pkg-config --variable INSTALL_CMOD lua)#" "${S}/Makefile"
sed -i -e "s#^LUA_INC_DIR=.*#LUA_INC_DIR=$(pkg-config --variable INSTALL_INC lua)#" "${S}/Makefile"
sed -i -e "s#^LUA_LIB_DIR=.*#LUA_LIB_DIR=$(pkg-config --variable INSTALL_LIB lua)#" "${S}/Makefile"
sed -i -e "s#^LUA_LIB =.*#LUA_LIB=lua#" "${S}/Makefile"
}
src_compile() {
local drivers=""
use mysql && drivers="${drivers} mysql"
use postgres && drivers="${drivers} psql"
use sqlite && drivers="${drivers} sqlite3"
if [ -z "${drivers// /}" ] ; then
eerror
eerror "No driver was selected, cannot build."
eerror "Please set USE flags to build any driver."
eerror "Possible USE flags: mysql postgres sqlite"
eerror
die "No driver selected"
fi
append-flags -fPIC -c
for driver in "${drivers}" ; do
emake ${driver} \
|| die "Compiling driver '${drivers// /}' failed"
done
}
src_install() {
local drivers=""
use mysql && drivers="${drivers} mysql"
use postgres && drivers="${drivers} psql"
use sqlite && drivers="${drivers} sqlite3"
for driver in ${drivers} ; do
emake DESTDIR="${D}" "install_${driver// /}" \
|| die "Install of driver '${drivers// /}' failed"
done
}
|