Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 May 2019 18:00:13 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r500868 - head/x11/pcdm
Message-ID:  <201905051800.x45I0DRf002455@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Sun May  5 18:00:13 2019
New Revision: 500868
URL: https://svnweb.freebsd.org/changeset/ports/500868

Log:
  x11/pcdm: fix build with GCC-based architectures
  
  This port needs USES=compiler:c++11-lang to build on GCC architectures.
  
  Additionally (by fernape):
  * Reorder USE in the Makefile
  * Add widgets as a USE_QT member
  * Add USE_GL and USE_XORG (suggested by the framework)
  * Fix wrong %%ETCDIR%% substitution in pkg-plist
  
  PR:		237117
  Approved by:	linimon (mentor)

Modified:
  head/x11/pcdm/Makefile
  head/x11/pcdm/pkg-plist

Modified: head/x11/pcdm/Makefile
==============================================================================
--- head/x11/pcdm/Makefile	Sun May  5 17:32:42 2019	(r500867)
+++ head/x11/pcdm/Makefile	Sun May  5 18:00:13 2019	(r500868)
@@ -15,15 +15,17 @@ RUN_DEPENDS=	xorg-minimal>=0:x11/xorg-minimal \
 		setxkbmap:x11/setxkbmap \
 		${LOCALBASE}/bin/qsudo:sysutils/qsudo
 
+USES=		compiler:c++11-lang gl qmake qt:5
+USE_QT=		core gui network svg multimedia imageformats \
+		buildtools_build x11extras widgets concurrent linguisttools_build
+USE_GL=		gl
+USE_XORG=	x11
+USE_OPENRC_SUBR=pcdm
+
 WRKSRC_SUBDIR=	src-qt5
 MAKE_ARGS=	PREFIX=${STAGEDIR}${PREFIX}
 
 CONFLICTS=	pcbsd-utils-qt*
-
-USES=		qmake qt:5
-USE_QT=		core gui network svg multimedia imageformats \
-		buildtools_build x11extras concurrent linguisttools_build
-USE_OPENRC_SUBR=pcdm
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	trueos

Modified: head/x11/pcdm/pkg-plist
==============================================================================
--- head/x11/pcdm/pkg-plist	Sun May  5 17:32:42 2019	(r500867)
+++ head/x11/pcdm/pkg-plist	Sun May  5 18:00:13 2019	(r500868)
@@ -1,7 +1,7 @@
 bin/PCDM-session
 bin/pc-dmconf
 bin/start-pcdm-pico
-%%ETCDIR%%.conf.dist
+etc/pcdm.conf.dist
 etc/rc.d/pcdm
 etc/sudoers.d/pico-sudoers
 sbin/PCDMd



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