diff options
Diffstat (limited to 'misc/yaunc/Makefile')
-rw-r--r-- | misc/yaunc/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/misc/yaunc/Makefile b/misc/yaunc/Makefile new file mode 100644 index 0000000..bbdd9e7 --- /dev/null +++ b/misc/yaunc/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: yaunc +# Version required: 0.02 +# Date created: 5 March 2000 +# Whom: nsayer@freebsd.org +# +# $FreeBSD$ +# + +DISTNAME= yaunc-0.02 +CATEGORIES= misc +MASTER_SITES= http://www.redterror.net/code/yaunc/ + +MAINTAINER= nsayer@freebsd.org + +WRKSRC= ${WRKDIR}/yaunc + +MAN1= yaunc.1 + +do-install: + ( cd ${WRKSRC} ;\ + ${INSTALL_PROGRAM} yaunc ${PREFIX}/bin ;\ + ${INSTALL_DATA} -m 600 yaunc.conf ${PREFIX}/etc/yaunc.conf.sample ;\ + ${INSTALL_MAN} yaunc.man ${PREFIX}/man/man1/yaunc.1 ;\ + ${SED} s+%%PREFIX%%+${PREFIX}+g < ${FILESDIR}/startup > \ + ${PREFIX}/etc/rc.d/yaunc.sh ;\ + chmod 755 ${PREFIX}/etc/rc.d/yaunc.sh ) + +.include <bsd.port.mk> |