blob: 3a9b932d205c8975306363309ace97167a312628 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
PYTHON_COMPAT=( python2_7 python3_{6,7,8,9,10} )
PYTHON_REQ_USE="threads(+)"
MY_PN=pymilter
MY_P=$MY_PN-$PV
DISTUTILS_USE_SETUPTOOLS=manual
inherit distutils-r1
SRC_URI="http://downloads.sourceforge.net/project/${MY_PN}/${MY_PN}/${MY_P}/${MY_P}.tar.gz"
DESCRIPTION="The package of Python milters that wraps the C libmilter library."
HOMEPAGE="https://spidey2.bmsi.com/pymilter/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="
!dev-python/pymilter[python_targets_python2_7]
mail-filter/libmilter"
RDEPEND="${DEPEND}
dev-python/setuptools-python2[${PYTHON_USEDEP}]
"
RESTRICT="test"
S="${WORKDIR}/${MY_PN}-${PV}"
python_install_all() {
distutils-r1_python_install_all
rm -r ${D}/usr/share
}
|