diff options
author | Allen-Kristjan Päll <akpall@fst.ee> | 2024-09-18 23:24:46 +0300 |
---|---|---|
committer | Yixun Lan <dlan@gentoo.org> | 2024-10-18 06:51:14 +0800 |
commit | 2a874c28215bcd0a0ae9178fc0d3e34fe927e282 (patch) | |
tree | 3c68c93e78bd7d6c38e501bbe97b763b29bbf586 /net-mail | |
parent | gui-libs/neatvnc: Stabilize 0.8.1 ppc64, #941717 (diff) | |
download | gentoo-2a874c28215bcd0a0ae9178fc0d3e34fe927e282.tar.gz gentoo-2a874c28215bcd0a0ae9178fc0d3e34fe927e282.tar.bz2 gentoo-2a874c28215bcd0a0ae9178fc0d3e34fe927e282.zip |
net-mail/isync: drop 1.4.4
Signed-off-by: Allen-Kristjan Päll <akpall@fst.ee>
Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/isync/isync-1.4.4.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/net-mail/isync/isync-1.4.4.ebuild b/net-mail/isync/isync-1.4.4.ebuild deleted file mode 100644 index 77a6d8a72fc6..000000000000 --- a/net-mail/isync/isync-1.4.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2024 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="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? ( sys-libs/zlib:0= ) - !sci-chemistry/mdtraj -" -DEPEND=${RDEPEND} -BDEPEND=" - dev-lang/perl -" - -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) -} |