mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
76c7f8fbe6
minor COMMENT typos and surrounding whitespace fixes. Categories D-F. CR: D196 Approved by: portmgr (bapt)
35 lines
768 B
Makefile
35 lines
768 B
Makefile
# Created by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ipcheck
|
|
PORTVERSION= 0.240
|
|
PORTEPOCH= 1
|
|
CATEGORIES= dns python
|
|
MASTER_SITES= http://ipcheck.sourceforge.net/releases/
|
|
MASTER_SITE_SUBDIR= lioux
|
|
DISTNAME= ${PORTNAME}.${PORTVERSION:S/^0.//}
|
|
EXTRACT_SUFX=
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Fully compliant DynDNS.org client for UNIX (supports NIC v2.0)
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_PYTHON= yes
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/ipcheck.py
|
|
|
|
do-patch:
|
|
@${SED} \
|
|
-e "s!/usr/bin/python!${LOCALBASE}/bin/python!" \
|
|
-e "s!ppp0!tun0!" \
|
|
${DISTDIR}/${DISTNAME} > ${WRKDIR}/${DISTNAME}
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME} \
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME}.py
|
|
|
|
.include <bsd.port.mk>
|