1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/net/ucarp/Makefile
Adam Weinberger aeac01a4bb Convert some more USE_BZIP2 to USES=tar:bzip2
Approved by:	portmgr (not really, but touches unstaged ports)
2014-07-29 21:43:17 +00:00

39 lines
877 B
Makefile

# Created by: Meno Abels <meno.abels@adviser.com>
# $FreeBSD$
PORTNAME= ucarp
PORTVERSION= 1.5.2
PORTREVISION= 2
CATEGORIES= net
MASTER_SITES= ftp://ftp.pureftpd.org/pub/pure-ftpd/misc/ucarp/ \
http://download.pureftpd.org/pub/ucarp/
MAINTAINER= alexey@renatasystems.org
COMMENT= Userlevel Common Address Redundancy Protocol
USES= tar:bzip2
OPTIONS_DEFINE= SCRIPTS
OPTIONS_DEFAULT=SCRIPTS
SCRIPTS_DESC= Install scripts to manage virtual IP
.include <bsd.port.options.mk>
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-nls
USE_RC_SUBR= ucarp
PLIST_FILES= sbin/ucarp
.if ${PORT_OPTIONS:MSCRIPTS}
PLIST_FILES+= sbin/ucarp-up \
sbin/ucarp-down
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/examples/bsd/vip-up.sh ${STAGEDIR}${PREFIX}/sbin/ucarp-up
${INSTALL_SCRIPT} ${WRKSRC}/examples/bsd/vip-down.sh ${STAGEDIR}${PREFIX}/sbin/ucarp-down
.endif
.include <bsd.port.mk>