Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Don't use version plugins directory.
· bbe10a43
Bas Couwenberg
authored
May 07, 2018
bbe10a43
Set distribution to experimental.
· dd793e1f
Bas Couwenberg
authored
May 07, 2018
dd793e1f
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
dd793e1f
libgdal-grass (2.3.0~rc1-1~exp2)
UNRELEASED
; urgency=medium
libgdal-grass (2.3.0~rc1-1~exp2)
experimental
; urgency=medium
* Drop GRASSTABLES_DIR rules, removed in GDAL 2.2.0.
* Use dh_auto_install instead of make.
* Strip trailing whitespace from changelog & control files.
* Don't use version plugins directory.
-- Bas Couwenberg <sebastic@debian.org> Mon, 07 May 2018 1
4:43:59
+0200
-- Bas Couwenberg <sebastic@debian.org> Mon, 07 May 2018 1
9:08:06
+0200
libgdal-grass (2.3.0~rc1-1~exp1) experimental; urgency=medium
...
...
debian/lintian-overrides
View file @
dd793e1f
# The run path has been added to get GRASS internal library
libgdal-grass: binary-or-shlib-defines-rpath usr/lib/gdalplugins/
*/
gdal_GRASS.so /usr/lib/grass*/lib
libgdal-grass: binary-or-shlib-defines-rpath usr/lib/gdalplugins/
*/
ogr_GRASS.so /usr/lib/grass*/lib
libgdal-grass: binary-or-shlib-defines-rpath usr/lib/gdalplugins/gdal_GRASS.so /usr/lib/grass*/lib
libgdal-grass: binary-or-shlib-defines-rpath usr/lib/gdalplugins/ogr_GRASS.so /usr/lib/grass*/lib
debian/rules
View file @
dd793e1f
...
...
@@ -17,7 +17,6 @@ endif
PKGNAME
=
$(
shell
grep
Package: debian/control |
head
-1
|
cut
-d
' '
-f2
)
GRASS
=
grass
$(
subst .,,
$(
shell pkg-config
--modversion
grass |
cut
-d
.
-f1
,2
))
GRASS_ABI
=
grass
$(
subst .,,
$(
shell pkg-config
--modversion
grass |
cut
-d
.
-f1
,2,3 |
sed
-e
's/RC/-/'
))
GDAL
=
$(
shell
cat
VERSION |
cut
-d
.
-f1
,2
)
%
:
dh
$@
--with
autoreconf
--parallel
...
...
@@ -41,12 +40,12 @@ override_dh_auto_configure:
dh_auto_configure
--
\
--prefix
=
/usr
\
--with-autoload
=
/usr/lib/gdalplugins
/
$(
GDAL
)
\
--with-autoload
=
/usr/lib/gdalplugins
\
--with-grass
=
/usr/lib/
$(
GRASS
)
\
--with-postgres-includes
=
$(
shell pg_config
--includedir
)
override_dh_auto_install
:
dh_auto_install
--
AUTOLOAD_DIR
=
$(
CURDIR
)
/debian/
$(
PKGNAME
)
/usr/lib/gdalplugins
/
$(
GDAL
)
dh_auto_install
--
AUTOLOAD_DIR
=
$(
CURDIR
)
/debian/
$(
PKGNAME
)
/usr/lib/gdalplugins
override_dh_shlibdeps
:
dh_shlibdeps
-l
.:/usr/lib/
$(
GRASS
)
/lib
...
...