diff options
author | Wayne Cuddy <wcuddy[at]useunix[dot]net> | 2020-02-15 08:25:54 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-02-15 08:26:05 +0700 |
commit | 38648b44fa79f207201fb27cde0bc953260c9bdd (patch) | |
tree | 1defd1c8b594b259a2ed7b35a1524796714ada1f | |
parent | 20d99306257efa07c918787ca7fcae1200efc610 (diff) | |
download | slackbuilds-38648b44fa79f207201fb27cde0bc953260c9bdd.tar.gz |
network/ucarp: Fix command line processing.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | network/ucarp/getopt.patch | 12 | ||||
-rw-r--r-- | network/ucarp/ucarp.SlackBuild | 14 |
2 files changed, 24 insertions, 2 deletions
diff --git a/network/ucarp/getopt.patch b/network/ucarp/getopt.patch new file mode 100644 index 0000000000..c6221ac220 --- /dev/null +++ b/network/ucarp/getopt.patch @@ -0,0 +1,12 @@ +diff -ru ucarp-1.5.2.orig/src/ucarp_p.h ucarp-1.5.2/src/ucarp_p.h +--- ucarp-1.5.2.orig/src/ucarp_p.h 2009-05-27 21:39:23.000000000 +0000 ++++ ucarp-1.5.2/src/ucarp_p.h 2020-02-09 17:57:05.816000000 +0000 +@@ -1,7 +1,7 @@ + #ifndef __CARP_P_H__ + #define __CARP_P_H__ 1 + +-static const char *GETOPT_OPTIONS = "i:s:v:p:Pa:hb:k:x:nu:d:r:zf:BoSM"; ++static const char *GETOPT_OPTIONS = "i:s:v:p:Pa:hb:k:x:nu:d:r:zf:Bo:SM"; + + static struct option long_options[] = { + { "interface", 1, NULL, 'i' }, diff --git a/network/ucarp/ucarp.SlackBuild b/network/ucarp/ucarp.SlackBuild index 2e23d888a6..815e891e40 100644 --- a/network/ucarp/ucarp.SlackBuild +++ b/network/ucarp/ucarp.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for ucarp -# Copyright 2017 Wayne Cuddy, Fairfax, VA (USA) +# Copyright 2020 Wayne Cuddy, Fairfax, VA (USA) # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,9 +22,17 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# 2017 +# Initial release. +# +# 2020-02-10 +# Patch release to correct a bug that prevents the '-o' flag from working. +# + PRGNAM=ucarp VERSION=${VERSION:-1.5.2} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -69,6 +77,8 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +patch -p1 <$CWD/getopt.patch + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |