diff options
author | Tim Harder <radhermit@gentoo.org> | 2010-09-25 08:06:49 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2010-09-25 08:06:49 +0000 |
commit | e39a26294cfe04e26aa7ba6f37120d5ba389ae32 (patch) | |
tree | 0b4bc6eef44ed8e936b2c52b3af8c75be6c90e06 /net-mail/imapsync | |
parent | Version bump (fixes bug #326851, thanks to Jean-Baptiste Rouault for reporting). (diff) | |
download | gentoo-2-e39a26294cfe04e26aa7ba6f37120d5ba389ae32.tar.gz gentoo-2-e39a26294cfe04e26aa7ba6f37120d5ba389ae32.tar.bz2 gentoo-2-e39a26294cfe04e26aa7ba6f37120d5ba389ae32.zip |
Version bump (fixes bug #322747, thanks to Deniss Gaplevsky for reporting).
(Portage version: 2.2_rc85/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/imapsync')
-rw-r--r-- | net-mail/imapsync/ChangeLog | 8 | ||||
-rw-r--r-- | net-mail/imapsync/imapsync-1.350.ebuild | 38 |
2 files changed, 45 insertions, 1 deletions
diff --git a/net-mail/imapsync/ChangeLog b/net-mail/imapsync/ChangeLog index 26063a748758..eb23531381a8 100644 --- a/net-mail/imapsync/ChangeLog +++ b/net-mail/imapsync/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-mail/imapsync # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/ChangeLog,v 1.32 2010/06/26 17:07:34 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/ChangeLog,v 1.33 2010/09/25 08:06:49 radhermit Exp $ + +*imapsync-1.350 (25 Sep 2010) + + 25 Sep 2010; Tim Harder <radhermit@gentoo.org> +imapsync-1.350.ebuild: + Version bump (fixes bug #322747, thanks to Deniss Gaplevsky for + reporting). 26 Jun 2010; <nixnut@gentoo.org> imapsync-1.303.ebuild: ppc stable #301836 diff --git a/net-mail/imapsync/imapsync-1.350.ebuild b/net-mail/imapsync/imapsync-1.350.ebuild new file mode 100644 index 000000000000..f48870436d65 --- /dev/null +++ b/net-mail/imapsync/imapsync-1.350.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/imapsync-1.350.ebuild,v 1.1 2010/09/25 08:06:49 radhermit Exp $ + +EAPI=2 + +DESCRIPTION="A tool allowing incremental and recursive imap transfer from one mailbox to another." +HOMEPAGE="http://www.linux-france.org/prj/" +SRC_URI="http://www.linux-france.org/prj/imapsync/dist/${P}.tgz" + +LICENSE="WTFPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="dev-lang/perl" +RDEPEND="${DEPEND} + dev-perl/DateManip + dev-perl/Digest-HMAC + dev-perl/IO-Socket-SSL + dev-perl/Mail-IMAPClient + dev-perl/Net-SSLeay + dev-perl/TermReadKey + virtual/perl-Digest-MD5 + virtual/perl-MIME-Base64" + +RESTRICT="test" + +src_prepare() { + sed -i -e "s/^install: testp/install:/" "${S}"/Makefile || die +} + +src_compile() { : ; } + +src_install() { + emake DESTDIR="${D}" install || die "make failed" + dodoc CREDITS ChangeLog FAQ README TODO || die "dodoc failed" +} |