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

(-)postgis/Makefile (-7 / +15 lines)
Lines 6-16 Link Here
6
#
6
#
7
7
8
PORTNAME=	postgis
8
PORTNAME=	postgis
9
PORTVERSION=	0.9.1
9
PORTVERSION=	1.0.0rc2
10
PORTREVISION=	1
11
CATEGORIES=	databases
10
CATEGORIES=	databases
12
MASTER_SITES=	http://postgis.refractions.net/
11
MASTER_SITES=	http://postgis.refractions.net/
13
DISTNAME=	postgis-${PORTVERSION}
12
DISTNAME=	postgis-${PORTVERSION}
13
DISTFILES=	postgis-1.0.0-rc2.tar.gz
14
14
15
MAINTAINER=	anderson@cnpm.embrapa.br
15
MAINTAINER=	anderson@cnpm.embrapa.br
16
COMMENT=	Adds support for geographic objects to PostgreSQL databases
16
COMMENT=	Adds support for geographic objects to PostgreSQL databases
Lines 21-53 Link Here
21
USE_PERL5_BUILD=	yes
21
USE_PERL5_BUILD=	yes
22
22
23
PKGMESSAGE=	pkg-message
23
PKGMESSAGE=	pkg-message
24
WRKSRC=		${WRKDIR}/postgis-${PORTVERSION}
24
WRKSRC=		${WRKDIR}/postgis-1.0.0-rc2
25
PGSQL_SRC=	${WRKDIR}/pgsql/postgresql
25
PGSQL_SRC=	${WRKDIR}/pgsql/postgresql
26
26
27
INSTALL_TARGET=	install
27
INSTALL_TARGET=	install
28
INSTALLS_SHLIB=	no
28
INSTALLS_SHLIB=	no
29
29
30
OPTIONS=	GEOS "Include GEOS - the OpenGIS 'Simple Features for SQL'" off \
30
OPTIONS=	GEOS "Include GEOS - the OpenGIS 'Simple Features for SQL'" off \
31
		UTF8 "UTF-8 support for shp2pgsql. (needs libiconv)" off
31
32
32
USE_PGSQL=	YES
33
USE_PGSQL=	YES
33
34
34
.include <bsd.port.pre.mk>
35
.include <bsd.port.pre.mk>
35
36
36
MAKE_ARGS=	PGSQL_SRC="${PGSQL_SRC}" \
37
MAKE_ARGS=	PGSQL_SRC="${PGSQL_SRC}" \
38
		USE_PROJ=1 \
37
		DATADIR="${PREFIX}/share/postgis" \
39
		DATADIR="${PREFIX}/share/postgis" \
40
		INSTALL_DATA="${INSTALL_DATA}" \
38
		BINDIR="${PREFIX}/bin" \
41
		BINDIR="${PREFIX}/bin" \
39
		LIBDIR="${PREFIX}/lib"
42
		LIBDIR="${PREFIX}/lib"
40
43
41
PGSQL_PORTDIR=	${PORTSDIR}/databases/postgresql${PGSQL_VER}-client
44
PGSQL_PORTDIR=	${PORTSDIR}/databases/postgresql${PGSQL_VER}-server
42
45
43
.if !defined(NOPORTDOCS)
46
.if !defined(NOPORTDOCS)
44
BUILD_DEPENDS+=	xsltproc:${PORTSDIR}/textproc/libxslt \
47
BUILD_DEPENDS+=	xsltproc:${PORTSDIR}/textproc/libxslt \
45
		${LOCALBASE}/share/xsl/docbook/html/chunk.xsl:${PORTSDIR}/textproc/docbook-xsl 
48
		${LOCALBASE}/share/xsl/docbook/html/chunk.xsl:${PORTSDIR}/textproc/docbook-xsl
46
MAKE_ARGS+=	WITH-DOC=yes \
49
MAKE_ARGS+=	WITH-DOC=yes \
47
		DOCSDIR="${DOCSDIR}"
50
		DOCSDIR="${DOCSDIR}"
48
PORTDOCS=	*
51
PORTDOCS=	*
49
.endif
52
.endif
50
53
54
.if defined(WITH_UTF8)
55
LIB_DEPENDS+=	iconv:${PORTSDIR}/converters/libiconv
56
MAKE_ARGS+=	USE_ICONV=1
57
.endif
58
51
.if defined(WITH_GEOS)
59
.if defined(WITH_GEOS)
52
LIB_DEPENDS+=	geos.2:${PORTSDIR}/graphics/geos
60
LIB_DEPENDS+=	geos.2:${PORTSDIR}/graphics/geos
53
MAKE_ARGS+=	USE_GEOS=1
61
MAKE_ARGS+=	USE_GEOS=1
Lines 65-72 Link Here
65
	${MV} ${WRKDIR}/pgsql/postgresql* ${PGSQL_SRC} \
73
	${MV} ${WRKDIR}/pgsql/postgresql* ${PGSQL_SRC} \
66
74
67
post-install:
75
post-install:
68
	@ ${INSTALL_SCRIPT} ${FILESDIR}/updatedb.default ${PREFIX}/share/postgis
76
	@ ${INSTALL_DATA} ${FILESDIR}/updatedb.default ${PREFIX}/share/postgis
69
	@ ${INSTALL_SCRIPT} ${FILESDIR}/UPDATE ${PREFIX}/share/postgis
77
	@ ${INSTALL_DATA} ${FILESDIR}/README.upgrade ${PREFIX}/share/postgis
70
	@ ${SETENV} PKG_PREFIX=${PREFIX} \
78
	@ ${SETENV} PKG_PREFIX=${PREFIX} \
71
		${SH} ${PKGINSTALL} ${PORTNAME} POST-INSTALL
79
		${SH} ${PKGINSTALL} ${PORTNAME} POST-INSTALL
72
	@ ${CAT} ${PKGMESSAGE}
80
	@ ${CAT} ${PKGMESSAGE}
(-)postgis/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (postgis-0.9.1.tar.gz) = 43264e90d013aea9ce8f3f0c3540ac32
1
MD5 (postgis-1.0.0-rc2.tar.gz) = 7b39a1f3cec40cd30b2c1549a65e04c9
2
SIZE (postgis-0.9.1.tar.gz) = 491789
2
SIZE (postgis-1.0.0-rc2.tar.gz) = 1270939
(-)postgis/files/README.upgrade (+16 lines)
Line 0 Link Here
1
Updating databases from old versions of Postgis
2
3
The postgis library has its name changed, now the library is called
4
liblwgeom.so.1 instead of libpostgis.so.0 .
5
Databases created with older versions of postgis won't work properly, 
6
until all references of libpostgis.so.0 be corrected.
7
To solve this problem, please, make a dump (on text format) of your
8
database and use the PREFIX/share/updatedb script.
9
10
 sh PREFIX/share/updatedb dump.sql
11
12
A new file with '.updated' extension will be created with the library 
13
references updated.
14
After that, you can restore your database using the updated file. 
15
16
 psql -f dump.sql.updated database
(-)postgis/files/UPDATE (-14 lines)
Lines 1-14 Link Here
1
Updating databases from old versions of Postgis
2
3
Due the libpostgis.so.0 path modification, databases created with older 
4
versions of postgis won't work properly.
5
To solve this problem, please, make a dump (on text format) of your database 
6
and use the PREFIX/share/updatedb script.
7
8
 sh PREFIX/share/updatedb dump.sql
9
10
A new file with '.updated' extension will be created with libpostgis 
11
references updated.
12
After that you can restore your database using updated file. 
13
14
 psql -f dump.sql.updated database
(-)postgis/files/patch-a (-23 / +19 lines)
Lines 1-17 Link Here
1
--- doc/Makefile	Thu Sep  9 17:51:32 2004
1
--- doc/Makefile	Thu Jan 13 07:42:40 2005
2
+++ doc/Makefile.new	Wed Dec 29 09:49:05 2004
2
+++ doc/Makefile	Mon Jan 31 16:48:51 2005
3
@@ -5,14 +5,16 @@
3
@@ -1,20 +1,22 @@
4
 COMMONOPTS = -f docbook -b html -e no-valid
5
 LAST_RELEASE_VERSION = 1.0.0RC1
6
 
7
+include ../Makefile.config
8
+include $(top_srcdir)/src/Makefile.shlib
9
 
4
 postgis-out.xml: postgis.xml
10
 postgis-out.xml: postgis.xml
5
 	cat $< | sed "s/@@LAST_RELEASE_VERSION@@/$(LAST_RELEASE_VERSION)/g" > $@
11
 	cat $< | sed "s/@@LAST_RELEASE_VERSION@@/$(LAST_RELEASE_VERSION)/g" > $@
6
 
12
 
7
+# html/ch01.html html/ch02.html html/ch03.html html/ch04.html html/ch05.html html/index.html
8
+
9
 chunked-html: postgis-out.xml
13
 chunked-html: postgis-out.xml
10
-	xsltproc \
14
 	xsltproc \
11
-		--param shade.verbatim 1 \
15
-		--param shade.verbatim 1 \
12
+	xsltproc --param shade.verbatim 1 \
13
 		--param chunk.section.depth 0 \
14
+		--output html/ \
16
+		--output html/ \
17
 		--param chunk.section.depth 0 \
18
 		--param section.autolabel 1 \
19
 		--param section.label.includes.component.label 1 \
15
 		--stringparam html.stylesheet style.css \
20
 		--stringparam html.stylesheet style.css \
16
 		--stringparam saxon.character.representation decimal \
21
 		--stringparam saxon.character.representation decimal \
17
-		/usr/share/sgml/docbook/xsl-stylesheets/html/chunk.xsl \
22
-		/usr/share/sgml/docbook/xsl-stylesheets/html/chunk.xsl \
Lines 21-45 Link Here
21
 
26
 
22
 html: postgis-out.xml
27
 html: postgis-out.xml
23
 	xsltproc \
28
 	xsltproc \
24
@@ -20,11 +22,20 @@
29
@@ -53,3 +55,12 @@
25
 		--param shade.verbatim 1 \
30
 		postgis.out \
26
 		--param chunk.section.depth 0 \
31
 		postgis.log
27
 		--stringparam html.stylesheet style.css \
28
-		/usr/share/sgml/docbook/xsl-stylesheets/html/docbook.xsl \
29
+		/usr/local/share/xsl/docbook/html/docbook.xsl \
30
 		$<
31
 
32
 jw: postgis-out.xml
33
 	jw $(COMMONOPTS) -o html/ postgis-out.xml
34
 
32
 
35
 clean:
36
+	rm -f postgis-out.xml chunked-html html/*.html
37
+
38
+install: chunked-html
33
+install: chunked-html
34
+	$(mkinstalldirs) $(DOCSDIR)
35
+	$(INSTALL_DATA)	html/index.html $(DOCSDIR)/index.html
39
+	$(INSTALL_DATA)	html/ch01.html $(DOCSDIR)/ch01.html
36
+	$(INSTALL_DATA)	html/ch01.html $(DOCSDIR)/ch01.html
40
+	$(INSTALL_DATA)	html/ch02.html $(DOCSDIR)/ch02.html
37
+	$(INSTALL_DATA)	html/ch02.html $(DOCSDIR)/ch02.html
41
+	$(INSTALL_DATA)	html/ch03.html $(DOCSDIR)/ch03.html
38
+	$(INSTALL_DATA)	html/ch03.html $(DOCSDIR)/ch03.html
42
+	$(INSTALL_DATA)	html/ch04.html $(DOCSDIR)/ch04.html
39
+	$(INSTALL_DATA)	html/ch04.html $(DOCSDIR)/ch04.html
43
+	$(INSTALL_DATA)	html/ch05.html $(DOCSDIR)/ch05.html
40
+	$(INSTALL_DATA)	html/ch05.html $(DOCSDIR)/ch05.html
44
+	$(INSTALL_DATA)	html/index.html $(DOCSDIR)/index.html
41
+	$(INSTALL_DATA)	html/ch06.html $(DOCSDIR)/ch06.html
45
 
(-)postgis/files/patch-b (-5 / +13 lines)
Lines 1-6 Link Here
1
--- loader/Makefile	Wed Dec 29 16:31:54 2004
1
--- loader/Makefile	Wed Jan 12 15:03:57 2005
2
+++ loader/Makefile.new	Wed Dec 29 16:32:25 2004
2
+++ loader/Makefile	Mon Jan 31 14:36:59 2005
3
@@ -50,8 +50,8 @@
3
@@ -18,6 +18,7 @@
4
 
5
 ifeq ($(USE_ICONV),1)
6
 	override CFLAGS += -DUSE_ICONV
7
+	override LDFLAGS += -liconv
8
 endif
9
 
10
 override CFLAGS := -g -I.. -I$(srcdir) -I$(top_builddir)/src/interfaces/libpq $(CFLAGS) -DFRONTEND -DSYSCONFDIR='"$(sysconfdir)"' -DUSE_VERSION=$(USE_VERSION)
11
@@ -31,8 +32,8 @@
4
 	$(CC) $(CFLAGS) $(OBJS) shp2pgsql.o $(LDFLAGS) -o $@ 
12
 	$(CC) $(CFLAGS) $(OBJS) shp2pgsql.o $(LDFLAGS) -o $@ 
5
 
13
 
6
 install: all
14
 install: all
Lines 9-13 Link Here
9
+	$(INSTALL_PROGRAM) pgsql2shp$(EXE) $(DESTDIR)$(BINDIR)/pgsql2shp$(EXE)
17
+	$(INSTALL_PROGRAM) pgsql2shp$(EXE) $(DESTDIR)$(BINDIR)/pgsql2shp$(EXE)
10
+	$(INSTALL_PROGRAM) shp2pgsql$(EXE) $(DESTDIR)$(BINDIR)/shp2pgsql$(EXE)
18
+	$(INSTALL_PROGRAM) shp2pgsql$(EXE) $(DESTDIR)$(BINDIR)/shp2pgsql$(EXE)
11
 
19
 
12
 clean:
20
 uninstall:
13
 	@rm -f $(OBJS) shp2pgsql.o pgsql2shp.o shp2pgsql$(EXE) pgsql2shp$(EXE)
21
 	rm -f $(DESTDIR)$(bindir)/pgsql2shp$(EXE)
(-)postgis/files/patch-c (-54 / +7 lines)
Lines 1-64 Link Here
1
--- Makefile	Wed Dec 29 09:44:01 2004
1
--- Makefile	Mon Jan 31 12:51:48 2005
2
+++ Makefile.new	Wed Dec 29 09:56:30 2004
2
+++ Makefile	Mon Jan 31 12:56:14 2005
3
@@ -28,7 +28,7 @@
3
@@ -5,8 +5,14 @@
4
 #
4
 #-----------------------------------------------------
5
 # Download from: http://geos.refractions.net
6
 #
7
-USE_GEOS=1
8
+#USE_GEOS=1
9
 ifeq (${GEOS_DIR},) 
10
 	GEOS_DIR=/usr/local
11
 endif
12
@@ -105,10 +105,10 @@
13
 SCRIPTS_VERSION=0.0.1
14
 ifeq (${USE_VERSION}, 71) 
15
 	MODULE_FILENAME = $(LPATH)/$(shlib)
16
-	MODULE_INSTALLDIR = $(libdir)
17
+	MODULE_INSTALLDIR = $(LIBDIR)
18
 else
19
 	MODULE_FILENAME = $(LPATH)/$(shlib)
20
-	MODULE_INSTALLDIR = $(pkglibdir)
21
+	MODULE_INSTALLDIR = $(LIBDIR)
22
 endif
23
 
5
 
24
 #---------------------------------------------------------------
6
 all: liblwgeom loaderdumper
25
@@ -191,6 +191,10 @@
26
 postgis_geos_wrapper.o: postgis_geos_wrapper.cpp
27
 
28
 all: $(GEOS_RULES) all-lib postgis.sql postgis_undef.sql loaderdumper
29
+ifneq ($(WITH-DOC),)
7
+ifneq ($(WITH-DOC),)
30
+	$(MAKE) -C doc chunked-html
8
+	$(MAKE) -C doc chunked-html
31
+endif
9
+endif
32
+
33
 
34
 loaderdumper:
35
 	$(MAKE) -C loader
36
@@ -207,11 +211,15 @@
37
 	perl create_undef.pl $< $(USE_VERSION) > $@ 
38
 
10
 
39
 install: all installdirs install-postgis-lib
11
 install: all liblwgeom-install loaderdumper-install
40
-	$(INSTALL_DATA) postgis.sql $(DESTDIR)$(datadir)
41
-	$(INSTALL_DATA) postgis_undef.sql $(DESTDIR)$(datadir)
42
-	$(INSTALL_DATA) spatial_ref_sys.sql $(DESTDIR)$(datadir)
43
-	$(INSTALL_DATA) README.postgis $(DESTDIR)$(datadir)
44
+	$(INSTALL_DATA) postgis.sql $(DESTDIR)$(DATADIR)/postgis.sql.default
45
+	$(INSTALL_DATA) postgis_undef.sql $(DESTDIR)$(DATADIR)
46
+	$(INSTALL_DATA) spatial_ref_sys.sql $(DESTDIR)$(DATADIR)
47
+	$(INSTALL_DATA) README.postgis $(DESTDIR)$(DATADIR)
48
 	$(MAKE) DESTDIR=$(DESTDIR) -C loader install
49
+ifneq ($(WITH-DOC),)
12
+ifneq ($(WITH-DOC),)
50
+	$(MAKE) INSTALL_DATA="$(INSTALL_DATA)" DOCSDIR=$(DOCSDIR) -C doc install
13
+	$(MAKE) INSTALL_DATA="$(INSTALL_DATA)" DOCSDIR=$(DOCSDIR) -C doc install
51
+endif
14
+endif
52
+
53
 
54
 #- This has been copied from postgresql and adapted
55
 install-postgis-lib: $(shlib)
56
@@ -235,7 +243,7 @@
57
 	./geos_version.sh $(GEOS_DIR) > postgis_geos_version.h
58
 
15
 
59
 installdirs:
16
 uninstall: liblwgeom-uninstall loaderdumper-uninstall
60
-	$(mkinstalldirs) $(docdir)/contrib $(datadir)/contrib $(libdir)
61
+	$(mkinstalldirs) $(DATADIR) $(libdir)
62
 
17
 
63
 uninstall: uninstall-lib
64
 	@rm -f $(docdir)/contrib/README.postgis $(datadir)/contrib/postgis.sql
(-)postgis/files/patch-d (+38 lines)
Line 0 Link Here
1
--- lwgeom/Makefile	Wed Jan 26 06:35:56 2005
2
+++ lwgeom/Makefile	Mon Jan 31 13:28:00 2005
3
@@ -21,10 +21,10 @@
4
 SCRIPTS_VERSION=0.1.0
5
 ifeq (${USE_VERSION},71) 
6
 	MODULE_FILENAME = $(LPATH)/$(shlib)
7
-	MODULE_INSTALLDIR = $(libdir)
8
+	MODULE_INSTALLDIR = $(LIBDIR)
9
 else
10
 	MODULE_FILENAME = $(LPATH)/$(shlib)
11
-	MODULE_INSTALLDIR = $(pkglibdir)
12
+	MODULE_INSTALLDIR = $(LIBDIR)
13
 endif
14
 
15
 #---------------------------------------------------------------
16
@@ -123,7 +123,7 @@
17
 install: all installdirs install-lwgeom-lib install-lwgeom-scripts
18
 
19
 install-lwgeom-scripts:
20
-	$(INSTALL_DATA) lwpostgis.sql $(DESTDIR)$(datadir)
21
+	$(INSTALL_DATA) lwpostgis.sql $(DESTDIR)$(DATADIR)/lwpostgis.sql.default
22
 
23
 #- This has been copied from postgresql and adapted
24
 install-lwgeom-lib: $(shlib)
25
@@ -147,10 +147,11 @@
26
 	sh ../geos_version.sh $(GEOS_DIR) > postgis_geos_version.h
27
 
28
 installdirs:
29
-	$(mkinstalldirs) $(libdir)
30
+	$(mkinstalldirs) $(LIBDIR)
31
+	$(mkinstalldirs) $(DATADIR)
32
 
33
 uninstall-lwgeom-scripts:
34
-	rm -f $(DESTDIR)$(datadir)/lwpostgis.sql
35
+	rm -f $(DESTDIR)$(DATADIR)/lwpostgis.sql
36
 
37
 uninstall: uninstall-lib uninstall-lwgeom-scripts
38
 
(-)postgis/files/updatedb.default (-1 / +2 lines)
Lines 2-5 Link Here
2
2
3
LIBDIR=%%LIBDIR%%
3
LIBDIR=%%LIBDIR%%
4
4
5
sed "s|'.*/libpostgis.so.0'|'${LIBDIR}/libpostgis.so.0'|g" $1 > $1.updated
5
sed "s|'.*/libpostgis\.so\.0'|'${LIBDIR}/liblwgeom.so.1'|g
6
     s|'.*/liblwgeom\.so\.1'|'${LIBDIR}/liblwgeom.so.1'|g $1 > $1.updated
(-)postgis/pkg-deinstall (-1 / +1 lines)
Lines 5-11 Link Here
5
  "POST-DEINSTALL")
5
  "POST-DEINSTALL")
6
	PREF=${PREFIX:-$PKG_PREFIX}
6
	PREF=${PREFIX:-$PKG_PREFIX}
7
	SHAREDIR=${PREF}/share/postgis
7
	SHAREDIR=${PREF}/share/postgis
8
	rm -f ${SHAREDIR}/postgis.sql ${SHAREDIR}/updatedb
8
	rm -f ${SHAREDIR}/lwpostgis.sql ${SHAREDIR}/updatedb
9
	rmdir ${SHAREDIR}
9
	rmdir ${SHAREDIR}
10
  ;;
10
  ;;
11
esac
11
esac
(-)postgis/pkg-install (-5 / +4 lines)
Lines 4-13 Link Here
4
 echo "
4
 echo "
5
  ================== ** Postgis Upgrade Notice ** ===================
5
  ================== ** Postgis Upgrade Notice ** ===================
6
6
7
  The Postgis 0.9.1 port has changed the location of some files, 
7
  If you are a user from a old version of Postgis (0.9.1 or older), 
8
  including libpostgis.so.0 library. If you are a user from a old 
8
  make a backup from your databases before continue !
9
  version of Postgis (0.9.0 or older), make a backup from your 
10
  databases before continue !
11
9
12
  If you need to backup your data, press CTRL-C now !
10
  If you need to backup your data, press CTRL-C now !
13
11
Lines 43-50 Link Here
43
	PREF=${PREFIX:-$PKG_PREFIX}
41
	PREF=${PREFIX:-$PKG_PREFIX}
44
	SHAREDIR=${PREF}/share/postgis
42
	SHAREDIR=${PREF}/share/postgis
45
	LIBDIR=${PREF}/lib
43
	LIBDIR=${PREF}/lib
46
	sed -e "s|\$libdir|${LIBDIR}|g" ${SHAREDIR}/postgis.sql.default > ${SHAREDIR}/postgis.sql
44
	sed -e "s|\$libdir|${LIBDIR}|g" ${SHAREDIR}/lwpostgis.sql.default > ${SHAREDIR}/lwpostgis.sql
47
	sed -e "s|%%LIBDIR%%|${LIBDIR}|g" ${SHAREDIR}/updatedb.default > ${SHAREDIR}/updatedb
45
	sed -e "s|%%LIBDIR%%|${LIBDIR}|g" ${SHAREDIR}/updatedb.default > ${SHAREDIR}/updatedb
46
	chmod 0755 ${SHAREDIR}/updatedb
48
  ;;
47
  ;;
49
  "MESSAGE")
48
  "MESSAGE")
50
	msg
49
	msg
(-)postgis/pkg-message (-11 / +4 lines)
Lines 1-16 Link Here
1
=============================================================
1
=============================================================
2
2
3
Postgis Installation notes
3
Postgis Installation note
4
4
5
* The Postgis SQL files had its locations changed.
5
* The name of the postgis library has changed.
6
  Now they can be found at PREFIX/share/postgis
6
  Users from older versions (0.9.1 or older), *must* read 
7
7
  PREFIX/share/postgis/README.upgrade for instructions.
8
* HTML Documentation was added to this port and can be found
9
  at PREFIX/share/doc/postgis
10
11
* libpostgis.so and libpostgis.so.1 were moved from
12
  PREFIX/lib/postgresql to PREFIX/lib. 
13
  Users from older versions (0.9.0 or older), *must* read 
14
  PREFIX/share/postgis/UPDATE for instructions.
15
8
16
=============================================================
9
=============================================================
(-)postgis/pkg-plist (-7 / +4 lines)
Lines 1-13 Link Here
1
bin/pgsql2shp
1
bin/pgsql2shp
2
bin/shp2pgsql
2
bin/shp2pgsql
3
lib/libpostgis.so
3
lib/liblwgeom.so
4
lib/libpostgis.so.0
4
lib/liblwgeom.so.1
5
%%DATADIR%%/README.postgis
5
%%DATADIR%%/README.upgrade
6
%%DATADIR%%/UPDATE
7
%%DATADIR%%/postgis.sql.default
8
%%DATADIR%%/updatedb.default
6
%%DATADIR%%/updatedb.default
9
%%DATADIR%%/postgis_undef.sql
7
%%DATADIR%%/lwpostgis.sql.default
10
%%DATADIR%%/spatial_ref_sys.sql
11
%%PORTDOCS%%@unexec rmdir %D/%%DOCSDIR%% 2>/dev/null || true
8
%%PORTDOCS%%@unexec rmdir %D/%%DOCSDIR%% 2>/dev/null || true
12
@unexec rmdir %D/%%DATADIR%% 2>/dev/null || true
9
@unexec rmdir %D/%%DATADIR%% 2>/dev/null || true
13
@unexec rmdir %D/lib 2>/dev/null || true
10
@unexec rmdir %D/lib 2>/dev/null || true

Return to bug 76916