git: 730f1fd28f4f - main - irc/ircproxy: fix LICENSE_FILE
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 15 Mar 2024 13:09:29 UTC
The branch main has been updated by rodrigo:
URL: https://cgit.FreeBSD.org/ports/commit/?id=730f1fd28f4f55554d0e5e7828f8e7a428b87450
commit 730f1fd28f4f55554d0e5e7828f8e7a428b87450
Author: Rodrigo Osorio <rodrigo@FreeBSD.org>
AuthorDate: 2024-03-14 10:15:33 +0000
Commit: Rodrigo Osorio <rodrigo@FreeBSD.org>
CommitDate: 2024-03-15 13:08:38 +0000
irc/ircproxy: fix LICENSE_FILE
Also apply portfmt linter
PR: 277523
Reported by: Chris Hutchinson <portmaster@bsdforge.com> (maintainer)
---
irc/ircproxy/Makefile | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/irc/ircproxy/Makefile b/irc/ircproxy/Makefile
index 1cf0df5f0e49..ac55efaba297 100644
--- a/irc/ircproxy/Makefile
+++ b/irc/ircproxy/Makefile
@@ -1,6 +1,6 @@
PORTNAME= ircproxy
DISTVERSION= 1.3.8
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= irc
MASTER_SITES= https://codeberg.org/BSDforge/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/
@@ -9,7 +9,7 @@ COMMENT= IRC proxy/bouncer daemon
WWW= https://codeberg.org/BSDforge/ircproxy
LICENSE= GPLv3+
-LICENSE_FILE= ${WRKSRC}/COPYING
+LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libcares.so:dns/c-ares
@@ -17,20 +17,20 @@ USES= autoreconf localbase:ldflags
GNU_CONFIGURE= yes
LDFLAGS+= -lcrypto
-WRKSRC= ${WRKDIR}/${PORTNAME}
+WRKSRC= ${WRKDIR}/${PORTNAME}
USERS= ircproxyd
GROUPS= ircproxyd
-OPTIONS_DEFINE= SSL IPV6 MEMDEBUG FDDEBUG
-OPTIONS_DEFAULT= SSL MEMDEBUG FDDEBUG
-FDDEBUG_DESC= Enable file descriptor debugging
-MEMDEBUG_DESC= Enable memory debugging
+OPTIONS_DEFINE= FDDEBUG IPV6 MEMDEBUG SSL
+OPTIONS_DEFAULT= FDDEBUG MEMDEBUG SSL
+FDDEBUG_DESC= Enable file descriptor debugging
+MEMDEBUG_DESC= Enable memory debugging
FDDEBUG_CONFIGURE_ENABLE= fddebug
IPV6_CONFIGURE_ENABLE= ipv6
MEMDEBUG_CONFIGURE_ENABLE= memdebug
-SSL_USES= ssl
+SSL_USES= ssl
SSL_CONFIGURE_ENABLE= ssl
.include <bsd.port.pre.mk>