blob: ab689f20904045ff483874422803ea62c31cc3b3 (
plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
#!/bin/bash
#
# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd>
source /usr/src/ports/Build/build.sh
NAME=gnupg
VERSION=2.0.19
BUILD=2
DEPENDS=('libgcrypt >= 1.5.0-1' 'libassuan >= 2.0.3-1' 'libksba >= 1.3.0-1' 'pth >= 2.0.7-1' 'capabilities >= 20130117-1')
# Description
cat > ${PKG}/install/slack-desc <<EOF
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
$(padd)|-----handy-ruler------------------------------------------------------|
${NAME}: gnupg (GNU Privacy Guard)
${NAME}:
${NAME}: GnuPG is GNU's tool for secure communication and data storage. It can
${NAME}: be used to encrypt data and to create digital signatures. It includes
${NAME}: an advanced key management facility and is compliant with the
${NAME}: proposed OpenPGP Internet standard as described in RFC2440 and the
${NAME}: S/MIME standard as described by several RFCs.
${NAME}:
${NAME}: Homepage: http://www.gnupg.org
${NAME}:
${NAME}:
EOF
cat >> ${PKG}/install/doinst.sh <<EOF
#!/bin/sh
install_info()
{
for file in "\${*}"; do
if [ -x usr/bin/install-info ]; then
usr/bin/install-info --info-dir=usr/share/info usr/share/info/\${file}.info.xz 2> /dev/null
fi
done
}
# Install texinfo files
install_info gnupg
EOF
REPOSITORY=ftp://ftp.gnupg.org/gcrypt/gnupg
# Sources
SRCNAME[0]=${NAME}
SRCVERS[0]=${VERSION}
SRCPACK[0]=${REPOSITORY}/${SRCNAME[0]}-${SRCVERS[0]}.tar.bz2
SRCCOPY[0]="GPL3 LGPL3"
build0()
{
CFLAGS="${FLAGS}" CXXFLAGS="${FLAGS}" \
./configure \
--build="${ARCH}-slackware-linux" \
--disable-dependency-tracking \
--disable-rpath \
--prefix="${SYS_DIR[usr]}" \
--mandir="${SYS_DIR[man]}" \
--infodir="${SYS_DIR[info]}" \
--sysconfdir="${SYS_DIR[etc]}" \
--libdir="${SYS_DIR[lib]}" \
--libexecdir="${SYS_DIR[lib]}/exec" \
--localstatedir="${SYS_DIR[var]}" \
--docdir="${SYS_DIR[doc]}/${SRCNAME[0]}-${SRCVERS[0]}"
make ${JOBS}
make install DESTDIR="${PKG}"
doc AUTHORS THANKS
changelog NEWS
(
cd ${DOC}
mv examples/gpgconf.conf .
rm -rf DETAILS HACKING KEYSERVER OpenPGP README TRANSLATE examples
)
install.dir ${PKG}${SYS_DIR[etc]}/gnupg
(
cd ${PKG}${SYS_DIR[bin]}
ln -sf gpg2 gpg
ln -sf gpgv2 gpgv
)
echo ".so man1/gpg2.1" > ${PKG}${SYS_DIR[man]}/man1/gpg.1
echo ".so man1/gpgv2.1" > ${PKG}${SYS_DIR[man]}/man1/gpgv.1
rm -f ${PKG}${SYS_DIR[share]}/gnupg/com-certs.pem
}
|