diff options
author | Tim Harder <radhermit@gentoo.org> | 2010-09-24 00:47:28 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2010-09-24 00:47:28 +0000 |
commit | c7cb3a4a78dc71caa02888ea37d5386ed8734c0d (patch) | |
tree | a30f12ee174234cc08e47c477ca11da121c4ee3a /net-mail | |
parent | stable x86, thx to Myckel H. on wrt #315925; version bump, eapi=2 (diff) | |
download | gentoo-2-c7cb3a4a78dc71caa02888ea37d5386ed8734c0d.tar.gz gentoo-2-c7cb3a4a78dc71caa02888ea37d5386ed8734c0d.tar.bz2 gentoo-2-c7cb3a4a78dc71caa02888ea37d5386ed8734c0d.zip |
Version bump (fixes bug #326489, thanks to Luca Postregna for reporting). Also, update HOMEPAGE and add doc USE flag to optionally install the manpage (fixes bug #274927, thanks to Dmitry Ivankov for reporting).
(Portage version: 2.2_rc85/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/offlineimap/ChangeLog | 10 | ||||
-rw-r--r-- | net-mail/offlineimap/offlineimap-6.2.0.2.ebuild | 45 |
2 files changed, 54 insertions, 1 deletions
diff --git a/net-mail/offlineimap/ChangeLog b/net-mail/offlineimap/ChangeLog index 457a91b75067..2491d0f63d63 100644 --- a/net-mail/offlineimap/ChangeLog +++ b/net-mail/offlineimap/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for net-mail/offlineimap # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/offlineimap/ChangeLog,v 1.49 2010/02/18 02:24:31 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/offlineimap/ChangeLog,v 1.50 2010/09/24 00:47:28 radhermit Exp $ + +*offlineimap-6.2.0.2 (24 Sep 2010) + + 24 Sep 2010; Tim Harder <radhermit@gentoo.org> + +offlineimap-6.2.0.2.ebuild: + Version bump (fixes bug #326489, thanks to Luca Postregna for reporting). + Also, update HOMEPAGE and add doc USE flag to optionally install the + manpage (fixes bug #274927, thanks to Dmitry Ivankov for reporting). 18 Feb 2010; Jeroen Roovers <jer@gentoo.org> offlineimap-6.2.0.ebuild, offlineimap-6.2.0-r1.ebuild: diff --git a/net-mail/offlineimap/offlineimap-6.2.0.2.ebuild b/net-mail/offlineimap/offlineimap-6.2.0.2.ebuild new file mode 100644 index 000000000000..d4ddfb7e96f4 --- /dev/null +++ b/net-mail/offlineimap/offlineimap-6.2.0.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/offlineimap/offlineimap-6.2.0.2.ebuild,v 1.1 2010/09/24 00:47:28 radhermit Exp $ + +EAPI=2 + +inherit eutils distutils + +DESCRIPTION="Powerful IMAP/Maildir synchronization and reader support" +HOMEPAGE="http://wiki.github.com/jgoerzen/offlineimap/" +SRC_URI="mirror://debian/pool/main/o/offlineimap/${P/-/_}.orig.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="doc ssl" + +DEPEND="doc? ( app-text/docbook-sgml-utils )" +RDEPEND="dev-lang/python[threads,ssl?]" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-6.2.0-darwin10.patch +} + +src_compile() { + distutils_src_compile + if use doc ; then + docbook2man offlineimap.sgml || die "building manpage failed" + fi +} + +src_install() { + distutils_src_install + dodoc offlineimap.conf offlineimap.conf.minimal + if use doc ; then + doman offlineimap.1 || die "installing manpage failed" + fi +} + +pkg_postinst() { + elog "" + elog "You will need to configure offlineimap by creating ~/.offlineimaprc" + elog "Sample configurations are in /usr/share/doc/${PF}/" + elog "" +} |