diff options
author | Peter Volkov <pva@gentoo.org> | 2013-05-07 11:29:08 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2013-05-07 11:29:08 +0000 |
commit | a6d20ae27600144779de8a9b9613198a5bf61e8b (patch) | |
tree | dcaf3a564dd0a569d46b1bf4abb42cc2283c9061 /sys-auth/libfprint/libfprint-0.5.0-r1.ebuild | |
parent | Fixed automake-1.13 build failure, bug #468850 (diff) | |
download | gentoo-2-a6d20ae27600144779de8a9b9613198a5bf61e8b.tar.gz gentoo-2-a6d20ae27600144779de8a9b9613198a5bf61e8b.tar.bz2 gentoo-2-a6d20ae27600144779de8a9b9613198a5bf61e8b.zip |
Backported from upstream support for 147e:2020 devices.
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key F1989B07)
Diffstat (limited to 'sys-auth/libfprint/libfprint-0.5.0-r1.ebuild')
-rw-r--r-- | sys-auth/libfprint/libfprint-0.5.0-r1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/sys-auth/libfprint/libfprint-0.5.0-r1.ebuild b/sys-auth/libfprint/libfprint-0.5.0-r1.ebuild new file mode 100644 index 000000000000..20f91893113c --- /dev/null +++ b/sys-auth/libfprint/libfprint-0.5.0-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/libfprint-0.5.0-r1.ebuild,v 1.1 2013/05/07 11:29:08 pva Exp $ + +EAPI=4 + +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}-automake-1.13.patch" + epatch "${FILESDIR}/${P}-support-147e_2020.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 +} |