svn commit: r341004 - in branches/2014Q1/audio/xmms-modplug: . files
Martin Wilke
miwi at FreeBSD.org
Sat Jan 25 10:37:28 UTC 2014
Author: miwi
Date: Sat Jan 25 10:37:27 2014
New Revision: 341004
URL: http://svnweb.freebsd.org/changeset/ports/341004
QAT: https://qat.redports.org/buildarchive/r341004/
Log:
MFH: r340232
- Fix build with clang
PR: 185313
Submitted by: Ports Fury
Added:
branches/2014Q1/audio/xmms-modplug/files/
- copied from r340232, head/audio/xmms-modplug/files/
Modified:
branches/2014Q1/audio/xmms-modplug/Makefile (contents, props changed)
Directory Properties:
branches/2014Q1/ (props changed)
Modified: branches/2014Q1/audio/xmms-modplug/Makefile
==============================================================================
--- branches/2014Q1/audio/xmms-modplug/Makefile Sat Jan 25 10:35:51 2014 (r341003)
+++ branches/2014Q1/audio/xmms-modplug/Makefile Sat Jan 25 10:37:27 2014 (r341004)
@@ -12,21 +12,23 @@ DISTNAME= ${PORTNAME}${PKGNAMEPREFIX}2.0
MAINTAINER= ports at FreeBSD.org
COMMENT= ModPlug-based plugin for XMMS
-LIB_DEPENDS?= libxmms.so:${PORTSDIR}/multimedia/xmms
-LIB_DEPENDS+= modplug:${PORTSDIR}/audio/libmodplug
+BUILD_DEPENDS= xmms>0:${PORTSDIR}/multimedia/xmms
+LIB_DEPENDS= libmodplug.so:${PORTSDIR}/audio/libmodplug
+RUN_DEPENDS= xmms>0:${PORTSDIR}/multimedia/xmms
USES= pkgconfig
-NO_STAGE= yes
+USE_AUTOTOOLS= libtool
USE_LDCONFIG= yes
-HAS_CONFIGURE= yes
-PLUGDIR?= lib/xmms/Input
-PLIST_FILES= ${PLUGDIR}/libmodplugxmms.so
+
+PLIST_FILES= lib/xmms/Input/libmodplugxmms.so
post-patch:
- @${REINPLACE_CMD} -e '/objformat=/s|=.*|=elf|' ${WRKSRC}/configure
+ @${REINPLACE_CMD} -e \
+ 's|-lstdc++||' ${WRKSRC}/modplugxmms/Makefile.in
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/modplugxmms/.libs/libmodplugxmms.so \
- ${PREFIX}/${PLUGDIR}
+ @${MKDIR} ${STAGEDIR}${PREFIX}/lib/xmms/Input
+ (cd ${WRKSRC}/modplugxmms/.libs && ${INSTALL_LIB} libmodplugxmms.so \
+ ${STAGEDIR}${PREFIX}/lib/xmms/Input)
.include <bsd.port.mk>
More information about the svn-ports-branches
mailing list