Date: Thu, 26 Aug 2004 00:56:32 +1000 (EST) From: Sam Lawrance <boris@brooknet.com.au> To: FreeBSD-gnats-submit@FreeBSD.org Cc: boris@brooknet.com.au Subject: ports/70944: [maintainer] databases/postgis-jdbc: fix build fail Message-ID: <20040825145632.A2093DE5@localhost> Resent-Message-ID: <200408251500.i7PF0fUN061742@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 70944 >Category: ports >Synopsis: [maintainer] databases/postgis-jdbc: fix build fail >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Aug 25 15:00:41 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sam Lawrance >Release: FreeBSD 5.3-BETA1 i386 >Organization: >Environment: System: FreeBSD dirk.no.domain 5.3-BETA1 FreeBSD 5.3-BETA1 #1: Tue Aug 24 03:18:01 EST 2004 >Description: Build fails on cluster. My fault - port used hard coded javac, java and jar executables. >How-To-Repeat: >Fix: Minor patch to pass the JAVAC, JAVA and JAR variables. --- postgis-jdbc-0.8.2.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/FreeBSD/ports/databases/postgis-jdbc/Makefile,v retrieving revision 1.1 diff -u -u -r1.1 Makefile --- Makefile 30 Jun 2004 03:51:47 -0000 1.1 +++ Makefile 25 Aug 2004 14:53:10 -0000 @@ -21,7 +21,10 @@ MAKE_ARGS= EXAMPLESDIR="${EXAMPLESDIR}" \ DESTDIR="${PREFIX}" \ INSTALL_DATA="${INSTALL_DATA}" \ - JAVAJARDIR="${JAVAJARDIR}" + JAVAJARDIR="${JAVAJARDIR}" \ + JAVAC="${JAVAC}" \ + JAVA="${JAVA}" \ + JAR="${JAR}" WRKSRC= ${WRKDIR}/postgis-${PORTVERSION}/jdbc --- postgis-jdbc-0.8.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040825145632.A2093DE5>