diff options
author | wiedi <wiedi@pkgsrc.org> | 2015-09-05 16:16:03 +0000 |
---|---|---|
committer | wiedi <wiedi@pkgsrc.org> | 2015-09-05 16:16:03 +0000 |
commit | dbf61f819f182520d2eb749545b0a65a372b6ae2 (patch) | |
tree | df06484545eca83d894122dd9ddb08ea382d8f57 /net | |
parent | 391cad13a8548ca94590bf79c27a75e98b3ce32f (diff) | |
download | pkgsrc-dbf61f819f182520d2eb749545b0a65a372b6ae2.tar.gz |
Update balance to 3.57
Latest Changes:
3.57: MAXGROUPS has been increased to 32
Diffstat (limited to 'net')
-rw-r--r-- | net/balance/Makefile | 6 | ||||
-rw-r--r-- | net/balance/distinfo | 10 | ||||
-rw-r--r-- | net/balance/patches/patch-aa | 23 |
3 files changed, 17 insertions, 22 deletions
diff --git a/net/balance/Makefile b/net/balance/Makefile index 4fe02214a02..396a3d24399 100644 --- a/net/balance/Makefile +++ b/net/balance/Makefile @@ -1,11 +1,11 @@ -# $NetBSD: Makefile,v 1.8 2015/02/04 01:52:41 mef Exp $ +# $NetBSD: Makefile,v 1.9 2015/09/05 16:16:03 wiedi Exp $ # -DISTNAME= balance-3.56 +DISTNAME= balance-3.57 CATEGORIES= net MASTER_SITES= http://www.inlab.de/ -MAINTAINER= pkgsrc-users@NetBSD.org +MAINTAINER= wiedi@frubar.net HOMEPAGE= http://www.inlab.de/balance.html COMMENT= TCP loadbalancer with roundrobin and failover LICENSE= gnu-gpl-v2 diff --git a/net/balance/distinfo b/net/balance/distinfo index 9cc7cb443ad..3ef82d83810 100644 --- a/net/balance/distinfo +++ b/net/balance/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.7 2015/02/11 12:00:01 mef Exp $ +$NetBSD: distinfo,v 1.8 2015/09/05 16:16:03 wiedi Exp $ -SHA1 (balance-3.56.tar.gz) = 04067301a9eda42659e88c3a9438bc1bf8a96902 -RMD160 (balance-3.56.tar.gz) = dc7fd1044abe78606bba01e6802363a653559563 -Size (balance-3.56.tar.gz) = 35477 bytes -SHA1 (patch-aa) = 10c01cdd545451a4d2dccc5f594925a6d59b5df0 +SHA1 (balance-3.57.tar.gz) = d10dbb01de10954d49be199018872cd168533ba3 +RMD160 (balance-3.57.tar.gz) = bf971da19de825c6b6b93528b30ac7b823fcc4f0 +Size (balance-3.57.tar.gz) = 35547 bytes +SHA1 (patch-aa) = fe9df5adc722a2fd855400aa7eac46987f58dc44 SHA1 (patch-ab) = b06c77231c223250f9dc20789d972f8e63dca9fa diff --git a/net/balance/patches/patch-aa b/net/balance/patches/patch-aa index b28b44868a8..a5bfff961fb 100644 --- a/net/balance/patches/patch-aa +++ b/net/balance/patches/patch-aa @@ -1,33 +1,31 @@ -$NetBSD: patch-aa,v 1.4 2015/02/11 12:00:01 mef Exp $ +$NetBSD: patch-aa,v 1.5 2015/09/05 16:16:03 wiedi Exp $ * Adjust for pkgsrc installation. ---- Makefile.orig 2013-11-06 19:56:36.000000000 +0900 -+++ Makefile 2015-02-04 10:43:31.000000000 +0900 -@@ -2,12 +2,12 @@ +--- Makefile.orig 2015-04-28 07:49:41.000000000 +0000 ++++ Makefile +@@ -2,5 +2,5 @@ #CFLAGS=-g -I. -CFLAGS=-O2 -Wall -Wstrict-prototypes -Wuninitialized +#CFLAGS=-O2 -Wall -Wstrict-prototypes -Wuninitialized # uncomment for any OS other than Cygwin - BALANCE=balance +@@ -8,5 +8,5 @@ BALANCE=balance ROOT=root INSTALL=install -BINDIR=/usr/sbin +BINDIR=${PREFIX}/sbin MANDIR=${BINDIR}/../man/man1 - # uncomment for Solaris: -@@ -20,16 +20,16 @@ MANDIR=${BINDIR}/../man/man1 - # BALANCE=balance.exe +@@ -21,5 +21,5 @@ MANDIR=${BINDIR}/../man/man1 # ROOT=Administrators -CC=gcc +#CC=gcc - RELEASE=3.56 + RELEASE=3.57 - all: balance +@@ -27,8 +27,8 @@ all: balance balance: balance.o butils.o - $(CC) $(CFLAGS) -I. -o balance balance.o butils.o $(LIBRARIES) @@ -38,9 +36,7 @@ $NetBSD: patch-aa,v 1.4 2015/02/11 12:00:01 mef Exp $ + $(CC) ${CPPFLAGS} $(CFLAGS) -I. -c balance.c butils.o: butils.c balance.h - $(CC) $(CFLAGS) -I. -c butils.c -@@ -48,12 +48,14 @@ clean: - rm -f $(BALANCE) *.o balance.ps balance.pdf +@@ -49,10 +49,12 @@ clean: install: - $(INSTALL) -o $(ROOT) -g $(ROOT) -m 755 $(BALANCE) \ @@ -57,4 +53,3 @@ $NetBSD: patch-aa,v 1.4 2015/02/11 12:00:01 mef Exp $ + chmod 1777 $(DESTDIR)${VARBASE}/run/balance release: balance.pdf - rm -rf ./releases/balance-$(RELEASE) |