From c0ddc6c8d2d2bf60b537066d876028b68ae53030 Mon Sep 17 00:00:00 2001 From: kris Date: Sat, 2 Sep 2000 23:35:10 +0000 Subject: This is a freebsd-native version of the McAfee virus scanner, for scanning DOS/Windows files for viruses. This is trial software which may only be used for 30 days without purchasing a retail version. It includes a useful script (update_dat) for automatically downloading the latest .dat files should the port become out of date. Obtained from: NetBSD --- security/uvscan-dat/Makefile | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 security/uvscan-dat/Makefile (limited to 'security/uvscan-dat/Makefile') diff --git a/security/uvscan-dat/Makefile b/security/uvscan-dat/Makefile new file mode 100644 index 000000000000..76fa2df72fa3 --- /dev/null +++ b/security/uvscan-dat/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: uvscan_dat +# Date created: 01 Sep 2000 +# Whom: Kris Kennaway +# +# $FreeBSD$ +# + +PORTNAME= uvscan_dat +PORTVERSION= 4093 +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 -- cgit