f935a609c5
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
37 lines
884 B
Makefile
37 lines
884 B
Makefile
# New ports collection makefile for: updatedd
|
|
# Date created: 2003-12-02
|
|
# Whom: geniusj@ods.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= updatedd
|
|
PORTVERSION= 2.6
|
|
CATEGORIES= dns
|
|
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= geniusj@ods.org
|
|
COMMENT= Dynamic DNS Update Client supporting multiple services
|
|
|
|
USE_PERL5= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAN1= updatedd.1 updatedd-wrapper.1
|
|
MAN5= updatedd-wrapper.conf.5
|
|
|
|
.if defined(NOPORTDOCS)
|
|
EXTRA_PATCHES+= ${PATCHDIR}/extrapatch-disable-portdocs
|
|
.endif
|
|
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/etc/updatedd-wrapper.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/updatedd-wrapper.conf.sample ${PREFIX}/etc/updatedd-wrapper.conf ; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|