pkgsrc/sysutils/safetynet/Makefile
jlam 3e474a90d8 Get rid of USE_PERL5. The new way to express needing the Perl executable
around at either build-time or at run-time is:

	USE_TOOLS+=	perl		# build-time
	USE_TOOLS+=	perl:run	# run-time

Also remove some places where perl5/buildlink3.mk was being included
by a package Makefile, but all that the package wanted was the Perl
executable.
2005-07-16 01:19:06 +00:00

36 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.7 2005/07/16 01:19:23 jlam Exp $
#
DISTNAME= safetynet-1.15
CATEGORIES= sysutils
MASTER_SITES= http://www.unixpimps.org/safetynet/
MAINTAINER= zuntum@NetBSD.org
HOMEPAGE= http://www.unixpimps.org/safetynet/
COMMENT= Safetynet is a perl script intended to monitor system services
WRKSRC= ${WRKDIR}
NO_BUILD= YES
USE_TOOLS+= perl:run
INSTALLATION_DIRS= bin etc
post-patch:
${SED} -e "s,/etc/safetynet.conf,${PREFIX}/etc/safetynet.conf,g" \
-e "s,/bin/mail,/usr/bin/mail,g" \
-e "s,ps -Af,ps ax,g" \
-e "s,/usr/bin/perl,${LOCALBASE}/bin/perl,g" \
${WRKSRC}/safetynet > ${WRKSRC}/safetynet.done
${MV} -f ${WRKSRC}/safetynet.done ${WRKSRC}/safetynet
${SED} -e "s,/usr/local/apache/bin/apachectl,${LOCALBASE}/sbin/apachectl,g" \
-e "s,/usr/local,${PREFIX},g" \
${WRKSRC}/safetynet.conf > ${WRKSRC}/safetynet.conf.done
${MV} ${WRKSRC}/safetynet.conf.done ${WRKSRC}/safetynet.conf
do-install:
${INSTALL_SCRIPT} -m 700 ${WRKSRC}/safetynet ${PREFIX}/bin/safetynet
${INSTALL_DATA} -m 600 ${WRKSRC}/safetynet.conf ${PREFIX}/etc/safetynet.conf.sample
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/safetynet
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/safetynet/README
.include "../../mk/bsd.pkg.mk"