diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-12-19 08:14:05 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-12-19 08:14:05 +0000 |
commit | ebf6615d5c378def8df484dc5428a43b9f0b4f58 (patch) | |
tree | 1a45ced1e10af52c709bb7f1ec31ac6971948158 /misc/yaunc/Makefile | |
parent | 4566ce779e5b09d60c0998d651d05c238398b980 (diff) |
- Update to version 0.05.
PR: 23627
Submitted by: Ports Furry
Notes
Notes:
svn path=/head/; revision=36083
Diffstat (limited to 'misc/yaunc/Makefile')
-rw-r--r-- | misc/yaunc/Makefile | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/misc/yaunc/Makefile b/misc/yaunc/Makefile index eb40390c8ba6..bbea94b4e6ee 100644 --- a/misc/yaunc/Makefile +++ b/misc/yaunc/Makefile @@ -1,28 +1,29 @@ -# New ports collection makefile for: yaunc -# Date created: 5 March 2000 -# Whom: nsayer@freebsd.org +# New ports collection makefile for: yaunc +# Date created: 5 March 2000 +# Whom: nsayer@freebsd.org # # $FreeBSD$ # PORTNAME= yaunc -PORTVERSION= 0.02 +PORTVERSION= 0.05 CATEGORIES= misc MASTER_SITES= http://www.redterror.net/code/yaunc/ -MAINTAINER= ports@freebsd.org - -WRKSRC= ${WRKDIR}/yaunc +MAINTAINER= ports@FreeBSD.org +ALL_TARGET= bsd MAN1= yaunc.1 +post-patch: + @${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/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 ) + ${INSTALL_PROGRAM} ${WRKSRC}/yaunc ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/yaunc.1 ${MANPREFIX}/man/man1 + ${INSTALL_DATA} -m 600 ${WRKSRC}/yaunc.conf ${PREFIX}/etc/yaunc.conf.sample + ${SED} -e "s:%%PREFIX%%:${PREFIX}:g" ${FILESDIR}/startup > \ + ${PREFIX}/etc/rc.d/yaunc.sh + ${CHMOD} 755 ${PREFIX}/etc/rc.d/yaunc.sh .include <bsd.port.mk> |