wok view vpnc-cert/receipt @ rev 15002

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 21:12:16 2013 +0000 (2013-08-10)
parents 7336f62c21cc
children 9689f1b75619
line source
1 # SliTaz package receipt.
3 PACKAGE="vpnc-cert"
4 SOURCE="vpnc"
5 VERSION="0.5.3"
6 CATEGORY="network"
7 SHORT_DESC="VPN client compatible with Cisco's EasyVPN equipment."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.unix-ag.uni-kl.de/~massar/vpnc/"
12 WGET_URL="$WEB_SITE$TARBALL"
13 CONFIG_FILES="/etc/vpnc"
14 TAGS="vpn tunnel"
15 PROVIDES="vpnc"
17 DEPENDS="libgcrypt libgpg-error glibc-base perl libcrypto"
18 BUILD_DEPENDS="libgcrypt-dev openssl-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 sed -i 's|^#OPENSSL|OPENSSL|' Makefile # breaks GPL license
25 sed -i "s|perl -w .*|&\\n sed -i '/Automatically/,\$\$!d' vpnc-debug.h|" Makefile
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr $fs/var/run/vpnc
33 cp -a $install/etc $fs
34 cp -a $install/usr/local/bin $fs/usr
35 cp -a $install/usr/local/sbin $fs/usr
36 sed -i 's|/usr/local/|/usr/|g' $fs/etc/vpnc/vpnc-script
37 }
39 # Pre and post install commands for Tazpkg.
40 post_install()
41 {
42 cat <<EOT
43 -------------
44 You can now update /etc/vpnc/default.conf
45 -------------
46 EOT
47 }