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-irc/scrollz/
Date: Wed, 30 Jun 2021 18:40:48
Message-Id: 1625078363.39141016c101fcc102b8120115dc6dab7e633c9d.sam@gentoo
1 commit: 39141016c101fcc102b8120115dc6dab7e633c9d
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 30 18:39:23 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 30 18:39:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39141016
7
8 net-irc/scrollz: add missing libcrypt dependency
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-irc/scrollz/{scrollz-2.3.ebuild => scrollz-2.3-r1.ebuild} | 7 +++----
13 1 file changed, 3 insertions(+), 4 deletions(-)
14
15 diff --git a/net-irc/scrollz/scrollz-2.3.ebuild b/net-irc/scrollz/scrollz-2.3-r1.ebuild
16 similarity index 95%
17 rename from net-irc/scrollz/scrollz-2.3.ebuild
18 rename to net-irc/scrollz/scrollz-2.3-r1.ebuild
19 index a76e2d53cdc..2cb6e53ecd8 100644
20 --- a/net-irc/scrollz/scrollz-2.3.ebuild
21 +++ b/net-irc/scrollz/scrollz-2.3-r1.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 +# Copyright 1999-2021 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=7
28 @@ -10,17 +10,18 @@ MY_P="ScrollZ-${PV}"
29 DESCRIPTION="Advanced IRC client based on ircII"
30 HOMEPAGE="https://www.scrollz.info/"
31 SRC_URI="https://www.scrollz.info/download/${MY_P}.tar.gz"
32 +S="${WORKDIR}/ScrollZ-${MY_P}"
33
34 LICENSE="BSD"
35 SLOT="0"
36 KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
37 -
38 IUSE="gmp gnutls ipv6 ssl"
39 REQUIRED_USE="gnutls? ( ssl )"
40
41 BDEPEND="virtual/pkgconfig"
42 DEPEND="
43 sys-libs/ncurses:0=
44 + virtual/libcrypt:=
45 gmp? ( dev-libs/gmp:0= )
46 ssl? (
47 gnutls? ( net-libs/gnutls:0= )
48 @@ -29,8 +30,6 @@ DEPEND="
49 "
50 RDEPEND="${DEPEND}"
51
52 -S="${WORKDIR}/ScrollZ-${MY_P}"
53 -
54 PATCHES=(
55 "${FILESDIR}/${PN}-2.3-fcommon.patch"
56 )