2018-04-16 09:56:47 +03:00
|
|
|
# Copyright 1999-2018 Gentoo Foundation
|
2014-09-21 12:31:57 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2017-12-09 21:43:14 +03:00
|
|
|
EAPI=6
|
2014-09-21 12:31:57 +04:00
|
|
|
|
2017-12-09 21:43:14 +03:00
|
|
|
PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
|
2014-12-05 14:28:13 +03:00
|
|
|
|
2014-09-21 12:31:57 +04:00
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="python interface to Clamd (Clamav daemon)"
|
2018-04-16 09:56:47 +03:00
|
|
|
HOMEPAGE="https://xael.org/pages/pyclamd-en.html"
|
2014-09-21 12:31:57 +04:00
|
|
|
SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="LGPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE=""
|
|
|
|
|
2014-12-05 14:28:13 +03:00
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
2014-09-21 12:31:57 +04:00
|
|
|
src_prepare() {
|
2017-12-09 21:43:14 +03:00
|
|
|
default
|
2014-09-21 12:31:57 +04:00
|
|
|
sed -e 's:/etc/clamav/clamd.conf:/etc/clamd.conf:' \
|
|
|
|
-i pyclamd/pyclamd.py || die
|
|
|
|
}
|