pkgsrc/net/ucarp/Makefile
hubertf e5a19caa6a Update ucarp to 1.5.2. Changes:
* Version 1.5.2:
 - Avoid adverts that might be twice what they should be on some Linux
systems (Steve Kehlet).

* Version 1.5.1:
 - A new option has been added to try using broadcast advertisements instead
of multicast ones.

* Version 1.5:
 - Breakage introducted with version 1.4 should finally be fixed, thanks to
Petr Kohts, Greg Walton and Steve Kehlet.
 - A new option has been added to ignore unplugged network cable detection,
useful when nodes are connected with a crossover cable, not with a switch.

* Version 1.4:
 - This version should finally fix every issue people had with gratuitous
ARP announcements.
 - Nodes configured with the same intervals shouln't flip-flop any more.

* Version 1.3:
 - Gratuitous ARP packets should now properly be sent, regardless of the
architecture.
 - New option: -m (-xparam=...) in order to add arbitrary arguments to
up/down scripts.
 - New option: -o (--passfile=...) in order to read the secret key from a
file.
 - A delayed ARP request is sent after the first one when switching to
MASTER, in order to deal with some layer-3 switches.
 - Bug fixes.

* Version 1.2:
 - Neutral mode (--neutral).
 - NetBSD compatibility.
 - Minor bug fixes.
2011-11-02 01:13:04 +00:00

33 lines
912 B
Makefile

# $NetBSD: Makefile,v 1.13 2011/11/02 01:13:04 hubertf Exp $
#
DISTNAME= ucarp-1.5.2
CATEGORIES= net
MASTER_SITES= ftp://ftp.ucarp.org/pub/ucarp/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= joel@carnat.net
HOMEPAGE= http://www.ucarp.org/project/ucarp
COMMENT= Common Address Redundancy Protocol (CARP) for Unix
PKG_DESTDIR_SUPPORT= user-destdir
USE_PKGLOCALEDIR= YES
GNU_CONFIGURE= YES
USE_TOOLS+= msgfmt
# pcap_freecode with one argument only
BUILDLINK_API_DEPENDS.libpcap+= libpcap>=0.6.0
INSTALLATION_DIRS+= share/doc/ucarp share/examples/ucarp
post-install:
for DOC in AUTHORS COPYING NEWS README; do \
${INSTALL_DATA} ${WRKSRC}/$$DOC ${DESTDIR}${PREFIX}/share/doc/ucarp; \
done
${INSTALL_SCRIPT} ${WRKSRC}/examples/bsd/*sh \
${DESTDIR}${PREFIX}/share/examples/ucarp
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../net/libpcap/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"