svn commit: r341028 - branches/2014Q1/audio/bmp-flac
Martin Wilke
miwi at FreeBSD.org
Sat Jan 25 13:08:43 UTC 2014
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 at 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>
More information about the svn-ports-all
mailing list