diff options
author | tcberner <tcberner@FreeBSD.org> | 2017-06-06 13:00:56 +0800 |
---|---|---|
committer | tcberner <tcberner@FreeBSD.org> | 2017-06-06 13:00:56 +0800 |
commit | 2a50f547193a527f8c0c7a92d44549cf4fe12068 (patch) | |
tree | 9e74af8e9dd32b5831b312d37a3fc1cb5785f9e3 | |
parent | 68a1c4be2fda812eac24a2214cb51a7e20b69602 (diff) | |
download | freebsd-ports-graphics-2a50f547193a527f8c0c7a92d44549cf4fe12068.tar.gz freebsd-ports-graphics-2a50f547193a527f8c0c7a92d44549cf4fe12068.tar.zst freebsd-ports-graphics-2a50f547193a527f8c0c7a92d44549cf4fe12068.zip |
Fix qt4 ports on armv6.
Due to a misspelling in GCC [1] (probably) the check for the ARMv6KZ platform
used ARM_ARCH_6ZK instead of ARM_ARCH_6KZ.
[1] https://gcc.gnu.org/ml/gcc-patches/2015-06/msg01679.html
PR: 210027
Submitted by: Mikaƫl Urankar <mikael.urankar@gmail.com>
Reviewed by: rakuco
Differential Revision: https://reviews.freebsd.org/D8322
47 files changed, 75 insertions, 44 deletions
diff --git a/Mk/bsd.qt.mk b/Mk/bsd.qt.mk index f1b2e2f44b0..a5800fc4a39 100644 --- a/Mk/bsd.qt.mk +++ b/Mk/bsd.qt.mk @@ -175,6 +175,8 @@ CONFIGURE_ARGS+=-verbose . if ${_QT_VERSION:M4*} _EXTRA_PATCHES_QT4= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-src-corelib-global-qglobal.h \ ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-libtool +# Patch in proper name for armv6 architecture: https://gcc.gnu.org/ml/gcc-patches/2015-06/msg01679.html +_EXTRA_PATCHES_QT4+= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-armv6 . else _EXTRA_PATCHES_QT5= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_features_create__cmake.prf \ ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_features_qt__module.prf diff --git a/accessibility/qt4-accessible/Makefile b/accessibility/qt4-accessible/Makefile index d7b04b10dae..fe537f29f7e 100644 --- a/accessibility/qt4-accessible/Makefile +++ b/accessibility/qt4-accessible/Makefile @@ -3,7 +3,7 @@ PORTNAME= accessible DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= accessibility PKGNAMEPREFIX= qt4- diff --git a/chinese/qt4-codecs-cn/Makefile b/chinese/qt4-codecs-cn/Makefile index a1ae7e4f816..36129ec9cfc 100644 --- a/chinese/qt4-codecs-cn/Makefile +++ b/chinese/qt4-codecs-cn/Makefile @@ -3,7 +3,7 @@ PORTNAME= codecs DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= chinese PKGNAMEPREFIX= qt4- PKGNAMESUFFIX= -cn diff --git a/chinese/qt4-codecs-tw/Makefile b/chinese/qt4-codecs-tw/Makefile index 1eb82ce7114..7deebcfbc62 100644 --- a/chinese/qt4-codecs-tw/Makefile +++ b/chinese/qt4-codecs-tw/Makefile @@ -3,7 +3,7 @@ PORTNAME= codecs DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= chinese PKGNAMEPREFIX= qt4- PKGNAMESUFFIX= -tw diff --git a/databases/qt4-mysql-plugin/Makefile b/databases/qt4-mysql-plugin/Makefile index 64b86f348ea..83359ca19d2 100644 --- a/databases/qt4-mysql-plugin/Makefile +++ b/databases/qt4-mysql-plugin/Makefile @@ -1,7 +1,7 @@ # Created by: Kay Lehmann <kay_lehmann@web.de> # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 COMMENT= Qt MySQL database plugin DB= mysql diff --git a/databases/qt4-odbc-plugin/Makefile b/databases/qt4-odbc-plugin/Makefile index e1513612c95..63982ceb4f3 100644 --- a/databases/qt4-odbc-plugin/Makefile +++ b/databases/qt4-odbc-plugin/Makefile @@ -1,7 +1,7 @@ # Created by: Michael Nottebrock <lofi@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 3 +PORTREVISION= 4 DB= odbc COMMENT= Qt Open Database Connectivity plugin diff --git a/databases/qt4-pgsql-plugin/Makefile b/databases/qt4-pgsql-plugin/Makefile index d98591f7109..e8203b3ece0 100644 --- a/databases/qt4-pgsql-plugin/Makefile +++ b/databases/qt4-pgsql-plugin/Makefile @@ -1,7 +1,7 @@ # Created by: Lauri Watts <lauri@kde.org> # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 COMMENT= Qt PostgreSQL database plugin DB= psql diff --git a/databases/qt4-sql/Makefile b/databases/qt4-sql/Makefile index be5ccb12cfe..b5b8e85013a 100644 --- a/databases/qt4-sql/Makefile +++ b/databases/qt4-sql/Makefile @@ -3,7 +3,7 @@ PORTNAME= sql DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases PKGNAMEPREFIX= qt4- diff --git a/databases/qt4-sqlite-plugin/Makefile b/databases/qt4-sqlite-plugin/Makefile index 23b38c40123..2100fbc29d1 100644 --- a/databases/qt4-sqlite-plugin/Makefile +++ b/databases/qt4-sqlite-plugin/Makefile @@ -1,7 +1,7 @@ # Created by: Michael Nottebrock <lofi@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 COMMENT= Qt SQLite 2 database plugin DB= sqlite2 diff --git a/databases/qt4-sqlite3-plugin/Makefile b/databases/qt4-sqlite3-plugin/Makefile index 725062588e0..4284f87debc 100644 --- a/databases/qt4-sqlite3-plugin/Makefile +++ b/databases/qt4-sqlite3-plugin/Makefile @@ -1,7 +1,7 @@ # Created by: Michael Nottebrock <lofi@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 3 +PORTREVISION= 4 COMMENT= Qt SQLite 3 database plugin DB= sqlite diff --git a/devel/qt4-assistant-adp/Makefile b/devel/qt4-assistant-adp/Makefile index 26cb491c98d..47722e35af9 100644 --- a/devel/qt4-assistant-adp/Makefile +++ b/devel/qt4-assistant-adp/Makefile @@ -3,7 +3,7 @@ PORTNAME= assistant PORTVERSION= 4.6.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= QT PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-corelib/Makefile b/devel/qt4-corelib/Makefile index 19a67730c47..c821685cb15 100644 --- a/devel/qt4-corelib/Makefile +++ b/devel/qt4-corelib/Makefile @@ -3,7 +3,7 @@ PORTNAME= corelib DISTVERSION= ${QT4_VERSION} -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-help-tools/Makefile b/devel/qt4-help-tools/Makefile index 6878cb6348f..433b86bae3b 100644 --- a/devel/qt4-help-tools/Makefile +++ b/devel/qt4-help-tools/Makefile @@ -3,7 +3,7 @@ PORTNAME= help DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt4- PKGNAMESUFFIX= -tools diff --git a/devel/qt4-help/Makefile b/devel/qt4-help/Makefile index d11f40196c8..143793b0436 100644 --- a/devel/qt4-help/Makefile +++ b/devel/qt4-help/Makefile @@ -3,7 +3,7 @@ PORTNAME= help DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-libqtassistantclient/Makefile b/devel/qt4-libqtassistantclient/Makefile index 11fa50f5abd..6b48a6cbdd3 100644 --- a/devel/qt4-libqtassistantclient/Makefile +++ b/devel/qt4-libqtassistantclient/Makefile @@ -3,7 +3,7 @@ PORTNAME= libQtAssistantClient PORTVERSION= 4.6.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= QT PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-linguisttools/Makefile b/devel/qt4-linguisttools/Makefile index 7b1759a07bd..660bbf0fbd4 100644 --- a/devel/qt4-linguisttools/Makefile +++ b/devel/qt4-linguisttools/Makefile @@ -2,7 +2,7 @@ PORTNAME= linguisttools DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-makeqpf/Makefile b/devel/qt4-makeqpf/Makefile index 089ccb3ce70..ca4d660f126 100644 --- a/devel/qt4-makeqpf/Makefile +++ b/devel/qt4-makeqpf/Makefile @@ -3,7 +3,7 @@ PORTNAME= makeqpf DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-porting/Makefile b/devel/qt4-porting/Makefile index e8d26e77f7b..85d991b703a 100644 --- a/devel/qt4-porting/Makefile +++ b/devel/qt4-porting/Makefile @@ -3,7 +3,7 @@ PORTNAME= porting DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-qdbusviewer/Makefile b/devel/qt4-qdbusviewer/Makefile index 39ac7f756c1..0b77b7ed81e 100644 --- a/devel/qt4-qdbusviewer/Makefile +++ b/devel/qt4-qdbusviewer/Makefile @@ -3,7 +3,7 @@ PORTNAME= qdbusviewer DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-qdoc3/Makefile b/devel/qt4-qdoc3/Makefile index 7fcc7b5b656..aaca09e6688 100644 --- a/devel/qt4-qdoc3/Makefile +++ b/devel/qt4-qdoc3/Makefile @@ -3,7 +3,7 @@ PORTNAME= qdoc3 DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel textproc PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-qmake/Makefile b/devel/qt4-qmake/Makefile index c3e445e755d..93e4bffa351 100644 --- a/devel/qt4-qmake/Makefile +++ b/devel/qt4-qmake/Makefile @@ -3,7 +3,7 @@ PORTNAME= qmake DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-qt3support/Makefile b/devel/qt4-qt3support/Makefile index ea02cb76c35..c15b1f0028d 100644 --- a/devel/qt4-qt3support/Makefile +++ b/devel/qt4-qt3support/Makefile @@ -3,7 +3,7 @@ PORTNAME= qt3support DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel x11-toolkits PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-qvfb/Makefile b/devel/qt4-qvfb/Makefile index 88c0837d78f..53cb5e7d2a9 100644 --- a/devel/qt4-qvfb/Makefile +++ b/devel/qt4-qvfb/Makefile @@ -3,7 +3,7 @@ PORTNAME= qvfb DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-script/Makefile b/devel/qt4-script/Makefile index 7cfe6b04c2f..6a1abc5ef18 100644 --- a/devel/qt4-script/Makefile +++ b/devel/qt4-script/Makefile @@ -3,7 +3,7 @@ PORTNAME= script DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-testlib/Makefile b/devel/qt4-testlib/Makefile index 55a27d64cdc..425d47df7fc 100644 --- a/devel/qt4-testlib/Makefile +++ b/devel/qt4-testlib/Makefile @@ -3,7 +3,7 @@ PORTNAME= testlib DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt4- diff --git a/devel/qt4-uic3/Makefile b/devel/qt4-uic3/Makefile index f3267127548..167d1f2b5a7 100644 --- a/devel/qt4-uic3/Makefile +++ b/devel/qt4-uic3/Makefile @@ -3,7 +3,7 @@ PORTNAME= uic3 DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt4- diff --git a/devel/qt4/files/extrapatch-armv6 b/devel/qt4/files/extrapatch-armv6 new file mode 100644 index 00000000000..b054d713503 --- /dev/null +++ b/devel/qt4/files/extrapatch-armv6 @@ -0,0 +1,28 @@ +Due to a misspelling in GCC [1] (probably) the check for the ARMv6KZ platform +used __ARM_ARCH_6ZK__ instead of __ARM_ARCH_6KZ__. + +Append the correct spellings to the checks for __ARM_ARCH_6ZK__. + + +[1] https://gcc.gnu.org/ml/gcc-patches/2015-06/msg01679.html + +--- src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h.orig 2017-06-02 20:01:34.860331000 +0200 ++++ src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h 2017-06-02 20:02:08.715222000 +0200 +@@ -254,6 +254,7 @@ + #elif defined(__ARM_ARCH_6__) \ + || defined(__ARM_ARCH_6J__) \ + || defined(__ARM_ARCH_6K__) \ ++ || defined(__ARM_ARCH_6KZ__) \ + || defined(__ARM_ARCH_6Z__) \ + || defined(__ARM_ARCH_6ZK__) \ + || defined(__ARM_ARCH_6T2__) \ +--- src/corelib/arch/qatomic_arm.h.orig 2017-06-02 20:02:52.633112000 +0200 ++++ src/corelib/arch/qatomic_arm.h 2017-06-02 20:03:14.263677000 +0200 +@@ -57,6 +57,7 @@ + || defined(__ARM_ARCH_6T2__) \ + || defined(__ARM_ARCH_6Z__) \ + || defined(__ARM_ARCH_6K__) \ ++ || defined(__ARM_ARCH_6KZ__) \ + || defined(__ARM_ARCH_6ZK__) \ + || defined(__ARM_ARCH_6M__) \ + || (defined(__TARGET_ARCH_ARM) && (__TARGET_ARCH_ARM-0 >= 6)) diff --git a/graphics/qt4-iconengines/Makefile b/graphics/qt4-iconengines/Makefile index 12240cdff27..ec5f20987e6 100644 --- a/graphics/qt4-iconengines/Makefile +++ b/graphics/qt4-iconengines/Makefile @@ -3,7 +3,7 @@ PORTNAME= iconengines DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics PKGNAMEPREFIX= qt4- diff --git a/graphics/qt4-imageformats/Makefile b/graphics/qt4-imageformats/Makefile index 8d00ae4ee35..fe213104502 100644 --- a/graphics/qt4-imageformats/Makefile +++ b/graphics/qt4-imageformats/Makefile @@ -3,7 +3,7 @@ PORTNAME= imageformats DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics PKGNAMEPREFIX= qt4- diff --git a/graphics/qt4-opengl/Makefile b/graphics/qt4-opengl/Makefile index bfec6f6e69f..5bf67d9e546 100644 --- a/graphics/qt4-opengl/Makefile +++ b/graphics/qt4-opengl/Makefile @@ -3,7 +3,7 @@ PORTNAME= opengl DISTVERSION= ${QT4_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics PKGNAMEPREFIX= qt4- diff --git a/graphics/qt4-pixeltool/Makefile b/graphics/qt4-pixeltool/Makefile index 4e39c3b4fd0..569539e9ad9 100644 --- a/graphics/qt4-pixeltool/Makefile +++ b/graphics/qt4-pixeltool/Makefile @@ -3,7 +3,7 @@ PORTNAME= pixeltool DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics PKGNAMEPREFIX= qt4- diff --git a/graphics/qt4-svg/Makefile b/graphics/qt4-svg/Makefile index 5c3f4fb6599..49a02e24485 100644 --- a/graphics/qt4-svg/Makefile +++ b/graphics/qt4-svg/Makefile @@ -3,7 +3,7 @@ PORTNAME= svg DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics PKGNAMEPREFIX= qt4- diff --git a/korean/qt4-codecs-kr/Makefile b/korean/qt4-codecs-kr/Makefile index 2d99a04bf7f..7ed6988ddbf 100644 --- a/korean/qt4-codecs-kr/Makefile +++ b/korean/qt4-codecs-kr/Makefile @@ -3,7 +3,7 @@ PORTNAME= codecs DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= korean PKGNAMEPREFIX= qt4- PKGNAMESUFFIX= -kr diff --git a/multimedia/qt4-multimedia/Makefile b/multimedia/qt4-multimedia/Makefile index debc230701a..c84da6e2f44 100644 --- a/multimedia/qt4-multimedia/Makefile +++ b/multimedia/qt4-multimedia/Makefile @@ -2,7 +2,7 @@ PORTNAME= multimedia DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia PKGNAMEPREFIX= qt4- diff --git a/net/qt4-network/Makefile b/net/qt4-network/Makefile index 9271b01ef69..29214b0538d 100644 --- a/net/qt4-network/Makefile +++ b/net/qt4-network/Makefile @@ -3,7 +3,7 @@ PORTNAME= network DISTVERSION= ${QT4_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net ipv6 PKGNAMEPREFIX= qt4- diff --git a/textproc/qt4-xml/Makefile b/textproc/qt4-xml/Makefile index d70e941022e..0b349c0730f 100644 --- a/textproc/qt4-xml/Makefile +++ b/textproc/qt4-xml/Makefile @@ -3,7 +3,7 @@ PORTNAME= xml DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc PKGNAMEPREFIX= qt4- diff --git a/textproc/qt4-xmlpatterns-tool/Makefile b/textproc/qt4-xmlpatterns-tool/Makefile index 89ccd0b1149..a311ccf1264 100644 --- a/textproc/qt4-xmlpatterns-tool/Makefile +++ b/textproc/qt4-xmlpatterns-tool/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmlpatterns-tool DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc PKGNAMEPREFIX= qt4- diff --git a/textproc/qt4-xmlpatterns/Makefile b/textproc/qt4-xmlpatterns/Makefile index 11012253c4b..c284a731f3f 100644 --- a/textproc/qt4-xmlpatterns/Makefile +++ b/textproc/qt4-xmlpatterns/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmlpatterns DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc PKGNAMEPREFIX= qt4- diff --git a/www/qt4-webkit/Makefile b/www/qt4-webkit/Makefile index e44a40736f1..d0abfd8815c 100644 --- a/www/qt4-webkit/Makefile +++ b/www/qt4-webkit/Makefile @@ -3,7 +3,7 @@ PORTNAME= webkit DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www PKGNAMEPREFIX= qt4- diff --git a/x11-themes/qt4-style-Kvantum/Makefile b/x11-themes/qt4-style-Kvantum/Makefile index f9eb2ef3854..16039203eb9 100644 --- a/x11-themes/qt4-style-Kvantum/Makefile +++ b/x11-themes/qt4-style-Kvantum/Makefile @@ -3,6 +3,7 @@ PORTNAME= Kvantum PORTVERSION= 0.10.4 DISTVERSIONPREFIX= V +PORTREVISION= 1 CATEGORIES= x11-themes PKGNAMEPREFIX= qt4-style- diff --git a/x11-themes/qt4-style-float/Makefile b/x11-themes/qt4-style-float/Makefile index 6275918f6e5..9af91833184 100644 --- a/x11-themes/qt4-style-float/Makefile +++ b/x11-themes/qt4-style-float/Makefile @@ -3,7 +3,7 @@ PORTNAME= float PORTVERSION= 0.1a2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-themes MASTER_SITES= http://kde-look.org/CONTENT/content-files/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/x11-themes/qt4-style-phase/Makefile b/x11-themes/qt4-style-phase/Makefile index da1fb090037..f9ae9cd3df2 100644 --- a/x11-themes/qt4-style-phase/Makefile +++ b/x11-themes/qt4-style-phase/Makefile @@ -3,7 +3,7 @@ PORTNAME= phase PORTVERSION= 0.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-themes MASTER_SITES= http://kde-look.org/CONTENT/content-files/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/x11-themes/qt4-style-quantumstyle/Makefile b/x11-themes/qt4-style-quantumstyle/Makefile index f885516a9bb..efa8c9648cb 100644 --- a/x11-themes/qt4-style-quantumstyle/Makefile +++ b/x11-themes/qt4-style-quantumstyle/Makefile @@ -3,7 +3,7 @@ PORTNAME= quantumstyle DISTVERSION= rc6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-themes MASTER_SITES= http://saidlankri.free.fr/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/x11-themes/qtcurve-qt4/Makefile b/x11-themes/qtcurve-qt4/Makefile index ccf220bda6e..2ef41c0f4c4 100644 --- a/x11-themes/qtcurve-qt4/Makefile +++ b/x11-themes/qtcurve-qt4/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= qtcurve -PORTREVISION= 0 +PORTREVISION= 1 COMMENT= QtCurve widget style for Qt 4 diff --git a/x11-toolkits/qt4-gui/Makefile b/x11-toolkits/qt4-gui/Makefile index 16d9c8d36e6..f905b81739c 100644 --- a/x11-toolkits/qt4-gui/Makefile +++ b/x11-toolkits/qt4-gui/Makefile @@ -3,7 +3,7 @@ PORTNAME= gui DISTVERSION= ${QT4_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt4- diff --git a/x11/qt4-graphicssystems-opengl/Makefile b/x11/qt4-graphicssystems-opengl/Makefile index 67b0f299b3c..893928f5bc7 100644 --- a/x11/qt4-graphicssystems-opengl/Makefile +++ b/x11/qt4-graphicssystems-opengl/Makefile @@ -2,7 +2,7 @@ PORTNAME= graphicssystems DISTVERSION= ${QT4_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 PKGNAMEPREFIX= qt4- PKGNAMESUFFIX= -opengl diff --git a/x11/qt4-inputmethods/Makefile b/x11/qt4-inputmethods/Makefile index c63009dfb30..a8704ab20d3 100644 --- a/x11/qt4-inputmethods/Makefile +++ b/x11/qt4-inputmethods/Makefile @@ -3,7 +3,7 @@ PORTNAME= inputmethods DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 PKGNAMEPREFIX= qt4- |