Changeset 225 in pkcs11-helper
- Timestamp:
- 11/11/11 21:52:56 (6 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
Makefile.am (modified) (1 diff)
-
configure.ac (modified) (1 diff)
-
distro/rpm/pkcs11-helper.spec.in (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r199 r225 69 69 dist_doc_DATA=README COPYING.GPL COPYING.BSD COPYING 70 70 noinst_HEADERS=config-w32-vc.h 71 72 #73 # pkcs11-helper.spec must be on root for invalid RPM74 #75 dist-hook:76 $(LN_S) "distro/rpm/pkcs11-helper.spec" "$(distdir)/pkcs11-helper.spec" -
trunk/configure.ac
r221 r225 55 55 define([PACKAGE_VERSION_MINOR], [10]) 56 56 define([PACKAGE_VERSION_FIX], [0]) 57 define([PACKAGE_SUFFIX], [ -svn])57 define([PACKAGE_SUFFIX], [_svn]) 58 58 59 59 AC_INIT([pkcs11-helper],[PACKAGE_VERSION_MAJOR.PACKAGE_VERSION_MINOR[]PACKAGE_SUFFIX]) -
trunk/distro/rpm/pkcs11-helper.spec.in
r140 r225 1 # doc support 2 %bcond_with doc 3 1 4 %define name @PACKAGE@ 2 5 %define version @VERSION@ 3 6 %define release 2 4 7 %define prefix /usr 5 %define with_doc 06 8 7 9 Summary: pkcs11-helper is a helper library for the use with smart cards and the PKCS#11 API 8 10 Name: %{name} 9 11 Version: %{version} 10 Release: %{release} %{dist}12 Release: %{release} 11 13 License: GPL-2/BSD 12 14 Vendor: The OpenSC Project, http://www.opensc-project.org 13 Packager: Eddy Nigg <eddy_nigg@startcom.org>15 Packager: Alon Bar-Lev <alon.barlev@gmail.com> 14 16 Group: System/Crypto 15 17 Url: http://www.opensc-project.org/pkcs11-helper 16 18 Source: http://www.opensc-project.org/files/pkcs11-helper/%{name}-%{version}.tar.bz2 17 19 BuildRoot: /var/tmp/%{name}-%{version}-%{release} 18 %if %{ ?with_doc}20 %if %{with doc} 19 21 BuildRequires: doxygen 20 22 %endif … … 22 24 Requires: openssl >= 0.9.7a 23 25 Provides: %{name} = %{version} 24 25 26 %description 26 27 pkcs11-helper allows using multiple PKCS#11 providers at the same … … 35 36 Requires: %{name} >= %{version} 36 37 Requires: pkgconfig 37 38 38 %description devel 39 39 pkcs11-helper development files. 40 40 41 41 %prep 42 rm -rf "${RPM_BUILD_ROOT}" 42 43 %setup -q 43 44 … … 45 46 %configure -q \ 46 47 --disable-rpath \ 47 %if %{ ?with_doc}48 %if %{with doc} 48 49 --enable-doc 49 50 %endif … … 52 53 53 54 %install 54 if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi 55 55 rm -rf "${RPM_BUILD_ROOT}" 56 56 %makeinstall 57 57 58 58 %clean 59 if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi 59 rm -rf "${RPM_BUILD_ROOT}" 60 60 61 61 %files … … 71 71 %{_libdir}/pkgconfig/* 72 72 %{_datadir}/aclocal/* 73 %if %{ ?with_doc}73 %if %{with doc} 74 74 %{_docdir}/%{name}/api/* 75 75 %endif 76 76 77 77 %changelog 78 * Fri Nov 11 2011 Aon Bar-Lev <alon.barlev@gmail.com> 79 - Cleanups. 80 78 81 * Mon Feb 15 2007 Aon Bar-Lev <alon.barlev@gmail.com> 79 82 - Modify docs location.
Note: See TracChangeset
for help on using the changeset viewer.
