974099d0bd
Recent versions of gettext no longer install m4 files in PREFIX/share/aclocal. They have to be installed in the work directory by autopoint for aclocal to find them. Patch devel/autoconf so autoreconf runs autopoint when gettext related macros are used in configure.ac (e.g. AM_ICONV). Previously it only ran autopoint when AM_GNU_GETTEXT_(REQUIRE_)VERSION was used. The following ports now require autopoint (i.e. USES=gettext-tools): benchmarks/sysbench, devel/libhtp, editors/fxite, filesystems/rar2fs, graphics/gd, net/ucarp, news/fidogate, sysutils/cdrdao Other fixes: emulators/mednafen, misc/lifelines: Use older version of gettext macros. ftp/axel: Patch Makefile.am and configure.ac to get gettext working and add NLS option. ftp/wzdftpd: Use autoreconf 2.72. mail/sympa: Remove hack from configure.ac. multimedia/dvdauthor: Use ports autoreconf. net/asterisk-chan_sccp: Drop autoreconf and gettext-tools dependencies. security/pam_pkcs11: Patch configure.ac so autoreconf can find the custom directory with m4 files. sysutils/grub2-efi, sysutils/grub2-pcbsd: Add patch to run autoreconf with -f flag so it updates all files. www/wget2: Patch configure.ac to what autopoint expects. PR: 287167 Exp-run by: antoine
37 lines
920 B
Makefile
37 lines
920 B
Makefile
PORTNAME= ucarp
|
|
PORTVERSION= 1.5.2.20171201
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= jcpierri@gmail.com
|
|
COMMENT= Userlevel Common Address Redundancy Protocol
|
|
WWW= https://github.com/jedisct1/UCarp
|
|
|
|
LICENSE= ISC
|
|
LICENSE_NAME= ISC License
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
USES= autoreconf gettext-tools libtool
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= jedisct1
|
|
GH_PROJECT= UCarp
|
|
GH_TAGNAME= 4f339d4
|
|
USE_RC_SUBR= ucarp
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-nls
|
|
|
|
PLIST_FILES= sbin/ucarp
|
|
|
|
OPTIONS_DEFINE= SCRIPTS
|
|
OPTIONS_DEFAULT= SCRIPTS
|
|
|
|
SCRIPTS_DESC= Install scripts to manage virtual IP
|
|
SCRIPTS_PLIST_FILES= sbin/ucarp-up sbin/ucarp-down
|
|
|
|
post-install-SCRIPTS-on:
|
|
${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
|
|
|
|
.include <bsd.port.mk>
|