svn commit: r512672 - head/audio/swhplugins

Tilman Keskinoz arved at FreeBSD.org
Mon Sep 23 20:25:39 UTC 2019


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 at FreeBSD.org
+MAINTAINER=	arved at 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


More information about the svn-ports-all mailing list