diff options
author | Michael Palimaka <kensington@gentoo.org> | 2019-05-01 19:20:49 +1000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2019-05-01 19:21:32 +1000 |
commit | 43035a6f2dd29ad6804af6f71380b1d3150b879d (patch) | |
tree | 3cc40b017f1e03364a0eccf06addd1ed2807e3d0 /net-irc | |
parent | media-sound/spotify: delete 1.1.0 (diff) | |
download | gentoo-43035a6f2dd29ad6804af6f71380b1d3150b879d.tar.gz gentoo-43035a6f2dd29ad6804af6f71380b1d3150b879d.tar.bz2 gentoo-43035a6f2dd29ad6804af6f71380b1d3150b879d.zip |
net-irc/unrealircd: improve configure
The option fd-setsize was renamed maxconnections.
Also, disable tree support as it has been deprecated upstream.
Closes: https://bugs.gentoo.org/684810
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Michael Palimaka <kensington@gentoo.org>
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/unrealircd/unrealircd-4.2.3-r1.ebuild (renamed from net-irc/unrealircd/unrealircd-4.2.3.ebuild) | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net-irc/unrealircd/unrealircd-4.2.3.ebuild b/net-irc/unrealircd/unrealircd-4.2.3-r1.ebuild index 4fa9c22d6378..1cca46256153 100644 --- a/net-irc/unrealircd/unrealircd-4.2.3.ebuild +++ b/net-irc/unrealircd/unrealircd-4.2.3-r1.ebuild @@ -21,7 +21,6 @@ RDEPEND=" !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) dev-libs/libpcre2 - dev-libs/tre >=net-dns/c-ares-1.7:= net-libs/libnsl:= sys-libs/zlib @@ -77,14 +76,14 @@ src_configure() { --without-privatelibdir \ --with-pidfile="${EPREFIX}"/run/${PN}/ircd.pid \ --with-tmpdir="${EPREFIX}"/var/lib/${PN}/tmp \ + --with-maxconnections=1024 \ --with-nick-history=2000 \ --with-sendq=3000000 \ --with-permissions=0640 \ - --with-fd-setsize=1024 \ --with-system-argon2 \ --with-system-cares \ --with-system-pcre2 \ - --with-system-tre \ + --without-tre \ --enable-dynamic-linking \ --enable-ssl="${EPREFIX}"/usr \ $(use_enable curl libcurl "${EPREFIX}"/usr) \ |