diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-07-27 19:56:39 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-07-27 19:56:39 +0800 |
commit | 007b170be2724080e7430057e79123810b10b8f7 (patch) | |
tree | 1614e5c7216cf59c2a3d4fbb75ee9acbc61f8380 /databases/postgresql83-server/Makefile | |
parent | b0e4db87fb54c4788ae27db692f270c0c8d24314 (diff) | |
download | freebsd-ports-gnome-007b170be2724080e7430057e79123810b10b8f7.tar.gz freebsd-ports-gnome-007b170be2724080e7430057e79123810b10b8f7.tar.zst freebsd-ports-gnome-007b170be2724080e7430057e79123810b10b8f7.zip |
Work around the way in which the package building cluster validates
ports by defining LIB_DEPENDS for the BATCH defaults in the Makefile.
The dynamic determination of LIB_DEPENDS in configure.postgresql
remains in place for the !BATCH case and is unaffected by this.
Remove trailing whitespace and an extraneous LDCONFIG_DIRS.
Submitted by: maintainer
Diffstat (limited to 'databases/postgresql83-server/Makefile')
-rw-r--r-- | databases/postgresql83-server/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/databases/postgresql83-server/Makefile b/databases/postgresql83-server/Makefile index a344f35f60e5..ea93a3500d8e 100644 --- a/databases/postgresql83-server/Makefile +++ b/databases/postgresql83-server/Makefile @@ -28,7 +28,6 @@ MAINTAINER= girgen@partitur.se DIST_SUBDIR= postgresql INSTALLS_SHLIB= YES -LDCONFIG_DIRS= %%PREFIX%%/lib DOCDIR= ${WRKDIR}/${DISTNAME}/doc PLIST= ${WRKDIR}/.PLIST.generated @@ -93,6 +92,10 @@ SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ # to determine the correct plist. .if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) .include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" +.else +# make utility targets like depends and describe happy +LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ + tk83:${PORTSDIR}/x11-toolkits/tk83 .endif pre-everything: @@ -100,7 +103,7 @@ pre-everything: pre-install: @ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL -.if !defined(BATCH) +.if !defined(BATCH) # remind folks twice for a while, so they really don't miss the layout shift @ ${SED} "s|/usr/local|${PREFIX}|g" < ${PKGMESSAGE} | head -n 25 | more -e .endif |