aboutsummaryrefslogtreecommitdiffstats
path: root/security/bdc/Makefile
blob: cae4de13d5e3fa7bc0dc6434b9886361fd8f5be5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# New ports collection makefile for:   bdc
# Date created:                        4 December 2004
# Whom:                                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= apircalabu@bitdefender.com
COMMENT=    BitDefender Console Antivirus for FreeBSD

.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 600000
LIB_DEPENDS+=   c.5:${PORTSDIR}/misc/compat5x
.endif
.if ${OSVERSION} < 490000 || ${OSVERSION} >= 500000 && ${OSVERSION} < 502001
IGNORE=     requires FreeBSD-STABLE \(4.9 or later\), or FreeBSD-CURRENT \(5.2.1 or later\)
.elif ${OSVERSION} < 500000
BDREL=      4
.else
BDREL=      5
.endif

WRKSRC=     ${WRKDIR}/${PORTNAME}
NO_BUILD=   yes

PKGMESSAGE= ${WRKDIR}/pkg-message

ONLY_FOR_ARCHS= i386
RESTRICTED= License prohibits redistribution

.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING)
ECHO_MSG=   /usr/bin/printf
IGNORE= :\n\
You have to fetch ${DISTNAME}${EXTRACT_SUFX} manually after\n\
reading and agreeing to the license at:\n\
http://download.bitdefender.com/freebsd/${BDREL}/final/LICENSE\n\
A direct link to the distribution file:\n\
http://download.bitdefender.com/freebsd/${BDREL}/final/${DISTNAME}${EXTRACT_SUFX}\n\
Once the file has been downloaded move it to\n\
${DISTDIR} and restart the build.\n
.endif

do-install:
    @cd ${WRKDIR} && ${TAR} -cf - bdc | ${TAR} -xf - -C ${PREFIX}/
    @${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/bdc
    @${CHMOD} -R a=rX,u+w ${PREFIX}/bdc/

    @${SED} -e 's|%%PREFIX%%|${PREFIX}|g ; \
        s|%%PORTNAME%%|${PORTNAME}|g' \
        < ${PKGDIR}/pkg-message > ${PKGMESSAGE}

    @${SED} -e 's|%%PREFIX%%|${PREFIX}|g'  \
        < ${FILESDIR}/bdc > ${PREFIX}/bin/bdc
    @${CHMOD} +x ${PREFIX}/bin/bdc

    @${CAT} ${PKGMESSAGE}

.include <bsd.port.post.mk>