diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-02-10 08:05:41 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-02-10 08:05:41 +0000 |
commit | 12790b83975caf7210a264a337f6d47555aceaed (patch) | |
tree | fe70bc65703fb48c1cde861555a63b186ff5f080 /dev-db | |
parent | Clean masked package (diff) | |
download | gentoo-2-12790b83975caf7210a264a337f6d47555aceaed.tar.gz gentoo-2-12790b83975caf7210a264a337f6d47555aceaed.tar.bz2 gentoo-2-12790b83975caf7210a264a337f6d47555aceaed.zip |
Bump
(Portage version: 2.2.0_alpha161/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.0_rc2.ebuild | 45 |
2 files changed, 51 insertions, 1 deletions
diff --git a/dev-db/hyperdex/ChangeLog b/dev-db/hyperdex/ChangeLog index 137ce741f9b2..b0380c538eea 100644 --- a/dev-db/hyperdex/ChangeLog +++ b/dev-db/hyperdex/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-db/hyperdex # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.5 2013/01/24 06:43:50 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.6 2013/02/10 08:05:41 patrick Exp $ + +*hyperdex-1.0_rc2 (10 Feb 2013) + + 10 Feb 2013; Patrick Lauer <patrick@gentoo.org> +hyperdex-1.0_rc2.ebuild: + Bump *hyperdex-1.0_rc1 (24 Jan 2013) diff --git a/dev-db/hyperdex/hyperdex-1.0_rc2.ebuild b/dev-db/hyperdex/hyperdex-1.0_rc2.ebuild new file mode 100644 index 000000000000..c4ab459eeb6f --- /dev/null +++ b/dev-db/hyperdex/hyperdex-1.0_rc2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/hyperdex-1.0_rc2.ebuild,v 1.1 2013/02/10 08:05:41 patrick Exp $ +EAPI=4 + +PYTHON_DEPEND="2:2.6" +inherit eutils python + +DESCRIPTION="A searchable distributed Key-Value Store" + +MY_P="${P/_/.}" +S="${WORKDIR}/${MY_P}" + +HOMEPAGE="http://hyperdex.org" +SRC_URI="http://hyperdex.org/src/${MY_P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="+python" +# need to add coverage and java useflags too + +DEPEND="dev-cpp/glog + dev-libs/cityhash + dev-libs/libpo6 + dev-libs/libe + dev-libs/busybee + dev-libs/popt + dev-libs/replicant" +RDEPEND="${DEPEND}" + +pkg_setup() { + python_set_active_version 2 +} + +src_configure() { + econf \ + $(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" +} |