diff options
author | Fernando J. Pereda <ferdy@gentoo.org> | 2005-08-04 11:48:26 +0000 |
---|---|---|
committer | Fernando J. Pereda <ferdy@gentoo.org> | 2005-08-04 11:48:26 +0000 |
commit | 38a7b4aee975b58191e552b224b4f5d5b5177bf5 (patch) | |
tree | e33849bdc2d0ff92504252c7caddb99ae0237dd5 /net-mail/isync | |
parent | Require >=perl-ldap-0.33. Bug #100198. (diff) | |
download | historical-38a7b4aee975b58191e552b224b4f5d5b5177bf5.tar.gz historical-38a7b4aee975b58191e552b224b4f5d5b5177bf5.tar.bz2 historical-38a7b4aee975b58191e552b224b4f5d5b5177bf5.zip |
version bump, fixes bug #100098. Thanks to Perttu Luukko <pejajulu@cc.jyu.fi>
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'net-mail/isync')
-rw-r--r-- | net-mail/isync/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/isync/Manifest | 12 | ||||
-rw-r--r-- | net-mail/isync/files/digest-isync-1.0.1 | 1 | ||||
-rw-r--r-- | net-mail/isync/isync-1.0.1.ebuild | 32 |
4 files changed, 46 insertions, 6 deletions
diff --git a/net-mail/isync/ChangeLog b/net-mail/isync/ChangeLog index d6a662f8e28c..675d047223d8 100644 --- a/net-mail/isync/ChangeLog +++ b/net-mail/isync/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-mail/isync # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/isync/ChangeLog,v 1.3 2005/01/03 23:35:31 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/isync/ChangeLog,v 1.4 2005/08/04 11:48:26 ferdy Exp $ + +*isync-1.0.1 (04 Aug 2005) + + 04 Aug 2005; Fernando J. Pereda <ferdy@gentoo.org> +isync-1.0.1.ebuild: + version bump, fixes bug #100098. Thanks to Perttu Luukko <pejajulu@cc.jyu.fi> 04 Jan 2005; Andrej Kacian <ticho@gentoo.org> isync-0.9.2.ebuild: Stable on x86. diff --git a/net-mail/isync/Manifest b/net-mail/isync/Manifest index 2b5d83e1ef40..b341c8c94149 100644 --- a/net-mail/isync/Manifest +++ b/net-mail/isync/Manifest @@ -1,14 +1,16 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 c46264e112cf932fdbdad1d28341125a ChangeLog 584 +MD5 97e7c74dcf221c1a87440e27710e62a6 isync-1.0.1.ebuild 733 MD5 bc981b11b815676cd74767e55ae79622 isync-0.9.2.ebuild 725 +MD5 6e1672ad0679358a9340cbdc647401b9 ChangeLog 767 MD5 5721b86fd871bdfab77231abc6e02f68 metadata.xml 161 MD5 594d3cc4335697d6d62d627f06af10a5 files/digest-isync-0.9.2 63 +MD5 182ac15031d136cf470f17070243749d files/digest-isync-1.0.1 63 -----BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.0 (GNU/Linux) +Version: GnuPG v1.4.1 (GNU/Linux) -iD8DBQFB2dbMQlM6RnzZP+IRAuZxAJsGbJdZ1i0H/GnL2XD/NunKkx4QPACdFSzP -TCByFHqXOKvHBIulLlB0xIY= -=CB9x +iD8DBQFC8gEeViELBEf1JB0RAgINAJwIH2+V3K2pddOwQGFeD1OsWteQ/QCfRcuR +05UWMB5HmcztHNyrRq481Bg= +=6K4b -----END PGP SIGNATURE----- diff --git a/net-mail/isync/files/digest-isync-1.0.1 b/net-mail/isync/files/digest-isync-1.0.1 new file mode 100644 index 000000000000..049f469e7caa --- /dev/null +++ b/net-mail/isync/files/digest-isync-1.0.1 @@ -0,0 +1 @@ +MD5 3e238b87e4f39173121d60873f9d2b05 isync-1.0.1.tar.gz 165617 diff --git a/net-mail/isync/isync-1.0.1.ebuild b/net-mail/isync/isync-1.0.1.ebuild new file mode 100644 index 000000000000..d65db01ec87a --- /dev/null +++ b/net-mail/isync/isync-1.0.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/isync/isync-1.0.1.ebuild,v 1.1 2005/08/04 11:48:26 ferdy Exp $ + +inherit eutils + +DESCRIPTION="MailDir mailbox synchronizer" +HOMEPAGE="http://isync.sourceforge.net/" +SRC_URI="mirror://sourceforge/isync/${P}.tar.gz" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="ssl" + +DEPEND="virtual/libc + >=sys-libs/db-4.2 + ssl? ( >=dev-libs/openssl-0.9.6 )" + +src_compile () { + econf --with-prefix=${D} \ + $(use_with ssl) \ + || die 'Configure failed' + + emake || die "Error compiling" +} + +src_install() +{ + einstall || die 'Error installing' + dodoc README COPYING AUTHORS ChangeLog NEWS TODO +} |