diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-03-15 20:03:45 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-03-15 20:04:06 +0100 |
commit | b541b36bb6dd169f0cf0e727b6e1e4b5fd5bf1d0 (patch) | |
tree | 71cd3f2d0d23ea4aa3ff828c15f2d57fd7f3c028 /dev-libs/zookeeper-c/zookeeper-c-3.4.8.ebuild | |
parent | app-laptop/laptop-mode-tools: version bump (diff) | |
download | gentoo-b541b36bb6dd169f0cf0e727b6e1e4b5fd5bf1d0.tar.gz gentoo-b541b36bb6dd169f0cf0e727b6e1e4b5fd5bf1d0.tar.bz2 gentoo-b541b36bb6dd169f0cf0e727b6e1e4b5fd5bf1d0.zip |
dev-libs/zookeeper-c: initial import; ebuild by me
Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'dev-libs/zookeeper-c/zookeeper-c-3.4.8.ebuild')
-rw-r--r-- | dev-libs/zookeeper-c/zookeeper-c-3.4.8.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-libs/zookeeper-c/zookeeper-c-3.4.8.ebuild b/dev-libs/zookeeper-c/zookeeper-c-3.4.8.ebuild new file mode 100644 index 000000000000..c10114160eb1 --- /dev/null +++ b/dev-libs/zookeeper-c/zookeeper-c-3.4.8.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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/* +} |