View | Details | Raw Unified | Return to bug 38852
Collapse All | Expand All

(-)ports/graphics/gdal/Makefile (-8 / +3 lines)
Line 9 Link Here
9
PORTVERSION=	1.1.5
9
PORTVERSION=	1.1.7
10
--
Line 13 Link Here
13
MAINTAINER=	aa8vb@nc.rr.com
13
MAINTAINER=	ports@FreeBSD.org
14
--
Lines 15-17 Link Here
15
BROKEN=		"Incorrect checksum"
15
LIB_DEPENDS=	png.5:${PORTSDIR}/graphics/png \
16
17
LIB_DEPENDS=	png.4:${PORTSDIR}/graphics/png \
18
--
(-)ports/graphics/gdal/distinfo (-2 / +1 lines)
Line 1 Link Here
1
MD5 (gdal-1.1.5.tar.gz) = ec8014270a7202b5584970ccd6dbab98
1
MD5 (gdal-1.1.7.tar.gz) = 6f2b5e30c8d2b18f7f10458e5aaea723
2
--
(-)ports/graphics/gdal/pkg-plist (-4 / +5 lines)
Lines 1-2 Link Here
1
bin/ogr2ogr
1
bin/gdaladdo
2
bin/ogrinfo
3
--
Line 5 Link Here
5
bin/gdaladdo
Line 7 Link Here
5
bin/ogr2ogr
6
bin/ogrinfo
7
bin/ogrtindex
Line 51 Link Here
52
share/gdal/stateplane.txt
(-)ports/graphics/gdal/files/patch-aa (-34 / +9 lines)
Lines 1-23 Link Here
1
--- frmts/ORIG/GNUmakefile	Tue Jul 17 09:51:13 2001
1
--- ogr/GNUmakefile.orig	Mon Jun  3 14:54:53 2002
2
+++ frmts/GNUmakefile	Mon Aug 27 18:09:37 2001
2
+++ ogr/GNUmakefile	Mon Jun  3 14:55:05 2002
3
@@ -12,7 +12,7 @@
3
@@ -77,7 +77,7 @@
4
 sub-libs:
5
 	@for dir in $(GDAL_FORMATS) ; do \
6
 	  if test -d $$dir ; then \
7
-	    if (cd $$dir; $(MAKE) install-obj) ; then \
8
+	    if (cd $$dir; $(MAKE) install-obj) || exit 1 ; then \
9
 	      echo; \
10
 	    else \
11
 	      break; \
12
@@ -26,7 +26,7 @@
13
 	rm -f *.o o/*.o o/*.a
14
 	@for dir in $(GDAL_FORMATS) ; do \
15
 	  if test -d $$dir ; then \
16
-	    if (cd $$dir; $(MAKE) clean) ; then \
17
+	    if (cd $$dir; $(MAKE) clean) || exit 1 ; then \
18
 	      echo; \
19
 	    else \
20
 	      break; \
21
--- ORIG/GDALmake.opt.in	Fri Jul 20 00:13:54 2001
22
+++ GDALmake.opt.in	Tue Aug 28 16:34:12 2001
23
@@ -67,8 +67,8 @@
24
--
Lines 25-30 Link Here
25
 GDAL_VER	=	1.1
5
 docs:
26
 GDAL_LIB	= 	$(GDAL_ROOT)/gdal.a
6
 	rm -rf html/*
27
-GDAL_SLIB	=	$(GDAL_ROOT)/libgdal.$(GDAL_VER).$(SO_EXT)
7
-	doxygen
28
-GDAL_SLIB_LINK	=	-L$(GDAL_ROOT) -lgdal.$(GDAL_VER)
8
+#	doxygen
29
+GDAL_SLIB	=	$(GDAL_ROOT)/libgdal.$(SO_EXT).$(GDAL_VER)
30
+GDAL_SLIB_LINK	=	-L$(GDAL_ROOT) -lgdal
31
--
Lines 32-33 Link Here
32
 OGR_LIB		=	$(GDAL_ROOT)/ogr/ogr.a
10
 
33
 CPL_LIB		=	$(GDAL_ROOT)/port/cpl.a
11
 $(OGR_LIB):	$(OBJ)
34
--

Return to bug 38852