summaryrefslogtreecommitdiff
path: root/net-mail/isync/isync-1.5.1.ebuild
blob: 612eda190b7268fede27a6e60ad7577df78a6ded (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
# Copyright 2021-2025 Liguros Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8

DESCRIPTION="MailDir mailbox synchronizer"
HOMEPAGE="https://sourceforge.net/projects/isync/"
LICENSE="GPL-2"
SLOT="0"
#SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.gz"
SRC_URI="https://sourceforge.net/projects/isync/files/isync/1.5.1/isync-1.5.1.tar.gz/download -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
IUSE="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}
BDEPEND="
	dev-lang/perl
"

src_prepare() {
	default
	[[ ${PV} == 9999 ]] && eautoreconf
}

src_configure() {
	econf \
		$(use_with ssl) \
		$(use_with sasl) \
		$(use_with zlib)
}