Magellan Linux

Contents of /branches/R11-unstable/extras/gnupg/gnupg-2.1.4-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 24862 - (show annotations) (download)
Wed May 27 12:39:11 2015 UTC (9 years ago) by niro
Original Path: trunk/extras/gnupg/gnupg-2.1.4-r1.smage2
File size: 1834 byte(s)
auto added: ver bump to 2.1.4-r1
1 # $Id$
2
3 PNAME="gnupg"
4 PVER="2.1.4"
5 PBUILD="r1"
6
7 PCAT="app-crypt"
8
9 DESCRIPTION="GnuPG is a complete and free replacement for PGP."
10 HOMEPAGE="http://www.gnupg.org/"
11
12 DEPEND=">= virtual/glibc
13 >= virtual/mta
14 >= sys-libs/readline-6.3
15 >= app-arch/bzip2-1.0.6
16 >= net-misc/curl-7.21
17 >= dev-libs/pth-2
18 >= app-crypt/libgpg-error-1.12
19 >= app-crypt/libgcrypt-1.6
20 >= app-crypt/libksba-1.3
21 >= app-crypt/libassuan-2
22 >= app-crypt/pinentry-0.9
23 >= app-crypt/npth-1.1"
24
25 SDEPEND=">= sys-dev/gettext-0.18
26 >= sys-apps/texinfo-5"
27
28 SRCFILE="${PNAME}-${PVER}.tar.bz2"
29 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
30
31 sminclude mbuild mtools
32 msetfeature "!check"
33
34 SRC_URI=(
35 #ftp://ftp.gnupg.org/gcrypt/${PNAME}/${SRCFILE}
36 ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/${PNAME}/${SRCFILE}
37 mirror://${PNAME}/${SRCFILE}
38 mirror://${PNAME}/${PNAME}-${PVER}-dirmngr-no-ldap.patch
39 )
40
41 UP2DATE="updatecmd http://www.gnupg.org/download/index.en.html | grep ${PNAME}-2 |lasttarball"
42
43 src_prepare()
44 {
45 munpack ${SRCFILE} || die
46 cd ${SRCDIR}
47
48 # fix ldap deps
49 mpatch ${PNAME}-${PVER}-dirmngr-no-ldap.patch || die
50 mautoreconf || die
51 }
52
53 src_compile()
54 {
55 cd ${SRCDIR}
56
57 mconfigure \
58 --libexecdir=/usr/$(mlibdir)/${PNAME} \
59 --enable-nls \
60 --enable-symcryptrun \
61 --enable-gpg \
62 --enable-gpgsm \
63 --enable-agent \
64 --enable-bzip2 \
65 --enable-scdaemon \
66 --disable-ldap \
67 --disable-capabilities \
68 --without-ldap \
69 || die
70
71 mmake || die
72 }
73
74 src_install()
75 {
76 cd ${SRCDIR}
77 mmake DESTDIR=${BINDIR} install || die
78
79 # fix missing symlinks and man-pages
80 mlink gpg2 /usr/bin/gpg || die
81 mlink gpgv2 /usr/bin/gpgv || die
82 echo ".so man1/gpg2.1" > ${BINDIR}/usr/share/man/man1/gpg.1 || die
83 echo ".so man1/gpgv2.1" > ${BINDIR}/usr/share/man/man1/gpgv.1 || die
84
85 minstalldocs ABOUT-NLS AUTHORS ChangeLog COPYING NEWS README* TODO VERSION || die
86 }