mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
34 lines
756 B
Makefile
34 lines
756 B
Makefile
# Created by: 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
|
|
|
|
USES= perl5
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
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
|
|
|
|
NO_STAGE= yes
|
|
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>
|