blob: ede887b381dc455a643abce911481ba63a5225a7 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=2
inherit eutils user
DESCRIPTION="A network interface to Tokyo Cabinet"
HOMEPAGE="http://fallabs.com/tokyotyrant/"
SRC_URI="${HOMEPAGE}${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86 ~ppc-macos ~x86-macos"
IUSE="debug examples lua"
DEPEND="dev-db/tokyocabinet
sys-libs/zlib
app-arch/bzip2
lua? ( dev-lang/lua )"
RDEPEND="${DEPEND}"
pkg_setup() {
if use !prefix ; then
enewgroup tyrant
enewuser tyrant -1 -1 /var/lib/${PN} tyrant
fi
}
src_prepare() {
epatch "${FILESDIR}"/fix_makefiles-1.4.41.patch
epatch "${FILESDIR}"/fix_testsuite.patch
}
src_configure() {
econf \
$(use_enable debug) \
$(use_enable lua)
}
src_install() {
rm ttservctl || die "Install failed"
emake DESTDIR="${D}" install || die "Install failed"
for x in /var/{lib,run,log}/${PN}; do
dodir "${x}" || die "Install failed"
use prefix || fowners tyrant:tyrant "${x}"
done
if use examples; then
insinto /usr/share/${PF}/example
doins example/* || die "Install failed"
fi
dohtml doc/* || die
newinitd "${FILESDIR}/${PN}.initd" ${PN} || die "Install failed"
newconfd "${FILESDIR}/${PN}.confd" ${PN} || die "Install failed"
}
src_test() {
emake -j1 check || die "Tests failed"
}
|