diff options
author | Torsten Veller <tove@gentoo.org> | 2010-01-24 18:47:36 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2010-01-24 18:47:36 +0000 |
commit | 453108bd5bf85fc104a82fc8b5afa3da53fedac6 (patch) | |
tree | fc0eae7662bea360e93408b78616e61089960223 /net-mail/imapsync | |
parent | Remove masked mupen64, including a plugin that used qt3, replaced by mupen64p... (diff) | |
download | gentoo-2-453108bd5bf85fc104a82fc8b5afa3da53fedac6.tar.gz gentoo-2-453108bd5bf85fc104a82fc8b5afa3da53fedac6.tar.bz2 gentoo-2-453108bd5bf85fc104a82fc8b5afa3da53fedac6.zip |
Version bump. Supports Mail-IMAPClient-3 too. Thanks to Kerin Millar (#302022)
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/imapsync')
-rw-r--r-- | net-mail/imapsync/ChangeLog | 10 | ||||
-rw-r--r-- | net-mail/imapsync/imapsync-1.303.ebuild | 38 |
2 files changed, 46 insertions, 2 deletions
diff --git a/net-mail/imapsync/ChangeLog b/net-mail/imapsync/ChangeLog index e266a44e02d2..c8e75cec5217 100644 --- a/net-mail/imapsync/ChangeLog +++ b/net-mail/imapsync/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-mail/imapsync -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/ChangeLog,v 1.28 2009/07/19 18:21:24 nixnut Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/ChangeLog,v 1.29 2010/01/24 18:47:36 tove Exp $ + +*imapsync-1.303 (24 Jan 2010) + + 24 Jan 2010; Torsten Veller <tove@gentoo.org> +imapsync-1.303.ebuild: + Version bump. Supports Mail-IMAPClient-3 too. Thanks to Kerin Millar + (#302022) 19 Jul 2009; nixnut <nixnut@gentoo.org> imapsync-1.267.ebuild: ppc stable #274370 diff --git a/net-mail/imapsync/imapsync-1.303.ebuild b/net-mail/imapsync/imapsync-1.303.ebuild new file mode 100644 index 000000000000..692d0a13a45f --- /dev/null +++ b/net-mail/imapsync/imapsync-1.303.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.303.ebuild,v 1.1 2010/01/24 18:47:36 tove 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} + virtual/perl-Digest-MD5 + dev-perl/DateManip + dev-perl/Net-SSLeay + virtual/perl-MIME-Base64 + dev-perl/TermReadKey + dev-perl/IO-Socket-SSL + dev-perl/Digest-HMAC + dev-perl/Mail-IMAPClient" + +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" +} |