Codebase list geos / 5a3fba4
Remove disabled PHP support, has split off into separate upstream project. Bas Couwenberg 7 years ago
8 changed file(s) with 6 addition(s) and 73 deletion(s). Raw diff Collapse all Expand all
0 geos (3.5.0-5) UNRELEASED; urgency=medium
1
2 * Remove disabled PHP support, has split off into separate upstream project.
3
4 -- Bas Couwenberg <sebastic@debian.org> Tue, 30 Aug 2016 14:23:03 +0200
5
06 geos (3.5.0-4) unstable; urgency=medium
17
28 * Bump Standards-Version to 3.9.8, no changes.
44 Section: science
55 Priority: optional
66 Build-Depends: debhelper (>= 9),
7 # dh-php,
87 doxygen,
98 swig,
109 ruby,
1110 ruby-all-dev,
12 # php-dev,
13 # phpunit,
14 chrpath,
1511 dh-autoreconf,
1612 pkg-kde-tools
1713 Standards-Version: 3.9.8
127123 .
128124 This package contains the Ruby bindings for GEOS.
129125
130 #Package: php-geos
131 #Architecture: any
132 #Section: web
133 #Depends: ${shlibs:Depends},
134 # ${misc:Depends}
135 #Description: GEOS bindings for PHP
136 # GEOS provides a spatial object model and fundamental geometric
137 # functions. It implements the geometry model defined in the
138 # OpenGIS Consortium Simple Features Specification for SQL.
139 # .
140 # This package contains the PHP bindings for GEOS.
141
142126 Package: libgeos-dbg
143127 Architecture: any
144128 Section: debug
88 swig,
99 ruby,
1010 ruby-all-dev,
11 php5-dev,
12 phpunit,
13 chrpath,
1411 dh-autoreconf,
1512 pkg-kde-tools
1613 Standards-Version: 3.9.8
126123 .
127124 This package contains the Ruby bindings for GEOS.
128125
129 Package: php5-geos
130 Architecture: any
131 Section: web
132 Depends: php5-common,
133 ${shlibs:Depends},
134 ${misc:Depends}
135 Description: GEOS bindings for PHP
136 GEOS provides a spatial object model and fundamental geometric
137 functions. It implements the geometry model defined in the
138 OpenGIS Consortium Simple Features Specification for SQL.
139 .
140 This package contains the PHP bindings for GEOS.
141
142126 Package: libgeos-dbg
143127 Architecture: any
144128 Section: debug
+0
-1
debian/geos.ini less more
0 extension=geos.so
+0
-2
debian/php-geos.install less more
0 usr/lib/php/
1 etc/php/*/mods-available/
+0
-14
debian/php-geos.postinst less more
0 #!/bin/sh
1
2 set -e
3
4 # Source debconf library.
5 . /usr/share/debconf/confmodule
6
7 #DEBHELPER#
8
9 if [ "$1" = "configure" ]; then
10 phpenmod geos
11 fi
12
13 exit 0
+0
-11
debian/php-geos.prerm less more
0 #!/bin/sh
1
2 set -e
3
4 #DEBHELPER#
5
6 if [ "$1" = "remove" ]; then
7 phpdismod geos
8 fi
9
10 exit 0
1616
1717 # testrunner fails on some architectures
1818 DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
19
20 #PHPAPI=$(shell php-config --phpapi)
2119
2220 # Guessing geos version, which is required for C++ binding support
2321 VER_MAJOR=$(shell grep ^VERSION_MAJOR configure.*|cut -d= -f2)
5250 --host=$(DEB_HOST_GNU_TYPE) \
5351 --build=$(DEB_BUILD_GNU_TYPE) \
5452 --enable-ruby \
55 --disable-php \
5653 --mandir=\$${prefix}/share/man \
5754 --infodir=\$${prefix}/share/info \
5855 $(CONFFLAGS) \
7673 # Don't install geos.h & .inl files
7774 rm -f debian/tmp/usr/include/geos.h
7875 find debian/tmp/usr/include/geos -name "*.inl" -delete
79
80 # install PHP module to version specific directory
81 #echo 'misc:Depends=phpapi-'$(PHPAPI) >> debian/php-geos.substvars
82
83 # TODO: Use dh_php to install geos.ini
84 #-mkdir -p debian/tmp/etc/php/7.0/mods-available/
85 #install -m644 debian/geos.ini debian/tmp/etc/php/7.0/mods-available/
86
87 # Strip RPATH
88 #chrpath --delete debian/tmp/usr/lib/php/*/geos.so
8976
9077 # Remove .la files
9178 find debian/tmp/usr/lib -name '*.la' -delete