mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
eccf5db03a
Maintainers for these ports have been notified on 5 separate occasions over the course of several months about pending actions required. We really appreciate the time and effort you put in to maintain these ports. If you are still interested in helping to maintain these ports just reply to me or file a PR and I will happily assign the port to you again. Approved by: portmgr (implicit)
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
# Created by: Adi Pircalabu <apircalabu@bitdefender.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bdc
|
|
PORTVERSION= 7.0.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= security
|
|
#MASTER_SITES= # http://download.bitdefender.com/freebsd/${BDREL}/final/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}.2-fbsd${BDREL}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= BitDefender Console Antivirus for FreeBSD
|
|
|
|
LIB_DEPENDS= libc.so.5:${PORTSDIR}/misc/compat5x
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
NO_BUILD= yes
|
|
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
RESTRICTED= License prohibits redistribution
|
|
|
|
BDREL= 5
|
|
|
|
SUB_LIST= bdc pkg-message
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
|
|
IGNORE= you have to fetch ${DISTNAME}${EXTRACT_SUFX} manually after reading\
|
|
and agreeing to the license at:\
|
|
http://download.bitdefender.com/SMB/Workstation_Security_and_Management/BitDefender_Antivirus_Scanner_for_Unices/Unix/Old/EN/freebsd/Ver_${BDREL}/.\
|
|
Here is a direct link to the distribution file:\
|
|
http://download.bitdefender.com/SMB/Workstation_Security_and_Management/BitDefender_Antivirus_Scanner_for_Unices/Unix/Old/EN/freebsd/Ver_${BDREL}/bdc-7.0.1.2-fbsd${BDREL}.tar.gz.\
|
|
Once the file has been downloaded, move it to ${DISTDIR} and restart the build
|
|
.endif
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} bdc ${STAGEDIR}${PREFIX}
|
|
${CHOWN} -R ${BINOWN}:${BINGRP} ${STAGEDIR}${PREFIX}/bdc
|
|
${CHMOD} -R a=rX,u+w ${STAGEDIR}${PREFIX}/bdc/
|
|
|
|
${MV} ${STAGEDIR}${PREFIX}/bdc/doc ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_MAN} ${STAGEDIR}${PREFIX}/bdc/man/bdc.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
${RM} -f ${STAGEDIR}${PREFIX}/bdc/man
|
|
|
|
${INSTALL_SCRIPT} ${WRKDIR}/bdc ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.post.mk>
|