[kde-freebsd] [SVN Commit] area51/QT/graphics/qt5-graphicaleffects

2016-07-26 Thread Raphael Kubo da Costa
SVN commit 12895 by rakuco:

qt5-graphicaleffects: Drop NO_BUILD=yes now that the port builds .cpp files.



 M  +0 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] [SVN Commit] area51/QT

2016-07-26 Thread Raphael Kubo da Costa
Ralf Nolden  writes:

> Am Samstag, 23. Juli 2016, 08:09:45 schrieb Raphael Kubo da Costa:
>
>> SVN commit 12889 by rakuco:
>> 
>> QT: Move .qdocconf files from devel/qt5-qdoc to devel/qt5-qdocconf.
>
>> I am not a big fan of the new port's name, so any better ideas are welcome
>> and anyone should feel free to rename it before it gets committed to the
>> ports tree.
>
> How about qt5-qdoc-data ?

Done in r12892.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/www/webkit-qt5

2016-07-26 Thread Raphael Kubo da Costa
SVN commit 12894 by rakuco:

webkit-qt5: Stop conditionally defining MASTER_SITE_SUBDIR.



 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/misc/qt5-doc

2016-07-26 Thread Raphael Kubo da Costa
SVN commit 12893 by rakuco:

qt5-doc: Clean up, stop requiring a compiler and fumbling with mkspecs.

Instead of running the `configure' script, which requires a compiler and
adjustments to the mkspecs files and also ends up building a new qmake
binary, we now leverage USES=qmake to generate all the Makefiles from
the top-level qt.pro.

Getting this to work requires some tricks, though. The system qmake
binary will by default return different values for the QT_INSTALL_* and
QT_HOST_* properties than a qmake binary built by `configure
-developer-build' would, and to fix that we install a qt.conf alongside
a qmake symlink that we create.

qt.conf is read automatically by qmake when present, and it allows us to
change the values of qmake's built-in QT_* properties (as well as their
undocumented /get, /src, /dev and /raw variants). The file we install
points those properties to the build directory, which is required for
the build to work without requiring all the ports whose documentation is
being built to be installed.

Last but not least, USES=gmake allows us to drop MAKE_JOBS_UNSAFE=yes.



 M  +23 -31Makefile  
 A files (directory)  
 AMfiles/patch-qtserialbus_qtserialbus.pro  
 A files/qt.conf.in  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-07-26 Thread Raphael Kubo da Costa
SVN commit 12892 by rakuco:

QT: Rename devel/qt5-qdocconf to devel/qt5-qdoc-data.

It better reflects its purpose.



 M  +3 -3  Mk/bsd.qt.mk  
 A devel/qt5-qdoc-data (directory)  
 M  +1 -1  devel/qt5-qdoc-data/Makefile  
 M  +1 -1  devel/qt5-qdoc/Makefile  
 D devel/qt5-qdocconf (directory)  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] [SVN Commit] area51/QT

2016-07-23 Thread Ralf Nolden
Am Samstag, 23. Juli 2016, 08:09:45 schrieb Raphael Kubo da Costa:
> SVN commit 12889 by rakuco:
> 
> QT: Move .qdocconf files from devel/qt5-qdoc to devel/qt5-qdocconf.

> I am not a big fan of the new port's name, so any better ideas are welcome
> and anyone should feel free to rename it before it gets committed to the
> ports tree.

How about qt5-qdoc-data ?


> 
> Reviewed by:  tcberner
> Approved by:  nolden
> 
> 
>  M  +4 -17 Mk/bsd.qt.mk
>  M  +3 -6  devel/qt5-qdoc/Makefile
>  A devel/qt5-qdoc/files (directory)
>  AMdevel/qt5-qdoc/files/patch-src_src.pro
>  D devel/qt5-qdoc/pkg-plist
>  A devel/qt5-qdocconf (directory)
>  AMdevel/qt5-qdocconf/Makefile
>  AMdevel/qt5-qdocconf/pkg-plist
> 
> 
> ___
> kde-freebsd mailing list
> kde-freebsd@kde.org
> https://mail.kde.org/mailman/listinfo/kde-freebsd
> See also http://freebsd.kde.org/ for latest information

-- 
Kind regards,

Ralf Nolden

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-07-23 Thread Raphael Kubo da Costa
SVN commit 12889 by rakuco:

QT: Move .qdocconf files from devel/qt5-qdoc to devel/qt5-qdocconf.

The latter is a new port that only contains the architecture-independent,
static QDoc configuration files used by the qdoc binary. The plan is to keep
this port around as long as upstream does not move those files from qtbase to
qttools.

This does away with the ugly workarounds in bsd.qt.mk added in r12783 required
because we used to set QT_DIST to multiple values in devel/qt5-qdoc in order to
build the QDoc tool from qttools and ship the static configuration data from
qtbase.

I am not a big fan of the new port's name, so any better ideas are welcome and
anyone should feel free to rename it before it gets committed to the ports
tree.

Reviewed by:tcberner
Approved by:nolden


 M  +4 -17 Mk/bsd.qt.mk  
 M  +3 -6  devel/qt5-qdoc/Makefile  
 A devel/qt5-qdoc/files (directory)  
 AMdevel/qt5-qdoc/files/patch-src_src.pro  
 D devel/qt5-qdoc/pkg-plist  
 A devel/qt5-qdocconf (directory)  
 AMdevel/qt5-qdocconf/Makefile  
 AMdevel/qt5-qdocconf/pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt5-qdoc

2016-07-23 Thread Raphael Kubo da Costa
SVN commit 12888 by rakuco:

qt5-qdoc: Stop depending on qt5-xml.

qdoc only uses QXmlStream{Reader,Writer}, which are in devel/qt5-core.



 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt5-qdoc

2016-07-23 Thread Raphael Kubo da Costa
SVN commit 12887 by rakuco:

qt5-qdoc: Stop setting QT_DOCDIR to its default value.

 M  +0 -2  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt5-qdoc

2016-07-23 Thread Raphael Kubo da Costa
SVN commit 12885 by rakuco:

qt5-qdoc: Drop USE_QT5=qmake_build.

It became redundant once qdoc moved to qttools and we added USES=qmake.



 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt5-qdoc

2016-07-23 Thread Raphael Kubo da Costa
SVN commit 12886 by rakuco:

qt5-qdoc: Sort USE_QT5

 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/misc

2016-07-17 Thread Raphael Kubo da Costa
SVN commit 12876 by rakuco:

qt5-doc, qt5-examples: Unbreak make fetch after r12862.

 M  +1 -1  qt5-doc/Makefile  
 M  +1 -1  qt5-examples/Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/x11-toolkits/qt5-gui

2016-07-17 Thread Raphael Kubo da Costa
SVN commit 12874 by rakuco:

qt5-gui: Generalize GCC check from r12319 and explain why it is needed.

 M  +11 -4 Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/lang/qt5-qml

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12870 by rakuco:

qt5-qml: Drop PORTREVISION.

The fact that we ship the patch in 5.6.1-1 does not justify setting
PORTREVISION.



 M  +0 -2  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12869 by rakuco:

Fix plists after r12862.

Drop the PLIST_SUB changes in qt5-enginio, qt5-declarative and qt5-webkit,
which were all broken after r12862. We can just use SHORTVER and FULLVER after
adjusting their values in bsd.qt.mk.



 M  +2 -2  Mk/bsd.qt.mk  
 M  +0 -3  net/qt5-enginio/Makefile  
 M  +12 -12net/qt5-enginio/pkg-plist  
 M  +0 -3  www/webkit-qt5/Makefile  
 M  +43 -43www/webkit-qt5/pkg-plist  
 M  +0 -3  x11-toolkits/qt5-declarative/Makefile  
 M  +167 -167  x11-toolkits/qt5-declarative/pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/net/qt5-enginio

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12867 by rakuco:

qt5-enginio: Set DISTINFO_FILE after r12862 to fix fetching.

 M  +2 -0  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt5-qdoc

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12865 by rakuco:

qt5-qdoc: Stop setting DESCR to the default value.

 M  +0 -2  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt4-corelib

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12864 by rakuco:

qt4-corelib: Make PORTREVISION match the version in the ports tree.

 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12863 by rakuco:

Remove webengine from bsd.qt.mk when generating distinfo.

Since the port is incomplete it makes more sense to not have it there and makes
it easier to merge QT/ into the ports tree.



 M  +1 -1  Mk/bsd.qt.mk  
 M  +0 -2  devel/qt5/distinfo  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12862 by rakuco:

Remove hacks for quick1/webkit/enginio from bsd.qt.mk.

This commit kind of reverts several changes done in branches/qt-5.6. It
basically makes bsd.qt.mk closer to the current version in the ports tree
(5.5.1) by removing the hacks for the quick1, webkit and enginio ports: instead
of setting QT5_BRANCH, QT5__{BRANCH,VERSION}, MASTER_SITES and others
with special cases for those 3 ports, we just conditionally set
MASTER_SITE_SUBDIR and DISTINFO_FILE, and we push the specificities to the
ports themselves, which now set those variables as needed.

Reviewed by:tcberner


 M  +7 -40 Mk/bsd.qt.mk  
 M  +1 -1  net/qt5-enginio/Makefile  
 M  +4 -1  www/webkit-qt5/Makefile  
 M  +4 -1  x11-toolkits/qt5-declarative/Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt5/files

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12861 by rakuco:

qt5: Add context and generalize extrapatch-config.tests_unix_libdl_libdl.pro.

Don't remove the QNX check since it's harmless and explain that this has been
fixed upstream.



 M  +3 -1  extrapatch-config.tests_unix_libdl_libdl.pro  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/textproc/clucene-qt5/files

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12859 by rakuco:

clucene-qt5: Remove trailing whitespace from patch.

 M  +1 -1  patch-src__src.pro  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/net/qt5-network/files

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12858 by rakuco:

qt5-network: Generalize qnativesocketengine_unix.cpp and add context.

 M  +2 -1  patch-src_network_socket_qnativesocketengine__unix.cpp  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/multimedia/qt5-multimedia

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12857 by rakuco:

qt5-multimedia: Just include bsd.port.mk after r12856.

 M  +1 -4  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/multimedia/qt5-multimedia

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12856 by rakuco:

qt5-multimedia: Drop nullptr sed call from the Makefile.

The upstream patch in files/patch-git_1df147d5 already does the job.



 M  +0 -4  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/multimedia/qt5-multimedia/files

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12855 by rakuco:

qt5-multimedia: Use a better name for patch-cr-159342.

 D patch-cr-159342  
 A patch-git_1df147d5   patch-cr-159342#12854


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/www/qt5-webengine

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12854 by rakuco:

qt5-webengine: Remove extra empty lines.

 M  +0 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/x11-toolkits/qt5-widgets

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12853 by rakuco:

qt5-widgets: Remove extra empty line.

 M  +0 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/graphics/qt5-3d

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12852 by rakuco:

qt5-3d: Sort USES.

 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt5-core/files

2016-07-16 Thread Raphael Kubo da Costa
SVN commit 12851 by rakuco:

qt5-core: Rename patches and add upstream commit messages.

This makes it easier to show that these changes were committed upstream and can
be removed in newer versions.



 A patch-git_bfa53e1c6   
patch-src_corelib_tools_qelapsedtimer__unix.cpp#12850
 A patch-git_c9998b8a   patch-src_corelib_tools_qsimd.cpp#12850
 D patch-src_corelib_tools_qelapsedtimer__unix.cpp  
 D patch-src_corelib_tools_qsimd.cpp  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qbs

2016-07-12 Thread Tobias Berner
SVN commit 12829 by tcberner:

Fix plist

Reported by:swills's Jenkins 


 M  +1 -2  pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qtcreator

2016-07-10 Thread Raphael Kubo da Costa
SVN commit 12801 by rakuco:

Update to 4.0.3.

PR: 210900
Submitted by:   Ralf Nolden 


 M  +1 -1  Makefile  
 M  +3 -3  distinfo  
 D files (directory)  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qtcreator

2016-07-10 Thread Raphael Kubo da Costa
SVN commit 12800 by rakuco:

qtcreator: Add missing dependencies to pass `make stage-qa'.

Error: /usr/local/bin/qtcreator is linked to /usr/local/lib/.mesa/libGL.so from 
graphics/libGL but it is not declared as a dependency
Warning: you need USE_GL+=gl
Error: /usr/local/lib/qtcreator/plugins/libCore.so is linked to 
/usr/local/lib/libQt5Help.so.5 from devel/qt5-help but it is not declared as a 
dependency
Warning: you need USE_QT5+=help
Error: /usr/local/lib/qtcreator/plugins/libCore.so is linked to 
/usr/local/lib/libQt5PrintSupport.so.5 from print/qt5-printsupport but it is 
not declared as a dependency
Warning: you need USE_QT5+=printsupport



 M  +4 -3  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qbs

2016-07-10 Thread Raphael Kubo da Costa
SVN commit 12799 by rakuco:

qbs: Declare missing dependencies to pass `make stage-qa'.

Error: /usr/local/bin/qbs is linked to /usr/local/lib/libQt5Core.so.5 from 
devel/qt5-core but it is not declared as a dependency
Warning: you need USE_QT5+=core
Error: /usr/local/bin/qbs-config-ui is linked to /usr/local/lib/.mesa/libGL.so 
from graphics/libGL but it is not declared as a dependency
Warning: you need USE_GL+=gl
Error: /usr/local/lib/libqbscore.so.1.5.2 is linked to 
/usr/local/lib/libQt5Network.so.5 from net/qt5-network but it is not declared 
as a dependency
Warning: you need USE_QT5+=network



 M  +3 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qbs

2016-07-10 Thread Raphael Kubo da Costa
SVN commit 12798 by rakuco:

Update to 1.5.2.

PR: 210899
Submitted by:   Ralf Nolden 


 M  +1 -1  Makefile  
 M  +3 -3  distinfo  
 A files (directory)  
 AMfiles/patch-src_lib_corelib_tools_processutils.cpp  
 M  +4 -5  pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qbs

2016-07-10 Thread Raphael Kubo da Costa
SVN commit 12797 by rakuco:

qbs: Sync with the version in the ports tree.

Sync with changes added in r416652 and r416356.



 M  +3 -1  pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/www/webkit-qt5

2016-07-05 Thread Tobias Berner
SVN commit 12792 by tcberner:

Remove the call to syncqt

 M  +0 -2  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-07-05 Thread Tobias Berner
SVN commit 12791 by tcberner:

Remove doc from QT_DIST. Reported by Ralf Nolden.

 M  +1 -1  Mk/bsd.qt.mk  
 M  +1 -3  devel/qt5/distinfo  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/misc

2016-07-04 Thread Tobias Berner
SVN commit 12790 by tcberner:

Drop patchlevel comment/wrksrc setting

 M  +0 -3  qt5-doc/Makefile  
 M  +0 -3  qt5-examples/Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/Mk

2016-07-04 Thread Tobias Berner
SVN commit 12789 by tcberner:

Drop patchlevel comment

 M  +0 -1  bsd.qt.mk  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qbs

2016-06-28 Thread Tobias Berner
SVN commit 12788 by tcberner:

Fix plist

 M  +0 -2  pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-06-27 Thread Tobias Berner
SVN commit 12787 by tcberner:

Go back to using the distfiles for Qt 5.6.1 and simply add the single patch [1]
that was used to spin the 5.6.1-1 tarballs.

[1] lang/qt5-qml/files/patch-cr_162677--qt-5.6.1-1_change



 M  +10 -12Mk/bsd.qt.mk  
 M  +49 -49devel/qt5/distinfo  
 M  +2 -0  lang/qt5-qml/Makefile  
 A lang/qt5-qml/files/patch-cr_162677--qt-5.6.1-1_change  
 M  +3 -3  misc/qt5-doc/distinfo  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-06-23 Thread Tobias Berner
SVN commit 12786 by tcberner:

Drop PORTREVISION after version bump. Noticed by Ralf Nolden.

 M  +0 -1  devel/qt5-help/Makefile  
 M  +0 -1  devel/qt5-qdoc/Makefile  
 M  +0 -1  devel/qt5/Makefile  
 M  +0 -1  graphics/qt5-imageformats/Makefile  
 M  +0 -1  www/webkit-qt5/Makefile  
 M  +0 -1  x11-toolkits/qt5-gui/Makefile  
 M  +0 -1  x11-toolkits/qt5-widgets/Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qtcreator

2016-06-23 Thread Tobias Berner
SVN commit 12785 by tcberner:

merge ports r417291 (devel/qtcreator 4.0.1 -> 4.0.2)

 M  +1 -3  Makefile  
 M  +3 -3  distinfo  
 A files (directory)  
 AMfiles/patch-src_plugins_android_android.pro  
 AMfiles/patch-src_plugins_android_android.qbs  
 AMfiles/patch-src_plugins_android_androiddevice.cpp  
 AMfiles/patch-src_plugins_android_androidrunnable.cpp  
 AMfiles/patch-src_plugins_android_androidrunnable.h  
 AM
files/patch-src_plugins_debugger_analyzer_analyzerstartparameters.h  
 AMfiles/patch-src_plugins_debugger_debuggerplugin.cpp  
 AM
files/patch-src_plugins_projectexplorer_customwizard_customwizard.cpp  
 AM
files/patch-src_plugins_projectexplorer_devicesupport_desktopdevice.cpp  
 AM
files/patch-src_plugins_projectexplorer_devicesupport_idevice.cpp  
 AMfiles/patch-src_plugins_projectexplorer_runconfiguration.h  
 AMfiles/patch-src_plugins_projectexplorer_runnables.cpp  
 AMfiles/patch-src_plugins_projectexplorer_runnables.h  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/Mk

2016-06-23 Thread Tobias Berner
SVN commit 12784 by tcberner:

Fix r12783, _dist should be set, not dist

 M  +1 -1  bsd.qt.mk  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-06-23 Thread Tobias Berner
SVN commit 12783 by tcberner:

Update Qt to 5.6.1-1. 

That -1 is a bit annoying, as it isn't carried in the folder names inside the 
tarballs. So we had to modify the way WRKSRC, DISTNAME, ... is set to handle 
that issue.

While doing that also handle WRKSRC more correctly when QT_DIST contains 
more than one value (see devel/qt5-qdoc).

As 9.3 does not support :tw and :[1] this was done using a for-loop and empty().
Rather ugly, but I couldn't find a better way from glancing at the manpage... 




Thanks to Ralf for providing numerous alternative solutions to the -1 problem.




 M  +23 -3 Mk/bsd.qt.mk  
 M  +1 -2  devel/qt5-qdoc/Makefile  
 M  +49 -49devel/qt5/distinfo  
 M  +3 -0  misc/qt5-doc/Makefile  
 M  +3 -3  misc/qt5-doc/distinfo  
 M  +4 -1  misc/qt5-examples/Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] [SVN Commit] area51/QT/textproc/clucene-qt5

2016-06-14 Thread Ralf Nolden
Am Montag, 13. Juni 2016, 00:58:17 schrieb Adriaan de Groot:
> SVN commit 12690 by adridg:
> 
> Merge fro ports, deprecation notice for clucene-qt5
> 
>  M  +3 -0  Makefile

Could you merge that to 5.6 branch too, please ?

I know it could be superflous but I don't want it to get lost with a 5.6 -> 
trunk merge :)

Thanks.


> 
> 
> ___
> kde-freebsd mailing list
> kde-freebsd@kde.org
> https://mail.kde.org/mailman/listinfo/kde-freebsd
> See also http://freebsd.kde.org/ for latest information

-- 
Kind regards,

Ralf Nolden

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/textproc/clucene-qt5

2016-06-13 Thread Adriaan de Groot
SVN commit 12690 by adridg:

Merge fro ports, deprecation notice for clucene-qt5

 M  +3 -0  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qbs

2016-06-12 Thread Tobias Berner
SVN commit 12685 by tcberner:

Do not use QT_LIBDIR

 M  +10 -10pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel

2016-06-11 Thread Adriaan de Groot
SVN commit 12674 by adridg:

Merge from ports r416652 (pi@, update qtcreator to 4.0.1)

 M  +2 -2  qbs/Makefile  
 M  +3 -2  qbs/distinfo  
 M  +12 -12qbs/pkg-plist  
 M  +2 -2  qtcreator/Makefile  
 M  +3 -2  qtcreator/distinfo  
 M  +7 -0  qtcreator/pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-06-07 Thread Adriaan de Groot
SVN commit 12653 by adridg:

Merge from ports: r416267 (pi@, submitted by nolden@), r416356 (pi@, submitted 
by nolden@), r416384 (pi@, submitted by nolden@ tcberner@), ..

 M  +2 -2  Mk/bsd.qt.mk  
 M  +12 -2 devel/qbs/Makefile  
 M  +2 -2  devel/qbs/distinfo  
 M  +112 -5devel/qbs/pkg-plist  
 M  +8 -1  devel/qt5-qdoc/Makefile  
 A devel/qt5-qdoc/pkg-plist  
 M  +1 -0  devel/qt5/Makefile  
 M  +0 -5  devel/qt5/files/extrapatch-libtool  
 M  +18 -9 devel/qtcreator/Makefile  
 M  +2 -2  devel/qtcreator/distinfo  
 M  +31 -43devel/qtcreator/pkg-plist  
 M  +3 -0  net/qt5-enginio/Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qtcreator

2016-05-31 Thread Adriaan de Groot
SVN commit 12618 by adridg:

Merge ports r415857: the version bump makes PORTREVISION unnecessary, and 
LICENSE and INSTALLS_ICONS were added too.

 M  +5 -2  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/misc/qt5-examples

2016-05-29 Thread Tobias Berner
SVN commit 12615 by tcberner:

Remove redundant pkg-descr file

 D pkg-descr  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/misc/qt5-examples

2016-05-28 Thread Adriaan de Groot
SVN commit 12606 by adridg:

Sync with ports r415985 which also added a pkg-descr

 A pkg-descr  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/net/qt4-network

2016-05-28 Thread Adriaan de Groot
SVN commit 12605 by adridg:

Sync with ports r415856 which added LICENSE info

 M  +3 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/x11-toolkits/qt5-widgets

2016-05-28 Thread Adriaan de Groot
SVN commit 12604 by adridg:

Match ports: remove extra empty line

 M  +0 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/graphics/qt5-3d

2016-05-28 Thread Adriaan de Groot
SVN commit 12603 by adridg:

(trunk only) back out the libassimp addition for this cycle. PR 209325

 M  +1 -4  Makefile  
 M  +0 -3  pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qbs

2016-05-28 Thread Adriaan de Groot
SVN commit 12601 by adridg:

Match ports; this CONFLICTS line is obsoleted by the message in UPDATING

 M  +0 -2  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/Mk/Uses

2016-05-28 Thread Adriaan de Groot
SVN commit 12600 by adridg:

Match ports r413768, _USES_configure ordering

 M  +1 -2  qmake.mk  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qtcreator

2016-05-24 Thread Tobias Berner
SVN commit 12575 by tcberner:

Revert 12438 -- as we have not yet added qt5-doc, it was a little bit premature 
to add the DOCS option to qtcreator.

 M  +2 -9  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/Mk

2016-05-22 Thread Adriaan de Groot
SVN commit 12572 by adridg:

(trunk only) restore doc to the USE_QT4 list, so that qt4-assistant and help 
can compile.

 M  +1 -1  bsd.qt.mk  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/x11-toolkits/qt5-widgets

2016-05-15 Thread Tobias Berner
SVN commit 12535 by tcberner:

Fix the fullscreen behaviour of VLC when using the Qt5 frontend.

 

PR: 208185


 M  +1 -0  Makefile  
 A files (directory)  
 AMfiles/patch-cr-139066  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/graphics/qt5-3d

2016-05-06 Thread Adriaan de Groot
SVN commit 12505 by adridg:

Bump PORTREVISION for the libassimp addition

 M  +1 -0  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt4-moc/files

2016-05-06 Thread Adriaan de Groot
SVN commit 12504 by adridg:

Merge ports r411765

r411765 | rakuco | 2016-03-24 11:31:07 +0100 (Thu, 24 Mar 2016) | 14 lines

qt4-moc: Add more Boost include guards to moc's definition list.


 M  +22 -13patch-src__tools__moc__main.cpp  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/misc

2016-05-06 Thread Adriaan de Groot
SVN commit 12503 by adridg:

(trunk only) Remove qtchooser from trunk; to be reinstated with an official 
release in qt-5.6

 D qtchooser (directory)  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/www/webkit-qt5

2016-05-05 Thread Adriaan de Groot
SVN commit 12496 by adridg:

Merge r411689 (rakuco) from ports

 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/www/webkit-qt5

2016-05-05 Thread Adriaan de Groot
SVN commit 12494 by adridg:

Match ports downstream; tab in BROKEN_sparc64

 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/databases

2016-05-04 Thread Adriaan de Groot
SVN commit 12471 by adridg:

Spaces snuck in

 M  +1 -1  qt5-sqldrivers-sqlite2/Makefile  
 M  +1 -1  qt5-sqldrivers-sqlite3/Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/misc/qt5-examples

2016-05-03 Thread Tobias Berner
SVN commit 12465 by tcberner:

Greatly reduce the sizeof the Makefile by using a for-loop. Also reduce the 
extract time by only extracting the examples.

 M  +12 -35Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/databases

2016-04-30 Thread Tobias Berner
SVN commit 12458 by tcberner:

Import ports r414015 (USE_FIREBIRD->USES=firebird)

 M  +1 -1  qt4-ibase-plugin/Makefile  
 M  +1 -1  qt5-sqldrivers-ibase/Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qtcreator

2016-04-24 Thread Tobias Berner
SVN commit 12438 by tcberner:

Provide options for DOCS and EXAMPLES in qtcreator

 M  +9 -2  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/x11-toolkits/qt5-widgets

2016-04-23 Thread Tobias Berner
SVN commit 12430 by tcberner:

Fix GTK2 option.


Obtained from:  Ralf Nolden 


 M  +9 -1  Makefile  
 M  +3 -0  pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/Mk

2016-04-23 Thread Tobias Berner
SVN commit 12427 by tcberner:

Make 'doc' a qt5 component, and add 'examples'

 M  +6 -3  bsd.qt.mk  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-04-21 Thread Adriaan de Groot
SVN commit 12412 by adridg:

Merge r413746 from downstream:

r413746 | swills | 2016-04-21 18:43:14 +0200 (Thu, 21 Apr 2016) | 2 lines

many ports: mark broken on powerpc64


 M  +2 -0  databases/qt4-mysql-plugin/Makefile  
 M  +2 -0  databases/qt4-odbc-plugin/Makefile  
 M  +2 -0  databases/qt4-pgsql-plugin/Makefile  
 M  +2 -0  databases/qt4-sqlite-plugin/Makefile  
 M  +2 -0  databases/qt4-sqlite3-plugin/Makefile  
 M  +2 -0  devel/dbus-qt4/Makefile  
 M  +2 -0  devel/qt4-script/Makefile  
 M  +2 -0  devel/qt5-script/Makefile  
 M  +2 -0  lang/qt5-qml/Makefile  
 M  +2 -0  textproc/qt4-xmlpatterns/Makefile  
 M  +2 -0  textproc/qt5-xmlpatterns/Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qmake5

2016-04-21 Thread Adriaan de Groot
SVN commit 12411 by adridg:

Merge r413184 from downstream:

r413184 | jbeich | 2016-04-13 12:36:15 +0200 (Wed, 13 Apr 2016) | 9 lines

Consistently prefer  over ./


 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/www/webkit-qt5

2016-04-21 Thread Adriaan de Groot
SVN commit 12409 by adridg:

Merge r412334 (PORTREVISION) and r413016 (BROKEN_sparc64)

 M  +3 -0  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/graphics/qt5-imageformats

2016-04-21 Thread Adriaan de Groot
SVN commit 12408 by adridg:

Restore PORTREVISION from r412334

 M  +1 -0  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt5-help

2016-04-21 Thread Adriaan de Groot
SVN commit 12407 by adridg:

Restore PORTREVISION

 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt4-moc

2016-04-21 Thread Adriaan de Groot
SVN commit 12406 by adridg:

Restore PORTREVISION to match downstream

 M  +1 -0  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/x11-toolkits/qt5-gui

2016-04-18 Thread Tobias Berner
SVN commit 12386 by tcberner:

Bump portrevision after the important fix in 12382

 M  +1 -0  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt5/files

2016-04-18 Thread Tobias Berner
SVN commit 12382 by tcberner:

Fix suspect looking lines in XCB_XKB check.

 M  +10 -10extrapatch-configure  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-04-16 Thread Raphael Kubo da Costa
SVN commit 12355 by rakuco:

QT: Drop PORTSDIR from all ports.

 M  +2 -2  Mk/bsd.qt.mk  
 M  +1 -1  databases/qt4-odbc-plugin/Makefile  
 M  +1 -1  databases/qt5-sqldrivers-odbc/Makefile  
 M  +1 -1  databases/qt5-sqldrivers-tds/Makefile  
 M  +1 -1  devel/dbus-qt4/Makefile  
 M  +1 -1  devel/dbus-qt5/Makefile  
 M  +1 -1  devel/qt4-corelib/Makefile  
 M  +1 -1  devel/qt4-qdbusviewer/Makefile  
 M  +2 -2  devel/qt5-core/Makefile  
 M  +3 -3  graphics/qt4-imageformats/Makefile  
 M  +4 -4  graphics/qt5-imageformats/Makefile  
 M  +3 -3  multimedia/qt5-multimedia/Makefile  
 M  +1 -1  net/qt4-network/Makefile  
 M  +2 -2  net/qt5-network/Makefile  
 M  +1 -1  print/qt5-printsupport/Makefile  
 M  +1 -1  www/webkit-qt4/Makefile  
 M  +6 -6  www/webkit-qt5/Makefile  
 M  +7 -7  x11-toolkits/qt4-gui/Makefile  
 M  +14 -14x11-toolkits/qt5-gui/Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/multimedia/qt5-multimedia/files

2016-04-16 Thread Raphael Kubo da Costa
SVN commit 12346 by rakuco:

qt5-multimedia: Add patch to fix underrun errors in the ALSA plugin.

The ALSA plugin doesn't suspend the ALSA device when the ::suspend() method is
called. This results in underrun errors when it's resumed.

In ALSA, stopping a pcm doesn't close it, so the ALSA stop/start functions map
to the QAudioInput suspend/resume functions.

PR: 208598
Submitted by:   shurd


 AMpatch-git_9047d9b  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/multimedia/qt5-multimedia

2016-04-16 Thread Raphael Kubo da Costa
SVN commit 12347 by rakuco:

qt5-multimedia: Bump PORTREVISION after r12346

 M  +1 -0  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qbs

2016-04-13 Thread Raphael Kubo da Costa
SVN commit 12300 by rakuco:

qbs: Add USES=compiler:c++11-lib.

The port needs a modern compiler to build on 9.3.



 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qbs

2016-04-13 Thread Raphael Kubo da Costa
SVN commit 12299 by rakuco:

qbs: Switch to an out-of-source build.

Building with qmake:outsource is cleaner and makes sure we are not depending on
a certain directory structure for the port to build (and we are not shipping
extra files that we should not).



 M  +2 -2  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qbs

2016-04-13 Thread Raphael Kubo da Costa
SVN commit 12298 by rakuco:

qbs: Add USES_LDCONFIG=yes.

Follow what `portlint -AC' says:
WARN: pkg-plist: [38]: installing shared libraries, please define USE_LDCONFIG 
as appropriate
WARN: pkg-plist: [39]: installing shared libraries, please define USE_LDCONFIG 
as appropriate
WARN: pkg-plist: [42]: installing shared libraries, please define USE_LDCONFIG 
as appropriate
WARN: pkg-plist: [43]: installing shared libraries, please define USE_LDCONFIG 
as appropriate
WARN: pkg-plist: [46]: installing shared libraries, please define USE_LDCONFIG 
as appropriate
WARN: pkg-plist: [47]: installing shared libraries, please define USE_LDCONFIG 
as appropriate



 M  +1 -0  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qbs

2016-04-13 Thread Raphael Kubo da Costa
SVN commit 12297 by rakuco:

qbs: Replace spaces with tabs.

 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qtcreator

2016-04-10 Thread Tobias Berner
SVN commit 12295 by tcberner:

Do not just dump stuff in KDE/, but give DIST_SUBDIR some structure.

 M  +1 -1  Makefile  
 M  +2 -2  distinfo  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qtcreator

2016-04-10 Thread Tobias Berner
SVN commit 12294 by tcberner:

Update devel/qtcreator to use the now split out devel/qbs

 M  +12 -2 Makefile  
 M  +0 -150pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel

2016-04-10 Thread Tobias Berner
SVN commit 12293 by tcberner:

New port: devel/qbs

Qbs is a new/fancy/totally necessary buildsystem for Qt. 
See for the whys [1], and [2] for more information on qbs, and [3] for some 
example projects.

Based on a version obtained from Ralf Nolden, thanks.

[1] http://blog.qt.io/blog/2012/02/15/introducing-qbs/
[2] http://wiki.qt.io/qbs
[3] https://github.com/qtproject/qt-labs-qbs/tree/master/examples

Obtained from: Ralf Nolden 


 A qbs (directory)  
 A qbs/Makefile  
 A qbs/distinfo  
 A qbs/pkg-descr  
 A qbs/pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qtcreator

2016-04-07 Thread Adriaan de Groot
SVN commit 12289 by adridg:

Massage qtcreator some more.
Patch from Ralf Nolden 

 M  +2 -1  Makefile  
 M  +0 -1  pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel

2016-04-06 Thread Adriaan de Groot
SVN commit 12284 by adridg:

Roll back previous qtdocs-changes from Ralf, requested by Ralf on IRC (until a 
complete solution is found)

 M  +1 -4  qt5-qdoc/Makefile  
 D qt5-qdoc/pkg-plist  
 M  +1 -7  qtcreator/Makefile  
 M  +0 -2  qtcreator/pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] [SVN Commit] area51/QT/devel/qt5-qdoc

2016-04-03 Thread Ralf Nolden
Trying to build qt-5.6 from area51 and adding that, this won't work as the 
global doc files are in qtbase while qdoc is now in qttools.

Any suggestions how to bring both together again ? qtbase still supports 
install_global_docs and installs them, but maybe we could do this in a 
dependency like qt5-core as that is a runtime requirement for qdoc anyway. 
That could be also done in qt-5.5.1 from ports to keep them compatible.

Ralf

Am Samstag, 19. März 2016, 01:40:55 schrieb Alonso Schaich:
> SVN commit 12127 by aschai:
> 
> Properly install qt-docs
> 
> Obtained from:Ralf Nolden (nol...@kde.org)
> 
> 
>  M  +4 -1  Makefile
>  AMpkg-plist
> 
> 
> ___
> kde-freebsd mailing list
> kde-freebsd@kde.org
> https://mail.kde.org/mailman/listinfo/kde-freebsd
> See also http://freebsd.kde.org/ for latest information

-- 
Kind regards,

Ralf Nolden

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/databases/qt5-sqldrivers-tds

2016-03-30 Thread Raphael Kubo da Costa
SVN commit 12254 by rakuco:

qt5-sqldrivers-tds: Fix $FreeBSD$ tag.

 M  +1 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2016-03-30 Thread Raphael Kubo da Costa
SVN commit 12253 by rakuco:

New port: databases/qt5-sqldrivers-tds.

A database driver for databases/freetds.

Submitted by:   Ralf Nolden 


 M  +3 -3  Mk/bsd.qt.mk  
 M  +1 -0  databases/qt5-sql/pkg-message  
 A databases/qt5-sqldrivers-tds (directory)  
 AMdatabases/qt5-sqldrivers-tds/Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt5-help

2016-03-25 Thread Raphael Kubo da Costa
SVN commit 12173 by rakuco:

qt5-help: Add a runtime dependency on the sqlite3 SQL driver.

At least qcollectiongenerator needs it to run, as found while testing
the cmake-doc port.


 M  +3 -1  Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] [SVN Commit] area51/QT/devel/qt5-assistant

2016-03-23 Thread Schaich Alonso
On Wed, 23 Mar 2016 07:56:55 +0100
Ralf Nolden  wrote:

> Am Mittwoch, 23. März 2016, 07:05:21 schrieb Ralf Nolden:
>  
> > > Hi
> > > 
> > > Sorry it took me so long to reply.
> > > 
> > > Wouldn't it be more straightforward to add a dependency on qt5-help for
> > > assistant?
> > 
> Looking at the HEAD Makefile, there is already a dependency on qt5-help, so 
> nothing to do here. You'd just need to revert on your area51 commit.
> 
> -- 
> Kind regards,
> 
> Ralf Nolden
> 

Done in r12162

Alonso


pgpUCXe6ukKHh.pgp
Description: PGP signature
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/devel/qt5-assistant

2016-03-23 Thread Alonso Schaich
SVN commit 12162 by aschai:

Revert 12128

Data/Documentation files installed by qt5-assisitant after 12128 conflict
with those installed by qt5-help.



 M  +2 -8  Makefile  
 M  +0 -31 pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] [SVN Commit] area51/QT/devel/qt5-assistant

2016-03-23 Thread Ralf Nolden
Am Mittwoch, 23. März 2016, 07:05:21 schrieb Ralf Nolden:
 
> > Hi
> > 
> > Sorry it took me so long to reply.
> > 
> > Wouldn't it be more straightforward to add a dependency on qt5-help for
> > assistant?
> 
Looking at the HEAD Makefile, there is already a dependency on qt5-help, so 
nothing to do here. You'd just need to revert on your area51 commit.

-- 
Kind regards,

Ralf Nolden

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


  1   2   3   4   5   6   >