pkgsrc/net/nocol/Makefile
abs 9aa9298845 Update to 4.3.1nb1
- Modify webnocol.cgi to find traceroute in /usr/sbin
    - Install the images and audio files in $PREFIX/share/nocol for later use
2000-07-13 15:34:10 +00:00

52 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.8 2000/07/13 15:34:10 abs Exp $
#
DISTNAME= nocol-4.3.1
PKGNAME= nocol-4.3.1nb1
CATEGORIES= net
MASTER_SITES= http://www.netplex-tech.com/software/nocol/downloads/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.netplex-tech.com/software/nocol/
USE_PERL= yes
INSTALL_TARGET= install root
post-patch:
@(hostname=`/bin/hostname`; \
dir=""; \
for d in /usr/bin /usr/sbin `${ECHO} $$PATH | ${TR} ':' ' '`; do \
if [ -x $$d/host ]; then \
dir=$$d; \
break; \
fi \
done; \
if [ "X$$dir" = "X" ]; then \
${ECHO} "host program not found"; \
exit 1; \
fi; \
fqdn=`$$dir/host $$hostname | ${AWK} '{ print $$1; exit }'`; \
${SED} -e 's|@prefix@|${PREFIX}|g' -e "s|@FQDN@|$$fqdn|g" \
${FILESDIR}/answers > ${WRKSRC}/answers)
post-install:
# Ensure webnocol audio and images files are available if needed
#
${MKDIR} ${PREFIX}/share/nocol/gifs
for f in critical.wav error.wav warning.wav ; do \
${INSTALL_DATA} ${WRKSRC}/webnocol/$$f ${PREFIX}/share/nocol; \
done
for f in bluesq.gif critical.jpg empty.gif error.jpg \
greensq.gif help.jpg info.jpg redsq.gif warning.jpg \
yellowsq.gif ; do \
${INSTALL_DATA} ${WRKSRC}/webnocol/gifs/$$f \
${PREFIX}/share/nocol/gifs; \
done
do-configure:
(cd ${WRKSRC}; ./Configure < answers)
.include "../../mk/bsd.pkg.mk"