svn commit: r492692 - head/x11-toolkits/soqt-devel

Christoph Moench-Tegeder cmt at FreeBSD.org
Mon Feb 11 12:53:32 UTC 2019


Author: cmt
Date: Mon Feb 11 12:53:31 2019
New Revision: 492692
URL: https://svnweb.freebsd.org/changeset/ports/492692

Log:
  soqt-devel: fix build with GCC-based architectures
  
  and add localbase:ldflags to simplify CPPFLAGS/LDFLAGS
  
  PR:		235659
  Submitted by:	Piotr Kubaj

Modified:
  head/x11-toolkits/soqt-devel/Makefile

Modified: head/x11-toolkits/soqt-devel/Makefile
==============================================================================
--- head/x11-toolkits/soqt-devel/Makefile	Mon Feb 11 12:49:52 2019	(r492691)
+++ head/x11-toolkits/soqt-devel/Makefile	Mon Feb 11 12:53:31 2019	(r492692)
@@ -18,14 +18,15 @@ LIB_DEPENDS=	libCoin.so:graphics/Coin
 
 CONFLICTS_INSTALL=	SoQt
 
-USES=		cmake dos2unix gl libtool pathfix pkgconfig qmake:no_env qt:5
+USES=		cmake compiler:c++11-lang dos2unix gl libtool \
+		localbase:ldflags pathfix pkgconfig qmake:no_env qt:5
 USE_QT=		buildtools core gui opengl qmake widgets
 USE_GL=		gl
 USE_XORG=	ice sm x11 xext xi
 USE_LDCONFIG=	yes
 
-CPPFLAGS+=	-I${QT_INCDIR}/QtCore -I${QT_INCDIR} -I${LOCALBASE}/include
-LDFLAGS+=	-L${QT_LIBDIR} -L${LOCALBASE}/lib
+CPPFLAGS+=	-I${QT_INCDIR}/QtCore -I${QT_INCDIR}
+LDFLAGS+=	-L${QT_LIBDIR}
 
 WRKSRC=		${WRKDIR}/soqt
 


More information about the svn-ports-all mailing list