diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 1999-07-21 07:16:27 +0000 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 1999-07-21 07:16:27 +0000 |
commit | 20d25216414d1378d00f9bc611a88d3c9356586a (patch) | |
tree | 599112ccfda10c337ddbb8bf1ce6d81551df92b6 /databases/postgresql91-server/Makefile | |
parent | Fix formatting glitch in job status output. (diff) |
Update postgresql to 6.5.1
maintenance release with bugfixes
Thanks for the complete submission !
Submitted by: Palle Girgensohn <girgen@partitur.se>
Notes
Notes:
svn path=/head/; revision=20294
Diffstat (limited to '')
-rw-r--r-- | databases/postgresql91-server/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/databases/postgresql91-server/Makefile b/databases/postgresql91-server/Makefile index b07f396f8c80..2e30cb0dcb70 100644 --- a/databases/postgresql91-server/Makefile +++ b/databases/postgresql91-server/Makefile @@ -3,10 +3,10 @@ # Date created: November 13, 1998 # Whom: Marc G. Fournier <scrappy@FreeBSD.ORG> # -# $Id: Makefile,v 1.42 1999/06/26 20:59:57 obrien Exp $ +# $Id: Makefile,v 1.43 1999/06/29 20:21:18 andreas Exp $ # -DISTNAME= postgresql-6.5 +DISTNAME= postgresql-6.5.1 CATEGORIES= databases MASTER_SITES= ftp://ftp.postgresql.org/pub/ \ ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \ @@ -162,7 +162,7 @@ post-install: @ chown -R pgsql:pgsql ${PREFIX}/pgsql @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib - @ su -l pgsql -c '${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' + @ su -l pgsql -c 'PATH=${PREFIX}/pgsql/bin:${PATH} ${PREFIX}/pgsql/bin/initdb --pglib=${PREFIX}/pgsql/lib --pgdata=${PREFIX}/pgsql/data' @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ > ${PREFIX}/etc/rc.d/pgsql.sh @ chmod 554 ${PREFIX}/etc/rc.d/pgsql.sh @@ -207,8 +207,10 @@ post-install: .if !defined(BATCH) @ more -e ${FILESDIR}/post-install-notes .endif +.if !defined(DEBUG_FLAGS) .for file in ecpg pg_dump pg_id pg_passwd pg_version postgres psql @ strip ${PREFIX}/pgsql/bin/${file} .endfor +.endif .include <bsd.port.mk> |