From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- sys-apps/pcsc-lite/files/99-pcscd-hotplug.rules | 7 +++++ .../files/pcsc-lite-1.8.11-nopolkit.patch | 35 ++++++++++++++++++++++ .../files/pcsc-lite-1.8.11-polkit-pcscd.patch | 20 +++++++++++++ sys-apps/pcsc-lite/files/pcscd-init.5 | 23 ++++++++++++++ sys-apps/pcsc-lite/files/pcscd-init.6 | 23 ++++++++++++++ sys-apps/pcsc-lite/files/pcscd-init.7 | 23 ++++++++++++++ 6 files changed, 131 insertions(+) create mode 100644 sys-apps/pcsc-lite/files/99-pcscd-hotplug.rules create mode 100644 sys-apps/pcsc-lite/files/pcsc-lite-1.8.11-nopolkit.patch create mode 100644 sys-apps/pcsc-lite/files/pcsc-lite-1.8.11-polkit-pcscd.patch create mode 100644 sys-apps/pcsc-lite/files/pcscd-init.5 create mode 100644 sys-apps/pcsc-lite/files/pcscd-init.6 create mode 100644 sys-apps/pcsc-lite/files/pcscd-init.7 (limited to 'sys-apps/pcsc-lite/files') diff --git a/sys-apps/pcsc-lite/files/99-pcscd-hotplug.rules b/sys-apps/pcsc-lite/files/99-pcscd-hotplug.rules new file mode 100644 index 000000000000..936434acf657 --- /dev/null +++ b/sys-apps/pcsc-lite/files/99-pcscd-hotplug.rules @@ -0,0 +1,7 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +# We add this here so that it runs after ccid's and ifd-gempc's rules; +# if we just added a pcscd-owned device, we hotplug the pcscd service. +ACTION=="add", ENV{PCSCD}=="1", GROUP="pcscd", RUN+="/bin/env IN_HOTPLUG=1 /etc/init.d/pcscd --quiet start" diff --git a/sys-apps/pcsc-lite/files/pcsc-lite-1.8.11-nopolkit.patch b/sys-apps/pcsc-lite/files/pcsc-lite-1.8.11-nopolkit.patch new file mode 100644 index 000000000000..82fdb00d9ff1 --- /dev/null +++ b/sys-apps/pcsc-lite/files/pcsc-lite-1.8.11-nopolkit.patch @@ -0,0 +1,35 @@ +Index: pcsc-lite-1.8.11/configure.ac +=================================================================== +--- pcsc-lite-1.8.11.orig/configure.ac ++++ pcsc-lite-1.8.11/configure.ac +@@ -284,16 +284,15 @@ fi + POLKIT_MINIMUM=0.111 + AC_ARG_ENABLE(polkit, + AS_HELP_STRING([--enable-polkit], +- [Build with polkit support]), +- use_polkit=$withval, use_polkit=no) +-if test "$use_polkit" != "no"; then +- PKG_CHECK_MODULES(POLKIT, [polkit-gobject-1 >= $POLKIT_MINIMUM], [use_polkit=yes], [use_polkit=no]) +- if test "$use_polkit" != "no";then ++ [Build with polkit support])) ++if test "x$enable_polkit" != "xno"; then ++ PKG_CHECK_MODULES(POLKIT, [polkit-gobject-1 >= $POLKIT_MINIMUM], [enable_polkit=yes], [enable_polkit=no]) ++ if test "$enable_polkit" != "no";then + AC_DEFINE([HAVE_POLKIT], 1, [Build polkit access control support]) + polkit_policy_dir=$($PKG_CONFIG polkit-gobject-1 --variable=policydir) + AC_SUBST(POLICY_DIR, [$polkit_policy_dir]) + else +- use_polkit=no ++ enable_polkit=no + AC_MSG_ERROR([[ + *** + *** polkit >= $POLKIT_MINIMUM was not found. Access control will be disabled. +@@ -301,7 +300,7 @@ if test "$use_polkit" != "no"; then + *** ]]) + fi + fi +-AM_CONDITIONAL(ENABLE_POLKIT, test "$use_polkit" != "no") ++AM_CONDITIONAL(ENABLE_POLKIT, test "$enable_polkit" != "no") + + # --with-systemdsystemunitdir=DIR + AC_ARG_WITH([systemdsystemunitdir], diff --git a/sys-apps/pcsc-lite/files/pcsc-lite-1.8.11-polkit-pcscd.patch b/sys-apps/pcsc-lite/files/pcsc-lite-1.8.11-polkit-pcscd.patch new file mode 100644 index 000000000000..e7a7b515820e --- /dev/null +++ b/sys-apps/pcsc-lite/files/pcsc-lite-1.8.11-polkit-pcscd.patch @@ -0,0 +1,20 @@ +Index: pcsc-lite-1.8.11/doc/org.debian.pcsc-lite.policy +=================================================================== +--- pcsc-lite-1.8.11.orig/doc/org.debian.pcsc-lite.policy ++++ pcsc-lite-1.8.11/doc/org.debian.pcsc-lite.policy +@@ -15,6 +15,7 @@ + auth_admin + yes + ++ unix-user:pcscd + + + +@@ -25,6 +26,7 @@ + auth_admin + yes + ++ unix-user:pcscd + + + diff --git a/sys-apps/pcsc-lite/files/pcscd-init.5 b/sys-apps/pcsc-lite/files/pcscd-init.5 new file mode 100644 index 000000000000..4ff7dfdd58c0 --- /dev/null +++ b/sys-apps/pcsc-lite/files/pcscd-init.5 @@ -0,0 +1,23 @@ +#!/sbin/runscript +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +name="PC/SC Daemon" + +pidfile=/var/run/pcscd/pcscd.pid + +command=/usr/sbin/pcscd +command_args="${EXTRA_OPTS}" + +start_stop_daemon_args="--user pcscd:pcscd" + +depend() { + need localmount + after udev openct + use logger +} + +start_pre() { + checkpath -d -m 0755 -o pcscd:pcscd /var/run/pcscd +} diff --git a/sys-apps/pcsc-lite/files/pcscd-init.6 b/sys-apps/pcsc-lite/files/pcscd-init.6 new file mode 100644 index 000000000000..35b3038f201f --- /dev/null +++ b/sys-apps/pcsc-lite/files/pcscd-init.6 @@ -0,0 +1,23 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +name="PC/SC Daemon" + +pidfile=/run/pcscd/pcscd.pid + +command=/usr/sbin/pcscd +command_args="${EXTRA_OPTS}" + +start_stop_daemon_args="--user pcscd:pcscd" + +depend() { + need localmount + after udev openct + use logger +} + +start_pre() { + checkpath -d -m 0755 -o pcscd:pcscd /run/pcscd +} diff --git a/sys-apps/pcsc-lite/files/pcscd-init.7 b/sys-apps/pcsc-lite/files/pcscd-init.7 new file mode 100644 index 000000000000..b47e1df402d5 --- /dev/null +++ b/sys-apps/pcsc-lite/files/pcscd-init.7 @@ -0,0 +1,23 @@ +#!/sbin/runscript +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +name="PC/SC Daemon" + +pidfile=/run/pcscd/pcscd.pid + +command=/usr/sbin/pcscd +command_args="${EXTRA_OPTS}" + +start_stop_daemon_args="--user pcscd:pcscd" + +depend() { + need localmount + after udev openct dbus + use logger +} + +start_pre() { + checkpath -d -m 0755 -o pcscd:pcscd /run/pcscd +} -- cgit v1.2.3-65-gdbad