blob: 7f43a2033ca8945393263dec6c4e3f7135450c29 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.0.2-r1.ebuild,v 1.3 2004/08/13 15:09:27 ciaranm Exp $
inherit distutils
IUSE=""
DESCRIPTION="A POP3 mail retriever with reliable Maildir and mbox delivery"
HOMEPAGE="http://www.qcc.ca/~charlesc/software/getmail-4/"
SRC_URI="http://www.qcc.ca/~charlesc/software/getmail-4/${P}.tar.gz"
SLOT="4"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc sparc ~alpha amd64"
DEPEND=">=dev-lang/python-2.3.3"
src_compile() {
distutils_src_compile
}
src_install() {
python setup.py install --prefix=${D}/usr --install-data=${D}/usr/share
if has_version "=net-mail/getmail-3*" ; then
mv ${D}/usr/bin/getmail ${D}/usr/bin/getmail4
mv ${D}/usr/bin/getmail_maildir ${D}/usr/bin/getmail_maildir4
mv ${D}/usr/bin/getmail_mbox ${D}/usr/bin/getmail_mbox4
fi
# handle docs the gentoo way
mkdir ${D}/usr/share/doc/${P}/html
mv ${D}/usr/share/doc/${P}/*.html ${D}/usr/share/doc/${P}/*.css ${D}/usr/share/doc/${P}/html
gzip -q ${D}/usr/share/doc/${P}/*
}
pkg_postinst() {
if has_version "=net-mail/getmail-3*" ; then
echo
ewarn "An already installed instance of getmail v3 was detected. In order to"
ewarn "co-exist with it the three main scripts of getmail v4 were renamed to"
ewarn "getmail4, getmail_maildir4, getmail_mbox4."
echo
fi
}
|