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 | cebe7eb40c87e6370543fad40bbbdbc549088dea (patch) | |
tree | ddd320299e67d8c7bddae49b86c2c15c9620158b /net-mail | |
parent | Add another addpredict to work around Sandbox problems, closes bug #79084 (diff) | |
download | historical-cebe7eb40c87e6370543fad40bbbdbc549088dea.tar.gz historical-cebe7eb40c87e6370543fad40bbbdbc549088dea.tar.bz2 historical-cebe7eb40c87e6370543fad40bbbdbc549088dea.zip |
Initial import. Ebuild submitted by Lee Weisz <lweisz@mindspring.com>. Bug #42838.
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/imapsync/ChangeLog | 11 | ||||
-rw-r--r-- | net-mail/imapsync/Manifest | 14 | ||||
-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, 82 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..225453a78bcd --- /dev/null +++ b/net-mail/imapsync/Manifest @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 0a6beb341fd60c618ffeb730fe1ba6a4 imapsync-1.118.ebuild 1177 +MD5 1362d9d4768241888598e789232a4ffc ChangeLog 420 +MD5 86c229fe394877d2c6a26aa5367bc697 metadata.xml 253 +MD5 3cd0015414e2d6306c52c1cead48581c files/digest-imapsync-1.118 62 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.0 (GNU/Linux) + +iD8DBQFB/qBm5FrxP71izLARAuxSAKCo8BQvNOh1r6lNjbE9S6V2wlQumgCg0+J3 +wr9dqXXu8ObUfi+wGCJ505I= +=y521 +-----END PGP SIGNATURE----- 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> |