diff options
author | andreas <andreas@FreeBSD.org> | 1999-07-21 07:16:27 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1999-07-21 07:16:27 +0000 |
commit | 2f70f343e1be4015555c02bde1bcad69fd70717f (patch) | |
tree | 79236b34b7555d9c03ef3103f7f79c5ae44f5607 /databases/postgresql73/Makefile | |
parent | 17ba5a0d923714b84a57eacbd775e375a52af47a (diff) | |
download | FreeBSD-ports-2f70f343e1be4015555c02bde1bcad69fd70717f.zip FreeBSD-ports-2f70f343e1be4015555c02bde1bcad69fd70717f.tar.gz |
Update postgresql to 6.5.1
maintenance release with bugfixes
Thanks for the complete submission !
Submitted by: Palle Girgensohn <girgen@partitur.se>
Diffstat (limited to 'databases/postgresql73/Makefile')
-rw-r--r-- | databases/postgresql73/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/databases/postgresql73/Makefile b/databases/postgresql73/Makefile index b07f396..2e30cb0 100644 --- a/databases/postgresql73/Makefile +++ b/databases/postgresql73/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> |