debian/{rules,control}: special treatment for Hurd. Thanks to Pino Toscano

for the patch. Really Closes: #626201
This commit is contained in:
Ludovic Rousseau 2011-06-22 14:36:15 +00:00
parent 277fd49853
commit fa5147e8c1
3 changed files with 17 additions and 1 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
pcsc-lite (1.7.3-2) unstable; urgency=low
* debian/{rules,control}: special treatment for Hurd. Thanks to Pino Toscano
for the patch. Really Closes: #626201
-- Ludovic Rousseau <rousseau@debian.org> Wed, 22 Jun 2011 16:33:26 +0200
pcsc-lite (1.7.3-1) unstable; urgency=low
* New upstream release

2
debian/control vendored
View File

@ -2,7 +2,7 @@ Source: pcsc-lite
Section: misc
Priority: optional
Maintainer: Ludovic Rousseau <rousseau@debian.org>
Build-Depends: debhelper (>= 7.0.50~), flex, autotools-dev, libudev-dev [linux-any], libusb2-dev [!linux-any], pkg-config
Build-Depends: debhelper (>= 7.0.50~), flex, autotools-dev, libudev-dev [linux-any], libusb2-dev [kfreebsd-any], pkg-config
Standards-Version: 3.9.2
Vcs-Svn: svn://svn.debian.org/svn/collab-maint/deb-maint/pcsc-lite/trunk
Vcs-Browser: http://svn.debian.org/viewsvn/collab-maint/deb-maint/pcsc-lite/trunk/

9
debian/rules vendored
View File

@ -1,3 +1,12 @@
#!/usr/bin/make -f
DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
ifeq ($(DEB_HOST_ARCH_OS),hurd)
EXTRA_CONFIGURE_ARGS += --disable-usb
endif
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- $(EXTRA_CONFIGURE_ARGS)