diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2009-03-09 10:07:27 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2009-03-09 10:07:27 +0000 |
commit | f5beaebc0ae2b0a701397acf3ed6fcff73d2cb9d (patch) | |
tree | c8ba2800216de25cc907789904df8e0bba7be718 /dev-db | |
parent | New version (diff) | |
download | gentoo-2-f5beaebc0ae2b0a701397acf3ed6fcff73d2cb9d.tar.gz gentoo-2-f5beaebc0ae2b0a701397acf3ed6fcff73d2cb9d.tar.bz2 gentoo-2-f5beaebc0ae2b0a701397acf3ed6fcff73d2cb9d.zip |
Added release version of ctdb
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/ctdb/ChangeLog | 9 | ||||
-rw-r--r-- | dev-db/ctdb/ctdb-1.0.73.ebuild | 33 |
2 files changed, 40 insertions, 2 deletions
diff --git a/dev-db/ctdb/ChangeLog b/dev-db/ctdb/ChangeLog index 94c4d8bed28e..77ab28dd3abe 100644 --- a/dev-db/ctdb/ChangeLog +++ b/dev-db/ctdb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-db/ctdb -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/ctdb/ChangeLog,v 1.1 2008/07/26 20:23:11 dev-zero Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/ctdb/ChangeLog,v 1.2 2009/03/09 10:07:27 dev-zero Exp $ + +*ctdb-1.0.73 (09 Mar 2009) + + 09 Mar 2009; Tiziano Müller <dev-zero@gentoo.org> +ctdb-1.0.73.ebuild: + Added release version of ctdb *ctdb-9999 (26 Jul 2008) diff --git a/dev-db/ctdb/ctdb-1.0.73.ebuild b/dev-db/ctdb/ctdb-1.0.73.ebuild new file mode 100644 index 000000000000..c3b7dad5fdda --- /dev/null +++ b/dev-db/ctdb/ctdb-1.0.73.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/ctdb/ctdb-1.0.73.ebuild,v 1.1 2009/03/09 10:07:27 dev-zero Exp $ + +EAPI="2" + +inherit autotools + +DESCRIPTION="A cluster implementation of the TDB database used by Samba and other projects to store temporary data." +HOMEPAGE="http://ctdb.samba.org/" +SRC_URI="http://ctdb.samba.org/packages/redhat/RHEL5/${P}.tgz" +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="dev-libs/popt" +RDEPEND="${DEPEND}" + +src_prepare() { + AT_M4DIR="-I ${S}/lib/replace -I ${S}/lib/talloc -I ${S}/lib/tdb -I ${S}/lib/popt -I ${S}/lib/events" + autotools_run_tool autoheader ${AT_M4DIR} || die "running autoheader failed" + eautoconf ${AT_M4DIR} +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc "${D}/usr/share/doc/ctdb/README.eventscripts" + rm -rf "${D}/usr/share/doc/ctdb" + + dohtml web/* doc/*.html +} |