You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
759 B
36 lines
759 B
# 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}"
|
|
}
|