Date: Sun, 29 Oct 2023 22:57:28 GMT From: Muhammad Moinur Rahman <bofh@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 5133e7226a3f - main - www/kannel: Change OPTIONS_DEFAULT to SQLITE3 Message-ID: <202310292257.39TMvSh0029403@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=5133e7226a3ffeb7ed370ce3260180468db3cdac commit 5133e7226a3ffeb7ed370ce3260180468db3cdac Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2023-10-29 17:13:09 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2023-10-29 22:53:35 +0000 www/kannel: Change OPTIONS_DEFAULT to SQLITE3 - As MySQL57 is reaching EOL on 2023-12-31 and this port do not support MySQL80 so switch to other possible DEFAULT - Pet portclippy - Unmark DEPRECATION --- www/kannel/Makefile | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/www/kannel/Makefile b/www/kannel/Makefile index f6d4fe77874e..f4d7bf3b2a85 100644 --- a/www/kannel/Makefile +++ b/www/kannel/Makefile @@ -1,6 +1,6 @@ PORTNAME= kannel PORTVERSION= 1.4.4 -PORTREVISION= 12 +PORTREVISION= 13 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= http://www.kannel.org/download/${PORTVERSION}/ @@ -15,37 +15,34 @@ LICENSE_NAME= The Kannel Software License, Version 1.0 LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -DEPRECATED= Depends on EOL MySQL 5.7 -EXPIRATION_DATE= 2023-11-30 - LIB_DEPENDS= libpcre.so:devel/pcre -PORTSCOUT= skipv:1.5.0 - -USERS= kannel -GROUPS= kannel - USES= cpe gmake gnome iconv ssl tar:bzip2 USE_GCC= yes USE_GNOME= libxml2 USE_RC_SUBR= ${PORTNAME}_bearerbox ${PORTNAME}_smsbox ${PORTNAME}_wapbox + GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-pcre=yes --enable-docs=no --with-malloc=native \ --enable-start-stop-daemon=no + CFLAGS+= -fcommon -OPTIONS_DEFINE= MYSQL PGSQL SQLITE3 -OPTIONS_DEFAULT= MYSQL +PORTSCOUT= skipv:1.5.0 -SQLITE3_USES= sqlite:3 -SQLITE3_CONFIGURE_WITH= sqlite3 +USERS= kannel +GROUPS= kannel + +OPTIONS_DEFINE= MYSQL PGSQL SQLITE3 +OPTIONS_DEFAULT= SQLITE3 MYSQL_USES= mysql MYSQL_CONFIGURE_WITH= mysql MYSQL_VARS= IGNORE_WITH_MYSQL=80 - PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= pgsql +SQLITE3_USES= sqlite:3 +SQLITE3_CONFIGURE_WITH= sqlite3 post-patch: @${RM} ${WRKSRC}/wmlscript/wsgram.y
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202310292257.39TMvSh0029403>