blob: 2cb6e53ecd826666ba1faf1ee22858535d8bea1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
MY_P="ScrollZ-${PV}"
DESCRIPTION="Advanced IRC client based on ircII"
HOMEPAGE="https://www.scrollz.info/"
SRC_URI="https://www.scrollz.info/download/${MY_P}.tar.gz"
S="${WORKDIR}/ScrollZ-${MY_P}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="gmp gnutls ipv6 ssl"
REQUIRED_USE="gnutls? ( ssl )"
BDEPEND="virtual/pkgconfig"
DEPEND="
sys-libs/ncurses:0=
virtual/libcrypt:=
gmp? ( dev-libs/gmp:0= )
ssl? (
gnutls? ( net-libs/gnutls:0= )
!gnutls? ( dev-libs/openssl:0= )
)
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/${PN}-2.3-fcommon.patch"
)
src_configure() {
local _myssl
if use ssl; then
if use gnutls; then
_myssl="--with-ssl"
else
_myssl="--with-openssl"
fi
fi
tc-export CC #397441, ancient autoconf
econf \
--with-default-server="irc.gentoo.org" \
$(use_enable ipv6) \
--enable-regexp \
$(use_enable gmp fish) \
${_myssl}
}
src_install() {
emake \
DESTDIR="${ED}" \
mandir="${EPREFIX}/usr/share/man/man1" \
install
dodoc ChangeLog* NEWS README* todo
}
|