Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 801265 - net-irc/ngircd SSL/TLS support does not work
Summary: net-irc/ngircd SSL/TLS support does not work
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Sam James
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-07-09 04:58 UTC by Petr Fortelný
Modified: 2021-07-09 15:04 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Petr Fortelný 2021-07-09 04:58:45 UTC
Hi,

there is typo in ngircd-26.1.ebuild.
I found mismatched variables myeconf/myconf in function src_configure.
Therefore useflags for SSL/TLS are not getting into account.

--- ngircd-26.1.ebuild  2021-07-09 06:43:55.000000000 +0200
+++ ngircd-26.1.ebuild.fix      2021-07-09 06:48:24.000000000 +0200
@@ -60,7 +60,7 @@
 }
 
 src_configure() {
-       local myeconf=(
+       local myconf=(
                --sysconfdir="${EPREFIX}"/etc/${PN}
                $(use_enable debug sniffer)
                $(use_enable debug)
@@ -86,7 +86,7 @@
                fi
        fi
 
-       econf "${myeconf[@]}"
+       econf "${myconf[@]}"
 }
Comment 1 Larry the Git Cow gentoo-dev 2021-07-09 15:04:09 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=421ec6f00456865e0010c44b803ee943e83715fd

commit 421ec6f00456865e0010c44b803ee943e83715fd
Author:     Sam James <sam@gentoo.org>
AuthorDate: 2021-07-09 14:49:35 +0000
Commit:     Sam James <sam@gentoo.org>
CommitDate: 2021-07-09 14:49:37 +0000

    net-irc/ngircd: fix SSL/TLS configure
    
    Closes: https://bugs.gentoo.org/801265
    Signed-off-by: Sam James <sam@gentoo.org>

 net-irc/ngircd/{ngircd-26.1.ebuild => ngircd-26.1-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)