diff options
author | Gokturk Yuksek <gokturk@binghamton.edu> | 2015-11-03 18:14:45 -0500 |
---|---|---|
committer | Gokturk Yuksek <gokturk@binghamton.edu> | 2015-12-24 21:23:50 -0500 |
commit | 657ba44832727830f2ea042ee68295ba91701a05 (patch) | |
tree | 33258c697b5517bf0ffd6bec30dff9c53843698f /app-crypt/libu2f-host | |
parent | Bump 4.2.6 to 4.2.8 and 4.3.0 to 4.3.3. (diff) | |
download | gentoo-657ba44832727830f2ea042ee68295ba91701a05.tar.gz gentoo-657ba44832727830f2ea042ee68295ba91701a05.tar.bz2 gentoo-657ba44832727830f2ea042ee68295ba91701a05.zip |
app-crypt/libu2f-host: create the group 'plugdev' if necessary #564748
This ebuild installs a udev rule that creates matching hidraw nodes
with the group 'plugdev' for non-systemd configurations. However, it
does not create the group if it doesn't exist, causing attached
devices to fail permission checks.
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=564748
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'app-crypt/libu2f-host')
-rw-r--r-- | app-crypt/libu2f-host/libu2f-host-1.0.0-r1.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/app-crypt/libu2f-host/libu2f-host-1.0.0-r1.ebuild b/app-crypt/libu2f-host/libu2f-host-1.0.0-r1.ebuild new file mode 100644 index 000000000000..bb3bd4016cf7 --- /dev/null +++ b/app-crypt/libu2f-host/libu2f-host-1.0.0-r1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit autotools-utils linux-info udev user + +DESCRIPTION="Yubico Universal 2nd Factor (U2F) Host C Library" +HOMEPAGE="https://developers.yubico.com/libu2f-host/" +SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="kernel_linux static-libs systemd" + +RDEPEND=" + dev-libs/hidapi + dev-libs/json-c" +DEPEND="${RDEPEND} + virtual/pkgconfig" +RDEPEND="${RDEPEND} + systemd? ( sys-apps/systemd[acl] )" + +CONFIG_CHECK="~HIDRAW" + +pkg_setup() { + # The U2F device node will be owned by group 'plugdev' + # in non-systemd configurations + if ! use systemd; then + enewgroup plugdev + fi +} + +src_prepare() { + autotools-utils_src_prepare + + sed -e 's:TAG+="uaccess":MODE="0664", GROUP="plugdev":g' \ + 70-u2f.rules > 70-u2f-udev.rules || die +} + +src_configure() { + autotools-utils_src_configure +} + +src_install() { + autotools-utils_src_install + + if use kernel_linux; then + if use systemd; then + udev_dorules 70-u2f.rules + else + udev_newrules 70-u2f-udev.rules 70-u2f.rules + fi + fi +} + +pkg_postinst() { + if ! use systemd; then + elog "Users must be a member of the 'plugdev' group" + elog "to be able to access U2F devices" + fi +} |