blob: 457a8b4ebbf81ff798c67a69dff11a7c438fda0f (
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
|
# 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-3.2.1.ebuild,v 1.5 2004/07/15 01:48:50 agriffis Exp $
DESCRIPTION="A POP3 mail retriever with reliable Maildir and mbox delivery"
HOMEPAGE="http://www.qcc.ca/~charlesc/software/getmail-3.0/"
SRC_URI="http://www.qcc.ca/~charlesc/software/getmail-3.0/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc alpha ~amd64"
IUSE=""
DEPEND="virtual/python"
src_install () {
into /usr
doman getmail.1
dobin getmail
dobin getmail_maildir
dobin getmail_mbox
insinto /usr/lib/getmail
doins getmail.py
doins ConfParser.py
doins timeoutsocket.py
doins getmail_classes.py
doins getmail_constants.py
doins getmail_defaults.py
doins getmail_mbox.py
doins getmail_utilities.py
dodoc BUGS CHANGELOG COPYING THANKS TODO *.txt getmailrc-example
dohtml *.html
}
|