Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 Jan 2014 08:56:59 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r340233 - in head/graphics/xmms-fishmatic: . files
Message-ID:  <201401190856.s0J8ux73012211@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Sun Jan 19 08:56:58 2014
New Revision: 340233
URL: http://svnweb.freebsd.org/changeset/ports/340233
QAT: https://qat.redports.org/buildarchive/r340233/

Log:
  - Fix build with clang
  
  PR:		185337

Deleted:
  head/graphics/xmms-fishmatic/files/
Modified:
  head/graphics/xmms-fishmatic/Makefile   (contents, props changed)

Modified: head/graphics/xmms-fishmatic/Makefile
==============================================================================
--- head/graphics/xmms-fishmatic/Makefile	Sun Jan 19 08:55:01 2014	(r340232)
+++ head/graphics/xmms-fishmatic/Makefile	Sun Jan 19 08:56:58 2014	(r340233)
@@ -11,27 +11,33 @@ DISTNAME=	fishmatic
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	XMMS non-static OpenGL stereogram visualization plugin
 
-BUILD_DEPENDS=	xmms-config:${PORTSDIR}/multimedia/xmms
-RUN_DEPENDS=	xmms:${PORTSDIR}/multimedia/xmms
+BUILD_DEPENDS=	xmms>0:${PORTSDIR}/multimedia/xmms
+RUN_DEPENDS=	xmms>0:${PORTSDIR}/multimedia/xmms
 
-PLIST_FILES=	lib/xmms/Visualization/libfishmatic.so
-USE_GNOME=      gtk12
 USES=		gmake pkgconfig
-GNU_CONFIGURE=  yes
-USE_GL=		glut
 USE_XORG=	xext
-USE_LDCONFIG=	yes
+USE_GNOME=      gtk12
+USE_GL=		glut
+USE_AUTOTOOLS=	libtool
 
-CONFIGURE_ENV=	LIBS="-lGL -lXext ${LIBS}"
-CFLAGS+=	-I${LOCALBASE}/include -L${LOCALBASE}/lib
+CPPFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib
+
+PLIST_FILES=	lib/xmms/Visualization/libfishmatic.so
 
-NO_STAGE=	yes
 post-patch:
+	@${REINPLACE_CMD} -e \
+		's|"-lpthread|"-pthread|' ${WRKSRC}/configure
+	@${REINPLACE_CMD} -e \
+		's|-O2|| ; \
+		 s|@PNG_LIBS@||' ${WRKSRC}/Makefile.in
+
+pre-configure:
 	@${RM} -f ${WRKSRC}/config.cache
-	@${REINPLACE_CMD} -e 's|-O2||; \
-		s|-lpthreads|${PTHREAD_LIBS:S/"//g}|g' \
-		${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
-	@${REINPLACE_CMD} -e 's|-O2||' ${WRKSRC}/Makefile.in
-	@${REINPLACE_CMD} -e '/objformat=/s|=.*|=elf|' ${WRKSRC}/ltconfig
+
+do-install:
+	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/xmms/Visualization
+	(cd ${WRKSRC}/.libs && ${INSTALL_LIB} libfishmatic.so \
+		${STAGEDIR}${PREFIX}/lib/xmms/Visualization)
 
 .include <bsd.port.mk>



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