diff options
author | Patrick Lauer <patrick@gentoo.org> | 2014-07-11 02:56:11 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2014-07-11 02:56:11 +0000 |
commit | 3c85c81f55b12fe313f53599f214886b9268bf50 (patch) | |
tree | df965c96897488f3545ac6883f18e5af517cab5a /dev-db/hyperdex/hyperdex-1.3.1.ebuild | |
parent | Bump (diff) | |
download | gentoo-2-3c85c81f55b12fe313f53599f214886b9268bf50.tar.gz gentoo-2-3c85c81f55b12fe313f53599f214886b9268bf50.tar.bz2 gentoo-2-3c85c81f55b12fe313f53599f214886b9268bf50.zip |
Bump
(Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-db/hyperdex/hyperdex-1.3.1.ebuild')
-rw-r--r-- | dev-db/hyperdex/hyperdex-1.3.1.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-db/hyperdex/hyperdex-1.3.1.ebuild b/dev-db/hyperdex/hyperdex-1.3.1.ebuild new file mode 100644 index 000000000000..b1dc2ee51ad4 --- /dev/null +++ b/dev-db/hyperdex/hyperdex-1.3.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/hyperdex-1.3.1.ebuild,v 1.1 2014/07/11 02:56:11 patrick Exp $ +EAPI=5 + +PYTHON_COMPAT=( python2_7) +inherit eutils python-r1 autotools + +DESCRIPTION="A searchable distributed Key-Value Store" + +HOMEPAGE="http://hyperdex.org" +SRC_URI="http://hyperdex.org/src/${P}.tar.gz + http://dev.gentooexperimental.org/~patrick/autotools-java.tar" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="+python" +# need to add ruby and java useflags too + +DEPEND="dev-cpp/glog + dev-cpp/sparsehash + dev-libs/cityhash + dev-libs/libpo6 + dev-libs/libe + dev-libs/busybee + dev-libs/popt + dev-libs/replicant + dev-libs/json-c" +RDEPEND="${DEPEND}" + +src_prepare() { + cp "${WORKDIR}/"*.m4 m4/ + sed -i -e 's~json/json.h~json-c/json.h~' configure.ac common/datatype_document.cc daemon/index_document.cc || die "Blergh!" + eautoreconf +} +src_configure() { + econf --disable-static \ + $(use_enable python python-bindings) +} + +src_install() { + emake DESTDIR="${D}" install || die "Failed to install" + newinitd "${FILESDIR}/hyperdex.initd" hyperdex || die "Failed to install init script" + newconfd "${FILESDIR}/hyperdex.confd" hyperdex || die "Failed to install config file" + find "${D}" -name '*.la' -exec rm {} \; # bad buildsystem! bad! +} |