pcsc-ccid/pcsc-ccid.spec

102 lines
3.4 KiB
RPMSpec

#
# spec file for package pcsc-ccid
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: pcsc-ccid
%define _name ccid
BuildRequires: libusb-1_0-devel pcsc-lite-devel pkg-config udev
Version: 1.4.1
Release: 1
Group: Productivity/Security
License: LGPLv2.1+
Url: http://pcsclite.alioth.debian.org/ccid.html
Summary: PCSC Driver for CCID Based Smart Card Readers and GemPC Twin Serial Reader
Source: %{_name}-%{version}.tar.bz2
Source1: %{name}-rpmlintrc
Patch: SCsupported_HP_internal.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# openSUSE package pcsc-lite 1.6.6 is the first one which creates the scard UID and GID:
Requires: pcsc-lite >= 1.6.6
%define ifddir %(pkg-config libpcsclite --variable=usbdropdir)
%define LBRACE (
%define RBRACE )
%define QUOTE "
%define BACKSLASH \\
%define USBDRIVERS %(set -x ; bunzip2 <%{S:0} | tr a-z A-Z | sed -n 's/^ATTRS{IDVENDOR}==%{QUOTE}%{BACKSLASH}%{LBRACE}[^%{QUOTE}]*%{BACKSLASH}%{RBRACE}%{QUOTE}, ATTRS{IDPRODUCT}==%{QUOTE}%{BACKSLASH}%{LBRACE}[^%{QUOTE}]*%{BACKSLASH}%{RBRACE}%{QUOTE}.*$/modalias%{LBRACE}usb:v%{BACKSLASH}1p%{BACKSLASH}2d*dc*dsc*dp*ic*isc*ip*%{RBRACE}/p' | tr '%{BACKSLASH}n' ' ')
# We are not using Supplements here. User may want to choose between pcsc-lite and openct:
# Generic CCID devices:
Enhances: modalias(usb:*ic0Bisc00d*dc*dsc*dp*ic*isc*ip*)
# Kobil mIDentity:
Enhances: modalias(usb:v0D46p4081d*dc*dsc*dp*ic*isc*ip*)
# Other supported devices:
Enhances: %USBDRIVERS
%description
This package contains a generic USB CCID (Chip/Smart Card Interface
Devices) driver.
This driver is meant to be used with the PCSC-Lite daemon from the
pcsc-lite package.
Authors:
--------
Ludovic Rousseau <ludovic.rousseau@free.fr>
Carlos Prados
Olaf Kirch
%prep
%setup -q -n %{_name}-%{version}
%patch -p2
cp -a src/openct/LICENSE LICENSE.openct
cp -a src/towitoko/README README.towitoko
%build
%if %suse_version > 1100
./bootstrap
%endif
%configure\
--enable-twinserial
make %{?jobs:-j%jobs}
%install
%makeinstall
# Copied elsewhere:
rm $RPM_BUILD_ROOT%{_datadir}/doc/ccid/README_Kobil_mIDentity_switch.txt
rmdir $RPM_BUILD_ROOT%{_datadir}/doc/ccid
rmdir $RPM_BUILD_ROOT%{_datadir}/doc
mkdir -p $RPM_BUILD_ROOT/lib/udev
mkdir $RPM_BUILD_ROOT/lib/udev/rules.d
sed 's:GROUP="pcscd":GROUP="scard":' <src/92_pcscd_ccid.rules >$RPM_BUILD_ROOT/lib/udev/rules.d/92_pcscd_ccid.rules
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
# NEWS is empty
%doc AUTHORS ChangeLog COPYING LICENSE.openct README README.towitoko contrib/Kobil_mIDentity_switch/README_Kobil_mIDentity_switch.txt SCARDGETATTRIB.txt
%{_bindir}/*
%doc %{_mandir}/man?/*.*
%{_sbindir}/*
%config (noreplace) %{_sysconfdir}/reader.conf.d/*
%{ifddir}/*
/lib/udev/rules.d/*.rules
%changelog