git: 1dbf979f9a18 - main - irc/catgirl: Remove USES=ssl

From: Muhammad Moinur Rahman <bofh_at_FreeBSD.org>
Date: Wed, 03 May 2023 01:30:11 UTC
The branch main has been updated by bofh:

URL: https://cgit.FreeBSD.org/ports/commit/?id=1dbf979f9a182182f21da1d604bce53eab0f4769

commit 1dbf979f9a182182f21da1d604bce53eab0f4769
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2023-05-03 00:43:36 +0000
Commit:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2023-05-03 01:29:50 +0000

    irc/catgirl: Remove USES=ssl
    
    Currently this port fails to build with all versions of ssl available in
    the tree however works fine with libretls so remove USES=ssl and the
    relevant confitionals.
    
    Approved by:    portmgr (blanket)
---
 irc/catgirl/Makefile | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/irc/catgirl/Makefile b/irc/catgirl/Makefile
index 230f13a914e4..b8f58b512203 100644
--- a/irc/catgirl/Makefile
+++ b/irc/catgirl/Makefile
@@ -11,7 +11,9 @@ WWW=		https://git.causal.agency/catgirl/
 LICENSE=	GPLv3+
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		compiler:c++11-lang ncurses pkgconfig ssl
+USES=		compiler:c++11-lang ncurses pkgconfig
+
+LIB_DEPENDS+=	libtls.so:security/libretls
 
 HAS_CONFIGURE=	yes
 CONFIGURE_ARGS=	--prefix=${PREFIX} --mandir=${MANPREFIX}/man
@@ -24,8 +26,4 @@ PLIST_FILES=	bin/catgirl \
 post-install:
 	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/catgirl
 
-.if ${SSL_DEFAULT} == base || ${SSL_DEFAULT} == openssl
-LIB_DEPENDS+=	libtls.so:security/libretls
-.endif
-
 .include <bsd.port.post.mk>