mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
38 lines
945 B
Makefile
38 lines
945 B
Makefile
# New ports collection makefile for: uvscan_dat
|
|
# Date created: 01 Sep 2000
|
|
# Whom: Kris Kennaway <kris@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= uvscan_dat
|
|
PORTVERSION= 4103
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://download.nai.com/products/datfiles/4.x/nai/
|
|
DISTNAME= dat-${PORTVERSION}
|
|
EXTRACT_SUFX= .tar
|
|
|
|
MAINTAINER= kris@FreeBSD.org
|
|
|
|
NO_BUILD= YES
|
|
NO_WRKSUBDIR= YES
|
|
|
|
RESTRICTED= "Restricted to the license terms set for VirusScan"
|
|
|
|
do-configure:
|
|
${SED} -e 's:@PREFIX@:${PREFIX}:g' \
|
|
<${FILESDIR}/update_dat >${WRKDIR}/update_dat
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/libexec/uvscan
|
|
.for file in clean.dat internet.dat names.dat scan.dat
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/libexec/uvscan
|
|
.endfor
|
|
${MKDIR} ${PREFIX}/share/doc/uvscan
|
|
.for file in reseller.txt readme.txt packing.lst
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/uvscan
|
|
.endfor
|
|
${INSTALL_SCRIPT} ${WRKDIR}/update_dat ${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|