mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
Done via: ``` git grep -l 'virtual/zlib:0=' | xargs sed -i -e 's@virtual/zlib:0=@virtual/zlib:=@g' ``` Signed-off-by: Michał Górny <mgorny@gentoo.org>
43 lines
908 B
Bash
43 lines
908 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
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="https://downloads.sourceforge.net/${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? ( virtual/zlib:= )
|
|
!sci-chemistry/mdtraj
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND=">=dev-lang/perl-5.14"
|
|
|
|
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)
|
|
}
|