3bae5aea8f
This fixes PR pkg/30290 by Nicolas Joly so the latest DAT files are working again. - Moved included DAT-files to shares/examples/uvscan/. - Works with PKG_CONFIG=no. - PDF manual included in share/doc/uvscan/. - Some small improvements to update_dat.sh: Option "-h" shows the available options. All the "exit" statements use distinct values. Fixed a small logic bug (-z vs. -n). Changes according to McAfee's website: - Includes technology to combat the latest and future threats. - Improved detection and cleaning. - Support for many more Packed Executable formats in which known malware is often re-packaged for obfuscation purposes. - Specific detection and reporting of files compressed or packaged with known suspicious applications. - Enhancements to the emergency DAT file (EXTRA.DAT) structure allowing a larger DAT file size. - Enhancements to enable scanning of non-standard ZIP archives.
97 lines
3.2 KiB
Makefile
97 lines
3.2 KiB
Makefile
# $NetBSD: Makefile,v 1.33 2006/01/15 22:27:27 heinz Exp $
|
|
|
|
DISTNAME= vlnx440e
|
|
PKGNAME= uvscan-4.40
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://download.nai.com/products/evaluation/virusscan/english/cmdline/linux/v4.40/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://www.mcafeesecurity.com/us/products/mcafee/antivirus/desktop/vs_commandline.htm
|
|
COMMENT= Evaluation version of a DOS/Windows file virus scanner
|
|
|
|
CONFLICTS= uvscan-dat-[0-9]*
|
|
|
|
.include "../../emulators/suse_linux/Makefile.application"
|
|
|
|
.if !defined(USE_NATIVE_LINUX)
|
|
DEPENDS+= suse_compat>=6.1:../../emulators/${SUSE_DIR_PREFIX}_compat
|
|
.endif
|
|
|
|
ONLY_FOR_PLATFORM= *-*-i386
|
|
CHECK_SHLIBS= NO
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
NO_BUILD= yes
|
|
NO_CONFIGURE= yes
|
|
LICENSE= uvscan-license
|
|
RESTRICTED= "restrictive 30 day evaluation license"
|
|
NO_BIN_ON_FTP= ${RESTRICTED}
|
|
NO_BIN_ON_CDROM= ${RESTRICTED}
|
|
NO_SRC_ON_FTP= ${RESTRICTED}
|
|
NO_SRC_ON_CDROM= ${RESTRICTED}
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/uvscan
|
|
EGDATDIR= ${PREFIX}/share/examples/uvscan
|
|
UVSCANDIR= ${PREFIX}/libexec/uvscan
|
|
DATFILES= clean.dat internet.dat names.dat scan.dat pkgdesc.ini
|
|
|
|
DEINSTALL_EXTRA_TMPL+= ${.CURDIR}/DEINSTALL
|
|
|
|
FILES_SUBST+= UVSCANDIR=${UVSCANDIR:Q}
|
|
FILES_SUBST+= DATFILES=${DATFILES:Q}
|
|
|
|
CONF_FILES= ${EGDATDIR}/clean.dat ${UVSCANDIR}/clean.dat
|
|
CONF_FILES+= ${EGDATDIR}/names.dat ${UVSCANDIR}/names.dat
|
|
CONF_FILES+= ${EGDATDIR}/scan.dat ${UVSCANDIR}/scan.dat
|
|
REQD_DIRS= ${UVSCANDIR}
|
|
|
|
INSTALLATION_DIRS= bin man/man1 sbin
|
|
|
|
USE_TOOLS+= gtar:run
|
|
|
|
SUBST_CLASSES+= paths
|
|
SUBST_FILES.paths= ${WRKDIR}/update_dat
|
|
SUBST_SED.paths+= -e 's,@UVSCANDIR@,${UVSCANDIR},g'
|
|
SUBST_SED.paths+= -e 's,@DATFILES@,${DATFILES},g'
|
|
SUBST_SED.paths+= -e 's,@AWK@,${AWK},g' -e 's,@CP@,${CP},g'
|
|
SUBST_SED.paths+= -e 's,@BASENAME@,${BASENAME},g'
|
|
SUBST_SED.paths+= -e 's,@ECHO@,${ECHO},g' -e 's,@GREP@,${GREP},g'
|
|
SUBST_SED.paths+= -e 's,@GTAR@,${GTAR},g' -e 's,@MKDIR@,${MKDIR},g'
|
|
SUBST_SED.paths+= -e 's,@MV@,${MV},g' -e 's,@RM@,${RM},g'
|
|
SUBST_SED.paths+= -e 's,@SED@,${SED},g'
|
|
SUBST_STAGE.paths= post-patch
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/update_dat.sh ${WRKDIR}/update_dat
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/update_dat ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/uvscan.1 ${PREFIX}/man/man1
|
|
${INSTALL_SCRIPT} ${WRKSRC}/uvscan ${UVSCANDIR}
|
|
${RM} -f ${PREFIX}/bin/uvscan
|
|
${LN} -sf ../${UVSCANDIR:S/${PREFIX}\///}/uvscan ${PREFIX}/bin/uvscan
|
|
${INSTALL_DATA} ${WRKSRC}/liblnxfv.so.4 ${UVSCANDIR}
|
|
${RM} -f ${UVSCANDIR}/liblnxfv.so
|
|
${LN} -s liblnxfv.so.4 ${UVSCANDIR}/liblnxfv.so
|
|
${INSTALL_DATA_DIR} ${PREFIX}/emul/linux/usr/local/lib
|
|
for file in liblnxfv.so.4 liblnxfv.so; do \
|
|
${RM} -f ${PREFIX}/emul/linux/usr/local/lib/$${file}; \
|
|
${LN} -s ${UVSCANDIR}/$${file} \
|
|
${PREFIX}/emul/linux/usr/local/lib; \
|
|
done
|
|
for file in license.dat messages.dat; do \
|
|
${INSTALL_DATA} ${WRKSRC}/$${file} ${UVSCANDIR}; \
|
|
done
|
|
${INSTALL_DATA_DIR} ${EGDATDIR}
|
|
for file in ${DATFILES}; do \
|
|
if [ -f ${WRKSRC}/$${file} ]; then \
|
|
${INSTALL_DATA} ${WRKSRC}/$${file} ${EGDATDIR}; \
|
|
fi; \
|
|
done
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
for file in contact.txt e4400upg.pdf license.txt ; do \
|
|
${INSTALL_DATA} ${WRKSRC}/$${file} ${DOCDIR}; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|