diff options
author | thierry <thierry@FreeBSD.org> | 2004-06-19 04:04:14 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2004-06-19 04:04:14 +0800 |
commit | e05f003170ced4c7a5977cddc75aa5ba4fd68f21 (patch) | |
tree | 093fd2574caa28e528d9c7a6472dc115dd9ff9d5 /databases/postgis | |
parent | c1d3644a8a4e84afc47b64caf350cd9125fbf056 (diff) | |
download | freebsd-ports-gnome-e05f003170ced4c7a5977cddc75aa5ba4fd68f21.tar.gz freebsd-ports-gnome-e05f003170ced4c7a5977cddc75aa5ba4fd68f21.tar.zst freebsd-ports-gnome-e05f003170ced4c7a5977cddc75aa5ba4fd68f21.zip |
Fix package building:
- Use WRKDIRPREFIX;
- Replace the pre-extract target by BUILD_DEPENDS:configure + LIB_DEPENDS
on postgresql7 (and then remove RUN_DEPENDS).
Reported by: Kris / pointyhat.
Diffstat (limited to 'databases/postgis')
-rw-r--r-- | databases/postgis/Makefile | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/databases/postgis/Makefile b/databases/postgis/Makefile index e29dd90840c4..65b00a53049a 100644 --- a/databases/postgis/Makefile +++ b/databases/postgis/Makefile @@ -14,9 +14,9 @@ DISTNAME= postgis-${PORTVERSION} MAINTAINER= anderson@cnpm.embrapa.br COMMENT= Adds support for geographic objects to PostgreSQL databases -LIB_DEPENDS= proj.3:${PORTSDIR}/graphics/proj -BUILD_DEPENDS= postmaster:${PORTSDIR}/databases/postgresql7 -RUN_DEPENDS= postmaster:${PORTSDIR}/databases/postgresql7 +BUILD_DEPENDS= ${PGSQL_SRC}/src/Makefile.global:${PORTSDIR}/databases/postgresql7:configure +LIB_DEPENDS= proj.3:${PORTSDIR}/graphics/proj \ + pq:${PORTSDIR}/databases/postgresql7 USE_GMAKE= yes USE_PERL5_BUILD= yes @@ -24,20 +24,13 @@ MAKE_ARGS= PGSQL_SRC=${PGSQL_SRC} PGSQL_PORTDIR= ${PORTSDIR}/databases/postgresql7 WRKSRC= ${WRKDIR}/postgis-${PORTVERSION} -PGSQL_SRC= ${PGSQL_PORTDIR}/work/postgresql-7.4.2 +PGSQL_SRC= ${WRKDIRPREFIX}${PGSQL_PORTDIR}/work/postgresql-7.4.2 INSTALL_TARGET= install .if defined(WITH_GEOS) LIB_DEPENDS+= geos.1:${PORTSDIR}/graphics/geos .endif -pre-extract: - @if [ ! -d ${PGSQL_SRC} ] ; then \ - ${ECHO_MSG} "===> Extracting and configuring PostgreSQL source" ; \ - cd ${PGSQL_PORTDIR} ; \ - ${MAKE} configure ; \ - fi - post-extract: .if ! defined(WITH_GEOS) @ ${CP} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.orig ; \ |