blob: ffdcef0bbb103610f11d053cb089138769a344bf (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Python binding for libclamav"
HOMEPAGE="https://xael.org/norman/python/pyclamav/
https://pypi.org/project/pyclamav/"
SRC_URI="https://xael.org/norman/python/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ia64 ~ppc x86"
IUSE=""
DEPEND=">=app-antivirus/clamav-0.90"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}"/${P}-clamav-0.95.patch )
DOCS=( README.txt example.py )
src_install() {
distutils-r1_src_install
insinto /usr/share/doc/${PF}
doins example.py
}
pkg_postinst() {
elog "an example called example.py has been installed into /usr/share/doc/${PF}"
}
|