summaryrefslogtreecommitdiff
blob: 0dfa19e7893beee18c8d10b8626a3196ffd0ed94 (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-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION="Python binding for libclamav"
HOMEPAGE="http://xael.org/norman/python/pyclamav/ http://pypi.python.org/pypi/pyclamav"
SRC_URI="http://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}"
}