summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2010-01-06 08:07:31 +0000
committerTorsten Veller <tove@gentoo.org>2010-01-06 08:07:31 +0000
commitac1bd594ebe30599c93231d604af6a94ce56647e (patch)
treee7fae37afec28bd4b03e08a94831d8a969b0d85c /net-mail/getmail
parentFixed encoding in ChangeLog (diff)
downloadgentoo-2-ac1bd594ebe30599c93231d604af6a94ce56647e.tar.gz
gentoo-2-ac1bd594ebe30599c93231d604af6a94ce56647e.tar.bz2
gentoo-2-ac1bd594ebe30599c93231d604af6a94ce56647e.zip
Version bump
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/getmail')
-rw-r--r--net-mail/getmail/ChangeLog9
-rw-r--r--net-mail/getmail/getmail-4.16.0.ebuild33
2 files changed, 40 insertions, 2 deletions
diff --git a/net-mail/getmail/ChangeLog b/net-mail/getmail/ChangeLog
index ebc6098be8c8..7769ed640c20 100644
--- a/net-mail/getmail/ChangeLog
+++ b/net-mail/getmail/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-mail/getmail
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.174 2009/10/24 10:50:58 grobian Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.175 2010/01/06 08:07:31 tove Exp $
+
+*getmail-4.16.0 (06 Jan 2010)
+
+ 06 Jan 2010; Torsten Veller <tove@gentoo.org> +getmail-4.16.0.ebuild:
+ Version bump
24 Oct 2009; Fabian Groffen <grobian@gentoo.org> getmail-4.13.0.ebuild:
Marked ~x86-macos, bug #290329
diff --git a/net-mail/getmail/getmail-4.16.0.ebuild b/net-mail/getmail/getmail-4.16.0.ebuild
new file mode 100644
index 000000000000..c444a107a45c
--- /dev/null
+++ b/net-mail/getmail/getmail-4.16.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.16.0.ebuild,v 1.1 2010/01/06 08:07:31 tove Exp $
+
+inherit distutils
+
+DESCRIPTION="A POP3 mail retriever with reliable Maildir and mbox delivery"
+HOMEPAGE="http://pyropus.ca/software/getmail/"
+SRC_URI="http://pyropus.ca/software/getmail/old-versions/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="4"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~ppc-macos ~x86-macos ~x64-solaris"
+IUSE=""
+
+DEPEND=">=dev-lang/python-2.3.3"
+RDEPEND="${DEPEND}"
+
+PYTHON_MODNAME=getmailcore
+
+src_install() {
+ [[ -z ${ED} ]] && local ED=${D}
+ distutils_src_install
+
+ # handle docs the gentoo way
+ rm "${ED}"/usr/share/doc/${P}/COPYING || die
+ if [[ ${P} != ${PF} ]] ; then
+ mv "${ED}"/usr/share/doc/${P} "${ED}"/usr/share/doc/${PF} || die
+ fi
+
+ dodir /usr/share/doc/${PF}/html
+ mv "${ED}"/usr/share/doc/${PF}/*.{html,css} "${ED}"/usr/share/doc/${PF}/html || die
+}