diff options
author | Aaron Swenson <titanofold@gentoo.org> | 2012-04-19 18:49:06 +0000 |
---|---|---|
committer | Aaron Swenson <titanofold@gentoo.org> | 2012-04-19 18:49:06 +0000 |
commit | 91115c7b1823298d2faaa6841860f729b0748fba (patch) | |
tree | 7660f854620e183c8fce68a7c55ba629f64937f3 | |
parent | Cleaning out old versions. (diff) | |
download | historical-91115c7b1823298d2faaa6841860f729b0748fba.tar.gz historical-91115c7b1823298d2faaa6841860f729b0748fba.tar.bz2 historical-91115c7b1823298d2faaa6841860f729b0748fba.zip |
Cleaning out old version.
Package-Manager: portage-2.1.10.49/cvs/Linux x86_64
-rw-r--r-- | dev-db/slony1/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/slony1/slony1-2.1.0.ebuild | 72 |
2 files changed, 4 insertions, 73 deletions
diff --git a/dev-db/slony1/ChangeLog b/dev-db/slony1/ChangeLog index 0f98ec8036a0..45b03683363f 100644 --- a/dev-db/slony1/ChangeLog +++ b/dev-db/slony1/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/slony1 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/slony1/ChangeLog,v 1.35 2012/04/16 21:37:00 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/slony1/ChangeLog,v 1.36 2012/04/19 18:49:06 titanofold Exp $ + + 19 Apr 2012; Aaron W. Swenson <titanofold@gentoo.org> -slony1-2.1.0.ebuild: + Cleaning out old version. 16 Apr 2012; Brent Baude <ranger@gentoo.org> slony1-2.1.1.ebuild: Marking slony1-2.1.1 ppc for bug 409763 diff --git a/dev-db/slony1/slony1-2.1.0.ebuild b/dev-db/slony1/slony1-2.1.0.ebuild deleted file mode 100644 index 3b0d9f24251c..000000000000 --- a/dev-db/slony1/slony1-2.1.0.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/slony1/slony1-2.1.0.ebuild,v 1.4 2012/03/09 11:07:18 phajdan.jr Exp $ - -EAPI="4" - -inherit eutils versionator - -IUSE="doc perl" - -DESCRIPTION="A replication system for the PostgreSQL Database Management System" -HOMEPAGE="http://slony.info/" - -# ${P}-docs.tar.bz2 contains man pages as well as additional documentation -MAJ_PV=$(get_version_component_range 1-2) -SRC_URI="http://main.slony.info/downloads/${MAJ_PV}/source/${P}.tar.bz2 - http://main.slony.info/downloads/${MAJ_PV}/source/${P}-docs.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc x86" - -DEPEND="|| ( - dev-db/postgresql-server:9.1 - dev-db/postgresql-server:9.0 - dev-db/postgresql-server:8.4 - dev-db/postgresql-server:8.3 - ) - dev-db/postgresql-base[threads] - perl? ( dev-perl/DBD-Pg ) -" - -pkg_setup() { - local PGSLOT="$(postgresql-config show)" - if [[ ${PGSLOT//.} < 83 ]] ; then - eerror "You must build ${CATEGORY}/${PN} against PostgreSQL 8.3 or higher." - eerror "Set an appropriate slot with postgresql-config." - die "postgresql-config not set to 8.3 or higher." - fi - -# if [[ ${PGSLOT//.} > 90 ]] ; then -# ewarn "You are building ${CATEGORY}/${PN} against a version of PostgreSQL greater than 9.0." -# ewarn "This is neither supported here nor upstream." -# ewarn "Any bugs you encounter should be reported upstream." -# fi -} - -src_prepare() { - epatch "${FILESDIR}/ldflags.patch" -} - -src_configure() { - local myconf - use perl && myconf='--with-perltools' - econf ${myconf} -} - -src_install() { - emake DESTDIR="${D}" install - - dodoc HISTORY-1.1 INSTALL README SAMPLE TODO UPGRADING doc/howto/*.txt - - doman "${S}"/doc/adminguide/man{1,7}/* - - if use doc ; then - cd "${S}"/doc - dohtml -r * - fi - - newinitd "${FILESDIR}"/slony1.init slony1 - newconfd "${FILESDIR}"/slony1.conf slony1 -} |