<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ports/textproc/qt4-xmlpatterns-tool, branch 10-eol</title>
<subtitle>FreeBSD ports tree</subtitle>
<id>https://cgit-dev.freebsd.org/ports/atom?h=10-eol</id>
<link rel='self' href='https://cgit-dev.freebsd.org/ports/atom?h=10-eol'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/'/>
<updated>2018-06-28T17:39:53Z</updated>
<entry>
<title>Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk</title>
<updated>2018-06-28T17:39:53Z</updated>
<author>
<name>Tobias C. Berner</name>
<email>tcberner@FreeBSD.org</email>
</author>
<published>2018-06-28T17:39:53Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=b1a1d38bf9ef78334b640d30046388a9c055c3a9'/>
<id>urn:sha1:b1a1d38bf9ef78334b640d30046388a9c055c3a9</id>
<content type='text'>
From now on, ports that depend on Qt4 will have to set
	USES=		qt:4
	USE_QT=		foo bar
ports depending on Qt5 will use
	USES=		qt:5
	USE_QT=		foo bar

PR:		229225
Exp-run by:	antoine
Reviewed by:	mat
Approved by:	portmgr (antoine)
Differential Revision:	→https://reviews.freebsd.org/D15540
</content>
</entry>
<entry>
<title>Fix qt4 ports on armv6.</title>
<updated>2017-06-06T05:00:56Z</updated>
<author>
<name>Tobias C. Berner</name>
<email>tcberner@FreeBSD.org</email>
</author>
<published>2017-06-06T05:00:56Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=4440fb81d47fdca5d840aabc4ca1f6bdfe890848'/>
<id>urn:sha1:4440fb81d47fdca5d840aabc4ca1f6bdfe890848</id>
<content type='text'>
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 &lt;mikael.urankar@gmail.com&gt;
Reviewed by:	rakuco
Differential Revision:	https://reviews.freebsd.org/D8322
</content>
</entry>
<entry>
<title>Update Qt5 to 5.7.1, and unify the Qt4 and Qt5 ports some more</title>
<updated>2017-02-18T19:48:05Z</updated>
<author>
<name>Tobias C. Berner</name>
<email>tcberner@FreeBSD.org</email>
</author>
<published>2017-02-18T19:48:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=f3c180c3431372077934f7658922b8a244419bdf'/>
<id>urn:sha1:f3c180c3431372077934f7658922b8a244419bdf</id>
<content type='text'>
* Update Qt5 to 5.7.1
* Move Qt4 binaries to lib/qt4/bin
* Move Qt5 libraries to lib/qt5/lib
  By moving the libraries we should finally be able to get rid of the inplace
  upgrade bug (see ports bugs 194088, 195105 and 198720):  when Qt5's libraries
  were lying in /usr/local/lib, which would often get added by pkgconfig to the
  linker paths via dependencies, the already installed libraries were linked
  against, instead of the ones that were being built. This forced us to make
  sure, that -L${WRKSRC}/lib was always coming before -L/usr/local/lib in the
  linker flags. With this change this should no longer be the case.
* Rename some ports to match the rest (foo-qtX -&gt; qtX-foo)
* Depend on new port misc/qtchooser [see UPDATING &amp; CHANGES]

There are several new Qt5 ports which all have been created by Marie Loise Nolden
&lt;nolden@kde.org&gt;. Thanks again.

PR:		216797
Exp-Run by:	antoine
Reviewed by:	rakuco, mat, groot_kde.org
Approved by:	rakuco (mentor)
Differential Revision:	https://reviews.freebsd.org/D9213
</content>
</entry>
<entry>
<title>In preparation for Qt 5 ports:</title>
<updated>2014-01-06T16:16:52Z</updated>
<author>
<name>Max Brazhnikov</name>
<email>makc@FreeBSD.org</email>
</author>
<published>2014-01-06T16:16:52Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=7d5e6b666c579d543fbf4c0996e309e23de8e02e'/>
<id>urn:sha1:7d5e6b666c579d543fbf4c0996e309e23de8e02e</id>
<content type='text'>
Mk/Uses/qmake.mk:
- Add support for out-of-source builds
- Add support for Qt 5 ports
- Respect WITH_DEBUG

Mk/bsd.qt.mk:
- Massive rework for Qt 5 ports
- Remove '-phonon' from global configure args, thus allow qt4-designer and
  qt4-qtconfig to be built without Phonon support [1]

devel/qmake4:
- Improve mkspecs for gcc (mainly sync with linux version) and clang

devel/qt4-corelib:
- Convert to USES=iconv
- Remove ancient patch

devel/qt4-designer:
- Remove reference to WRKSRC from installed pkgconfig files [2]
- Don't build Qt Designer plugin for Phonon from outdated Qt sources.
  Separate port for plugin will be committed later

devel/qt4-assistant-adp, devel/qt4-libqtassistantclient:
- Convert to USES=qmake

Clean up Qt4 ports:
- Update comments
- Update description; use common description
- Consistently use QT_INCDIR, QT_LIBDIR, etc.
- Use options helpers
- Convert to new LIB_DEPENDS syntax
- Update DESKTOP_ENTRIES to avoid conflicts with Qt 5 ports
- Rename/move several ports for unification with Qt 5 ports

PR:		ports/184620 [1]
Reported by:	Kevin Zheng &lt;kevinz5000@gmail.com&gt;

PR:		ports/181141 [2]
Reported by:	thierry

PR:		ports/185101
Exp-run by:	bdrewery

This is mostly solely avilla's work in area51, kudos to him! And a couple
commits from myself, so you know who's collecting pointyhats :)
</content>
</entry>
<entry>
<title>Update Qt to 4.8.5 and Qt Creator to 2.8.0.</title>
<updated>2013-10-13T23:15:50Z</updated>
<author>
<name>Raphael Kubo da Costa</name>
<email>rakuco@FreeBSD.org</email>
</author>
<published>2013-10-13T23:15:50Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=ecda38b0a51979110b18b1bcd5f03f5b6a55e13a'/>
<id>urn:sha1:ecda38b0a51979110b18b1bcd5f03f5b6a55e13a</id>
<content type='text'>
Proudly brought to you by the KDE on FreeBSD team, with commits by makc@,
Schaich Alonso and yours truly.

Besides the tons of upstream fixes, we have mkspecs for GCC 4.9 and clang33
(from ports), staging support in the Makefiles and dependency fixes related
to pkg-config.

Many thanks to the people who helped test the ports using our area51
repository, and also to the people who provided patches and bug reports via
GNATS!

PR:		ports/180615
	        ports/181921
		ports/182049
</content>
</entry>
<entry>
<title>Add NO_STAGE all over the place in preparation for the staging support (cat: textproc)</title>
<updated>2013-09-20T23:17:30Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2013-09-20T23:17:30Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=0068f2d47fabca8b05218243fb099000a6413c86'/>
<id>urn:sha1:0068f2d47fabca8b05218243fb099000a6413c86</id>
<content type='text'>
</content>
</entry>
<entry>
<title>- Remove MAKE_JOBS_SAFE variable</title>
<updated>2013-08-14T22:35:50Z</updated>
<author>
<name>Alex Kozlov</name>
<email>ak@FreeBSD.org</email>
</author>
<published>2013-08-14T22:35:50Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=d4041784dc51fbd5b1e6a77c341ba00b18e4cd60'/>
<id>urn:sha1:d4041784dc51fbd5b1e6a77c341ba00b18e4cd60</id>
<content type='text'>
Approved by:	portmgr (bdrewery)
</content>
</entry>
<entry>
<title>Rely on bsdtar to autodetermine the format of the distfiles when possible</title>
<updated>2013-04-29T08:57:12Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2013-04-29T08:57:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=5271da855f0c5946ff1f3aa58fbe806871df2f87'/>
<id>urn:sha1:5271da855f0c5946ff1f3aa58fbe806871df2f87</id>
<content type='text'>
For a while now bsdtar is able to autotermine compression and archive format.
Let's then use tar directly instead of piping to tar.

Now USE_BZIP2 and USE_XZ only set EXTRACT_SUFX to the right format
</content>
</entry>
<entry>
<title>KDE/FreeBSD team presents Qt 4.8.4 and QtCreator 2.6.1 ports.</title>
<updated>2013-02-03T17:21:56Z</updated>
<author>
<name>Max Brazhnikov</name>
<email>makc@FreeBSD.org</email>
</author>
<published>2013-02-03T17:21:56Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=c2dd4d2e2d1073e25997d892bd76aac5e841d55b'/>
<id>urn:sha1:c2dd4d2e2d1073e25997d892bd76aac5e841d55b</id>
<content type='text'>
The area51 repository features commits by Alonso Schaich, avilla, fluffy,
jhale, makc and rakuco.

Common changes:
- Trim Makefile header
- Convert to new option framework
- Add/improve desktop entries
- Remove upstreamed patches

Mk/bsd.qt.mk:
- Set QMAKESPEC at late stage (to fix potential problem if USE_GCC is used) [1]

devel/qmake:
- Fix crash due to off-by one error [2]

multimedia/qt4-phonon*:
- Deprecate in favour of multimedia/phonon*

www/qt4-webkit:
- Make dependence on GStreamer optional [3]

devel/qtcreator:
- Enable qml-designer in devel/qtcreator (requires privite Qt headers) [4]

Reported by:	avg via irc [1]
Submitted by:	avg via maillist [2]
PR:		ports/175644 [3]
Submitted by:	danfe [3]
PR:		ports/169809 [4]
Reported by:	tcb &lt;tcberner at gmail.com&gt; [4]
</content>
</entry>
<entry>
<title>- Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4</title>
<updated>2012-06-06T06:44:37Z</updated>
<author>
<name>Martin Wilke</name>
<email>miwi@FreeBSD.org</email>
</author>
<published>2012-06-06T06:44:37Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=9c2f65e3958e906d7f49ce94318d22defb3fffb2'/>
<id>urn:sha1:9c2f65e3958e906d7f49ce94318d22defb3fffb2</id>
<content type='text'>
Review by:	bapt, David Naylor (kde team)
</content>
</entry>
</feed>
