blob: e07453ae576cd4095867f8283703172f67fc4829 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/vmailmgr/vmailmgr-0.97-r1.ebuild,v 1.3 2011/04/09 16:23:33 arfrever Exp $
EAPI="3"
PYTHON_DEPEND="2"
inherit autotools eutils python toolchain-funcs
DESCRIPTION="virtual domains for qmail"
HOMEPAGE="http://www.vmailmgr.org/"
SRC_URI="http://www.vmailmgr.org/archive/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc sparc x86"
IUSE=""
DEPEND=""
RDEPEND=">=sys-apps/ucspi-unix-0.34
virtual/qmail
>=net-mail/qmail-autoresponder-0.95"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
sed -i \
-e 's:vadduser.pod vadduser.pod:vadduser.pod:' \
commands/Makefile.am || die #327431
epatch "${FILESDIR}"/${P}-gentoo.patch \
"${FILESDIR}"/${P}-strcasestr.patch \
"${FILESDIR}"/${P}-python.patch
eautoreconf
}
src_install() {
emake "DESTDIR=${D}" install || die "emake install failed"
dodoc AUTHORS README TODO NEWS
dohtml doc/*.html daemon/*.html authenticate/*.html commands/*.html
docinto cgi
dohtml cgi/*.html
exeinto /var/lib/supervise/vmailmgrd
newexe "${S}/scripts/vmailmgrd.run" run || die "failed to install vmailmgrd/run script"
exeinto /var/lib/supervise/vmailmgrd/log
newexe "${S}/scripts/vmailmgrd-log.run" run || die "failed to install vmailmgrd/log/run script"
exeinto /etc/vmailmgr
newexe "${S}/scripts/autoresponder.sh" vdeliver-postdeliver || die "failed to install vdeliver-postdeliver"
doexe "${FILESDIR}/checkvpw-loginfail" || die "failed to install checkvpw-loginfail"
insinto /etc/vmailmgr
doins "${FILESDIR}/socket-file"
doins "${FILESDIR}/separators"
}
pkg_postinst() {
python_mod_optimize vmailmgr
ewarn "CAUTION: courier-authlib does not support vmailmgr!"
ewarn "If you want to use vmailmgr in conjuction with courier-imap,"
ewarn "you should use imapfront-auth found in net-mail/mailfront package."
ewarn
ewarn "vcheckquota and vpopbull are now available through vmailmgr-tools package."
ewarn "If you need them, run the following command:"
ewarn " emerge net-mail/vmailmgr-tools"
echo
elog "To start vmailmgrd you need to link"
elog "/var/lib/supervise/vmailmgrd to /service"
}
pkg_postrm() {
python_mod_cleanup vmailmgr
}
|