Overview
Comment: | CACKey 0.5.6
Added RPM Spec file |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 0.5.6 |
Files: | files | file ages | folders |
SHA1: |
b5db4e9add7b4d09c63ff6cdb8af9b88 |
User & Date: | rkeene on 2010-05-22 18:33:41 |
Other Links: | manifest | tags |
Context
2010-05-22
| ||
18:46 |
CACKey 0.5.7
Corrected typo in specfile check-in: 356be62ad7 user: rkeene tags: 0.5.7, trunk | |
18:33 |
CACKey 0.5.6
Added RPM Spec file check-in: b5db4e9add user: rkeene tags: 0.5.6, trunk | |
2010-05-21
| ||
22:09 | Updated comments regarding bug in GDM check-in: dd81bbaf7e user: rkeene tags: trunk | |
Changes
Modified build/makearch.info from [f66c6f5146] to [31c5bfbd6a].
︙ | ︙ | |||
21 22 23 24 25 26 27 | # @@VERS@@ becomes the utility version # @@DATE@@ becomes the current date DOCS="README.txt LICENSE" DOC_HDR="HEADER" # These files follow the same convention as DOCS, but don't have the header # tacked onto them. | | | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | # @@VERS@@ becomes the utility version # @@DATE@@ becomes the current date DOCS="README.txt LICENSE" DOC_HDR="HEADER" # These files follow the same convention as DOCS, but don't have the header # tacked onto them. UPDATE_VARS="cackey.spec" # This script is executed immediately after copying the files # to a temp directory to attempt to compile BEFORE="build/build.sh" # This script is executed immediately prior to creation of the # tarball |
︙ | ︙ |
Added cackey.spec version [91e025066a].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | Summary: PC/SC PKCS#11 Provider for Government Smartcards Name: cackey Version: @@VERS@@ Release: 1aceit License: Public Domain Packager: Roy Keene <roy.keene@us.army.mil> URL: https://software.forge.mil/sf/frs/do/listReleases/projects.community_cac/frs.cackey Source: %{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-root %description CACKey provides a standard interface (PKCS#11) for smartcards connected to a PC/SC compliant reader. It performs a similar function to "CoolKey", but only supports Government Smartcards. It supports all Government Smartcards that implement the Government Smartcard Interoperability Specification (GSC-IS) v2.1 or newer. %prep %setup -q %build CFLAGS="%{optflags}" \ ./configure \ --prefix=%{_prefix} \ --libdir=%{_libdir} --mandir=%{_mandir} make %{?_smp_mflags} %install if [ ! %{buildroot} = "/" ]; then %{__rm} -rf %{buildroot}; fi make DESTDIR=%{buildroot} install %clean if [ ! %{buildroot} = "/" ]; then %{__rm} -rf %{buildroot}; fi %files %defattr(-,root,root) %{_libdir}/libcackey.so %{_libdir}/libcackey_g.so |
Modified configure.ac from [e16a9a4f89] to [0eb47a437c].
|
| | | 1 2 3 4 5 6 7 8 | AC_INIT(cackey, 0.5.6) AC_CONFIG_HEADERS(config.h) dnl Locate standard tools AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_AIX |
︙ | ︙ |