diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-06-20 07:53:36 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-06-20 07:53:36 +0000 |
commit | 1f7c269e7666571c4a450220ecac767484873e99 (patch) | |
tree | a6c7abcbf260a6da51384f7106a4a51a1e5cfc98 /net-mail | |
parent | Stable for amd64 wrt bug #512640 (diff) | |
download | gentoo-2-1f7c269e7666571c4a450220ecac767484873e99.tar.gz gentoo-2-1f7c269e7666571c4a450220ecac767484873e99.tar.bz2 gentoo-2-1f7c269e7666571c4a450220ecac767484873e99.zip |
Version bump.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/isync/ChangeLog | 9 | ||||
-rw-r--r-- | net-mail/isync/isync-1.1.1.ebuild | 24 |
2 files changed, 31 insertions, 2 deletions
diff --git a/net-mail/isync/ChangeLog b/net-mail/isync/ChangeLog index 7f6495e7e446..dca81e24ccbd 100644 --- a/net-mail/isync/ChangeLog +++ b/net-mail/isync/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-mail/isync -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/isync/ChangeLog,v 1.24 2013/12/20 19:14:16 radhermit Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/isync/ChangeLog,v 1.25 2014/06/20 07:53:36 radhermit Exp $ + +*isync-1.1.1 (20 Jun 2014) + + 20 Jun 2014; Tim Harder <radhermit@gentoo.org> +isync-1.1.1.ebuild: + Version bump. 20 Dec 2013; Tim Harder <radhermit@gentoo.org> +isync-1.1.0.ebuild: Version bump (bug #494814). diff --git a/net-mail/isync/isync-1.1.1.ebuild b/net-mail/isync/isync-1.1.1.ebuild new file mode 100644 index 000000000000..9b2b4105c9ca --- /dev/null +++ b/net-mail/isync/isync-1.1.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/isync/isync-1.1.1.ebuild,v 1.1 2014/06/20 07:53:36 radhermit Exp $ + +EAPI=5 + +DESCRIPTION="MailDir mailbox synchronizer" +HOMEPAGE="http://isync.sourceforge.net/" +SRC_URI="mirror://sourceforge/isync/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="ssl" + +DEPEND=">=sys-libs/db-4.2 + ssl? ( >=dev-libs/openssl-0.9.6 )" +RDEPEND="${DEPEND}" + +src_configure() { + econf \ + --docdir="/usr/share/doc/${PF}" \ + $(use_with ssl) +} |