blob: b906cae69828b0dcbca04f76b92fdf76c4e9fc73 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/automx/automx-0.10.1.ebuild,v 1.1 2014/02/02 23:28:34 mschiff Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit distutils-r1
DESCRIPTION="A mail user agent auto configuration service"
HOMEPAGE="http://www.automx.org"
SRC_URI="https://github.com/sys4/${PN}/archive/v${PV}.tar.gz -> automx-${PV}.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ldap memcached sql +tools"
DEPEND="${PYTHON_DEPS}"
RDEPEND="
${DEPEND}
dev-python/ipaddr[${PYTHON_USEDEP}]
dev-python/lxml[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
|| ( www-apache/mod_wsgi[${PYTHON_USEDEP}] www-servers/uwsgi )
ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] )
memcached? ( dev-python/python-memcached )
sql? ( dev-python/sqlalchemy[${PYTHON_USEDEP}] )
tools? ( net-dns/bind-tools net-misc/wget )
"
src_prepare() {
sed -i '/py_modules=/d' setup.py
}
src_install() {
distutils-r1_src_install
dodoc INSTALL CREDITS CHANGES BASIC_CONFIGURATION_README
dohtml -r doc/html/*
docinto examples
dodoc src/conf/*example*
doman doc/man/man5/*
if use tools; then
exeinto /usr/bin
doexe src/automx-test
doman doc/man/man1/automx-test.1
fi
exeinto /usr/lib/${PN}
doexe src/automx_wsgi.py
}
pkg_postinst() {
einfo
einfo "See /usr/share/doc/${PF}/INSTALL.bz2 for setup instructions"
einfo
}
|