* Update freevrrpd to version 0.8.2 with a define correction for
< FBSD-4.3 systems (in_addr_t doesn't exist on < 4.3, it's u_int32_t). * Fix up description. PR: 34445 Submitted by: Sebastien Petit <spe@bsdfr.org>
This commit is contained in:
parent
bc6cba80d6
commit
f142c17836
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=54035
4 changed files with 9 additions and 19 deletions
|
@ -6,12 +6,14 @@
|
|||
#
|
||||
|
||||
PORTNAME= freevrrpd
|
||||
PORTVERSION= 0.8.1
|
||||
PORTVERSION= 0.8.2
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://www.bsdshell.net/download/
|
||||
|
||||
MAINTAINER= spe@bsdfr.org
|
||||
|
||||
MAN8= freevrrpd.8
|
||||
|
||||
MAKE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
|
||||
PTHREAD_LIBS="${PTHREAD_LIBS}"
|
||||
|
||||
|
@ -21,5 +23,6 @@ do-install:
|
|||
@${INSTALL_DATA} ${WRKSRC}/freevrrpd.conf.sample \
|
||||
${PREFIX}/etc/freevrrpd.conf
|
||||
@${INSTALL_DATA} ${WRKSRC}/freevrrpd.sh ${PREFIX}/etc/rc.d
|
||||
@${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${PREFIX}/man/man8
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (freevrrpd-0.8.1.tar.gz) = c694ba0a6f9afcb5937bf24fe438ed4c
|
||||
MD5 (freevrrpd-0.8.2.tar.gz) = afd780de16fdc2a60cb49e011556a64a
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
--- Makefile.orig Tue Jan 29 19:00:38 2002
|
||||
+++ Makefile Tue Jan 29 19:01:56 2002
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
PROG= freevrrpd
|
||||
SRCS= vrrp_misc.c vrrp_multicast.c vrrp_main.c vrrp_thread.c vrrp_state.c vrrp_network.c vrrp_interface.c vrrp_conf.c vrrp_signal.c # vrrp_list.c
|
||||
-CFLAGS= -pthread -D_THREAD_SAFE -D_REENTRANT
|
||||
-LDADD= -static -O2 -fomit-frame-pointer -Wall -pipe -ansi -lm
|
||||
+CFLAGS+= -D_REENTRANT -Wall ${PTHREAD_CFLAGS}
|
||||
+LDADD= -static -fomit-frame-pointer-ansi -lm ${PTHREAD_LIBS}
|
||||
WARNS= 0
|
||||
DESTDIR= /usr/local/libexec
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
freevrrpd is a VRRP (Virtual Router Redundancy Protocol) implemetation
|
||||
daemon under FreeBSD freevrrpd is a part of High UpTime project This
|
||||
daemon has been rewrited from scratch and is not based on existing
|
||||
projects. For this second public release, you can found:
|
||||
freevrrpd is a VRRP (Virtual Router Redundancy Protocol) implementation
|
||||
daemon under FreeBSD. freevrrpd is part of the High UpTime project.
|
||||
This daemon has been rewritten from scratch and is not based on
|
||||
existing projects. In this second public release, you can find:
|
||||
|
||||
* A daemon RFC 2338 Compliant adapted on FreeBSD systems
|
||||
* Implementation of Virtual Adresses
|
||||
|
|
Loading…
Reference in a new issue