diff options
author | Torsten Veller <tove@gentoo.org> | 2007-04-28 22:17:40 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2007-04-28 22:17:40 +0000 |
commit | 8a2eadb4bdb5cebd63625701ce708a3ffd7d8627 (patch) | |
tree | acaa0079529eec8728a4bf70389b3c25852228b6 /dev-db | |
parent | Fix *initd, *confd and *envd calls (#173884, #174266) (diff) | |
download | gentoo-2-8a2eadb4bdb5cebd63625701ce708a3ffd7d8627.tar.gz gentoo-2-8a2eadb4bdb5cebd63625701ce708a3ffd7d8627.tar.bz2 gentoo-2-8a2eadb4bdb5cebd63625701ce708a3ffd7d8627.zip |
Fix *initd, *confd and *envd calls (#173884, #174266)
(Portage version: 2.1.2.5)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/pgcluster/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/pgcluster/pgcluster-1.3.0c.ebuild | 20 |
2 files changed, 13 insertions, 12 deletions
diff --git a/dev-db/pgcluster/ChangeLog b/dev-db/pgcluster/ChangeLog index 33c42f218f2e..77524706d3ba 100644 --- a/dev-db/pgcluster/ChangeLog +++ b/dev-db/pgcluster/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/pgcluster # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/pgcluster/ChangeLog,v 1.8 2007/03/04 07:47:02 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/pgcluster/ChangeLog,v 1.9 2007/04/28 22:17:40 tove Exp $ + + 28 Apr 2007; Torsten Veller <tove@gentoo.org> pgcluster-1.3.0c.ebuild: + Fix *initd, *confd and *envd calls (#173884, #174266) 04 Mar 2007; Marius Mauch <genone@gentoo.org> pgcluster-1.3.0c.ebuild: Replacing einfo with elog diff --git a/dev-db/pgcluster/pgcluster-1.3.0c.ebuild b/dev-db/pgcluster/pgcluster-1.3.0c.ebuild index df035f36ec1e..6747f2081f83 100644 --- a/dev-db/pgcluster/pgcluster-1.3.0c.ebuild +++ b/dev-db/pgcluster/pgcluster-1.3.0c.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/pgcluster/pgcluster-1.3.0c.ebuild,v 1.8 2007/03/04 07:47:02 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/pgcluster/pgcluster-1.3.0c.ebuild,v 1.9 2007/04/28 22:17:40 tove Exp $ inherit eutils gnuconfig flag-o-matic multilib @@ -154,18 +154,16 @@ src_install() { ${D}/etc/pgcluster/pglb.conf cd ${S} - exeinto /etc/init.d/ - newexe ${FILESDIR}/pgcluster.init-${PV} pgcluster || die - newexe ${FILESDIR}/pglb.init-${PV} pglb || die - newexe ${FILESDIR}/pgreplicate.init-${PV} pgreplicate || die -# newexe ${FILESDIR}/pg_autovacuum.init-${PV} pg_autovacuum || die + newinitd ${FILESDIR}/pgcluster.init-${PV} pgcluster || die + newinitd ${FILESDIR}/pglb.init-${PV} pglb || die + newinitd ${FILESDIR}/pgreplicate.init-${PV} pgreplicate || die +# newinitd ${FILESDIR}/pg_autovacuum.init-${PV} pg_autovacuum || die dosed "s:___DOCDIR___:/usr/share/doc/${PF}:" /etc/init.d/pg_autovacuum - insinto /etc/conf.d/ - newins ${FILESDIR}/pgcluster.conf-${PV} pgcluster || die - newins ${FILESDIR}/pglb.conf-${PV} pglb || die - newins ${FILESDIR}/pgreplicate.conf-${PV} pgreplicate || die -# newins ${FILESDIR}/pg_autovacuum.conf-${PV} pg_autovacuum || die + newconfd ${FILESDIR}/pgcluster.conf-${PV} pgcluster || die + newconfd ${FILESDIR}/pglb.conf-${PV} pglb || die + newconfd ${FILESDIR}/pgreplicate.conf-${PV} pgreplicate || die +# newconfd ${FILESDIR}/pg_autovacuum.conf-${PV} pg_autovacuum || die keepdir $PG_DIR keepdir /var/log/pgcluster |