Diff anope-2.0.11 with a anope-2.0.13
/usr/portage/net-irc/anope/anope-2.0.13.ebuild 2023-10-09 14:52:34.456368475 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2022 Gentoo Authors |
|
1 |
# Copyright 1999-2023 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 | 4 |
EAPI=8 |
... | ... | |
18 | 18 |
DEPEND=" |
19 | 19 |
acct-group/anope |
20 | 20 |
acct-user/anope |
21 |
mysql? ( dev-db/mysql-connector-c:0= ) |
|
22 |
ssl? ( dev-libs/openssl:0= ) |
|
21 |
mysql? ( dev-db/mysql-connector-c:= ) |
|
22 |
ssl? ( dev-libs/openssl:= ) |
|
23 | 23 |
gnutls? ( |
24 |
net-libs/gnutls:0= |
|
25 |
dev-libs/libgcrypt:0= |
|
24 |
net-libs/gnutls:= |
|
25 |
dev-libs/libgcrypt:= |
|
26 | 26 |
) |
27 | 27 |
ldap? ( net-nds/openldap:= ) |
28 |
pcre? ( dev-libs/libpcre ) |
|
28 |
pcre? ( dev-libs/libpcre2 ) |
|
29 | 29 |
sqlite? ( dev-db/sqlite:3 ) |
30 | 30 |
tre? ( dev-libs/tre ) |
31 | 31 |
virtual/libintl |
... | ... | |
73 | 73 |
fi |
74 | 74 | |
75 | 75 |
use gnutls && anope_enable_mod "m_ssl_gnutls.cpp" |
76 |
use pcre && anope_enable_mod "m_regex_pcre.cpp" |
|
76 |
use pcre && anope_enable_mod "m_regex_pcre2.cpp" |
|
77 | 77 |
use ssl && anope_enable_mod "m_ssl_openssl.cpp" |
78 | 78 |
use tre && anope_enable_mod "m_regex_tre.cpp" |
79 | 79 | |
... | ... | |
104 | 104 |
-DLOGS_DIR="../var/log/anope/" |
105 | 105 |
) |
106 | 106 | |
107 |
# https://gitlab.kitware.com/cmake/cmake/-/issues/24237 |
|
108 |
# https://bugs.anope.org/view.php?id=1753 |
|
109 |
unset CLICOLOR CLICOLOR_FORCE CMAKE_COMPILER_COLOR_DIAGNOSTICS CMAKE_COLOR_DIAGNOSTICS |
|
110 | ||
107 | 111 |
cmake_src_configure |
108 | 112 |
} |
109 | 113 |