commit: f54af463d4d9e96041d3cb529c061d29453d7fd2 Author: Manuel Nickschas <sputnick <AT> quassel-irc <DOT> org> AuthorDate: Thu Dec 17 12:29:39 2020 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Thu Dec 24 23:42:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f54af463
net-irc/quassel: Remove 'ssl' from use flags Upstream has made SSL support in Qt mandatory, so the USE flag no longer makes sense. Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Manuel Nickschas <sputnick <AT> quassel-irc.org> Closes: https://github.com/gentoo/gentoo/pull/18693 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> net-irc/quassel/quassel-9999.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/net-irc/quassel/quassel-9999.ebuild b/net-irc/quassel/quassel-9999.ebuild index a8492974412..7f80a1f4bf3 100644 --- a/net-irc/quassel/quassel-9999.ebuild +++ b/net-irc/quassel/quassel-9999.ebuild @@ -20,7 +20,7 @@ HOMEPAGE="https://quassel-irc.org/" LICENSE="GPL-3" SLOT="0" IUSE="bundled-icons crypt +dbus debug kde ldap monolithic oxygen postgres +server -snorenotify +ssl syslog urlpreview X" +snorenotify syslog urlpreview X" SERVER_DEPEND=" acct-group/quassel @@ -60,7 +60,7 @@ GUI_DEPEND=" DEPEND=" dev-qt/qtcore:5 - dev-qt/qtnetwork:5[ssl?] + dev-qt/qtnetwork:5[ssl] sys-libs/zlib monolithic? ( ${SERVER_DEPEND} @@ -118,7 +118,7 @@ src_configure() { src_install() { cmake_src_install - if use server ; then + if use server; then # needs PAX marking wrt bug#346255 pax-mark m "${ED}/usr/bin/quasselcore" @@ -134,7 +134,7 @@ src_install() { } pkg_postinst() { - if use monolithic && use ssl ; then + if use monolithic; then elog "Information on how to enable SSL support for client/core connections" elog "is available at http://bugs.quassel-irc.org/projects/quassel-irc/wiki/Client-Core_SSL_support." fi @@ -157,7 +157,7 @@ pkg_postrm() { } pkg_config() { - if use server && use ssl; then + if use server; then # generate the pem file only when it does not already exist QUASSEL_DIR=/var/lib/${PN} if [ ! -f "${QUASSEL_DIR}/quasselCert.pem" ]; then
