mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
3d2f12c8f4
secrity issues on systems that allow it. PR: 96596 Submitter: Luiz Souza
89 lines
2.6 KiB
Makefile
89 lines
2.6 KiB
Makefile
# New ports collection makefile for: uvscan
|
|
# Date created: 01 Sep 2000
|
|
# Whom: Kris Kennaway <kris@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= uvscan
|
|
PORTVERSION= 4.40e
|
|
PORTREVISION= 3
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://download.nai.com/products/evaluation/virusscan/english/cmdline/bsd/v4.40/
|
|
DISTNAME= vbsd440e
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= jeh@FreeBSD.org
|
|
COMMENT= Evaluation version of a DOS/Windows/Linux file virus scanner
|
|
|
|
# misc/compat3x is forbidden, but with FreeBSD 5.1 or later you can use
|
|
# libmap.conf(5) to map against current libc. This may affect the system
|
|
# security. Use at your own risk.
|
|
.include <bsd.port.pre.mk>
|
|
.if defined(WITHOUT_COMPAT3)
|
|
.if ${OSVERSION} < 510000
|
|
IGNORE= requires FreeBSD 5.1 or later
|
|
.endif
|
|
.else
|
|
LIB_DEPENDS+= c.3:${PORTSDIR}/misc/compat3x
|
|
.endif
|
|
LIB_DEPENDS+= m.2:${PORTSDIR}/misc/compat4x
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
NO_BUILD= YES
|
|
NO_WRKSUBDIR= YES
|
|
INSTALLS_SHLIB= YES
|
|
|
|
LICENSE= shareware
|
|
RESTRICTED= "restrictive 30 day evaluation license"
|
|
|
|
MAN1= uvscan.1
|
|
|
|
PORTDOCS= e4400upg.pdf readme.txt
|
|
|
|
PROGFILES= contact.txt license.dat license.txt messages.dat \
|
|
signlic.txt
|
|
|
|
do-configure:
|
|
${SED} <${FILESDIR}/uvscan.sh >${WRKSRC}/uvscan.sh \
|
|
-e 's:@@PREFIX@@:${PREFIX}:g'
|
|
${SED} -e 's:@PREFIX@:${PREFIX}:g' \
|
|
<${FILESDIR}/update_dat >${WRKDIR}/update_dat
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/libexec/uvscan
|
|
${INSTALL_SCRIPT} ${WRKSRC}/uvscan ${PREFIX}/libexec/uvscan
|
|
${INSTALL_SCRIPT} ${WRKSRC}/uvscan.sh ${PREFIX}/bin/uvscan
|
|
${INSTALL_SCRIPT} ${WRKSRC}/uvscan_secure ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/libbsdfv.so.4 ${PREFIX}/lib/libbsdfv.so.4
|
|
.for filename in ${PROGFILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${filename} ${PREFIX}/libexec/uvscan
|
|
.endfor
|
|
.for filename in ${MAN1}
|
|
${INSTALL_MAN} ${WRKSRC}/${filename} ${MANPREFIX}/man/man1/${filename}
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
@if ! [ -d ${DOCSDIR} ]; then ${MKDIR} ${DOCSDIR}; fi
|
|
.for filename in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${filename} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
${INSTALL_SCRIPT} ${WRKDIR}/update_dat ${PREFIX}/sbin
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
post-install:
|
|
${LN} -sf ${PREFIX}/lib/libbsdfv.so.4 ${PREFIX}/lib/libbsdfv.so
|
|
.if defined(WITHOUT_COMPAT3) && ${OSVERSION} >= 510000
|
|
@${ECHO_CMD} ""
|
|
@${ECHO_CMD} "This may affect the system security. Use at your own risk."
|
|
@${ECHO_CMD} "You need to add the following two lines to your libmap.conf(5):"
|
|
@${ECHO_CMD} ""
|
|
@${ECHO_CMD} "[/usr/local/libexec/uvscan/uvscan]"
|
|
@${ECHO_CMD} "libc.so.3 libc.so"
|
|
@${ECHO_CMD} ""
|
|
.endif
|
|
@${ECHO_CMD} "Trying to fetch the current DAT file"
|
|
${SH} ${PREFIX}/sbin/update_dat
|
|
|
|
.include <bsd.port.post.mk>
|