This commit is contained in:
Ulises Vitulli
2011-04-19 22:10:40 +00:00
parent 7cee8069fd
commit c1b8b7950b
3 changed files with 11 additions and 9 deletions
+3
View File
@@ -1,6 +1,9 @@
libfprint (20110418git-1) unstable; urgency=low libfprint (20110418git-1) unstable; urgency=low
* New upstream release. * New upstream release.
* Removing resigned uploader from the Uploaders filed (Closes: #595719).
* Cleaning out 'dependency_libs' for multiarch support (Closes: #620447).
* Added libnss as build-depend for uru4000.
* Added Validity VFS101 device support. * Added Validity VFS101 device support.
* Bump Standard-version up to 3.9.2.0 (no changes needed). * Bump Standard-version up to 3.9.2.0 (no changes needed).
+4 -3
View File
@@ -1,10 +1,11 @@
Source: libfprint Source: libfprint
Priority: extra Priority: extra
Maintainer: FingerForce Team <fingerforce-devel@lists.alioth.debian.org> Maintainer: FingerForce Team <fingerforce-devel@lists.alioth.debian.org>
Uploaders: Ulises Vitulli <dererk@debian.org>, Miguel Gea Milvaques <xerakko@debian.org> Uploaders: Ulises Vitulli <dererk@debian.org>
Build-Depends: debhelper (>= 5), autotools-dev, libtool, automake, Build-Depends: debhelper (>= 5), autotools-dev, libtool, automake,
libusb-1.0-0-dev, libssl-dev, libglib2.0-dev, libmagick9-dev, libxv-dev libusb-1.0-0-dev, libssl-dev, libglib2.0-dev, libmagick9-dev, libxv-dev,
Standards-Version: 3.9.1 libnss3-dev
Standards-Version: 3.9.2.0
Homepage: http://reactivated.net/fprint/ Homepage: http://reactivated.net/fprint/
Section: libs Section: libs
+4 -6
View File
@@ -23,7 +23,6 @@ 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
./autogen.sh
./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" ./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"
@@ -42,11 +41,7 @@ clean:
# 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
# Remove auto* cache # Remove auto* cache
rm -rf m4 aclocal.m4 build-stamp rm -rf build-stamp
rm -rf Makefile.in config.log compile config.guess \
config.h.in config.sub configure depcomp \
doc/Makefile.in examples/Makefile.in install-sh \
libfprint/Makefile.in ltmain.sh missing
dh_clean dh_clean
install: build install: build
@@ -57,6 +52,9 @@ install: build
# Add here commands to install the package into debian/tmp # Add here commands to install the package into debian/tmp
$(MAKE) DESTDIR=$(CURDIR)/debian/tmp install $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
set -e; for file in `ls $(CURDIR)/debian/tmp/usr/lib/*.la`; do \
sed -i "/dependency_libs/ s/'.*'/''/" $$file; \
done
# Build architecture-independent files here. # Build architecture-independent files here.