diff options
author | Manuel Nickschas <sputnick@quassel-irc.org> | 2020-12-17 13:29:39 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-12-25 00:42:23 +0100 |
commit | f54af463d4d9e96041d3cb529c061d29453d7fd2 (patch) | |
tree | 1c36807893eb9302c6a6945b2dffca310f19329f /net-irc/quassel | |
parent | kde-frameworks: Remove last-rited packages (diff) | |
download | gentoo-f54af463d4d9e96041d3cb529c061d29453d7fd2.tar.gz gentoo-f54af463d4d9e96041d3cb529c061d29453d7fd2.tar.bz2 gentoo-f54af463d4d9e96041d3cb529c061d29453d7fd2.zip |
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@quassel-irc.org>
Closes: https://github.com/gentoo/gentoo/pull/18693
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-irc/quassel')
-rw-r--r-- | net-irc/quassel/quassel-9999.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net-irc/quassel/quassel-9999.ebuild b/net-irc/quassel/quassel-9999.ebuild index a8492974412d..7f80a1f4bf3f 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 |