NB! This project is outdated and unmaintained, please refer to the OpenSC MacInstaller instead!
Changeset 101
- Timestamp:
-
09/10/07 14:23:43
(5 years ago)
- Author:
- jps
- Message:
-
New SCA release 0.2.2
- Location:
- trunk
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r97
|
r101
|
|
| | 1 | Version 0.2.2 |
| | 2 | ------------- |
| | 3 | - OpenSC: upgrade to 0.11.4 |
| | 4 | - LibP11: upgrade to 0.2.3 |
| | 5 | - Engine-pkcs11: upgrade to 0.1.4 |
| | 6 | |
| 1 | 7 | Version 0.2.1 |
| 2 | 8 | ------------- |
-
|
r100
|
r101
|
|
| 1 | 1 | BUILDHOME = $(PWD) |
| 2 | | OPENSCVERSION = 0.11.4-rc1 |
| 3 | | SCAVERSION = 0.2.2pre2 |
| | 2 | OPENSCVERSION = 0.11.4 |
| | 3 | SCAVERSION = 0.2.2 |
| 4 | 4 | LIBP11VERSION = 0.2.3 |
| 5 | 5 | ENGINEVERSION = 0.1.4 |
| … |
… |
|
| 102 | 102 | |
| 103 | 103 | opensc-$(OPENSCVERSION).tar.gz: |
| 104 | | # curl -O http://www.opensc-project.org/files/opensc/$@ |
| | 104 | curl -O http://www.opensc-project.org/files/opensc/$@ |
| 105 | 105 | # curl -O http://www.opensc-project.org/files/opensc/snapshots/$@ |
| 106 | | curl -O http://www.opensc-project.org/files/opensc/testing/$@ |
| | 106 | # curl -O http://www.opensc-project.org/files/opensc/testing/$@ |
| 107 | 107 | |
| 108 | 108 | libp11-$(LIBP11VERSION).tar.gz: |
-
|
r100
|
r101
|
|
| 1 | 1 | BUILDHOME = $(PWD) |
| 2 | 2 | OPENSSLVERSION = 0.9.8e |
| 3 | | OPENSCVERSION = 0.11.4-rc1 |
| | 3 | OPENSCVERSION = 0.11.4 |
| 4 | 4 | OPENSSHVERSION = 4.6p1 |
| 5 | 5 | LIBP11VERSION = 0.2.3 |
| … |
… |
|
| 63 | 63 | |
| 64 | 64 | opensc-$(OPENSCVERSION).tar.gz: |
| 65 | | # curl -O http://www.opensc-project.org/files/opensc/$@ |
| | 65 | curl -O http://www.opensc-project.org/files/opensc/$@ |
| 66 | 66 | # curl -O http://www.opensc-project.org/files/opensc/snapshots/$@ |
| 67 | | curl -O http://www.opensc-project.org/files/opensc/testing/$@ |
| | 67 | # curl -O http://www.opensc-project.org/files/opensc/testing/$@ |
| 68 | 68 | |
| 69 | 69 | libp11-$(LIBP11VERSION).tar.gz: |
-
|
r98
|
r101
|
|
| 1 | 1 | BUILDHOME = $(PWD) |
| 2 | | OPENSCVERSION = 0.11.2 |
| 3 | | SCAVERSION = 0.2.1 |
| | 2 | OPENSCVERSION = 0.11.4 |
| | 3 | SCAVERSION = 0.2.2 |
| 4 | 4 | IFDEGATEVERSION = 0.05 |
| 5 | 5 | LIBUSBVERSION = 0.1.12 |
-
|
r98
|
r101
|
|
| 1 | 1 | BUILDHOME = $(PWD) |
| 2 | | OPENSCVERSION = 0.11.2 |
| | 2 | OPENSCVERSION = 0.11.4 |
| 3 | 3 | IFDEGATEVERSION = 0.05 |
| 4 | 4 | LIBUSBVERSION = 0.1.12 |
| | 5 | PKGCONFIGVERSION = 0.22 |
| 5 | 6 | |
| 6 | 7 | |
| 7 | | all: build-opensc build-libusb build-ifd-egate |
| 8 | | clean: clean-opensc clean-libusb clean-ifd-egate |
| | 8 | all: build-pkg-config build-opensc build-libusb build-ifd-egate |
| | 9 | clean: clean-pkg-config clean-opensc clean-libusb clean-ifd-egate |
| 9 | 10 | transfer: |
| 10 | 11 | tar czf compiled-i386.tgz *-i386 |
| 11 | 12 | |
| | 13 | clean-pkg-config: |
| | 14 | rm -rf pkg-config |
| | 15 | rm -rf compiled-pkg-config |
| | 16 | rm -f fetch-pkg-config build-pkg-config |
| | 17 | |
| 12 | 18 | clean-opensc: |
| 13 | 19 | rm -rf opensc |
| … |
… |
|
| 25 | 31 | rm -f fetch-ifd-egate build-ifd-egate |
| 26 | 32 | |
| | 33 | pkg-config-$(PKGCONFIGVERSION).tar.gz: |
| | 34 | curl -O http://pkgconfig.freedesktop.org/releases/$@ |
| | 35 | |
| 27 | 36 | opensc-$(OPENSCVERSION).tar.gz: |
| 28 | 37 | curl -O http://www.opensc-project.org/files/opensc/$@ |
| … |
… |
|
| 35 | 44 | libusb-$(LIBUSBVERSION).tar.gz: |
| 36 | 45 | curl -O http://switch.dl.sourceforge.net/sourceforge/libusb/$@ |
| | 46 | |
| | 47 | fetch-pkg-config: pkg-config-$(PKGCONFIGVERSION).tar.gz |
| | 48 | rm -rf pkg-config |
| | 49 | tar xzvf $^ |
| | 50 | mv pkg-config-$(PKGCONFIGVERSION) pkg-config |
| | 51 | touch $@ |
| 37 | 52 | |
| 38 | 53 | fetch-opensc: opensc-$(OPENSCVERSION).tar.gz |
| … |
… |
|
| 55 | 70 | touch $@ |
| 56 | 71 | |
| | 72 | build-pkg-config: fetch-pkg-config |
| | 73 | cd pkg-config && \ |
| | 74 | ./configure --prefix=$(BUILDHOME)/compiled-pkg-config && \ |
| | 75 | make && \ |
| | 76 | make install |
| | 77 | touch $@ |
| | 78 | |
| 57 | 79 | build-opensc: fetch-opensc |
| 58 | 80 | cd opensc && \ |
| | 81 | PKG_CONFIG="$(BUILDHOME)/compiled-pkg-config/bin/pkg-config" \ |
| 59 | 82 | OPENSSL_CFLAGS="-I/usr/include" \ |
| 60 | 83 | OPENSSL_LIBS="-L/usr/lib -lcrypto" \ |