commit: 73632b8414463dac0f34a7a4ed10ff60cee232aa Author: Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org> AuthorDate: Fri Oct 13 09:11:55 2017 +0000 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org> CommitDate: Fri Oct 13 09:13:47 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73632b84
net-mail/isync: Add live ebuild and add myself to maintainers, acked by radhermit Package-Manager: Portage-2.3.11, Repoman-2.3.3 net-mail/isync/isync-9999.ebuild | 43 ++++++++++++++++++++++++++++++++++++++++ net-mail/isync/metadata.xml | 3 +++ 2 files changed, 46 insertions(+) diff --git a/net-mail/isync/isync-9999.ebuild b/net-mail/isync/isync-9999.ebuild new file mode 100644 index 00000000000..492843925c9 --- /dev/null +++ b/net-mail/isync/isync-9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="MailDir mailbox synchronizer" +HOMEPAGE="http://isync.sourceforge.net/" +LICENSE="GPL-2" +SLOT="0" + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://git.code.sf.net/p/${PN}/${PN}" + inherit git-r3 autotools +else + SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~ppc ~x86" +fi + +IUSE="compat libressl sasl ssl zlib" + +RDEPEND=" + >=sys-libs/db-4.2:= + sasl? ( dev-libs/cyrus-sasl ) + ssl? ( + !libressl? ( >=dev-libs/openssl-0.9.6:0= ) + libressl? ( dev-libs/libressl:0= ) + ) + zlib? ( sys-libs/zlib:0= ) +" +DEPEND="${RDEPEND}" + +src_prepare () { + default + [[ ${PV} == 9999 ]] && eautoreconf +} + +src_configure () { + econf \ + $(use_enable compat) \ + $(use_with ssl) \ + $(use_with sasl) \ + $(use_with zlib) +} diff --git a/net-mail/isync/metadata.xml b/net-mail/isync/metadata.xml index c842e4a8e2d..78a5838560b 100644 --- a/net-mail/isync/metadata.xml +++ b/net-mail/isync/metadata.xml @@ -5,6 +5,9 @@ <email>[email protected]</email> <name>Net-Mail</name> </maintainer> + <maintainer type="person"> + <email>[email protected]</email> + </maintainer> <upstream> <remote-id type="sourceforge">isync</remote-id> </upstream>
