Diff suck-4.3.3-r1 with a suck-4.3.4

/usr/portage/net-nntp/suck/suck-4.3.4.ebuild 2023-10-09 14:52:34.732368482 +0300
1
# Copyright 1999-2018 Gentoo Authors
1
# Copyright 1999-2021 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
5

  
5 6
inherit autotools
6 7

  
7 8
DESCRIPTION="Grab news from a remote NNTP server and feed them to another"
......
14 15

  
15 16
RDEPEND="
16 17
	sys-libs/gdbm:=
17
	ssl? ( dev-libs/openssl:0= )
18
	ssl? (
19
		dev-libs/openssl:0=
20
	)
18 21
"
19 22
DEPEND="${RDEPEND}
20 23
	sys-libs/db
21 24
	perl? ( dev-lang/perl )
22 25
"
23 26

  
24
PATCHES=( "${FILESDIR}/${PV}-fputs.patch" )
25

  
26 27
src_prepare() {
27 28
	default
28 29

  
......
36 37
}
37 38

  
38 39
src_configure() {
39
	use ssl || sed -i -e 's/^SSL_/#SSL_/' Makefile.in || die "ssl sed failed"
40
	use perl || sed -i -e 's/^PERL_/#PERL_/' Makefile.in || die "perl sed failed"
40
	if use ssl; then
41
		sed -i -e 's/^SSL_/#SSL_/' Makefile.in || die "ssl sed failed"
42
	fi
43

  
44
	if use perl; then
45
		sed -i -e 's/^PERL_/#PERL_/' Makefile.in || die "perl sed failed"
46
	fi
41 47

  
42 48
	econf --without-inn-lib --without-inn-include
43 49
}
Thank you!