diff options
author | Tuan Van <langthang@gentoo.org> | 2006-05-03 17:58:24 +0000 |
---|---|---|
committer | Tuan Van <langthang@gentoo.org> | 2006-05-03 17:58:24 +0000 |
commit | 968050fe6597621b05a1f356f85dbf947d802001 (patch) | |
tree | 2d44ee97d3ceb27bafba5916486a3b886566d934 /net-mail/imapsync | |
parent | add dependency on faad; thanks to Sam Cuong Truong (diff) | |
download | gentoo-2-968050fe6597621b05a1f356f85dbf947d802001.tar.gz gentoo-2-968050fe6597621b05a1f356f85dbf947d802001.tar.bz2 gentoo-2-968050fe6597621b05a1f356f85dbf947d802001.zip |
version bump. bug #108755.
add dev-perl/Net-SSLeay to RDEPEND. bug #117692 reported by Trenton D. Adams <trenton.d.adams@gmail.com>.
remove ssl USE flag. ssl support is included upstream.
(Portage version: 2.1_pre10-r2)
Diffstat (limited to 'net-mail/imapsync')
-rw-r--r-- | net-mail/imapsync/ChangeLog | 11 | ||||
-rw-r--r-- | net-mail/imapsync/files/digest-imapsync-1.171 | 3 | ||||
-rw-r--r-- | net-mail/imapsync/files/imapsync-1.171-gentoo.patch | 22 | ||||
-rw-r--r-- | net-mail/imapsync/imapsync-1.171.ebuild | 40 |
4 files changed, 75 insertions, 1 deletions
diff --git a/net-mail/imapsync/ChangeLog b/net-mail/imapsync/ChangeLog index e2b479383ccd..c19ee495a9ab 100644 --- a/net-mail/imapsync/ChangeLog +++ b/net-mail/imapsync/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for net-mail/imapsync # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/ChangeLog,v 1.6 2006/02/13 14:57:32 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/ChangeLog,v 1.7 2006/05/03 17:58:24 langthang Exp $ + +*imapsync-1.171 (03 May 2006) + + 03 May 2006; Tuấn Văn <langthang@gentoo.org> + +files/imapsync-1.171-gentoo.patch, +imapsync-1.171.ebuild: + version bump. bug #108755. + add dev-perl/Net-SSLeay to RDEPEND. bug #117692 reported by Trenton D. Adams + <trenton.d.adams@gmail.com>. + remove ssl USE flag. ssl support is included upstream. 13 Feb 2006; Michael Cummings <mcummings@gentoo.org> imapsync-1.121.ebuild: diff --git a/net-mail/imapsync/files/digest-imapsync-1.171 b/net-mail/imapsync/files/digest-imapsync-1.171 new file mode 100644 index 000000000000..5b7b80299884 --- /dev/null +++ b/net-mail/imapsync/files/digest-imapsync-1.171 @@ -0,0 +1,3 @@ +MD5 ffabc2d4545b945f77fc6d6c36674e47 imapsync-1.171.tgz 114666 +RMD160 f988c5c91002fb3cefd1e8144b77696afd9a097c imapsync-1.171.tgz 114666 +SHA256 95c3ae41c50c54f3d281a5f7851b12d0cb5d9d745ca5c2dfb1b2474a4fc4129b imapsync-1.171.tgz 114666 diff --git a/net-mail/imapsync/files/imapsync-1.171-gentoo.patch b/net-mail/imapsync/files/imapsync-1.171-gentoo.patch new file mode 100644 index 000000000000..e6358f38a82d --- /dev/null +++ b/net-mail/imapsync/files/imapsync-1.171-gentoo.patch @@ -0,0 +1,22 @@ +--- Makefile.orig 2006-01-16 17:14:22.000000000 -0800 ++++ Makefile 2006-01-16 17:15:20.000000000 -0800 +@@ -3,6 +3,11 @@ + + TARGET=imapsync + ++ifdef $(DESTDIR) ++else ++ DESTDIR=/usr/bin/ ++endif ++ + .PHONY: help usage all + + help: usage +@@ -54,6 +59,7 @@ + .PHONY: install dist + + install: testp ++ mkdir -p $(DESTDIR)/usr/bin/ + cp $(TARGET) $(DESTDIR)/usr/bin/$(TARGET) + chmod 755 $(DESTDIR)/usr/bin/$(TARGET) + diff --git a/net-mail/imapsync/imapsync-1.171.ebuild b/net-mail/imapsync/imapsync-1.171.ebuild new file mode 100644 index 000000000000..b6888f23d95b --- /dev/null +++ b/net-mail/imapsync/imapsync-1.171.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/imapsync/imapsync-1.171.ebuild,v 1.1 2006/05/03 17:58:24 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="~amd64 ~x86" +IUSE="" + +DEPEND=">=dev-perl/Mail-IMAPClient-2.1.4" + +RDEPEND="${DEPEND} + perl-core/Digest-MD5 + dev-perl/Net-SSLeay + perl-core/MIME-Base64 + dev-perl/Digest-HMAC" + +RESTRICT="test" + +src_unpack() { + unpack ${A} + cd ${S} + + epatch "${FILESDIR}/${P}-gentoo.patch" +} + +src_install() { + make install DESTDIR=${D} || die "make failed" + dobin imapsync + + dodoc CREDITS ChangeLog FAQ README TODO || \ + die "dodoc failed" + +} |