freebsd-ports/graphics/gdal/files/patch-apps_GNUmakefile
Sunpoet Po-Chuan Hsieh 3058d439df - Remove PROJ option: proj4 is required, --with-static-proj4 determines how it being linked, dynamically or statically
- Set SONAME: add GDAL_SLIB_SONAME to GDALmake.opt
- Cosmetic change
- Pet portlint: fix diff header of patch files
- Bump PORTREVISION for dependency and package change
2016-11-26 17:09:42 +00:00

13 lines
564 B
Text

--- apps/GNUmakefile.orig 2016-10-24 11:00:31 UTC
+++ apps/GNUmakefile
@@ -215,7 +215,7 @@ gdal-config-inst: gdal-config.in ../GDAL
install: default
- for f in $(BIN_LIST) ; do $(INSTALL) $$f $(DESTDIR)$(INST_BIN) ; done
- $(INSTALL) gdal_utils.h $(DESTDIR)$(INST_INCLUDE)
- $(INSTALL) gdal-config-inst $(DESTDIR)$(INST_BIN)/gdal-config
+ for f in $(BIN_LIST) ; do $(BSD_INSTALL_PROGRAM) $$f $(DESTDIR)$(INST_BIN) ; done
+ $(BSD_INSTALL_DATA) gdal_utils.h $(DESTDIR)$(INST_INCLUDE)
+ $(BSD_INSTALL_SCRIPT) gdal-config-inst $(DESTDIR)$(INST_BIN)/gdal-config