mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
28 lines
605 B
Makefile
28 lines
605 B
Makefile
# 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@FreeBSD.org
|
|
COMMENT= A dns notify sender written in C
|
|
|
|
PLIST_FILES= bin/zonenotify
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' \
|
|
${WRKSRC}/Makefile
|
|
|
|
do-build:
|
|
${CC} -o ${WRKSRC}/${PORTNAME} ${CFLAGS} ${WRKSRC}/zonenotify.c
|
|
|
|
.include <bsd.port.mk>
|