summaryrefslogtreecommitdiff
blob: 78e381f556e029a17f845c7f806244cee6d58840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# 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.121.ebuild,v 1.5 2006/02/13 14:57:32 mcummings 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="ssl"

DEPEND=">=dev-perl/Mail-IMAPClient-2.1.4"

RDEPEND="${DEPEND}
	virtual/perl-Digest-MD5
	dev-perl/Digest-HMAC"

RESTRICT="test"

src_unpack() {
	unpack ${A}
	cd ${S}
	epatch ${FILESDIR}/${PN}-gentoo.patch || \
		die "failed to patch ${P}-gentoo.patch"

	if use ssl; then
		echo $PWD
		cp imapsync imapsync-ssl
		epatch ${FILESDIR}/${PN}-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"

}