diff options
author | Tuan Van <langthang@gentoo.org> | 2005-01-31 21:12:50 +0000 |
---|---|---|
committer | Tuan Van <langthang@gentoo.org> | 2005-01-31 21:12:50 +0000 |
commit | 5a2361ff53e92fca3105ad39201be5d88cbaecaf (patch) | |
tree | 7ea99c119f322f2dd872b1f3fb6985c4d4007872 /net-mail/imapsync | |
parent | Add another addpredict to work around Sandbox problems, closes bug #79084 (diff) | |
download | gentoo-2-5a2361ff53e92fca3105ad39201be5d88cbaecaf.tar.gz gentoo-2-5a2361ff53e92fca3105ad39201be5d88cbaecaf.tar.bz2 gentoo-2-5a2361ff53e92fca3105ad39201be5d88cbaecaf.zip |
Initial import. Ebuild submitted by Lee Weisz <lweisz@mindspring.com>. Bug #42838.
(Portage version: 2.0.51-r15)
Diffstat (limited to 'net-mail/imapsync')
-rw-r--r-- | net-mail/imapsync/ChangeLog | 11 | ||||
-rw-r--r-- | net-mail/imapsync/Manifest | 4 | ||||
-rw-r--r-- | net-mail/imapsync/files/digest-imapsync-1.118 | 1 | ||||
-rw-r--r-- | net-mail/imapsync/imapsync-1.118.ebuild | 47 | ||||
-rw-r--r-- | net-mail/imapsync/metadata.xml | 9 |
5 files changed, 72 insertions, 0 deletions
diff --git a/net-mail/imapsync/ChangeLog b/net-mail/imapsync/ChangeLog new file mode 100644 index 000000000000..4852a5e4ebdd --- /dev/null +++ b/net-mail/imapsync/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for net-mail/imapsync +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/ChangeLog,v 1.1 2005/01/31 21:12:49 langthang Exp $ + +*imapsync-1.118 (31 Jan 2005) + + 31 Jan 2005; Tuấn Văn <langthang@gentoo.org> +metadata.xml, + +imapsync-1.118.ebuild: + Initial import. Ebuild submitted by Lee Weisz <lweisz@mindspring.com>. Bug + #42838. + diff --git a/net-mail/imapsync/Manifest b/net-mail/imapsync/Manifest new file mode 100644 index 000000000000..f6a4975bac2f --- /dev/null +++ b/net-mail/imapsync/Manifest @@ -0,0 +1,4 @@ +MD5 ed680424fc1f8d5e1ff51aeb0bd78628 imapsync-1.118.ebuild 1074 +MD5 94c94890a17bd2559f673325178427d2 ChangeLog 117 +MD5 86c229fe394877d2c6a26aa5367bc697 metadata.xml 253 +MD5 3cd0015414e2d6306c52c1cead48581c files/digest-imapsync-1.118 62 diff --git a/net-mail/imapsync/files/digest-imapsync-1.118 b/net-mail/imapsync/files/digest-imapsync-1.118 new file mode 100644 index 000000000000..3d702e3615f8 --- /dev/null +++ b/net-mail/imapsync/files/digest-imapsync-1.118 @@ -0,0 +1 @@ +MD5 4eebd7da774f95706655a89788c1ec83 imapsync-1.118.tgz 40959 diff --git a/net-mail/imapsync/imapsync-1.118.ebuild b/net-mail/imapsync/imapsync-1.118.ebuild new file mode 100644 index 000000000000..3278353beeef --- /dev/null +++ b/net-mail/imapsync/imapsync-1.118.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/imapsync-1.118.ebuild,v 1.1 2005/01/31 21:12:49 langthang Exp $ + +inherit eutils + +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="GPL-2" + +SLOT="0" +KEYWORDS="~x86" +IUSE="ssl" + +DEPEND=">=dev-perl/Mail-IMAPClient-2.1.4" + +RDEPEND="${DEPEND} + dev-perl/Digest-MD5 + dev-perl/Digest-HMAC" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${P}-gentoo.patch || \ + die "failed to patch ${P}-gentoo.patch" + + if use ssl; then + echo $PWD + cp imapsync imapsync-ssl + epatch ${FILESDIR}/${P}-ssl.patch || die "patch failed" + epatch ${S}/patches/imapsync-ssl.diff || \ + die "failed to patch imapsync-ssl.diff" + fi +} + +src_install() { + + make install DESTDIR=${D} || die "make failed" + #into /usr + dobin imapsync imapsync-ssl + rm ${D}/imapsync || die "failed to rm imapsync" + + dodoc CREDITS ChangeLog FAQ INSTALL README TODO || \ + die "dodoc failed" + +} diff --git a/net-mail/imapsync/metadata.xml b/net-mail/imapsync/metadata.xml new file mode 100644 index 000000000000..72d13b3fbb02 --- /dev/null +++ b/net-mail/imapsync/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>net-mail</herd> + <maintainer> + <email>langthang@gentoo.org</email> + <name>Tuan Van</name> + </maintainer> +</pkgmetadata> |