gcrypt/gcrypt.spec

Fri, 22 Oct 2010 23:00:28 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 22 Oct 2010 23:00:28 +0200
changeset 284
33c60a6d7034
parent 107
2f8ffdf7658b
child 285
a737f787c44a
permissions
-rw-r--r--

Resynchronize with upstream package maintainer version.

michael@106 1 ##
michael@106 2 ## gcrypt.spec -- OpenPKG RPM Package Specification
michael@284 3 ## Copyright (c) 2000-2010 OpenPKG Foundation e.V. <http://openpkg.net/>
michael@106 4 ##
michael@106 5 ## Permission to use, copy, modify, and distribute this software for
michael@106 6 ## any purpose with or without fee is hereby granted, provided that
michael@106 7 ## the above copyright notice and this permission notice appear in all
michael@106 8 ## copies.
michael@106 9 ##
michael@106 10 ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
michael@106 11 ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
michael@106 12 ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
michael@106 13 ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
michael@106 14 ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
michael@106 15 ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
michael@106 16 ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
michael@106 17 ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
michael@106 18 ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
michael@106 19 ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
michael@106 20 ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
michael@106 21 ## SUCH DAMAGE.
michael@106 22 ##
michael@106 23
michael@106 24 # package information
michael@106 25 Name: gcrypt
michael@106 26 Summary: Cryptography Library
michael@106 27 URL: ftp://ftp.gnupg.org/gcrypt/libgcrypt/
michael@106 28 Vendor: Werner Koch et al.
michael@106 29 Packager: OpenPKG Foundation e.V.
michael@106 30 Distribution: OpenPKG Community
michael@106 31 Class: PLUS
michael@106 32 Group: Cryptography
michael@106 33 License: LGPL
michael@284 34 Version: 1.4.6
michael@284 35 Release: 20100714
michael@107 36
michael@107 37 # package options
michael@107 38 %option with_idea no
michael@106 39
michael@106 40 # list of sources
michael@106 41 Source0: ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-%{version}.tar.gz
michael@107 42 Source1: idea.c
michael@107 43 Patch0: gcrypt.patch
michael@106 44
michael@106 45 # build information
michael@284 46 BuildPreReq: OpenPKG, openpkg >= 20100101, gpg-error, make, gcc
michael@284 47 PreReq: OpenPKG, openpkg >= 20100101, gpg-error
michael@106 48
michael@106 49 %description
michael@106 50 GCrypt is the split-out cryptography library from GnuPG.
michael@106 51
michael@106 52 %track
michael@106 53 prog gcrypt = {
michael@106 54 version = %{version}
michael@106 55 url = ftp://ftp.gnupg.org/gcrypt/libgcrypt/
michael@106 56 regex = libgcrypt-(__VER__)\.tar\.gz
michael@106 57 }
michael@106 58
michael@106 59 %prep
michael@106 60 %setup -q -n libgcrypt-%{version}
michael@107 61 %patch -p0
michael@107 62 %if "%{with_idea}" == "yes"
michael@107 63 echo $PWD
michael@107 64 pwd
michael@107 65 echo `pwd`
michael@107 66 cp %{SOURCE idea.c} cipher/
michael@107 67 %{l_shtool} subst \
michael@107 68 -e 's;^\(EXTRA_libcipher_la_SOURCES =\);\1 idea.c;' \
michael@107 69 -e 's;^\(GCRYPT_MODULES = .*[^\ \t]\)[\ \t]*$;\1 idea.lo;' \
michael@107 70 -e 's;^\(GCRYPT_CIPHERS = .*[^\ \t]\)[\ \t]*$;\1 idea.lo;' \
michael@107 71 -e 's;^\(LIBGCRYPT_CIPHERS = .*[^\ \t]\)[\ \t]*$;\1 idea;' \
michael@107 72 cipher/Makefile.in
michael@107 73 %{l_shtool} subst \
michael@107 74 -e 's;^\(available_ciphers="arcfour [^"][^"]*\)";\1 idea";' \
michael@107 75 configure
michael@107 76 %endif
michael@106 77
michael@106 78 %build
michael@106 79 ( echo "ac_cv_lib_pthread_pthread_create=no"
michael@106 80 echo "ac_cv_lib_pth_pth_version=no"
michael@106 81 ) >config.cache
michael@106 82 CC="%{l_cc}" \
michael@106 83 CFLAGS="%{l_cflags -O}" \
michael@107 84 %if "%{with_idea}" == "yes"
michael@107 85 CPPFLAGS="-DUSE_IDEA $CPPFLAGS" \
michael@107 86 %endif
michael@106 87 GREP="grep" \
michael@106 88 ./configure \
michael@106 89 --cache-file=./config.cache \
michael@106 90 --prefix=%{l_prefix} \
michael@106 91 --mandir=%{l_prefix}/man \
michael@106 92 --infodir=%{l_prefix}/info \
michael@106 93 --disable-shared
michael@106 94 %{l_make} %{l_mflags -O}
michael@106 95
michael@106 96 %install
michael@106 97 %{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT"
michael@106 98 rm -f $RPM_BUILD_ROOT%{l_prefix}/info/dir
michael@106 99 %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \
michael@106 100 %{l_files_std}
michael@106 101
michael@106 102 %files -f files
michael@106 103
michael@106 104 %clean
michael@106 105

mercurial