mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
28989c4601
so I had to play it a bit by ear, but I didn't hear back from the maintainer. Noticed by: bento
35 lines
1012 B
Makefile
35 lines
1012 B
Makefile
# New ports collection makefile for: dhid
|
|
# Version required: 3.1
|
|
# Date created: Sat Aug 21 06:13:59 EDT 1999
|
|
# Whom: Oryx Gazella <oryx@ungulate.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= dhid-3.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.dhis.org/pub/dhis/
|
|
|
|
MAINTAINER= oryx@ungulate.net
|
|
|
|
MAN8= dhid.8
|
|
|
|
post-patch:
|
|
@${ECHO} "===> Patching dhid.h"
|
|
${PERL} -i -p -e "s^__PREFIX__^${PREFIX}^g" ${WRKSRC}/dhid.h
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/dhid ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/dhid.8 ${PREFIX}/man/man8
|
|
${INSTALL} ${COPY} -o root -g wheel -m 600 ${WRKSRC}/dhid.conf ${PREFIX}/etc/dhid.conf.sample
|
|
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/etc/rc.d/dhid.sh ]; then \
|
|
${ECHO} "===> Installing ${PREFIX}/etc/rc.d/dhid.sh startup file."; \
|
|
${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/dhid.sh; \
|
|
${ECHO} "[ -x ${PREFIX}/bin/dtool ] && ${PREFIX}/bin/dtool -s > /dev/null && echo -n ' dhid'" >> ${PREFIX}/etc/rc.d/dhid.sh; \
|
|
chmod 751 ${PREFIX}/etc/rc.d/dhid.sh; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|