diff options
author | Patrick Lauer <patrick@gentoo.org> | 2015-05-29 02:10:04 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2015-05-29 02:10:04 +0000 |
commit | 8bba8e4323c7054643a2069e1643e83db145d3e6 (patch) | |
tree | 6eb4e239ff68da55e3030530ff7d17a978804707 /dev-db | |
parent | Bump (diff) | |
download | gentoo-2-8bba8e4323c7054643a2069e1643e83db145d3e6.tar.gz gentoo-2-8bba8e4323c7054643a2069e1643e83db145d3e6.tar.bz2 gentoo-2-8bba8e4323c7054643a2069e1643e83db145d3e6.zip |
Bump
(Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/hyperdex/ChangeLog | 7 | ||||
-rw-r--r-- | dev-db/hyperdex/hyperdex-1.7.0.ebuild | 55 |
2 files changed, 61 insertions, 1 deletions
diff --git a/dev-db/hyperdex/ChangeLog b/dev-db/hyperdex/ChangeLog index efa0ea950a37..a9c143d9e746 100644 --- a/dev-db/hyperdex/ChangeLog +++ b/dev-db/hyperdex/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-db/hyperdex # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.30 2015/01/15 06:41:51 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.31 2015/05/29 02:10:04 patrick Exp $ + +*hyperdex-1.7.0 (29 May 2015) + + 29 May 2015; Patrick Lauer <patrick@gentoo.org> +hyperdex-1.7.0.ebuild: + Bump *hyperdex-1.6.0-r1 (15 Jan 2015) diff --git a/dev-db/hyperdex/hyperdex-1.7.0.ebuild b/dev-db/hyperdex/hyperdex-1.7.0.ebuild new file mode 100644 index 000000000000..c617be423be9 --- /dev/null +++ b/dev-db/hyperdex/hyperdex-1.7.0.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/hyperdex-1.7.0.ebuild,v 1.1 2015/05/29 02:10:04 patrick Exp $ +EAPI=5 + +# Tests fail, again +RESTRICT="test" + +PYTHON_COMPAT=( python2_7) +inherit eutils python-single-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="test +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/libmacaroons + dev-libs/libtreadstone + dev-libs/json-c" +RDEPEND="${DEPEND}" + +REQUIRED_USE="test? ( python )" + +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 + use python && python-single-r1_pkg_setup +} +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! +} |