Merge pull request #144541 from alyssais/vpnc-makefile-patch

vpnc: remove unnecessary patch
This commit is contained in:
Janne Heß 2021-11-07 21:48:54 +01:00 committed by GitHub
commit 17f230461a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 23 deletions

View File

@ -14,7 +14,7 @@ stdenv.mkDerivation {
rm -r $sourceRoot/{trunk,branches,tags}
'';
patches = [ ./makefile.patch ./no_default_route_when_netmask.patch ];
patches = [ ./no_default_route_when_netmask.patch ];
# The `etc/vpnc/vpnc-script' script relies on `which' and on
# `ifconfig' as found in net-tools (not GNU Inetutils).
@ -23,6 +23,16 @@ stdenv.mkDerivation {
nativeBuildInputs = [ makeWrapper ];
buildInputs = [libgcrypt perl openssl ];
makeFlags = [
"PREFIX=$(out)"
"ETCDIR=$(out)/etc/vpnc"
"SCRIPT_PATH=$(out)/etc/vpnc/vpnc-script"
];
postPatch = ''
patchShebangs makeman.pl
'';
preConfigure = ''
sed -i 's|^#OPENSSL|OPENSSL|g' Makefile

View File

@ -1,22 +0,0 @@
--- vpnc-0.5.1.orig/Makefile 2008-02-10 22:22:43.000000000 +0100
+++ vpnc-0.5.1/Makefile 2008-02-10 22:22:32.000000000 +0100
@@ -20,8 +20,8 @@
# $Id: Makefile 236 2007-09-05 20:40:59Z Joerg Mayer $
DESTDIR=
-PREFIX=/usr/local
-ETCDIR=/etc/vpnc
+PREFIX=$(out)
+ETCDIR=$(out)/etc/vpnc
BINDIR=$(PREFIX)/bin
SBINDIR=$(PREFIX)/sbin
MANDIR=$(PREFIX)/share/man
@@ -71,7 +71,7 @@
$(CC) -o $@ $^ $(LDFLAGS)
vpnc.8 : vpnc.8.template makeman.pl vpnc
- ./makeman.pl
+ perl makeman.pl
cisco-decrypt : cisco-decrypt.o config.o supp.o sysdep.o vpnc-debug.o
$(CC) -o $@ $^ $(LDFLAGS)