summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2007-08-09 21:57:37 +0000
committerAndrej Kacian <ticho@gentoo.org>2007-08-09 21:57:37 +0000
commit2cde2fc3b889c5cbfdd328875e0bba1725638cac (patch)
treee35af416601ce8c88264032a2efeead7d071a881 /net-mail/getmail
parentAdd several ~ARCHes that were missing. (diff)
downloadgentoo-2-2cde2fc3b889c5cbfdd328875e0bba1725638cac.tar.gz
gentoo-2-2cde2fc3b889c5cbfdd328875e0bba1725638cac.tar.bz2
gentoo-2-2cde2fc3b889c5cbfdd328875e0bba1725638cac.zip
Version bump.
(Portage version: 2.1.3_rc8)
Diffstat (limited to 'net-mail/getmail')
-rw-r--r--net-mail/getmail/ChangeLog7
-rw-r--r--net-mail/getmail/files/digest-getmail-4.7.63
-rw-r--r--net-mail/getmail/getmail-4.7.6.ebuild56
3 files changed, 65 insertions, 1 deletions
diff --git a/net-mail/getmail/ChangeLog b/net-mail/getmail/ChangeLog
index f21382f69a02..2d2983645135 100644
--- a/net-mail/getmail/ChangeLog
+++ b/net-mail/getmail/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-mail/getmail
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.150 2007/06/19 20:08:55 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.151 2007/08/09 21:57:37 ticho Exp $
+
+*getmail-4.7.6 (09 Aug 2007)
+
+ 09 Aug 2007; Andrej Kacian <ticho@gentoo.org> +getmail-4.7.6.ebuild:
+ Version bump.
19 Jun 2007; Raúl Porcel <armin76@gentoo.org> getmail-4.7.2.ebuild:
alpha stable wrt #172722
diff --git a/net-mail/getmail/files/digest-getmail-4.7.6 b/net-mail/getmail/files/digest-getmail-4.7.6
new file mode 100644
index 000000000000..b452990d094b
--- /dev/null
+++ b/net-mail/getmail/files/digest-getmail-4.7.6
@@ -0,0 +1,3 @@
+MD5 64f3b5042d227892e400521a2f4ff558 getmail-4.7.6.tar.gz 148263
+RMD160 9bb9f1421f7cb44f02b538b4fb01621cbae29225 getmail-4.7.6.tar.gz 148263
+SHA256 061b9f875e6032fd2e708603bd0fdafa81856d6caabde3ce4a3862b30fe89afa getmail-4.7.6.tar.gz 148263
diff --git a/net-mail/getmail/getmail-4.7.6.ebuild b/net-mail/getmail/getmail-4.7.6.ebuild
new file mode 100644
index 000000000000..ae4f1fbb844f
--- /dev/null
+++ b/net-mail/getmail/getmail-4.7.6.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.7.6.ebuild,v 1.1 2007/08/09 21:57:37 ticho Exp $
+
+inherit distutils
+
+IUSE=""
+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"
+
+SLOT="4"
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+
+DEPEND=">=dev-lang/python-2.3.3"
+
+src_compile() {
+ distutils_src_compile
+}
+
+src_install() {
+ distutils_src_install
+
+ 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
+ if [ ${P} != ${PF} ]; then
+ mv ${D}/usr/share/doc/${P} ${D}/usr/share/doc/${PF}
+ fi
+
+ dodir /usr/share/doc/${PF}/html
+ mv ${D}/usr/share/doc/${PF}/*.html ${D}/usr/share/doc/${PF}/*.css ${D}/usr/share/doc/${PF}/html
+}
+
+pkg_postinst() {
+ python_version
+ python_mod_optimize /usr/lib/python${PYVER}/site-packages/getmailcore
+
+ 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
+}
+
+pkg_postrm() {
+ python_version
+ python_mod_cleanup
+}