debian/0000755000000000000000000000000011431620453007165 5ustar debian/compat0000644000000000000000000000000211133212165010357 0ustar 5 debian/changelog0000644000000000000000000000615211431620413011037 0ustar fprint-demo (20080303git-5ubuntu1) maverick; urgency=low * Merge with debian (lp: #603831), remaining changes - Add dh_icons in debian/rules to install icons - Build-depend on debhelper >= 5.0.51~ for dh_icons - Add usr/share/applications to debian/dirs -- Rohan Garg Sun, 15 Aug 2010 03:30:56 +0530 fprint-demo (20080303git-5) unstable; urgency=low * Generated proper patch file to handle re-configure'ing (some cleanup). * Bumped Standard-Version to 3.9.1; no changes needed. -- Ulises Vitulli Tue, 10 Aug 2010 21:20:44 -0300 fprint-demo (20080303git-4) unstable; urgency=low * Fix missing dependency on automake (introduced into package cleanup). -- Ulises Vitulli Fri, 04 Jun 2010 00:53:08 -0300 fprint-demo (20080303git-3) unstable; urgency=low * Moved to unstable branch, yay! - We need it for the whole fprint integration on testing/unstable. - Finger enrollment helps end-user to check her/his enrolls quality. * Switch package source format to 3.0 (quilt) (solves dirty autoscripts). * Several package updates (no upstream changes): - Mayor clean up on configure target and some clean on autoconf scripts, (Now we don't re-configure twice). - Bumped Standard-Version to 3.8.4; no changes needed. - Include upstream changelog. - Avoid applying upstream .desktop, and provide ours. -- Ulises Vitulli Thu, 03 Jun 2010 08:32:49 -0300 fprint-demo (20080303git-2) experimental; urgency=low * Update Standard-version to 3.8.3 (minor details): - debian/rules: remove deprecated dh_desktop (now is pushed by triggers). - debian/copyright: replaced copyright symbols. - debian/fprint-demo.desktop: Now UTF8 encoding is implicit. - debian/control: Added homepage field. -- Ulises Vitulli Fri, 22 Jan 2010 10:55:46 -0300 fprint-demo (20080303git-1) experimental; urgency=low * Git checkout ported to work with async libusb. -- Ulises Vitulli Wed, 05 Nov 2008 22:06:37 -0200 fprint-demo (20080202-3) experimental; urgency=low * Fixing installation of .desktop (Closes: 488320). * Removing deprecated 'Encoding' entry from .desktop. -- Ulises Vitulli Fri, 27 Jun 2008 20:04:23 -0300 fprint-demo (20080202-2ubuntu1) intrepid; urgency=low * debian/fprint-demo.desktop: + Removed "Encoding" in "Desktop Entry" is deprecated * debian/rules: (LP: #243619) + icon added + call dh_icons * debian/dirs: + added usr/share/applications * debian/control: + Standards-Version updated. + Set Ubuntu maintainer address. - Build-depend on debhelper >= 5.0.51~ for dh_icons -- Emanuele Gentili Fri, 27 Jun 2008 19:42:50 +0200 fprint-demo (20080202-2) experimental; urgency=low * Added +x perms to configure script (Closes: 472464) -- Miguel Gea Milvaques Fri, 28 Mar 2008 19:07:12 +0100 fprint-demo (20080202-1) experimental; urgency=low * Initial release (Closes: #469768) -- Ulises Vitulli Tue, 19 Feb 2008 11:15:48 -0200 debian/fprint-demo.desktop0000644000000000000000000000112611326332360013004 0ustar [Desktop Entry] Name=fprint-demo GenericName=Fingerprint demo program GenericName[fr]=Logiciel de démonstration de reconnaissances des empreintes digitales Comment=Fingerprint scanning demonstration Comment[ca]=Programari de demostració de reconeixement d'emprentes digitals Comment[es]=Programa de demostración de reconocimiento de huellas digitales Comment[fr]=Logiciel de démonstration pour le programme de reconnaissance d'empreinte digitale fprint Exec=fprint_demo Icon=/usr/share/pixmaps/fprint-demo.xpm Terminal=false Type=Application Categories=Utility;ComputerScience;ImageProcessing; debian/README.Debian0000644000000000000000000000043011133212165011217 0ustar fprint-demo for Debian ---------------------- Note that this software is considered unstable, please use it carefuly. For mor information, please check http://www.reactivated.net/fprint/wiki/Fprint_demo -- Ulises Vitulli Tue, 19 Feb 2008 11:15:48 -0200 debian/copyright0000644000000000000000000000236411326331102011116 0ustar This package was debianized by Ulises Vitulli on Tue, 19 Feb 2008 11:15:48 -0200. It was downloaded from http://projects.reactivated.net/snapshots/fprint_demo Upstream Author: Daniel Drake Copyright: Copyright © 2007 Daniel Drake License: This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. The Debian packaging is © 2008, Ulises Vitulli and is licensed under the GPL, see above. debian/rules0000755000000000000000000000424111431620045010243 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) config.status: dh_testdir # Add here commands to configure the package. ifneq "$(wildcard /usr/share/misc/config.sub)" "" cp -f /usr/share/misc/config.sub config.sub endif ifneq "$(wildcard /usr/share/misc/config.guess)" "" cp -f /usr/share/misc/config.guess config.guess 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="-Wl,-z,defs" build: build-stamp build-stamp: config.status dh_testdir # Add here commands to compile the package. $(MAKE) touch $@ clean: dh_testdir dh_testroot rm -f build-stamp [ ! -f Makefile ] || $(MAKE) distclean rm -f config.sub config.guess configure Makefile.in src/Makefile.in \ compile depcomp install-sh missing icons/Makefile.in \ icons/Makefile aclocal.m4 dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs # Add here commands to install the package into debian/fprint-demo. $(MAKE) DESTDIR=$(CURDIR)/debian/fprint-demo install dh_install debian/fprint-demo.xpm usr/share/pixmaps # I clean upstream .desktop and provide ours. rm $(CURDIR)/debian/fprint-demo/usr/share/applications/fprint_demo.desktop dh_install debian/fprint-demo.desktop usr/share/applications # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_installchangelogs NEWS dh_installdocs dh_icons dh_installmenu dh_installman dh_link dh_strip dh_compress dh_fixperms dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/patches/0000755000000000000000000000000011430366311010613 5ustar debian/patches/series0000644000000000000000000000002611430366311012026 0ustar evil-autogen_sh.patch debian/patches/evil-autogen_sh.patch0000644000000000000000000000060111430366224014725 0ustar Description: Avoid to exec configure twice Upstream autogen.sh carries a configure that can't handle (*)FLAGS Author: Ulises Vitulli Last-Update: <2010-06-04> --- fprint-demo-20080303git.orig/autogen.sh +++ fprint-demo-20080303git/autogen.sh @@ -2,4 +2,3 @@ aclocal || exit 1 autoconf || exit 1 automake -a -c || exit 1 -./configure --enable-maintainer-mode $* debian/control0000644000000000000000000000154211431620461010571 0ustar Source: fprint-demo Section: x11 Priority: extra Maintainer: Ubuntu Developers XSBC-Original-Maintainer: FingerForce Team Uploaders: Ulises Vitulli , Miguel Gea Milvaques Build-Depends: debhelper (>= 5.0.51~), autotools-dev, automake, libfprint-dev, libgtk2.0-dev, pkg-config Standards-Version: 3.9.1 Homepage: http://reactivated.net/fprint/ Package: fprint-demo Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: simple GTK+ testing libfprint's functions fprint-demo is a simple GTK+ application to demonstrate and test libfprint's capabilities . It allows user-interaction to enroll finger images and, depending scanner vendors, show both normal and binarized representation, including detected minutiaes debian/menu0000644000000000000000000000035111133212165010047 0ustar ?package(fprint-demo):needs="X11"\ hints="Biometrical,Fingerprint,Scanner"\ section="Applications/System/Hardware"\ title="Fprint demonstration utility"\ command="/usr/bin/fprint_demo"\ icon="/usr/share/pixmaps/fprint-demo.xpm" debian/fprint_demo.60000644000000000000000000000165211133212165011562 0ustar .\" May be distributed under the GNU General Public License .\" Copyright 2007 Ulises Vitulli .\" .TH fprint-demo 6 "February 19, 2008" "Debian Project" "Debian GNU/Linux manual" .SH NAME fprint-demo \- simple GTK+ testing libfprint's functions .SH DESCRIPTION fprint-demo is a simple GTK+ application to demonstrate and test libfprint's capabilities. .PP It allows user-interaction to enroll finger images and, depending scanner vendors, show both normal and binarized representation, including detected minutiaes. fprint-demo is one piece of the Fprint Project suite, leading by Daniel Drake .PP .B Note that this software is preeliminar, and does not provide a hardened environment and you should not really heavily on this. .PP For more information, please check 'http://www.reactivated.net/fprint/wiki/Fprint_demo' .SH AUTHOR This manpage was writen by Ulises Vitulli for the Debian project debian/dirs0000644000000000000000000000006011431620045010042 0ustar usr/bin usr/share/pixmaps usr/share/applicationsdebian/docs0000644000000000000000000000001411133212165010027 0ustar NEWS README debian/fprint-demo.xpm0000644000000000000000000001104311133212165012132 0ustar /* XPM */ static char * fprint_demo_xpm[] = { "32 30 159 2", " c None", ". c #000000", "+ c #021517", "@ c #031A22", "# c #000507", "$ c #012D37", "% c #003A49", "& c #00495A", "* c #023E4F", "= c #010D10", "- c #010E11", "; c #003844", "> c #043642", ", c #011015", "' c #002F3B", ") c #004454", "! c #00495B", "~ c #205B6A", "{ c #21444F", "] c #2A4A54", "^ c #3C606B", "/ c #073C4E", "( c #003542", "_ c #003846", ": c #003845", "< c #003946", "[ c #004251", "} c #065465", "| c #2C505D", "1 c #314E57", "2 c #042B34", "3 c #012730", "4 c #002A35", "5 c #00404E", "6 c #005062", "7 c #194C5A", "8 c #204A58", "9 c #335F6E", "0 c #395F6C", "a c #36515C", "b c #000404", "c c #00313D", "d c #003A48", "e c #002B36", "f c #003440", "g c #004656", "h c #004E62", "i c #005063", "j c #004958", "k c #124351", "l c #245C6D", "m c #2C5A69", "n c #2F525F", "o c #3A5D68", "p c #466774", "q c #04323E", "r c #042229", "s c #002832", "t c #003C4A", "u c #003543", "v c #002C37", "w c #003541", "x c #004051", "y c #004D5D", "z c #14596B", "A c #1F4855", "B c #30515C", "C c #385763", "D c #01252F", "E c #002730", "F c #003847", "G c #00404F", "H c #0B4754", "I c #275664", "J c #305967", "K c #345864", "L c #375661", "M c #012831", "N c #002E38", "O c #004252", "P c #003B4A", "Q c #00313B", "R c #004C5C", "S c #044150", "T c #124C59", "U c #225665", "V c #2D6171", "W c #2F5765", "X c #38606F", "Y c #39616E", "Z c #01252C", "` c #004352", " . c #003C49", ".. c #003F4D", "+. c #053F4F", "@. c #023E4C", "#. c #054150", "$. c #005769", "%. c #045465", "&. c #144E5D", "*. c #215462", "=. c #2E6272", "-. c #30616E", ";. c #03232D", ">. c #002932", ",. c #004050", "'. c #003442", "). c #003E4D", "!. c #004150", "~. c #045161", "{. c #165463", "]. c #1F5262", "^. c #245A69", "/. c #003641", "(. c #003F4E", "_. c #024659", ":. c #004759", "<. c #003A47", "[. c #025869", "}. c #085869", "|. c #065669", "1. c #004D5E", "2. c #01353F", "3. c #003642", "4. c #033E4D", "5. c #002E3A", "6. c #002D38", "7. c #003945", "8. c #043946", "9. c #004254", "0. c #00414F", "a. c #000406", "b. c #000408", "c. c #023A46", "d. c #00333F", "e. c #045062", "f. c #003E4E", "g. c #00343E", "h. c #003B4B", "i. c #012B33", "j. c #031C22", "k. c #00313E", "l. c #003441", "m. c #023D4B", "n. c #002934", "o. c #002731", "p. c #06404F", "q. c #003745", "r. c #004654", "s. c #003D4B", "t. c #00252F", "u. c #042E3B", "v. c #00313C", "w. c #002A34", "x. c #03191E", "y. c #010A0B", "z. c #031E26", "A. c #02232B", "B. c #031B21", " . . ", " . . . + @ # . . . ", " . . $ % & * = . ", " . - ; > . ", " . , ' ) ! ~ { ] ^ / . ", " . . ( _ : < [ } | 1 2 . ", " . 3 4 5 6 7 8 9 0 a b ", " . . c d e f g h i j k l m n o p q . ", " . r s t u v w x g y z A B C . ", " . D E F t f G H I J K L . ", " . M N O u P d Q w R S T U V W X Y . ", " . Z t ( ` ...+.@.#.G $.%.&.*.=.-. . ", " . . ;.>.,. '.).!.) t ,.R ~.{.].^. . ", " . . . /. . .(._.:.<. [.}.|.1.2.. ", " . . 4 3. 4.5.6.7.8.9.) 0. 6 5 a. ", " . . b.4 c.d.[ e.f.g.h.& g i.. ", " . . j. k.l. .m. 6.f.5 n.. ", " . . . @ o.p.d.q.r.(. s.: q.t.. . ", " . . . 3 u. .v.P w.x.. . . ", " . . . . y.z.A.B.. . . . . . . ", " . . . . . . . . . . ", " . . . . . ", " . . . . ", " . . . . . ", " . . . . ", " . . . . ", " . . . . ", " . . . . ", " . . . ", " . "}; debian/manpages0000644000000000000000000000002511133212165010674 0ustar debian/fprint_demo.6 debian/source/0000755000000000000000000000000011401730432010461 5ustar debian/source/format0000644000000000000000000000001411401727265011701 0ustar 3.0 (quilt)