blob: 9d13b2764396628a37cf7cd09ae0162a6d72078b (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.2.5.ebuild,v 1.14 2004/07/01 04:10:06 tgall Exp $
IUSE="ssl nls ipv6 kerberos krb4"
inherit eutils gnuconfig
DESCRIPTION="the legendary remote-mail retrieval and forwarding utility"
HOMEPAGE="http://www.catb.org/~esr/fetchmail/"
SRC_URI="http://www.catb.org/~esr/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2 public-domain"
KEYWORDS="x86 alpha sparc ppc amd64 s390 ppc64"
DEPEND="virtual/glibc
ssl? ( >=dev-libs/openssl-0.9.6 )
nls? ( sys-devel/gettext )
kerberos? ( virtual/krb5 )
krb4? ( app-crypt/kth-krb )
sys-devel/autoconf"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-6.2.0-gentoo.diff || die
epatch ${FILESDIR}/${P}-kerberos.patch
}
src_compile() {
autoconf
use amd64 && gnuconfig_update
use s390 && gnuconfig_update
use ppc64 && gnuconfig_update
local myconf
use ssl && myconf="${myconf} --with-ssl"
use nls || myconf="${myconf} --disable-nls"
use ipv6 && myconf="${myconf} --enable-inet6"
use kerberos && myconf="${myconf} --with-gssapi --with-kerberos5"
use krb4 && myconf="${myconf} --with-kerberos"
econf \
--enable-RPA \
--enable-NTLM \
--enable-SDPS \
${myconf} || die "Configuration failed."
# wont compile reliably on smp (mkennedy@gentoo.org 2003-11-12)
make || die "Compilation failed."
}
src_install() {
einstall || die
dohtml *.html
dodoc FAQ FEATURES ABOUT-NLS NEWS NOTES README \
README.NTLM README.SSL TODO COPYING MANIFEST
doman ${D}/usr/share/man/*.1
rm -f ${D}/usr/share/man/*.1
exeinto /etc/init.d
doexe ${FILESDIR}/fetchmail
insinto /etc/conf.d
newins ${FILESDIR}/conf.d-fetchmail fetchmail
docinto contrib
local f
for f in contrib/*
do
[ -f "${f}" ] && dodoc "${f}"
done
}
pkg_postinst() {
if ! python -c "import Tkinter" >/dev/null 2>&1
then
einfo
einfo "You will not be able to use fetchmailconf(1), because you"
einfo "don't seem to have Python with tkinter support."
einfo
einfo "If you want to be able to use fetchmailconf(1), do the following:"
einfo " 1. Include 'tcltk' in USE variable in your /etc/make.conf."
einfo " 2. (Re-)merge Python."
einfo
fi
einfo "Please see /etc/conf.d/fetchmail if you want to adjust"
einfo "the polling delay used by the fetchmail init script."
}
|