From owner-svn-ports-all@freebsd.org Tue Aug 18 20:02:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 938E19BD380; Tue, 18 Aug 2015 20:02:21 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 83B5B17A6; Tue, 18 Aug 2015 20:02:21 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7IK2Ll6006477; Tue, 18 Aug 2015 20:02:21 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7IK2LE5006475; Tue, 18 Aug 2015 20:02:21 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508182002.t7IK2LE5006475@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Tue, 18 Aug 2015 20:02:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394647 - in head/emulators/q4wine: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Aug 2015 20:02:21 -0000 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 @@ -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 ++ + #include "process.h" + + Process::Process (QStringList args, QString exec, QString dir, QString info, QString caption, bool showErr, QStringList env, QWidget * parent, Qt::WFlags f)