diff options
Diffstat (limited to 'dns/zonenotify/Makefile')
-rw-r--r-- | dns/zonenotify/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dns/zonenotify/Makefile b/dns/zonenotify/Makefile new file mode 100644 index 000000000000..5b259b2233a5 --- /dev/null +++ b/dns/zonenotify/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: zonenotify +# Date created: 19 August 2005 +# Whom: Emanuel Haupt <ehaupt@critical.ch> +# +# $FreeBSD$ +# + +PORTNAME= zonenotify +PORTVERSION= 0.1 +CATEGORIES= dns +MASTER_SITES= http://morettoni.net/bsd/ \ + http://cvs.delink.net/mirrors/morettoni.net/ + +MAINTAINER= ehaupt@critical.ch +COMMENT= A dns notify sender written in C + +PLIST_FILES= bin/zonenotify +WRKSRC= ${WRKDIR}/${PORTNAME} + +do-build: + ${CC} -o ${WRKSRC}/${PORTNAME} ${CFLAGS} ${WRKSRC}/zonenotify.c + +.include <bsd.port.mk> |