mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
d04156022a
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} is already the default, so for those ports where we are doing: @${MV} ${WRKDIR}/${PORTNAME} ${WRKSRC} to avoid the problem of conflicts with the rc.d script of the same name it is not necessary to define WRKSRC separately. Clean up this mistake of mine, and standardize for the others.
55 lines
1.2 KiB
Makefile
55 lines
1.2 KiB
Makefile
# New ports collection makefile for: inadyn
|
|
# Date created: 9 September 2005
|
|
# Whom: Alex Samorukov <samm@os2.kiev.ua>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= inadyn
|
|
PORTVERSION= 1.96.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://www.inatech.eu/inadyn/ \
|
|
${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= dhn
|
|
DISTNAME= ${PORTNAME}.v${PORTVERSION}
|
|
|
|
MAINTAINER= samm@os2.kiev.ua
|
|
COMMENT= INADYN - Simple DYNAMIC DNS client
|
|
|
|
USE_RC_SUBR= inadyn
|
|
USE_ZIP= yes
|
|
USE_DOS2UNIX= yes
|
|
USE_GMAKE= yes
|
|
MAKEFILE= makefile
|
|
|
|
.if !defined(NO_INSTALL_MANPAGES)
|
|
MAN8= inadyn.8
|
|
MAN5= inadyn.conf.5
|
|
.endif
|
|
|
|
PORTDOCS= readme.html
|
|
PLIST_FILES= bin/inadyn
|
|
|
|
post-extract:
|
|
@${MV} ${WRKDIR}/${PORTNAME} ${WRKSRC}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|gcc|$$\(CC\)|g' ${WRKSRC}/makefile
|
|
@${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX},g" \
|
|
${WRKSRC}/man/inadyn.8 ${WRKSRC}/readme.html \
|
|
${WRKSRC}/src/dyndns.h
|
|
|
|
do-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} -p ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/linux/inadyn ${PREFIX}/bin
|
|
.if !defined(NO_INSTALL_MANPAGES)
|
|
${INSTALL_MAN} ${WRKSRC}/man/inadyn.8 ${MANPREFIX}/man/man8
|
|
${INSTALL_MAN} ${WRKSRC}/man/inadyn.conf.5 ${MANPREFIX}/man/man5
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|