diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-10-22 20:07:50 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-10-22 20:07:50 +0000 |
commit | 4e1dd9c569a5f3f525ed2edc9dbc7911b94f8c4d (patch) | |
tree | 8f370406f1a5b5c49348bd8d302490672e398f62 /dev-db | |
parent | Build and install info pages (bug 287112) (diff) | |
download | gentoo-2-4e1dd9c569a5f3f525ed2edc9dbc7911b94f8c4d.tar.gz gentoo-2-4e1dd9c569a5f3f525ed2edc9dbc7911b94f8c4d.tar.bz2 gentoo-2-4e1dd9c569a5f3f525ed2edc9dbc7911b94f8c4d.zip |
Bump
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/slony1/ChangeLog | 9 | ||||
-rw-r--r-- | dev-db/slony1/slony1-1.2.17.ebuild | 44 |
2 files changed, 51 insertions, 2 deletions
diff --git a/dev-db/slony1/ChangeLog b/dev-db/slony1/ChangeLog index 121f0f182acb..7fa9a39b6388 100644 --- a/dev-db/slony1/ChangeLog +++ b/dev-db/slony1/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-db/slony1 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/slony1/ChangeLog,v 1.20 2008/05/21 15:58:19 dev-zero Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/slony1/ChangeLog,v 1.21 2009/10/22 20:07:50 patrick Exp $ + +*slony1-1.2.17 (22 Oct 2009) + + 22 Oct 2009; Patrick Lauer <patrick@gentoo.org> +slony1-1.2.17.ebuild: + Bump 21 May 2008; Tiziano Müller <dev-zero@gentoo.org> slony1-1.1.5.ebuild, slony1-1.2.10.ebuild, slony1-1.2.12.ebuild: diff --git a/dev-db/slony1/slony1-1.2.17.ebuild b/dev-db/slony1/slony1-1.2.17.ebuild new file mode 100644 index 000000000000..5b059e37fd27 --- /dev/null +++ b/dev-db/slony1/slony1-1.2.17.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/slony1/slony1-1.2.17.ebuild,v 1.1 2009/10/22 20:07:50 patrick Exp $ + +inherit eutils + +IUSE="perl" + +DESCRIPTION="A replication system for the PostgreSQL Database Management System" +HOMEPAGE="http://slony.info/" +SRC_URI="http://main.slony.info/downloads/1.2/source/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +DEPEND="virtual/postgresql-server + perl? ( dev-perl/DBD-Pg )" + +src_compile() { + local myconf="" + + myconf="${myconf} --with-pgincludedir=/usr/include/postgresql/pgsql" + myconf="${myconf} --with-pgincludeserverdir=/usr/include/postgresql/server" + myconf="${myconf} $(use_with perl perltools)" + + econf ${myconf} || die "econf failed!" + emake || die "emake failed!" + + if use perl ; then + cd "${S}"/tools + emake || die "emake tools failed!" + fi +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed!" + + dodoc HISTORY-1.1 INSTALL README SAMPLE TODO UPGRADING doc/howto/*.txt + dohtml doc/howto/*.html + + newinitd "${FILESDIR}"/slony1.init slony1 || die "newinitd failed!" + newconfd "${FILESDIR}"/slony1.conf slony1 || die "newconfd failed!" +} |