diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-04-15 06:35:43 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-04-15 06:35:43 +0000 |
commit | 427d6a82d33ff515fd2c00d972d0c271d2a2df2b (patch) | |
tree | 06f2d4541ca87ea7fef1102da2d8de1f9fb8bf48 /dev-db | |
parent | Bump (diff) | |
download | gentoo-2-427d6a82d33ff515fd2c00d972d0c271d2a2df2b.tar.gz gentoo-2-427d6a82d33ff515fd2c00d972d0c271d2a2df2b.tar.bz2 gentoo-2-427d6a82d33ff515fd2c00d972d0c271d2a2df2b.zip |
Bump
(Portage version: 2.2.0_alpha173/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_rc4.ebuild | 46 |
2 files changed, 52 insertions, 1 deletions
diff --git a/dev-db/hyperdex/ChangeLog b/dev-db/hyperdex/ChangeLog index 5d6574eb1804..5e3ab95a3d60 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.7 2013/02/25 05:48:39 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.8 2013/04/15 06:35:43 patrick Exp $ + +*hyperdex-1.0_rc4 (15 Apr 2013) + + 15 Apr 2013; Patrick Lauer <patrick@gentoo.org> +hyperdex-1.0_rc4.ebuild: + Bump *hyperdex-1.0_rc3 (25 Feb 2013) diff --git a/dev-db/hyperdex/hyperdex-1.0_rc4.ebuild b/dev-db/hyperdex/hyperdex-1.0_rc4.ebuild new file mode 100644 index 000000000000..eb647eb4f51d --- /dev/null +++ b/dev-db/hyperdex/hyperdex-1.0_rc4.ebuild @@ -0,0 +1,46 @@ +# 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_rc4.ebuild,v 1.1 2013/04/15 06:35:43 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 ruby 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 --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! +} |