Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/dante/
Date: Sat, 07 May 2022 04:29:45
Message-Id: 1651897774.2c4a8d7c2c850e8b9a1859a6d7cfb2bd4769cf0e.sam@gentoo
1 commit: 2c4a8d7c2c850e8b9a1859a6d7cfb2bd4769cf0e
2 Author: orbea <orbea <AT> riseup <DOT> net>
3 AuthorDate: Fri May 6 14:03:13 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat May 7 04:29:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c4a8d7c
7
8 net-proxy/dante: Fix build with slibtool
9
10 Removing -all-dynamic is the easiest choice as nothing seems
11 to actually provide that argument. GNU libtool of course will
12 ignore the issue.
13
14 Bug: https://bugs.gentoo.org/780039
15 Signed-off-by: orbea <orbea <AT> riseup.net>
16 Closes: https://github.com/gentoo/gentoo/pull/25349
17 Signed-off-by: Sam James <sam <AT> gentoo.org>
18
19 net-proxy/dante/dante-1.4.1-r6.ebuild | 3 +++
20 1 file changed, 3 insertions(+)
21
22 diff --git a/net-proxy/dante/dante-1.4.1-r6.ebuild b/net-proxy/dante/dante-1.4.1-r6.ebuild
23 index 18dc73c8e8b4..85808412bb40 100644
24 --- a/net-proxy/dante/dante-1.4.1-r6.ebuild
25 +++ b/net-proxy/dante/dante-1.4.1-r6.ebuild
26 @@ -48,6 +48,9 @@ PATCHES=(
27 src_prepare() {
28 default
29
30 + # 780039
31 + sed -e 's/-all-dynamic//' -i dlib/Makefile.am dlib64/Makefile.am || die
32 +
33 sed \
34 -e 's:/etc/socks\.conf:"${EPREFIX}"/etc/socks/socks.conf:' \
35 -e 's:/etc/sockd\.conf:"${EPREFIX}"/etc/socks/sockd.conf:' \