From owner-svn-ports-all@freebsd.org Fri Jan 1 16:10:09 2021 Return-Path: Delivered-To: svn-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 93A914CBF33; Fri, 1 Jan 2021 16:10:09 +0000 (UTC) (envelope-from pi@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D6qjs3mQYz3Fs6; Fri, 1 Jan 2021 16:10:09 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6FA6C257F0; Fri, 1 Jan 2021 16:10:09 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 101GA9bt021611; Fri, 1 Jan 2021 16:10:09 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 101GA89o021609; Fri, 1 Jan 2021 16:10:08 GMT (envelope-from pi@FreeBSD.org) Message-Id: <202101011610.101GA89o021609@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 1 Jan 2021 16:10:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r559842 - in head/multimedia/libbdplus: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/multimedia/libbdplus: . files X-SVN-Commit-Revision: 559842 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Jan 2021 16:10:09 -0000 Author: pi Date: Fri Jan 1 16:10:08 2021 New Revision: 559842 URL: https://svnweb.freebsd.org/changeset/ports/559842 Log: multimedia/libbdplus: Makefile cleanup - Update MASTER_SITES - use ports framework instead of trying to work around it - make portlint happy PR: 250986 Submitted by: daniel.engberg.lists@pyret.net Added: head/multimedia/libbdplus/files/ head/multimedia/libbdplus/files/patch-configure.ac (contents, props changed) Modified: head/multimedia/libbdplus/Makefile Modified: head/multimedia/libbdplus/Makefile ============================================================================== --- head/multimedia/libbdplus/Makefile Fri Jan 1 16:05:45 2021 (r559841) +++ head/multimedia/libbdplus/Makefile Fri Jan 1 16:10:08 2021 (r559842) @@ -2,24 +2,24 @@ # $FreeBSD$ PORTNAME= libbdplus -PORTVERSION= 0.1.2 +DISTVERSION= 0.1.2 +PORTREVISION= 1 CATEGORIES= multimedia -MASTER_SITES= ftp://ftp.videolan.org/pub/videolan/${PORTNAME}/${PORTVERSION}/ \ - http://blu.opsec.eu/ +MASTER_SITES= https://download.videolan.org/pub/videolan/${PORTNAME}/${DISTVERSION}/ MAINTAINER= ports@FreeBSD.org COMMENT= BD+ System research implementation LICENSE= LGPL21 -LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ +LIB_DEPENDS= libaacs.so:multimedia/libaacs \ + libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error +USES= autoreconf libtool pkgconfig tar:bzip2 USE_LDCONFIG= yes -USES= autoreconf tar:bzip2 pkgconfig libtool -CONFIGURE_ARGS= --without-libaacs - -.include "${.CURDIR}/../libbluray/Makefile.include" +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-optimizations .include Added: head/multimedia/libbdplus/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libbdplus/files/patch-configure.ac Fri Jan 1 16:10:08 2021 (r559842) @@ -0,0 +1,13 @@ +--- configure.ac.orig 2020-11-09 02:33:57 UTC ++++ configure.ac +@@ -168,10 +168,6 @@ CC_CHECK_CFLAGS_APPEND([-Wall -Wdisabled-optimization + [-Wredundant-decls -Wcast-qual -Wwrite-strings -Wtype-limits -Wundef ]dnl + [-Wmissing-prototypes -Wshadow]) + +-CC_CHECK_CFLAGS_APPEND([-Werror=implicit-function-declaration ]dnl +- [-Werror-implicit-function-declaration], +- [break;]) +- + CC_CHECK_WERROR + AS_IF([test "x$enable_werror" = "xyes"], [ + CFLAGS="${CFLAGS} $cc_cv_werror"