blob: 00f39a119ac81da70dafd527a705675d0cd68f6d (
plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-antivirus/bitdefender-console/bitdefender-console-7.1.ebuild,v 1.6 2009/08/22 23:01:50 williamh Exp $
inherit pax-utils
MY_P="BitDefender-Console-Antivirus-${PV}-3.linux-gcc3x.i386.run"
S="${WORKDIR}/i386"
DESCRIPTION="BitDefender console antivirus"
HOMEPAGE="http://www.bitdefender.com/"
SRC_URI="http://download.bitdefender.com/unices/old/linux/free/bitdefender-console/en/${MY_P}"
DEPEND="app-arch/tar
app-arch/gzip"
RDEPEND="virtual/libc
amd64? (
>=app-emulation/emul-linux-x86-baselibs-1.0
app-emulation/emul-linux-x86-compat )
x86? ( ~virtual/libstdc++-3.3 )"
PROVIDE="virtual/antivirus"
SLOT="0"
LICENSE="as-is"
KEYWORDS="-* ~amd64 ~x86"
IUSE=""
src_unpack () {
#Extract the tgz achive contained in MY_P
SKIP=`sed -n '/^\x1F/q;p' < ${DISTDIR}/${MY_P} | wc -c`
dd if=${DISTDIR}/${MY_P} ibs=1 skip=$SKIP 2> /dev/null | tar -xz || die "Failed to extract from archive"
}
src_install() {
local curn
local newn
local is_newer=0
cd ${S}
INSTALLDIR=/opt
QUARDIR=/var/bdc
INIFILE=bdc.ini
(
dodir ${QUARDIR} &&
dodir ${QUARDIR}/infected &&
dodir ${QUARDIR}/suspected
) || die "Unable to create quarantine directories"
cd opt/bdc
echo "InfectedFolder = ${QUARDIR}/infected" >> $INIFILE
echo "SuspectedFolder = ${QUARDIR}/suspected" >> $INIFILE
insinto /opt/bdc
insopts -m 755
doins bdc
pax-mark -msp "${D}"/opt/bdc/bdc
dodir /usr/bin
dosym /opt/bdc/bdc /usr/bin/bdc
dodir /var/bdc
dodir /var/bdc/infected
keepdir /var/bdc/infected
dodir /var/bdc/suspected
keepdir /var/bdc/suspected
insopts -m 644
doins bdc.ini *.so
# Conditionally installing malware definitions to workaround file
# collision issue described in bug #158219, comment #5.
if [[ ! -f /opt/bdc/Plugins/update.txt ]] ; then
dodir /opt/bdc/Plugins
insinto /opt/bdc/Plugins
doins Plugins/*
fi
doman man/man?/*
dodoc doc/*
}
pkg_postinst() {
elog You should update virus database by running bdc --update
}
pkg_postrm() {
# Remove leftover datafiles (their mtimes tend to change as user updates
# them).
[[ ! -x /opt/bdc/bdc ]] && rm -rf /opt/bdc
}
|