From owner-dev-commits-ports-all@freebsd.org Fri Jul 16 09:18:20 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5222D65E3EF; Fri, 16 Jul 2021 09:18:20 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GR5JD11rbz3wMx; Fri, 16 Jul 2021 09:18:20 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E34581AB93; Fri, 16 Jul 2021 09:18:19 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 16G9IJkC004232; Fri, 16 Jul 2021 09:18:19 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16G9IJp8004231; Fri, 16 Jul 2021 09:18:19 GMT (envelope-from git) Date: Fri, 16 Jul 2021 09:18:19 GMT Message-Id: <202107160918.16G9IJp8004231@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: "Tobias C. Berner" Subject: git: 46e00f0b6588 - main - net-im/loudmouth: update to 1.5.4 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: tcberner X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 46e00f0b65882160df82ce51c0b168637beaf5fb Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jul 2021 09:18:20 -0000 The branch main has been updated by tcberner: URL: https://cgit.FreeBSD.org/ports/commit/?id=46e00f0b65882160df82ce51c0b168637beaf5fb commit 46e00f0b65882160df82ce51c0b168637beaf5fb Author: Tobias C. Berner AuthorDate: 2021-07-16 09:17:18 +0000 Commit: Tobias C. Berner CommitDate: 2021-07-16 09:18:08 +0000 net-im/loudmouth: update to 1.5.4 - remove defunct DOCS option - cleanup options handling for SSL options --- net-im/loudmouth/Makefile | 32 +++++++++++++++++--------------- net-im/loudmouth/distinfo | 5 +++-- net-im/loudmouth/pkg-plist | 20 -------------------- 3 files changed, 20 insertions(+), 37 deletions(-) diff --git a/net-im/loudmouth/Makefile b/net-im/loudmouth/Makefile index 7ad57b8bc1ac..7925c72c9194 100644 --- a/net-im/loudmouth/Makefile +++ b/net-im/loudmouth/Makefile @@ -2,8 +2,7 @@ # $MCom: ports/trunk/net-im/loudmouth/Makefile 19914 2014-09-25 22:33:21Z kwm $ PORTNAME= loudmouth -PORTVERSION= 1.5.3 -PORTREVISION= 1 +DISTVERSION= 1.5.4 CATEGORIES= net-im MASTER_SITES= https://mcabber.com/files/loudmouth/ \ http://www.lilotux.net/~mikael/mcabber/files/loudmouth/ @@ -20,26 +19,29 @@ USES= gettext gmake gnome libtool pkgconfig tar:bzip2 USE_GNOME= glib20 GNU_CONFIGURE= yes USE_LDCONFIG= yes -CONFIGURE_ARGS= --disable-gtk-doc --disable-rebuilds \ +CONFIGURE_ARGS= --disable-rebuilds \ + --disable-gtk-doc \ + --with-compile-warnings=no \ --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig INSTALL_TARGET= install-strip -OPTIONS_DEFINE= DOCS -OPTIONS_DEFAULT=GNUTLS -OPTIONS_RADIO= SSL +OPTIONS_DEFINE= DOCS +OPTIONS_RADIO= SSL OPTIONS_RADIO_SSL= GNUTLS OPENSSL +OPTIONS_DEFAULT= GNUTLS + +GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls +GNUTLS_CONFIGURE_ON= --with-ssl=gnutls + +OPENSSL_USES= ssl +OPENSSL_CONFIGURE_ON= --with-ssl=openssl +OPENSSL_RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss + .include -.if ${PORT_OPTIONS:MGNUTLS} -LIB_DEPENDS+= libgnutls.so:security/gnutls -CONFIGURE_ARGS+=--with-ssl=gnutls -.elif ${PORT_OPTIONS:MOPENSSL} -USES+= ssl -CONFIGURE_ARGS+=--with-ssl=openssl -RUN_DEPENDS+= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss -.else -CONFIGURE_ARGS+=--without-ssl +.if empty(PORT_OPTIONS:MGNUTLS) && empty(PORT_OPTIONS:MOPENSSL) +CONFIGURE_ARGS+= --without-ssl .endif .include diff --git a/net-im/loudmouth/distinfo b/net-im/loudmouth/distinfo index 0ec15d3ab041..652ee1508d9f 100644 --- a/net-im/loudmouth/distinfo +++ b/net-im/loudmouth/distinfo @@ -1,2 +1,3 @@ -SHA256 (loudmouth-1.5.3.tar.bz2) = 54329415cb1bacb783c20f5f1f975de4fc460165d0d8a1e3b789367b5f69d32c -SIZE (loudmouth-1.5.3.tar.bz2) = 375974 +TIMESTAMP = 1626423379 +SHA256 (loudmouth-1.5.4.tar.bz2) = 31cbc91c1fddcc5346b3373b8fb45594e9ea9cc7fe36d0595e8912c47ad94d0d +SIZE (loudmouth-1.5.4.tar.bz2) = 361323 diff --git a/net-im/loudmouth/pkg-plist b/net-im/loudmouth/pkg-plist index 656f333df002..a801d6c05b6e 100644 --- a/net-im/loudmouth/pkg-plist +++ b/net-im/loudmouth/pkg-plist @@ -12,23 +12,3 @@ lib/libloudmouth-1.so lib/libloudmouth-1.so.0 lib/libloudmouth-1.so.0.1.0 libdata/pkgconfig/loudmouth-1.0.pc -%%PORTDOCS%%share/gtk-doc/html/loudmouth/ch01.html -%%PORTDOCS%%share/gtk-doc/html/loudmouth/home.png -%%PORTDOCS%%share/gtk-doc/html/loudmouth/index.html -%%PORTDOCS%%share/gtk-doc/html/loudmouth/index.sgml -%%PORTDOCS%%share/gtk-doc/html/loudmouth/left-insensitive.png -%%PORTDOCS%%share/gtk-doc/html/loudmouth/left.png -%%PORTDOCS%%share/gtk-doc/html/loudmouth/loudmouth-LmConnection.html -%%PORTDOCS%%share/gtk-doc/html/loudmouth/loudmouth-LmError.html -%%PORTDOCS%%share/gtk-doc/html/loudmouth/loudmouth-LmMessage.html -%%PORTDOCS%%share/gtk-doc/html/loudmouth/loudmouth-LmMessageHandler.html -%%PORTDOCS%%share/gtk-doc/html/loudmouth/loudmouth-LmMessageNode.html -%%PORTDOCS%%share/gtk-doc/html/loudmouth/loudmouth-LmProxy.html -%%PORTDOCS%%share/gtk-doc/html/loudmouth/loudmouth-LmSSL.html -%%PORTDOCS%%share/gtk-doc/html/loudmouth/loudmouth-Miscellaneous-Utility-Functions.html -%%PORTDOCS%%share/gtk-doc/html/loudmouth/loudmouth.devhelp2 -%%PORTDOCS%%share/gtk-doc/html/loudmouth/right-insensitive.png -%%PORTDOCS%%share/gtk-doc/html/loudmouth/right.png -%%PORTDOCS%%share/gtk-doc/html/loudmouth/style.css -%%PORTDOCS%%share/gtk-doc/html/loudmouth/up-insensitive.png -%%PORTDOCS%%share/gtk-doc/html/loudmouth/up.png