diff options
author | wiz <wiz@pkgsrc.org> | 2006-01-13 18:42:48 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-01-13 18:42:48 +0000 |
commit | 1c2eea7924e50deff0c9d11bd7f873e7154160ed (patch) | |
tree | 99ad29421bc0535821b99ba0ce78f6325ab93347 /net/ucarp/Makefile | |
parent | 121436ea9e02370bd218dd085f9f7f1751ab3333 (diff) | |
download | pkgsrc-1c2eea7924e50deff0c9d11bd7f873e7154160ed.tar.gz |
Update to 1.1, provided by Joel Carnat in PR 29785.
* Version 1.1:
- The non-preemptive mode should work flawlessly.
- Syslog facilities can now be changed.
- Self-sent packets are now filtered out.
- Portability has been improved.
Diffstat (limited to 'net/ucarp/Makefile')
-rw-r--r-- | net/ucarp/Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/net/ucarp/Makefile b/net/ucarp/Makefile index 6a2db998a9a..878e14138eb 100644 --- a/net/ucarp/Makefile +++ b/net/ucarp/Makefile @@ -1,22 +1,30 @@ -# $NetBSD: Makefile,v 1.5 2005/07/26 10:47:19 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2006/01/13 18:42:48 wiz Exp $ # -DISTNAME= ucarp-1.0 -PKGREVISION= 1 +DISTNAME= ucarp-1.1 CATEGORIES= net -MASTER_SITES= http://www.pureftpd.org/ucarp/ +MASTER_SITES= ftp://ftp.ucarp.org/pub/ucarp/ EXTRACT_SUFX= .tar.bz2 -MAINTAINER= tech-pkg@NetBSD.org +MAINTAINER= joel@carnat.net HOMEPAGE= http://www.ucarp.org/ COMMENT= Common Address Redundancy Protocol (CARP) for Unix -GNU_CONFIGURE= yes -USE_PKGLOCALEDIR= yes +USE_PKGLOCALEDIR= YES +GNU_CONFIGURE= YES # pcap_freecode with one argument only BUILDLINK_DEPENDS.libpcap+= libpcap>=0.6.0 +post-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ucarp + for DOC in AUTHORS COPYING NEWS README; do \ + ${INSTALL_DATA} ${WRKSRC}/$$DOC ${PREFIX}/share/doc/ucarp; \ + done + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ucarp + ${INSTALL_SCRIPT} ${WRKSRC}/examples/bsd/*sh \ + ${PREFIX}/share/examples/ucarp + .include "../../devel/gettext-lib/buildlink3.mk" .include "../../net/libpcap/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |