diff options
author | Herve Quiroz <hq@FreeBSD.org> | 2005-04-04 23:25:04 +0000 |
---|---|---|
committer | Herve Quiroz <hq@FreeBSD.org> | 2005-04-04 23:25:04 +0000 |
commit | fae75247986db842bff2c063ab5759147ee6399b (patch) | |
tree | 90353f181ce659e20e1554463547d62bdd81d402 /databases/postgis-jdbc/files/patch-Makefile | |
parent | - Update to 6.5.2 (diff) |
- Update to 1.0.0r3 [1]
- Update to bsd.java.mk 2.0
- Use JAVALIBDIR in BUILD_DEPENDS
- Use %%JAVAJARDIR%% in pkg-plist
PR: 79527
Submitted by: maintainer [1]
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=132509
Diffstat (limited to 'databases/postgis-jdbc/files/patch-Makefile')
-rw-r--r-- | databases/postgis-jdbc/files/patch-Makefile | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/databases/postgis-jdbc/files/patch-Makefile b/databases/postgis-jdbc/files/patch-Makefile deleted file mode 100644 index d657301bc048..000000000000 --- a/databases/postgis-jdbc/files/patch-Makefile +++ /dev/null @@ -1,51 +0,0 @@ -diff -urN ../jdbc.orig/Makefile ./Makefile ---- ../jdbc.orig/Makefile Fri Jun 25 18:11:45 2004 -+++ ./Makefile Fri Jun 25 18:12:52 2004 -@@ -1,15 +1,21 @@ - JAVAC = javac - JAVA = java - JAR = jar --CLASSPATH = ../../../src/interfaces/jdbc/jars/postgresql.jar:. -+CLASSPATH = $(JAVAJARDIR)/postgresql.jar:. - - all: ogis \ - pgobjs \ -- test -+ test \ -+ jar - - jar: - $(JAR) -cf postgis.jar org/postgis/*.java org/postgis/*.class README - -+install: -+ $(INSTALL_DATA) postgis.jar $(JAVAJARDIR) -+ [ -d $(EXAMPLESDIR) ] || mkdir $(EXAMPLESDIR) || exit -1 -+ $(INSTALL_DATA) examples/Test.java examples/TestServer.java $(EXAMPLESDIR) -+ - ogis: - $(JAVAC) -classpath $(CLASSPATH) \ - org/postgis/Geometry.java \ -@@ -20,19 +26,21 @@ - org/postgis/LinearRing.java \ - org/postgis/Polygon.java \ - org/postgis/MultiPolygon.java -+ touch ogis - - - pgobjs: - $(JAVAC) -classpath $(CLASSPATH) \ - org/postgis/PGgeometry.java \ - org/postgis/PGbox3d.java -+ touch pgobjs - - test: - $(JAVAC) -classpath $(CLASSPATH) examples/Test.java - $(JAVA) -classpath $(CLASSPATH) examples/Test -- -+ touch test - - jtest: - $(JAVAC) -classpath $(CLASSPATH) examples/TestServer.java - $(JAVA) -classpath $(CLASSPATH) examples/TestServer -- -+ touch jtest |