Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Jan 2014 13:10:06 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/185512: commit references a PR
Message-ID:  <201401251310.s0PDA6Mq014448@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/185512; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/185512: commit references a PR
Date: Sat, 25 Jan 2014 13:08:54 +0000 (UTC)

 Author: miwi
 Date: Sat Jan 25 13:08:42 2014
 New Revision: 341028
 URL: http://svnweb.freebsd.org/changeset/ports/341028
 QAT: https://qat.redports.org/buildarchive/r341028/
 
 Log:
   MFH: r340295
   
   - Fix build with clang
   
   PR:		185512
   Submitted by:	ports fury
 
 Modified:
   branches/2014Q1/audio/bmp-flac/Makefile
 Directory Properties:
   branches/2014Q1/   (props changed)
 
 Modified: branches/2014Q1/audio/bmp-flac/Makefile
 ==============================================================================
 --- branches/2014Q1/audio/bmp-flac/Makefile	Sat Jan 25 13:07:26 2014	(r341027)
 +++ branches/2014Q1/audio/bmp-flac/Makefile	Sat Jan 25 13:08:42 2014	(r341028)
 @@ -12,22 +12,33 @@ DISTNAME=	${PORTNAME}-CVS-${PORTVERSION}
  MAINTAINER=	ports@FreeBSD.org
  COMMENT=	FLAC input plugin for beep-media-player
  
 -LIB_DEPENDS=	libbeep.so:${PORTSDIR}/multimedia/beep-media-player \
 -		libFLAC.so:${PORTSDIR}/audio/flac
 +LICENSE=	GPLv2
  
 -PLIST_FILES=	lib/bmp/Input/libbmp-flac.so
 +LIB_DEPENDS=	libFLAC.so:${PORTSDIR}/audio/flac \
 +		libbeep.so:${PORTSDIR}/multimedia/beep-media-player
  
 -USES=		iconv pkgconfig
  USE_BZIP2=	yes
 +USES=		iconv pkgconfig
  GNU_CONFIGURE=	yes
  CONFIGURE_ARGS=	${ICONV_CONFIGURE_ARG} \
  		--with-ogg="${LOCALBASE}" \
  		--with-xmms-prefix="${LOCALBASE}"
 -
  MAKEFILE=	${FILESDIR}/Makefile
  
 +CPPFLAGS+=	-I${LOCALBASE}/include
 +LDFLAGS+=	-L${LOCALBASE}/lib
 +
 +PLIST_FILES=	lib/bmp/Input/libbmp-flac.so
 +
 +.include <bsd.port.pre.mk>
 +
 +.if ${ARCH} == "sparc64"
 +BROKEN=		Does not compile with GCC 4.2
 +.endif
 +
  post-patch:
 -	@${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure
 +	@${REINPLACE_CMD} -e \
 +		'/xtra_stdcpp/s|-lstdc++||' ${WRKSRC}/configure
  
  # "obj" is magic to our make(1)
  # make sure we get the new includes from ${LOCALBASE}/include/FLAC
 @@ -38,12 +49,7 @@ post-configure:
  # This is to avoid libtool running ldconfig -m ${LOCALBASE}/lib/bmp/Input
  do-install:
  	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/bmp/Input
 -	${INSTALL_LIB} ${WRKSRC}/src/plugin_bmp/.libs/libbmp-flac.so ${STAGEDIR}${PREFIX}/lib/bmp/Input
 -
 -.include <bsd.port.pre.mk>
 -
 -.if ${ARCH} == "sparc64"
 -BROKEN=		Does not compile with GCC 4.2
 -.endif
 +	(cd ${WRKSRC}/src/plugin_bmp/.libs && ${INSTALL_LIB} libbmp-flac.so \
 +		${STAGEDIR}${PREFIX}/lib/bmp/Input)
  
  .include <bsd.port.post.mk>
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401251310.s0PDA6Mq014448>