diff options
author | gdt <gdt@pkgsrc.org> | 2012-01-10 14:00:46 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2012-01-10 14:00:46 +0000 |
commit | 07c92527d16ae62c6fd7cba6ce63199c169baa53 (patch) | |
tree | 0f1aeb395f3fc593283acb323ddffc21feec1406 /databases/postgresql-postgis | |
parent | 275b0ac7c04015e4b78d2bb6a850f6fdb6d72506 (diff) | |
download | pkgsrc-07c92527d16ae62c6fd7cba6ce63199c169baa53.tar.gz |
Change make to $(MAKE), because gmake is required.
Not strictly required for pkgsrc due to wrappers, but necessary in general.
No change to generated binary package.
To be sent upstream momemtarily.
Diffstat (limited to 'databases/postgresql-postgis')
3 files changed, 50 insertions, 1 deletions
diff --git a/databases/postgresql-postgis/distinfo b/databases/postgresql-postgis/distinfo index dc668db0a40..c3dfbc2cc1c 100644 --- a/databases/postgresql-postgis/distinfo +++ b/databases/postgresql-postgis/distinfo @@ -1,7 +1,9 @@ -$NetBSD: distinfo,v 1.6 2012/01/08 18:39:49 gdt Exp $ +$NetBSD: distinfo,v 1.7 2012/01/10 14:00:46 gdt Exp $ SHA1 (postgis-1.5.3.tar.gz) = e8c572e0258ba760a67b7f717bdc8321b9f6cd58 RMD160 (postgis-1.5.3.tar.gz) = e30275890b175cbe1d70d5899cbe45ec34ddbafb Size (postgis-1.5.3.tar.gz) = 3779956 bytes SHA1 (patch-configure) = 5995e773b9f8ec20e710d6cb690e928856c2650e SHA1 (patch-configure.ac) = 993358912b61670733602511d507e497c9677875 +SHA1 (patch-doc_Makefile.in) = 98807010256cf42e4d179305febe2525efbb6cd1 +SHA1 (patch-doc_html_image__src_Makefile.in) = 89e19e03dbb936d723d1e6748cd2bd77232bcf6d diff --git a/databases/postgresql-postgis/patches/patch-doc_Makefile.in b/databases/postgresql-postgis/patches/patch-doc_Makefile.in new file mode 100644 index 00000000000..7d2786b040f --- /dev/null +++ b/databases/postgresql-postgis/patches/patch-doc_Makefile.in @@ -0,0 +1,34 @@ +$NetBSD: patch-doc_Makefile.in,v 1.1 2012/01/10 14:00:46 gdt Exp $ + +--- doc/Makefile.in.orig 2010-09-19 12:21:28.000000000 +0000 ++++ doc/Makefile.in +@@ -111,24 +111,24 @@ doxygen: doxygen.cfg + doxygen $< + + images: +- make -C html/image_src images ++ $(MAKE) -C html/image_src images + + clean: +- make -C html/image_src clean ++ $(MAKE) -C html/image_src clean + @rm -f postgis-out.xml postgis_aggs_mm.xml + + maintainer-clean: clean +- make -C html/image_src clean ++ $(MAKE) -C html/image_src clean + @rm -f html/*.html \ + postgis-${POSTGIS_MAJOR_VERSION}.${POSTGIS_MINOR_VERSION}.${POSTGIS_MICRO_VERSION}.pdf + + comments: postgis_comments.sql + + comments-install: comments +- make -f Makefile.comments install ++ $(MAKE) -f Makefile.comments install + + comments-uninstall: +- make -f Makefile.comments uninstall ++ $(MAKE) -f Makefile.comments uninstall + + install: html/postgis.html man/shp2pgsql.1 man/pgsql2shp.1 + @mkdir -p $(PGSQL_DOCDIR)/postgis diff --git a/databases/postgresql-postgis/patches/patch-doc_html_image__src_Makefile.in b/databases/postgresql-postgis/patches/patch-doc_html_image__src_Makefile.in new file mode 100644 index 00000000000..18ee038842f --- /dev/null +++ b/databases/postgresql-postgis/patches/patch-doc_html_image__src_Makefile.in @@ -0,0 +1,13 @@ +$NetBSD: patch-doc_html_image__src_Makefile.in,v 1.1 2012/01/10 14:00:46 gdt Exp $ + +--- doc/html/image_src/Makefile.in.orig 2010-01-11 17:31:49.000000000 +0000 ++++ doc/html/image_src/Makefile.in +@@ -126,7 +126,7 @@ generator: ../../../liblwgeom/liblwgeom. + + # Build liblwgeom + ../../../liblwgeom/liblwgeom.a: +- make -C ../../../liblwgeom liblwgeom.a ++ $(MAKE) -C ../../../liblwgeom liblwgeom.a + + # Clean target + clean: |