summaryrefslogtreecommitdiff
blob: c10fab81db6288ba50bd1b03a8321cd616299b75 (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
94
95
96
97
98
99
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=6

DESCRIPTION="Download and install third-party clamav signatures"
HOMEPAGE="https://github.com/extremeshok/${PN}"
SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

# We need its user/group.
DEPEND="app-antivirus/clamav"

# The script relies on either net-misc/socat, or Perl's
# IO::Socket::UNIX. We already depend on Perl, and Gentoo's Perl ships
# with IO::Socket::UNIX, so we can leave out net-misc/socat here.
RDEPEND="${DEPEND}
	app-crypt/gnupg
	dev-lang/perl
	net-dns/bind-tools
	net-misc/curl"

src_prepare() {
	# Fix the user/group in the config file to match the ones used by
	# clamav.
	local user_default="clam_user=\"clam\""
	local user_gentoo="clam_user=\"clamav\""

	local group_default="clam_group=\"clam\""
	local group_gentoo="clam_group=\"clamav\""

	# Log to someplace that (likely) already exists. Omit the
	# "log_file_path" variable name so that we can reuse these patterns
	# later to sed the logrotate file.
	local log_default="/var/log/clamav-unofficial-sigs"
	local log_gentoo="/var/log/clamav"

	# clamd listens on a local socket by default. The clamd_socket
	# setting needs to be uncommented in the configuration file for it
	# to take effect.
	local socket_default="#clamd_socket=\"/var/run/clamd.socket\""
	local socket_gentoo="clamd_socket=\"/var/run/clamav/clamd.sock\""

	# The clamav init script doesn't provide a "reload" command,
	# so we reload very manually.
	local reload_default="clamd_restart_opt=\"service clamd restart\""
	local reload_gentoo="clamd_restart_opt=\"clamdscan --reload\""

	sed -i -e "s~${user_default}~${user_gentoo}~" \
		-e "s~${group_default}~${group_gentoo}~" \
		-e "s~${log_default}~${log_gentoo}~" \
		-e "s~${socket_default}~${socket_gentoo}~" \
		-e "s~${reload_default}~${reload_gentoo}~" \
		"${PN}.conf" \
		|| die "failed to update paths in ${PN}.conf"

	# Fix the log path and username in the logrotate file, too.
	sed -i -e "s~${log_default}~${log_gentoo}~" \
		-e "s~create 0644 clam clam~create 0640 clamav clamav~" \
		"${PN}-logrotate" \
		|| die "failed to update path and userin ${PN}-logrotate"

	eapply_user
}

src_install() {
	dosbin "${PN}.sh"

	# The script's working directory (set in the conf file). By default,
	# it runs as clamav/clamav.
	diropts -m 0755 -o clamav -g clamav
	dodir "/var/lib/${PN}"

	insinto /etc/logrotate.d
	doins "${PN}-logrotate"

	insinto /etc
	doins "${PN}.conf"

	doman "${PN}.8"
	dodoc README.md
}

pkg_postinst() {
	elog ''
	elog "You will need to select databases in /etc/${PN}.conf."
	elog "For details, please see the ${PN}(8) manual page."
	elog ''
	elog 'An up-to-date description of the available Sanesecurity'
	elog 'databases is available at,'
	elog ''
	elog '  http://sanesecurity.com/usage/signatures/'
	elog ''
}