diff options
author | Masatomo Nakano <nakano@gentoo.org> | 2007-04-13 09:36:24 +0000 |
---|---|---|
committer | Masatomo Nakano <nakano@gentoo.org> | 2007-04-13 09:36:24 +0000 |
commit | c3c05c9f3b3fdbc3d9675e41257e1a6020cce8d3 (patch) | |
tree | e1668933d1a1129d1d226303a906be452b627ec2 /dev-db | |
parent | Fixup quiet support some more and disable cronjob by default. (diff) | |
download | gentoo-2-c3c05c9f3b3fdbc3d9675e41257e1a6020cce8d3.tar.gz gentoo-2-c3c05c9f3b3fdbc3d9675e41257e1a6020cce8d3.tar.bz2 gentoo-2-c3c05c9f3b3fdbc3d9675e41257e1a6020cce8d3.zip |
version bump
(Portage version: 2.1.2.2)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/slony1/ChangeLog | 7 | ||||
-rw-r--r-- | dev-db/slony1/files/digest-slony1-1.2.9 | 3 | ||||
-rw-r--r-- | dev-db/slony1/slony1-1.2.9.ebuild | 45 |
3 files changed, 54 insertions, 1 deletions
diff --git a/dev-db/slony1/ChangeLog b/dev-db/slony1/ChangeLog index f16297547079..9e15930187f9 100644 --- a/dev-db/slony1/ChangeLog +++ b/dev-db/slony1/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-db/slony1 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/slony1/ChangeLog,v 1.11 2007/03/17 18:08:35 nakano Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/slony1/ChangeLog,v 1.12 2007/04/13 09:36:24 nakano Exp $ + +*slony1-1.2.9 (13 Apr 2007) + + 13 Apr 2007; Masatomo Nakano <nakano@gentoo.org> +slony1-1.2.9.ebuild: + Version bump. *slony1-1.2.8 (17 Mar 2007) diff --git a/dev-db/slony1/files/digest-slony1-1.2.9 b/dev-db/slony1/files/digest-slony1-1.2.9 new file mode 100644 index 000000000000..944789d2d057 --- /dev/null +++ b/dev-db/slony1/files/digest-slony1-1.2.9 @@ -0,0 +1,3 @@ +MD5 5ae2203cccf15afbb0d71af958102e85 slony1-1.2.9.tar.bz2 837293 +RMD160 e73f824b68c8f7c7a746b91d37990259bf9d0f94 slony1-1.2.9.tar.bz2 837293 +SHA256 5ee2a05d8395473fb90c9689032af8d13bc8ee8e61af73785852c3dc7f485098 slony1-1.2.9.tar.bz2 837293 diff --git a/dev-db/slony1/slony1-1.2.9.ebuild b/dev-db/slony1/slony1-1.2.9.ebuild new file mode 100644 index 000000000000..673f46059a21 --- /dev/null +++ b/dev-db/slony1/slony1-1.2.9.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/slony1/slony1-1.2.9.ebuild,v 1.1 2007/04/13 09:36:24 nakano 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="dev-db/postgresql + 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 + emake || die + + if use perl ; then + cd ${S}/tools + emake || die + fi +} + +src_install() { + make DESTDIR=${D} install || die + + dodoc HISTORY-1.1 INSTALL README SAMPLE TODO UPGRADING doc/howto/*.txt + dohtml doc/howto/*.html + + newinitd ${FILESDIR}/slony1.init slony1 || die + newconfd ${FILESDIR}/slony1.conf slony1 || die + +} |