You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/kumofs/kumofs-0.4.13.ebuild

38 lines
1.0 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="3"
DESCRIPTION="a scalable and highly available distributed key-value store"
HOMEPAGE="https://github.com/etolabo/kumofs"
SRC_URI="mirror://github/etolabo/kumofs/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=dev-db/tokyocabinet-1.4.10
>=dev-libs/msgpack-0.3.1
dev-libs/openssl
>=dev-ruby/msgpack-0.3.1
>=dev-lang/ruby-1.8.6
sys-libs/zlib"
RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="${D}" install || die
newinitd "${FILESDIR}/kumo-gateway.initd" kumo-gateway || die
newconfd "${FILESDIR}/kumo-gateway.confd" kumo-gateway || die
newinitd "${FILESDIR}/kumo-manager.initd" kumo-manager || die
newconfd "${FILESDIR}/kumo-manager.confd" kumo-manager || die
newinitd "${FILESDIR}/kumo-server.initd" kumo-server || die
newconfd "${FILESDIR}/kumo-server.confd" kumo-server || die
keepdir /var/lib/kumofs || die
dodoc AUTHORS ChangeLog NEWS NOTICE README README.md doc/doc.*.md || die
}