diff options
author | Clive Lin <clive@FreeBSD.org> | 2001-03-15 19:26:26 +0000 |
---|---|---|
committer | Clive Lin <clive@FreeBSD.org> | 2001-03-15 19:26:26 +0000 |
commit | cf193c59d969cb5576f1f1eb7332b0839a051e73 (patch) | |
tree | d95350bae99275f11785b9ef3040c874dd634628 /databases/postgresql-devel/Makefile | |
parent | d0f45c329eaec9ee0a7abe87077939a698ac3ed4 (diff) | |
download | ports-cf193c59d969cb5576f1f1eb7332b0839a051e73.tar.gz ports-cf193c59d969cb5576f1f1eb7332b0839a051e73.zip |
ldconfig PostgreSQL's lib should happen before starting *ANY* ports.
This would cure headache like apache module linking against libpq
fail to work after rebooting.
Originally, maintainer and I want this commit to go with the
PostgreSQL updating. But we both think that the latest PostgreSQL
would not be released before FreeBSD 4.3-RELEASE ports freeze.
As a conclusion, PORTREVISION bumped.
Discussed with/Submitted by: MAINTAINER
Notes
Notes:
svn path=/head/; revision=39895
Diffstat (limited to 'databases/postgresql-devel/Makefile')
-rw-r--r-- | databases/postgresql-devel/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/databases/postgresql-devel/Makefile b/databases/postgresql-devel/Makefile index 313ef570c06d..e5d237658c2a 100644 --- a/databases/postgresql-devel/Makefile +++ b/databases/postgresql-devel/Makefile @@ -7,6 +7,7 @@ PORTNAME= postgresql PORTVERSION= 7.0.3 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= ftp://ftp.postgresql.org/pub/%SUBDIR%/ \ ftp://ftp.de.postgresql.org/%SUBDIR%/ \ @@ -133,9 +134,9 @@ post-install: @ ${CHOWN} root:pgsql ${PREFIX}/pgsql/lib @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib @ ${SED} -e "s=!!PREFIX!!=${PREFIX}=g" < ${FILESDIR}/pgsql.sh.tmpl \ - > ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/pgsql.sh + > ${PREFIX}/etc/rc.d/010.pgsql.sh + @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/010.pgsql.sh + @ ${CHOWN} root.pgsql ${PREFIX}/etc/rc.d/010.pgsql.sh @ ${SED} -e 's#%%PREFIX%%#${PREFIX}#' < ${FILESDIR}/post-install-notes \ > ${PREFIX}/pgsql/post-install-notes .if defined(WITHOUT_MULTIBYTE) |