blob: 7a6e66b14e6619c57f8c56c186bc4571a1dc083f (
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
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="MailDir mailbox synchronizer"
HOMEPAGE="https://isync.sourceforge.io/"
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 arm64 ~ppc ~ppc64 ~riscv x86"
fi
IUSE="berkdb sasl ssl zlib"
RDEPEND="
berkdb? ( >=sys-libs/db-4.2:= )
sasl? ( dev-libs/cyrus-sasl )
ssl? ( >=dev-libs/openssl-0.9.6:0= )
zlib? ( sys-libs/zlib:0= )
!sci-chemistry/mdtraj
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-lang/perl
"
PATCHES=(
"${FILESDIR}"/${P}-openssl3-eof.patch
)
src_prepare() {
default
[[ ${PV} == 9999 ]] && eautoreconf
}
src_configure() {
use berkdb || export ac_cv_berkdb4=no
econf \
$(use_with ssl) \
$(use_with sasl) \
$(use_with zlib)
}
|