3b0b61686a
inadyn is a C based client used to update DNS entries. This is a fork of the original INADYN implementation from Narcis Ilisei. Most of the fixes and additions from the new "upstream" by Christoph Brill have been added. However, this project is not a fork off of Christoph's repository, but rather a reengineered version of the original 1.96.2 release with all additional patches audited and merged separately. Additionally a further set of code cleanups, features and bug fixes have been added. ok ajacoutot@
32 lines
696 B
Makefile
32 lines
696 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/07/21 12:17:02 pea Exp $
|
|
|
|
COMMENT = small memory footprint dynamic dns updater
|
|
|
|
DISTNAME = inadyn-1.98.0
|
|
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = http://vmlinux.org/jocke/inadyn.shtml
|
|
|
|
MAINTAINER = Pierre-Emmanuel Andre <pea@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c
|
|
|
|
MASTER_SITES = ftp://ftp.vmlinux.org/pub/People/jocke/inadyn/
|
|
EXTRACT_SUFX = .tar.bz2
|
|
|
|
USE_GMAKE = Yes
|
|
NO_REGRESS = Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/inadyn/
|
|
${INSTALL_DATA} ${FILESDIR}/inadyn.conf ${PREFIX}/share/examples/inadyn/
|
|
|
|
.include <bsd.port.mk>
|