blob: 5d004c8938b66d4fae97ed2ba5bcced96b33220d (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="C client interface to Zookeeper server"
HOMEPAGE="https://zookeeper.apache.org/"
SRC_URI="mirror://apache/zookeeper/zookeeper-${PV}/zookeeper-${PV}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc static-libs test"
RDEPEND=""
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
test? ( dev-util/cppunit )"
S="${WORKDIR}/zookeeper-${PV}/src/c"
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_with test cppunit)
}
src_compile() {
emake
use doc && emake doxygen-doc
}
src_install() {
default
use doc && dohtml docs/html/*
}
|