alexxy 14/05/05 06:10:53 Modified: ChangeLog Added: libfprint-0.5.1-r1.ebuild Log: Add driver for vfs5011 fprintreaders, so thinkpad [x2,t4]40 will work (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key F82F92E6)
Revision Changes Path 1.33 sys-auth/libfprint/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/ChangeLog?rev=1.33&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/ChangeLog?rev=1.33&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/ChangeLog?r1=1.32&r2=1.33 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-auth/libfprint/ChangeLog,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- ChangeLog 20 Apr 2014 16:07:48 -0000 1.32 +++ ChangeLog 5 May 2014 06:10:53 -0000 1.33 @@ -1,6 +1,13 @@ # ChangeLog for sys-auth/libfprint # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/ChangeLog,v 1.32 2014/04/20 16:07:48 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/ChangeLog,v 1.33 2014/05/05 06:10:53 alexxy Exp $ + +*libfprint-0.5.1-r1 (05 May 2014) + + 05 May 2014; Alexey Shvetsov <ale...@gentoo.org> + +files/libfprint-0.5.1-add-vfs5011-driver.patch, +libfprint-0.5.1-r1.ebuild, + libfprint-0.5.1.ebuild: + Add driver for vfs5011 fprintreaders, so thinkpad [x2,t4]40 will work 20 Apr 2014; Michael Weber <x...@gentoo.org> libfprint-0.5.1.ebuild: Resign manifest 1.1 sys-auth/libfprint/libfprint-0.5.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/libfprint-0.5.1-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/libfprint-0.5.1-r1.ebuild?rev=1.1&content-type=text/plain Index: libfprint-0.5.1-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/libfprint-0.5.1-r1.ebuild,v 1.1 2014/05/05 06:10:53 alexxy Exp $ EAPI=5 inherit autotools eutils udev vcs-snapshot MY_PV="v_${PV//./_}" DESCRIPTION="library to add support for consumer fingerprint readers" HOMEPAGE="http://cgit.freedesktop.org/libfprint/libfprint/" SRC_URI="http://cgit.freedesktop.org/${PN}/${PN}/snapshot/${MY_PV}.tar.bz2 -> ${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~x86" IUSE="debug static-libs" RDEPEND="virtual/libusb:1 dev-libs/nss || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] x11-libs/gdk-pixbuf )" DEPEND="${RDEPEND} virtual/pkgconfig" src_prepare() { epatch "${FILESDIR}/${P}-add-vfs5011-driver.patch" eautoreconf } src_configure() { econf \ --with-drivers=all \ $(use_enable debug debug-log) \ $(use_enable static-libs static) \ -enable-udev-rules \ --with-udev-rules-dir=$(udev_get_udevdir)/rules.d # --disable-udev-rules fails https://bugs.freedesktop.org/show_bug.cgi?id=59076 # $(use_enable udev udev-rules) \ } src_install() { emake DESTDIR="${D}" install prune_libtool_files dodoc AUTHORS HACKING NEWS README THANKS TODO }