Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Aug 2015 20:02:21 +0000 (UTC)
From:      "Philip M. Gollucci" <pgollucci@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r394647 - in head/emulators/q4wine: . files
Message-ID:  <201508182002.t7IK2LE5006475@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pgollucci
Date: Tue Aug 18 20:02:20 2015
New Revision: 394647
URL: https://svnweb.freebsd.org/changeset/ports/394647

Log:
  emulators/q4wine: qt4-linguist -> qt4-linguisttools, remove some dependencies
  
  - Add LICENSE_FILE.
  - USE_QT4=linguist_build -> USE_QT4=linguisttools_build.
  - Use an OPTION helper for DBUS.
  - Remove CONFIGURE_ARGS for NLS - they are not used.
  - Gettext dependency is not used too.
  - Remove USE_GCC=yes.
  - Fix build with clang.
  - Bump PORTREVISION.
  
  PR:                  201863
  Submitted by:        s3erios@gmail.com
  Approved by:         maintainer timeout (koalative@gmail.com ; 24 days)

Added:
  head/emulators/q4wine/files/
  head/emulators/q4wine/files/patch-src_q4wine-gui_process.cpp   (contents, props changed)
Modified:
  head/emulators/q4wine/Makefile

Modified: head/emulators/q4wine/Makefile
==============================================================================
--- head/emulators/q4wine/Makefile	Tue Aug 18 20:00:41 2015	(r394646)
+++ head/emulators/q4wine/Makefile	Tue Aug 18 20:02:20 2015	(r394647)
@@ -3,7 +3,7 @@
 
 PORTNAME=	q4wine
 DISTVERSION=	1.1-r2
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	emulators deskutils
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}%20${PORTVERSION:S/.r/-r/}/
 
@@ -11,6 +11,7 @@ MAINTAINER=	koalative@gmail.com
 COMMENT=	QT4 front-end for WINE
 
 LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/COPYING
 
 BUILD_DEPENDS=	icotool:${PORTSDIR}/graphics/icoutils
 RUN_DEPENDS=	sudo:${PORTSDIR}/security/sudo \
@@ -20,11 +21,10 @@ RUN_DEPENDS=	sudo:${PORTSDIR}/security/s
 
 USES=		cmake desktop-file-utils
 CMAKE_ARGS+=	-DMANPAGE_ENTRY_PATH=${MANPREFIX}/man
-USE_GCC=	yes
 USE_LDCONFIG=	yes
 INSTALLS_ICONS=	yes
 USE_QT4=	qmake_build rcc_build moc_build uic_build \
-		linguist_build corelib gui sql network
+		linguisttools_build corelib gui sql sql-sqlite3_run network
 ONLY_FOR_ARCHS=	i386 amd64
 
 PORTDOCS=	AUTHORS ChangeLog README TODO
@@ -34,11 +34,9 @@ OPTIONS_DEFAULT=	DBUS
 
 OPTIONS_SUB=	yes
 
-NLS_CONFIGURE_ENABLE=	nls
-NLS_USES=		gettext
-
 DBUS_CMAKE_ON=		-DWITH_DBUS:BOOL=ON
 DBUS_CMAKE_OFF=		-DWITH_DBUS:BOOL=OFF
+DBUS_USE=		QT4=dbus
 
 .include <bsd.port.options.mk>
 
@@ -46,10 +44,6 @@ DBUS_CMAKE_OFF=		-DWITH_DBUS:BOOL=OFF
 RUN_DEPENDS+=	wine:${PORTSDIR}/emulators/wine-devel
 .endif
 
-.if ${PORT_OPTIONS:MDBUS}
-USE_QT4+=	dbus
-.endif
-
 post-patch:
 	@${REINPLACE_CMD} -e 's|/share/man|/man|' \
 		${WRKSRC}/src/CMakeLists.txt

Added: head/emulators/q4wine/files/patch-src_q4wine-gui_process.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/q4wine/files/patch-src_q4wine-gui_process.cpp	Tue Aug 18 20:02:20 2015	(r394647)
@@ -0,0 +1,11 @@
+--- src/q4wine-gui/process.cpp.orig	2015-07-24 20:19:50 UTC
++++ src/q4wine-gui/process.cpp
+@@ -16,6 +16,8 @@
+  *                                                                         *
+  ***************************************************************************/
+ 
++#include <locale.h>
++
+ #include "process.h"
+ 
+ Process::Process (QStringList args, QString exec, QString dir, QString info, QString caption, bool showErr, QStringList env, QWidget * parent, Qt::WFlags f)



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