From 6f91d30a1950b932b65f423d242db93986dc7f67 Mon Sep 17 00:00:00 2001 From: Marcin Deranek Date: Sat, 25 Jul 2015 20:00:43 +0200 Subject: Added Kyoto Tycoon --- net-misc/kyototycoon/kyototycoon-0.9.56-r1.ebuild | 68 +++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 net-misc/kyototycoon/kyototycoon-0.9.56-r1.ebuild (limited to 'net-misc/kyototycoon/kyototycoon-0.9.56-r1.ebuild') diff --git a/net-misc/kyototycoon/kyototycoon-0.9.56-r1.ebuild b/net-misc/kyototycoon/kyototycoon-0.9.56-r1.ebuild new file mode 100644 index 0000000..8dbb384 --- /dev/null +++ b/net-misc/kyototycoon/kyototycoon-0.9.56-r1.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit eutils user + +DESCRIPTION="A andy cache/storage server" +HOMEPAGE="http://fallabs.com/kyototycoon/" +SRC_URI="${HOMEPAGE}pkg/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug doc examples lua" + +DEPEND=">=dev-db/kyotocabinet-1.2.65 + sys-libs/zlib + app-arch/bzip2 + lua? ( dev-lang/lua )" +RDEPEND="${DEPEND}" + +pkg_setup() { + if use !prefix ; then + enewgroup tycoon + enewuser tycoon -1 -1 /var/lib/${PN} tycoon + fi +} + +src_prepare() { + epatch "${FILESDIR}/remove_docinst.patch" + epatch "${FILESDIR}/fix_compile.patch" + epatch_user +} + +src_configure() { + econf \ + $(use_enable debug) \ + $(use_enable lua) +} + +src_test() { + emake -j1 check +} + +src_install() { + emake DESTDIR="${D}" install + + for x in /var/{lib,log}/${PN}; do + dodir "${x}" + use prefix || fowners tycoon:tycoon "${x}" + done + + if use examples; then + insinto /usr/share/${PF}/example + doins example/* + fi + + if use doc; then + dohtml -r doc/* + fi + + dodoc ChangeLog COPYING README + + newinitd "${FILESDIR}/${PN}.initd" ${PN} + newconfd "${FILESDIR}/${PN}.confd" ${PN} +} -- cgit v1.2.3