Near an acceptable status

This commit is contained in:
Ulises Vitulli
2008-10-13 20:13:36 +00:00
parent e4ab7bcd23
commit ffe0b4732e
2 changed files with 21 additions and 12 deletions
+12 -2
View File
@@ -11,7 +11,8 @@ Package: libfprint-dev
Section: libdevel Section: libdevel
Architecture: any Architecture: any
Depends: libfprint0 (= ${binary:Version}) Depends: libfprint0 (= ${binary:Version})
Description: fingerprint library of fprint project, development headers Conflicts: libfprint0-old
Description: async fingerprint library of fprint project, development headers
The fprint project aims to support for consumer fingerprint reader devices. The fprint project aims to support for consumer fingerprint reader devices.
. .
Previously, Linux support for such devices has been scattered amongst different Previously, Linux support for such devices has been scattered amongst different
@@ -24,13 +25,18 @@ Description: fingerprint library of fprint project, development headers
work of talking to fingerprint reading devices, and processing fingerprint work of talking to fingerprint reading devices, and processing fingerprint
data. data.
. .
This library is based on new aproach of libusb-1.0, which handles asynchronous
callback model allowing to perform a non-blocking device task. Old synchronous
library has been renamed to libfprint-old.
.
This package provides development headers. This package provides development headers.
Package: libfprint0 Package: libfprint0
Section: libs Section: libs
Architecture: any Architecture: any
Depends: ${shlibs:Depends} Depends: ${shlibs:Depends}
Description: fingerprint library of fprint project, shared libraries Conflicts: libfprint0-old
Description: async fingerprint library of fprint project, shared libraries
The fprint project aims to support for consumer fingerprint reader devices. The fprint project aims to support for consumer fingerprint reader devices.
. .
Previously, Linux support for such devices has been scattered amongst different Previously, Linux support for such devices has been scattered amongst different
@@ -43,4 +49,8 @@ Description: fingerprint library of fprint project, shared libraries
work of talking to fingerprint reading devices, and processing fingerprint work of talking to fingerprint reading devices, and processing fingerprint
data. data.
. .
This library is based on new aproach of libusb-1.0, which handles asynchronous
callback model allowing to perform a non-blocking device task. Old synchronous
library has been renamed to libfprint-old.
.
This package provides shared libraries. This package provides shared libraries.
+4 -5
View File
@@ -23,7 +23,7 @@ endif
ifneq "$(wildcard /usr/share/misc/config.guess)" "" ifneq "$(wildcard /usr/share/misc/config.guess)" ""
cp -f /usr/share/misc/config.guess config.guess cp -f /usr/share/misc/config.guess config.guess
endif endif
./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-z,defs"
build: build-stamp build: build-stamp
@@ -38,12 +38,10 @@ build-stamp: config.status
clean: clean:
dh_testdir dh_testdir
dh_testroot dh_testroot
rm -f build-stamp rm -f build-stamp config.sub config.guess
# Add here commands to clean up after the build process. # Add here commands to clean up after the build process.
[ ! -f Makefile ] || $(MAKE) distclean [ ! -f Makefile ] || $(MAKE) distclean
rm -f config.sub config.guess
dh_clean dh_clean
install: build install: build
@@ -68,6 +66,7 @@ binary-arch: build install
dh_installdocs dh_installdocs
dh_install --sourcedir=debian/tmp dh_install --sourcedir=debian/tmp
dh_installman dh_installman
dh_installchangelogs
dh_link dh_link
dh_strip dh_strip
dh_compress dh_compress
@@ -80,4 +79,4 @@ binary-arch: build install
dh_builddeb dh_builddeb
binary: binary-indep binary-arch binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install .PHONY: build binary-indep binary-arch binary install