mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
ae68e4cb1d
- Pet portlint - Pass maintainership to submitter PR: ports/117137 Submitted by: Philippe Audeoud <jadawin tuxaco.net> Approved by: clsung (mentor)
35 lines
752 B
Makefile
35 lines
752 B
Makefile
# New ports collection makefile for: yaunc
|
|
# Date created: 5 March 2000
|
|
# Whom: nsayer@freebsd.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= yaunc
|
|
PORTVERSION= 1.02
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://www.redterror.net/code/yaunc/
|
|
|
|
MAINTAINER= jadawin@tuxaco.net
|
|
COMMENT= Yet another uptimes.net client
|
|
|
|
ALL_TARGET= bsd
|
|
CFLAGS+= -DCONFFILE=\\\"${PREFIX}/etc/yaunc.conf\\\"
|
|
|
|
PLIST_FILES= bin/yaunc \
|
|
etc/yaunc.conf.sample
|
|
|
|
USE_RC_SUBR= yaunc.sh
|
|
|
|
MAN1= yaunc.1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/yaunc.1
|
|
|
|
do-install:
|
|
${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
|
|
|
|
.include <bsd.port.mk>
|