diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2022-03-27 14:03:15 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2022-03-27 14:03:15 +0200 |
commit | a7fdf31671fc8393d8c50ad2e14668ce5d78282a (patch) | |
tree | 1485efc73092a3b0694185d285a988fdd2c92df7 | |
parent | 065bc7b6ce151baec4b2e0d10ef43f828c03021a (diff) |
d/rules: Change configure parameter --enable-parport-directio to use only on hurd-i386; d/control: Change Build-Depend from virtual package libltdl3-dev to libltdl-dev
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 9 |
3 files changed, 13 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog index 693a296..87cf0b1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,12 @@ sane-backends (1.1.1-5) UNRELEASED; urgency=medium - * + * New debian/patches/0190-remove-kernel-driver-for-plustek_pp.patch: + - Remove kernel driver for plustek_pp (Closes: #1008275). + Cherry-picked from upstream. + * debian/rules: + - Change configure parameter --enable-parport-directio to use only on hurd-i386. + * debian/control: + - Change Build-Depend from virtual package libltdl3-dev to libltdl-dev. -- Jörg Frings-Fürst <debian@jff.email> Sat, 26 Mar 2022 10:17:02 +0100 diff --git a/debian/control b/debian/control index a7b9e87..87c1306 100644 --- a/debian/control +++ b/debian/control @@ -16,7 +16,7 @@ Build-Depends: libgphoto2-dev, libieee1284-3-dev [!hurd-i386], libjpeg-dev, - libltdl3-dev, + libltdl-dev, libpoppler-glib-dev, libsnmp-dev [!kfreebsd-any], libsystemd-dev [linux-any], diff --git a/debian/rules b/debian/rules index ef8e976..838508d 100755 --- a/debian/rules +++ b/debian/rules @@ -15,11 +15,12 @@ ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) endif ifeq (,$(filter hurd-i386,$(DEB_HOST_ARCH))) - INS_CONF = --enable-parport-directio -else INS_CONF = "" +else + INS_CONF = --enable-parport-directio endif + %: dh $@ @@ -55,8 +56,8 @@ endif --enable-pnm-backend \ --with-usb \ --without-v4l \ - --disable-locking \ - $(INS_CONF) + --disable-locking +# $(INS_CONF) override_dh_autoreconf: dh_autoreconf -Xlibtool.m4 |