diff options
author | Sam Jorna <wraeth@gentoo.org> | 2016-03-27 21:51:16 +1100 |
---|---|---|
committer | Sam Jorna <wraeth@gentoo.org> | 2016-03-27 22:57:41 +1100 |
commit | 81ccd9d9ed5fcfaa8d85ccacb3bbd456ed59048f (patch) | |
tree | 03ee4a2dd33a4e3c35b4d25d8f0f44572956dde9 /dev-db | |
parent | dev-db/postgis: fix 9999 build (diff) | |
download | gentoo-81ccd9d9ed5fcfaa8d85ccacb3bbd456ed59048f.tar.gz gentoo-81ccd9d9ed5fcfaa8d85ccacb3bbd456ed59048f.tar.bz2 gentoo-81ccd9d9ed5fcfaa8d85ccacb3bbd456ed59048f.zip |
dev-db/postgis: remove unneeded patches
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/postgis/files/postgis-1.5-ldflags.patch | 28 | ||||
-rw-r--r-- | dev-db/postgis/files/postgis_dbs-1.4 | 49 |
2 files changed, 0 insertions, 77 deletions
diff --git a/dev-db/postgis/files/postgis-1.5-ldflags.patch b/dev-db/postgis/files/postgis-1.5-ldflags.patch deleted file mode 100644 index 3ccbb712c2d4..000000000000 --- a/dev-db/postgis/files/postgis-1.5-ldflags.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff -Naurw postgis-1.5.8.orig/loader/Makefile.in postgis-1.5.8/loader/Makefile.in ---- postgis-1.5.8.orig/loader/Makefile.in 2010-09-10 20:44:05.000000000 +0000 -+++ postgis-1.5.8/loader/Makefile.in 2013-01-30 14:31:01.189692941 +0000 -@@ -79,16 +79,16 @@ - $(CC) $(CFLAGS) $(ICONV_CFLAGS) $(PGSQL_FE_CPPFLAGS) -c $< - - $(PGSQL2SHP): shpopen.o dbfopen.o safileio.o getopt.o pgsql2shp.o $(LIBLWGEOM) -- $(CC) $(CFLAGS) $^ $(ICONV_LDFLAGS) $(PGSQL_FE_LDFLAGS) -lm -o $@ -+ $(CC) $(CFLAGS) $^ $(LDFLAGS) $(ICONV_LDFLAGS) $(PGSQL_FE_LDFLAGS) -lm -o $@ - - $(SHP2PGSQL-CLI): stringbuffer.o shpopen.o dbfopen.o safileio.o getopt.o shp2pgsql-core.o shp2pgsql-cli.o $(LIBLWGEOM) -- $(CC) $(CFLAGS) $^ -o $@ $(ICONV_LDFLAGS) -lm -+ $(CC) $(CFLAGS) $^ -o $@ $(LDFLAGS) $(ICONV_LDFLAGS) -lm - - shp2pgsql-gui.o: shp2pgsql-gui.c - $(CC) $(CFLAGS) $(PGSQL_FE_CPPFLAGS) $(GTK_CFLAGS) -o $@ -c shp2pgsql-gui.c - - $(SHP2PGSQL-GUI): stringbuffer.o shpopen.o dbfopen.o safileio.o shp2pgsql-core.o shp2pgsql-gui.o getopt.o $(LIBLWGEOM) $(GTK_WIN32_RES) -- $(CC) $(CFLAGS) $(GTK_WIN32_FLAGS) $^ -o $@ $(GTK_LIBS) $(ICONV_LDFLAGS) $(PGSQL_FE_LDFLAGS) -lm -+ $(CC) $(CFLAGS) $(GTK_WIN32_FLAGS) $^ -o $@ $(LDFLAGS) $(GTK_LIBS) $(ICONV_LDFLAGS) $(PGSQL_FE_LDFLAGS) -lm - - installdir: - @mkdir -p $(DESTDIR)$(bindir) -@@ -106,4 +106,3 @@ - - clean: - @rm -f *.o $(SHP2PGSQL-CLI) $(PGSQL2SHP) $(GTK_WIN32_RES) -- diff --git a/dev-db/postgis/files/postgis_dbs-1.4 b/dev-db/postgis/files/postgis_dbs-1.4 deleted file mode 100644 index fa7ac2542fa9..000000000000 --- a/dev-db/postgis/files/postgis_dbs-1.4 +++ /dev/null @@ -1,49 +0,0 @@ -# This file is used by 'emerge --config dev-db/postgis' to determine which -# databases it should install to, upgrade or create as a template. - -# Unlike the previous versions of the PostGIS ebuilds, it no longer creates any -# databases except for templates. All databases you list must already exist in -# the cluster. - -# The user to perform the updates as. This user must have the privileges to -# modify all of the databases you list here. -pguser="postgres" - -# By default, no databases will have PostGIS enabled. The databases listed here -# must already exist. The databases you list here must not already be PostGIS -# enabled. Instead, use the upgrade lists further down. -#databases=( "your" "databases" ) - -# Anything you place in this list will create a database and make it a template. -# It will be PostGIS-enabled. To add additional features, add the template names -# to the following lists. -#templates=( "template_postgis" ) - -# The PostGIS enabled templates will be created using this template. -from_template="template1" - -# For a complete set of EPSG coordinate system definition identifiers, you can -# also load the spatial_ref_sys.sql definitions file and populate the -# spatial_ref_sys table. This will permit you to perform ST_Transform() -# operations on geometries. -#epsg_databases=( "enable" "epsg" "on" "these" "databases" ) - -# Add comments to PostGIS functions to the databases in this list. -#comment_databases=( "comments" "on" "these" "databases" ) - -# Any databases you have that are already PostGIS enabled can be listed among -# the following list to perform a soft upgrade. If the soft upgrade fails, -# you'll need to do a hard upgrade. -# http://postgis.refractions.net/documentation/manual-1.5/ch02.html#hard_upgrade - -# Upgrade from PostGIS 1.2 to 1.4 -#upgrade_from_1_2=( "upgrade" "these" "databases" ) - -# Upgrade from PostGIS 1.3 to 1.4 -#upgrade_from_1_3=( "upgrade" "these" "databases" ) - -# Perform a minor upgrade for PostGIS 1.4 -#upgrade_from_1_4=( "upgrade" "these" "databases" ) - -# Uncomment this once you're satisfied with the settings in this file. -#configured="true" |