From owner-svn-ports-head@freebsd.org Mon Sep 23 20:25:39 2019 Return-Path: Delivered-To: svn-ports-head@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 78922FEBD1; Mon, 23 Sep 2019 20:25:39 +0000 (UTC) (envelope-from arved@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) server-signature RSA-PSS (4096 bits) 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 46cbRl2WsRz4T9B; Mon, 23 Sep 2019 20:25:39 +0000 (UTC) (envelope-from arved@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 394651C3C5; Mon, 23 Sep 2019 20:25:39 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8NKPcbj066128; Mon, 23 Sep 2019 20:25:38 GMT (envelope-from arved@FreeBSD.org) Received: (from arved@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8NKPcTB066127; Mon, 23 Sep 2019 20:25:38 GMT (envelope-from arved@FreeBSD.org) Message-Id: <201909232025.x8NKPcTB066127@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arved set sender to arved@FreeBSD.org using -f From: Tilman Keskinoz Date: Mon, 23 Sep 2019 20:25:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512672 - head/audio/swhplugins X-SVN-Group: ports-head X-SVN-Commit-Author: arved X-SVN-Commit-Paths: head/audio/swhplugins X-SVN-Commit-Revision: 512672 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Sep 2019 20:25:39 -0000 Author: arved Date: Mon Sep 23 20:25:38 2019 New Revision: 512672 URL: https://svnweb.freebsd.org/changeset/ports/512672 Log: Three plugins used C89 inline semantics, which resulted in unresolved symbols with C99 compilers. PR: 239128 Reported by: Marcel Bonnet While here, portlint. Grab back maintainership. Modified: head/audio/swhplugins/Makefile Modified: head/audio/swhplugins/Makefile ============================================================================== --- head/audio/swhplugins/Makefile Mon Sep 23 20:24:12 2019 (r512671) +++ head/audio/swhplugins/Makefile Mon Sep 23 20:25:38 2019 (r512672) @@ -3,28 +3,31 @@ PORTNAME= swhplugins PORTVERSION= 0.4.15 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= audio MASTER_SITES= http://plugin.org.uk/releases/${PORTVERSION}/ DISTNAME= swh-plugins-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= arved@FreeBSD.org COMMENT= Steve Harris' huge Collection of LADSPA Plugins +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:audio/ladspa \ ${LOCALBASE}/include/fftw3.h:math/fftw3 LIB_DEPENDS= libfftw3f.so:math/fftw3-float # includes assembler code -ONLY_FOR_ARCHS= i386 amd64 - +ONLY_FOR_ARCHS= amd64 i386 USES= gmake libtool pkgconfig + GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes -CFLAGS+= -fPIC -DPIC +CFLAGS+= -fPIC -DPIC -fgnu89-inline OPTIONS_DEFINE= NLS 3DNOW SSE OPTIONS_SUB= yes