diff options
author | Andrej Kacian <ticho@gentoo.org> | 2006-05-01 21:57:19 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2006-05-01 21:57:19 +0000 |
commit | 65be66b5fcf4c3aa642eb57e6f29fb2bde0175bf (patch) | |
tree | f7fc374b8154a154fbe10b70f434d378cd9f5a65 /net-mail | |
parent | Version bump (diff) | |
download | gentoo-2-65be66b5fcf4c3aa642eb57e6f29fb2bde0175bf.tar.gz gentoo-2-65be66b5fcf4c3aa642eb57e6f29fb2bde0175bf.tar.bz2 gentoo-2-65be66b5fcf4c3aa642eb57e6f29fb2bde0175bf.zip |
Version bump. Closes bug #131763, reported by Milan Holzäpfel <public at mjh.name>.
(Portage version: 2.1_pre9-r4)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/isync/ChangeLog | 10 | ||||
-rw-r--r-- | net-mail/isync/files/digest-isync-1.0.2 | 3 | ||||
-rw-r--r-- | net-mail/isync/isync-1.0.2.ebuild | 32 |
3 files changed, 43 insertions, 2 deletions
diff --git a/net-mail/isync/ChangeLog b/net-mail/isync/ChangeLog index 90b91d1142a2..e618e5eb39a0 100644 --- a/net-mail/isync/ChangeLog +++ b/net-mail/isync/ChangeLog @@ -1,6 +1,12 @@ # 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.5 2005/09/05 19:48:41 ticho Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/isync/ChangeLog,v 1.6 2006/05/01 21:57:19 ticho Exp $ + +*isync-1.0.2 (01 May 2006) + + 01 May 2006; Andrej Kacian <ticho@gentoo.org> +isync-1.0.2.ebuild: + Version bump. Closes bug #131763, reported by Milan Holzäpfel <public at + mjh.name>. 05 Sep 2005; Andrej Kacian <ticho@gentoo.org> isync-1.0.1.ebuild: Stable on x86. diff --git a/net-mail/isync/files/digest-isync-1.0.2 b/net-mail/isync/files/digest-isync-1.0.2 new file mode 100644 index 000000000000..eca46a7ed864 --- /dev/null +++ b/net-mail/isync/files/digest-isync-1.0.2 @@ -0,0 +1,3 @@ +MD5 a9335dbf40e6c6e4b2ccd08b8340ca25 isync-1.0.2.tar.gz 166143 +RMD160 66161696761a8ab41431748ec7b442035c1d97c8 isync-1.0.2.tar.gz 166143 +SHA256 cfc8a9c449fbcbb5230fa6832e9411baf8fc55f4163d405c666571c38725f48a isync-1.0.2.tar.gz 166143 diff --git a/net-mail/isync/isync-1.0.2.ebuild b/net-mail/isync/isync-1.0.2.ebuild new file mode 100644 index 000000000000..a6ed34311c24 --- /dev/null +++ b/net-mail/isync/isync-1.0.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/isync/isync-1.0.2.ebuild,v 1.1 2006/05/01 21:57:19 ticho 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="~ppc ~x86" +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 +} |