100b3e4e23
-- This is a simple Python script to register your dynamic IP address using the NIC V2.0 protocol. We aim to be fully compliant with the dyndns client specification.
39 lines
822 B
Makefile
39 lines
822 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2001/05/06 14:12:56 lebel Exp $
|
|
|
|
COMMENT= "fully compliant DynDNS.org client"
|
|
|
|
MV= 0
|
|
V= 101
|
|
PKGNAME= ipcheck-${MV}.${V}
|
|
DISTNAME= ipcheck.v${V}
|
|
CATEGORIES= net
|
|
NEED_VERSION= 1.402
|
|
EXTRACT_SUFX=
|
|
EXTRACT_ONLY=
|
|
|
|
HOMEPAGE= http://ipcheck.sourceforge.net/
|
|
|
|
MAINTAINER= David Lebel <lebel@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://ipcheck.sourceforge.net/releases/
|
|
|
|
RUN_DEPENDS= python::lang/python
|
|
|
|
NO_BUILD= Yes
|
|
WRKDIST= ${WRKDIR}
|
|
|
|
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} ${PREFIX}/bin/ipcheck.py
|
|
|
|
.include <bsd.port.mk>
|