Page MenuHomeFreeBSD

No OneTemporary

This file is larger than 256 KB, so syntax highlighting was skipped.
Index: head/CHANGES
===================================================================
--- head/CHANGES (revision 434379)
+++ head/CHANGES (revision 434380)
@@ -1,3303 +1,3326 @@
Updating Information for FreeBSD ports developers
This file is maintained by portmgr@FreeBSD.org and copyrighted by the
FreeBSD Foundation.
This file contains major changes to ports and the ports infrastructure.
Intended audience are ports committers, maintainers and other
developers. User oriented changes should be submitted for inclusion
in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
+20170218:
+AUTHOR: kde@FreeBSD.org
+
+ * Qt 4's binaries have been moved to lib/qt4/bin to match what is already done
+ to Qt 5's binaries. Since these binaries are no longer in ${LOCALBASE}/bin,
+ they also do not have the -qt4 suffix in their names any more.
+
+ * Consequently, there are no Qt 4 or Qt 5 binaries in the default $PATH, and
+ misc/qtchooser is now used to select the actual Qt binaries. In other
+ words, calling "qmake" or "moc" now goes through qtchooser, which prefers
+ Qt 5 binaries by default.
+
+ The ports framework handles this automatically. The UPDATING entry covers
+ this in more detail.
+
+ * Qt 5.7.1 requires a C++11-capable compiler to be used. qmake and CMake pass
+ the appropriate flags to the compiler (such as -std=c++11) automatically,
+ but if your port fetches Qt's build flags via pkg-config (which can be the
+ case for autotools-based ports), you might need to take care of this
+ manually by setting USE_CXXSTD in your Makefile:
+
+ USE_CXXSTD= c++11
+
20160116:
AUTHOR: mat@FreeBSD.org
A new EXTRA_PATCH_TREE has been added. Points to a directory hierarchy with
the same layout as the ports tree, where local patches can be found. This
allows a third party to keep their patches in some other source control
system if needed.
For example, if you have EXTRA_PATCH_TREE=/patches, when building
lang/perl5.24, any file named patch-* in /patches/lang/perl5.24/ will be used
to patch the Perl distribution.
20160116:
AUTHOR: mat@FreeBSD.org
During extraction of the do-patch target into a separate script, the "-d
PATCH_WRKSRC" had to be removed from the PATCH_ARGS and PATCH_DIST_ARGS
variables. If using these variables directly, you will need to adapt the
Makefile. For example:
${PATCH} ${PATCH_ARGS} < ${FILESDIR}/extra-patch
needs to be changed to:
${PATCH} -d ${PATCH_WRKSRC} ${PATCH_ARGS} < ${FILESDIR}/extra-patch
20161218:
AUTHOR: tcberner@FreeBSD.org
QT_PREFIX has been dropped, in favour of using PREFIX directly.
20160911:
AUTHOR: amdmi3@FreeBSD.org
Support has been added for complete set of Creative Commons licenses
CC-(BY|BY-ND|BY-NC|BY-NC-ND|BY-NC-SA|BY-SA)-(1.0|2.0|2.5|3.0|4.0)
20160909:
AUTHOR: amdmi3@FreeBSD.org
Verbose build logs are now preferred and enabled by default for cmake,
ninja and GNU configure. Ports which still produce quiet build logs
(hiding actual commands) are strongly advised to switch to verbose logs.
20160908:
AUTHOR: amdmi3@FreeBSD.org
Support has been added for NONE license, use it when the port doesn't
have cleanly defined licensing terms. Note that without clean license
allowing you to use and distribute the code it would be be illegal to do
so in many jurisdictions, so for ports with NONE license no distfiles or
packages are distributed.
20160824:
AUTHOR: mat@FreeBSD.org
To complete the USE_GITHUB framework, a GH_SUBDIR variable has been added.
It automatically moves a secondary distfile to the right place inside WRKSRC.
It also extends the GH_TUPLE variable to make it as easy to use as possible.
Before:
GH_TUPLE= Regaddi:Chart.js:f13f99b:chart_js \
FVANCOP:ChartNew.js:77e7f87:chartnew_js
post-extract:
@${RMDIR} ${WRKSRC}/database ${WRKSRC}/3rd/Chart.js
@${MV} ${WRKSRC_database} ${WRKSRC}/database
@${MV} ${WRKSRC_chart_js} ${WRKSRC}/3rd/Chart.js
After:
GH_TUPLE= Regaddi:Chart.js:f13f99b:chart_js/3rd/Chart.js \
FVANCOP:ChartNew.js:77e7f87:chartnew_js/3rd/ChartNew.js
It also works if not using GH_TUPLE but the regular
GH_ACCOUNT/PROJECT/TAGNAME variables:
GH_SUBDIR= 3rd/Chart.js:chart_js 3rd/ChartNew.js:chartnew_js
20160824:
AUTHOR: kde@FreeBSD.org
A new USES file has been introduced: USES=kde:4, which replaces the old
bsd.kde4.mk file in preparation for upcoming KDE Frameworks and Plasma5
ports.
Ports depending on KDE4 have to switch from
USE_KDE4=foo bar
to
USES=kde:4
USE_KDE=foo bar
and make sure to switch from using KDE4_PREFIX to the new name KDE_PREFIX
in the Makefiles as well as plists.
20160821:
AUTHOR: kde@FreeBSD.org
A new USES file has been introduced: USES=grantlee:[4,5], which introduces a
LIB_DEPENDS on either devel/grantlee (Qt4) or devel/grantlee5 (Qt5).
Uses/grantlee.mk also exports the GRANTLEE_VERSION variable to users, and the
GRANTLEE_VERSION_FULL and GRANTLEE_VERSION_SHORT pkg-plist substitutions.
20160817:
AUTHOR: mat@FreeBSD.org
This adds the possibility to use regular expressions for the makeplist stage
of the PLIST_SUB life.
From time to time, the values are too generic, and they get in the way of
other stuff.
This adds the possibility to have a VAR_regex=regex that will be used
instead of the VAR=string to search for possible replacements.
For example, in lang/perl5*, there is PERL_ARCH=mach, which will get replaced
in paths if a file is called, say "machine", will end up being
"%%PERL_ARCH%%ine". Adding PERL_ARCH_regex="\bmach\b" will ensure only full
words are replaced, so machine will stay machine, but "lib/mach/foo "will
still be replaced by "lib/%%PERL_ARCH%%/foo".
20160803:
AUTHOR: mat@FreeBSD.org
Every PHP (or Zend) extension now installs its own .ini file in
/usr/local/etc/php. A PHP extension will be automatically activated when
installed. The order into which extensions are loaded is automatically
guessed. In some very rare cases, the guess will be wrong, and PHP_MOD_PRIO
will need to be set. Refer to the USES=php section of the Porter's Handbook
for more information.
20160628:
AUTHOR: mat@FreeBSD.org
USEify USES=php.
The following variables have been folded into arguments:
- USE_PHPIZE -> USES=php:phpize
- USE_PHPEXT -> USES=php:ext
- USE_ZENDEXT -> USES=php:zend
- USE_PHP_BUILD -> USES=php:build
- WANT_PHP_CLI -> USES=php:cli
- WANT_PHP_CGI -> USES=php:cgi
- WANT_PHP_MOD -> USES=php:mod
- WANT_PHP_WEB -> USES=php:web
- WANT_PHP_EMB -> USES=php:embed
20160627:
AUTHOR: mat@FreeBSD.org
USE_OPENSSL has been replaced by USES=ssl.
20160625:
AUTHOR: adamw@FreeBSD.org
A new ${opt}_CMAKE_BOOL OPTIONS helper has been added. Instead of:
FOO_CMAKE_ON= -DWITH_FOO:BOOL=YES -DWITH_BAR:BOOL=YES
FOO_CMAKE_OFF= -DWITH_FOO:BOOL=NO -DWITH_BAR:BOOL=NO
you can use this shortcut:
SOMEOPT_CMAKE_BOOL= WITH_FOO WITH_BAR
20160525:
AUTHOR: mat@FreeBSD.org
A new stage-qa test has been added, it reports all shared libraries
dependencies that are not part of the port list of dependencies. It help
finds what is called proxy dependencies.
A is needed by B, and B is needed by C. If C also needs A, then it needs to
be registered, and this check will tell you to do so.
Right now, it is only reporting the problems, but if you add
PROXYDEPS_FATAL=yes to your environment, it will give an error and will force
you to fix the dependencies.
20160525:
AUTHOR: bapt@FreeBSD.org
New keyword @xmlcatmgr has been added, to handle the XML and SGML catalog
maintainance, in order to improve consistency and correctness of the
generation of the catalog.
If the catalog file has an extension being '.xml' it will be automatically
added to the XML catalog, otherwise it will be added to the SGML catalog
20160512:
AUTHOR: emaste@FreeBSD.org
"make makesum" now writes the current timestamp to distinfo when it is run.
This is done to support development and prototyping efforts for reproducible
package builds, which require some concept of a "last updated" time.
The TIMESTAMP can currently be ignored for ports that have no distinfo, and
for updates done without using "make makesum."
20160428
AUTHOR: mat@FreeBSD.org
USE_RUBYGEMS has been replaced by USES=gem.
20160426:
AUTHOR: mat@FreeBSD.org
USE_MYSQL and USE_BDB have been replaced by USES=mysql and USES=bdb.
WANT_BDB_VER=XX should be replaced by USES=bdb:XX.
20160414:
AUTHOR: mat@FreeBSD.org
USE_RC_SUBR=yes has not done anything for a long time, it will now give an error.
20160413:
AUTHOR: jbeich@FreeBSD.org
Introducing CONFIGURE_OUTSOURCE. It changes HAS_CONFIGURE and GNU_CONFIGURE
by invoking configure, build and install stage outside of source tree e.g.,
$ mkdir ../.build
$ cd ../.build
$ ${OLDPWD}/configure
$ gmake
$ gmake install
20160402:
AUTHOR: bapt@FreeBSD.org
Adding ${PORTSDIR} in dependency lines is no longer necessary meaning
RUN_DEPENDS= foo:${PORTSDIR}/bar/foo
can now be written
RUN_DEPENDS= foo:bar/foo
if the path after ':' is not absolute the framework will automatically
prepend ${PORTSDIR}/
20160301:
AUTHOR: mat@FreeBSD.org
Introduce GH_TUPLE.
GH_TUPLE allows one to put all the GH_{ACCOUNT,PROJECT,TAGNAME} into one
variable, in the form of account:project:tagname[:group]. It is helpful when
there are many submodules.
20160207:
AUTHOR: kwm@FreeBSD.org
The GNOME and MATE framework activation changed. To use the frameworks
now either gnome or mate needs to be added USES.
The usage of USE_GNOME, USE_MATE, INSTALLS_ICONS and for example
GLIB_SCHEMAS stays the same.
Like with USES, the use of USE_GNOME and so after bsd.port.pre.mk
is now forbidden.
20160112:
AUTHOR: amdmi3@FreeBSD.org
Support has been added for "or later" variants of GNU licenses
(e.g. LICENSE=GPLv2+) and for Public Domain (LICENSE=PD).
Complete list of new LICENSE values:
AGPLv3+ GPLv1+ GPLv2+ GPLv3+ GPLv3RLE+ LGPL20+ LGPL21+ LGPL3+ PD
20160110:
AUTHOR: bapt@FreeBSD.org
USE_FIREBIRD and USE_SQLITE has been replaced by USES=firebird and
USES=sqlite
20151105:
AUTHOR: mat@FreeBSD.org
Change the meaning of NO_WRKSUBDIR to force a WRKDIR != WRKSRC.
Right now, NO_WRKSUBDIR means that the extraction does not produce a
subdirectory, and that everything goes straight into WRKDIR. It is
problematic, because during the build of a port, quite a few files
are created in there, and then, a stage directory, where everything
is installed, and then a pkg directory where the package is created,
and those often conflict, or get in the way, of the building
process.
With this, NO_WRKSUBDIR will extract the distfiles directly into
WRKSRC instead of WRKDIR. In this case, WRKSRC is artificial and is
based on PKGNAME and not DISTNAME, mitigate conflicts with rc files.
20151022:
AUTHOR: amdmi3@FreeBSD.org
Improved support for USES=shebangfix
- We now support multiple values for *_OLD_CMD
- We replace more variants by default (/bin/${lang}, /usr/bin/${lang},
/usr/bin/env ${lang}).
- shebangfix now also supports lua if USES=lua is specified
- Pattern matching has been improved: we now only match whole worlds,
e.g. "/usr/bin/perl5.005" is no longer erroneously replaced with
"${perl_CMD}5.005".
Note that *_OLD_CMD entries which contain spaces must now be quoted.
20150928:
AUTHOR: amdmi3@FreeBSD.org
Implemented complete support for test target.
You can now `make test' on any port to run test sequence, no-op by default.
If a port defines TEST_TARGET, it'll run sub-make with specified target,
usually `check' or `test', useful if upstream supports that. The port may
instead define custom do-test target, as well as usual satellite targets:
{pre,do,post}-test, {pre,do,post}-test-OPT, {pre,do,post}-test-OPT-off
`make test' builds and stages port first, so test may use both WRKDIR and
STAGEDIR, and both BUILD and RUN depends are available for test target.
Additionally, TEST_DEPENDS is now properly supported and may be used to
define additional depends specifically for testing.
Framework may define default tests for specific cases. For instance,
perl5.mk and cran.mk provide default test target on their own.
20150926:
AUTHOR: bapt@FreeBSD.org
@sample now accept arguments, so it can now be used the following way:
@sample afile.sample
or
@sample path/to/example etc/target
20150926:
AUTHOR: bapt@FreeBSD.org
New keywords are supported in pkg since 1.5.x:
@preexec <command>: execute the <command> during pre-install scripts
@postexec <command>: execute the <command> during post-install scripts
@preunexec <command>: execute the <command> during pre-deinstall scripts
@postunexec <command>: execute the <command> during post-deinstall scripts
@exec does not specify when if should be executed and is now considered as
deprecated.
20150914:
AUTHOR: mat@FreeBSD.org
Introducing the %%PERL5_MAN1%% PLIST_SUB entry, as Perl now installs man1
pages in the same prefix as man3 pages.
20150828:
AUTHOR: mat@FreeBSD.org
<opt>_VARS and <opt>_VARS_OFF have been introduced to allow for a generic way
to set/append to variables.
OPT1_VARS= foo=bar baz+=bam
will set FOO to bar and append bam to BAZ if OPT1 is enabled. <opt>_VARS_OFF
works the same way, if the option is disabled.
20150818:
AUTHOR: kde@FreeBSD.org
The CMAKE_ENV option has been deprecated. It no longer has any effect, and
the CONFIGURE_ENV variable should be used instead.
20150818:
AUTHOR: mat@FreeBSD.org
<opt>_IMPLIES and <opt>_PREVENTS have been introduced to register dependency,
or conflicts between options.
OPTIONS_DEFINE= FOO BAR BAZ
FOO_IMPLIES= BAR
BAZ_PREVENTS= BAR
If the FOO option is selected, the BAR option will be enabled as well. If
the BAZ and BAR options are both enabled, an error will be given.
20150817:
AUTHOR: mat@FreeBSD.org
UNIQUENAME and LATEST_LINK have been removed. LATEST_LINK was only used by
ports-mgmt/pkg{,-devel} and PKGBASE can be used in its stead. UNIQUENAME was
used by USE_LDCONFIG where it was not unique enough, and as old compat shims
with options.
20150716:
AUTHOR: kwm@FreeBSD.org
USE_GHOSTSCRIPT was replaced by USES=ghostscript. The ghostscript USES
accepts version, build, run, nox11 and for version 9 the agpl argument.
If no version is specified, the default 9 for GHOSTSCRIPT_DEFAULT is honored.
20150701:
AUTHOR: mat@FreeBSD.org
Make option target helpers have been added, it allows replacing:
.include <bsd.port.options.mk>
post-patch:
${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
${WRKSRC}/Configure ${WRKSRC}/hints/freebsd.sh
.if ${PORT_OPTIONS:MPTHREAD}
${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%|-lpthread|g;' \
${WRKSRC}/hints/freebsd.sh
.else
${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%||g;' \
${WRKSRC}/hints/freebsd.sh
.endif
with:
post-patch:
${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
${WRKSRC}/Configure ${WRKSRC}/hints/freebsd.sh
post-patch-PTHREAD-on:
${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%|-lpthread|g;' \
${WRKSRC}/hints/freebsd.sh
post-patch-PTHREAD-off:
${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%||g;' \
${WRKSRC}/hints/freebsd.sh
20150622:
AUTHOR: bapt@FreeBSD.org
Remove USE_RCORDER, USE_RC_SUBR has been modified to support PREFIX=/usr
automatically
20150529:
AUTHOR: mat@FreeBSD.org
Extend the multiple distfiles USE_GITHUB framework by allowing it to fetch
only additional distfiles, but not the main one. Set USE_GITHUB=nodefault
and use the GH_* variables with groups as usual.
20150528:
AUTHOR: mat@FreeBSD.org
USE_GITHUB can now fetch multiple distfiles. It uses a grouping feature
similar to MASTER_SITES/PATCH_SITES.
Some helpful variables are provided: WRKSRC_<group> for putting things in the
right place in post-extract, and DISTNAME_<group>/DISTFILE_<group> for use
with EXTRACT_ONLY.
A simple example:
PORTNAME= bar
PORTVERSION= 1.0
USE_GITHUB= yes
GH_ACCOUNT= foo
GH_PROJECT= ${PORTNAME}-images:images
post-extract:
@${MV} ${WRKSRC_images} ${WRKSRC}/images
It will fetch those two distfiles:
$ make fetch-urlall-list
https://codeload.github.com/foo/bar/tar.gz/1.0?dummy=/foo-bar-1.0_GH0.tar.gz
https://codeload.github.com/foo/bar-images/tar.gz/1.0?dummy=/foo-bar-images-1.0-1.0.tar.gz
It will then extract them to ${WRKDIR} in their respectives directories.
20150526:
AUTHOR: antoine@FreeBSD.org
PYTHON_REL has been switched from a 3 digits number to a 4 digits number to
handle python 2.7.10. Ports checking for python 2.7.9 should compare
PYTHON_REL against 2709 and ports checking for python 2.7.10 should compare
PYTHON_REL against 2710.
20150521:
AUTHOR: mat@FreeBSD.org
GH_COMMIT support has been removed, see the 20150319 for more informations.
20150419:
AUTHOR: tijl@FreeBSD.org
USE_AUTOTOOLS has been deprecated. It can be replaced with USES=autoreconf
and GNU_CONFIGURE=yes.
Support for USE_AUTOTOOLS=libtoolize has been removed. It can be replaced
with "USES=autoreconf libtool".
20150409:
AUTHOR: bapt@FreeBSD.org
Add a new USES=gnustep to handle the GNUstep ports. Now the dependencies on
GNUstep libraries is done via the regular LIB_DEPENDS
USE_GNUSTEP is now a macro that accept many arguments: back, build, gui, back
Depending on the feature needed for a given port
Reuse USES=objc to avoid duplicating code
20150408:
AUTHOR: bapt@FreeBSD.org
Add a new USES=waf to handle the waf building system, allowing to factorise
code. Plug waf into MAKE_CMD and CONFIGURE_CMD so the regular defined targets
can be reused.
Always define _MAKE_JOBS so that when bsd.port.mk will stop overwritting
_MAKE_JOBS when parallel jobs are disabled we can enforce -j1 (which is needed
to really disable parallelisation with waf
WAF_CMD has been created to allow one to override the location of the waf
script relatively to WRKSRC
CONFIGURE_TARGET is by default defined to "configure"
ALL_TARGET is by default defined to "build"
INSTALL_TARGET is by default defined to "install"
USES=waf is by default stagedir safe
20150407:
AUTHOR: bapt@FreeBSD.org
USE_XZ and USE_BZIP2 are not supported anymore, they have been replaced by
USES=tar:bzip2 and tar:xz
20150328:
AUTHOR: bapt@FreeBSD.org
New "metaport" USES to take care of predefining correctly the needed
macros as expected by meta ports.
20150323:
AUTHOR: bapt@FreeBSD.org
Remove "@fc" and "@fontsdir". All fonts should always use @fcfontsdir which
Properly takes care of the fonts.dir and fonts.scale cache files as well
as ensure to properly update the fontconfig cache
New "fonts" USES. It defines the default variables needed for fonts and also
takes care of the run time dependencies
20150326:
AUTHOR: bdrewery@FreeBSD.org
PTHREAD_CFLAGS and PTHREAD_LIBS have been removed. Please see entry
20130207 for more information.
20150319:
AUTHOR: bdrewery@FreeBSD.org
MASTER_SITE GHR (GITHUB_RELEASE) has been removed. The same functionality
can be achieved with just USE_GITHUB/GH_ACCOUNT/GH_PROJECT. GH_TAGNAME
defaults to DISTVERSION. If the tag needs to be adjusted then change
GH_TAGNAME. No GH_COMMIT is needed.
20150319:
AUTHOR: bdrewery@FreeBSD.org
USE_GITHUB has been updated to make GH_COMMIT optional. Using this new
scheme allows only setting the _tag_ or _commit hash_ in GH_TAGNAME and
not having to know the hash for a tag. This scheme will download a tarball
that has a different checksum than before due to a changed directory name
for extraction.
GH_TAGNAME can now be any length of the hash as long as it is unique. There
is no longer a 7-character requirement.
The following MASTER_SITES are provided to retain the old checksum and
directory structure (that require GH_COMMIT):
GH -> GHL
GITHUB -> GITHUB_LEGACY
20150305:
AUTHOR: olivierd@FreeBSD.org
Dependencies on the Xfce ports have been migrated to USES. Instead
of USE_XFCE= configenv, you should use USES= xfce.
20150224:
AUTHOR: makc@FreeBSD.org
New USE_QT4 component has been introduced to reduce buildtime
dependencies for Qt 4 ports that use localization support. Instead
of USE_QT4=linguist you should now use USE_QT4=linguisttools_build.
Conversion of existing ports may require USE_QT4 adjustment for
missing components.
20141217:
AFFECTS: users of lang/perl5.*
AUTHOR: mat@FreeBSD.org
Perl now links libperl.so with all .so it builds. The stage-qa checks have
been extended to check that libperl.so is in fact linked with .so in
SITE_ARCH and errors out if none of the .so build by a port are linked with
it. It also checks that the rpath and runpath elf attributes are present.
20141130:
AUTHOR: tijl@FreeBSD.org
The devel/gettext port has been split up in devel/gettext-runtime which
contains runtime libraries such as libintl, and devel/gettext-tools which
contains build tools such as msgfmt. You can use USES=gettext-runtime to
set a LIB/BUILD/RUN_DEPENDS on devel/gettext-runtime and USES=gettext-tools
to set a BUILD/RUN_DEPENDS on devel/gettext-tools.
USES=gettext is now the same as "USES=gettext-runtime gettext-tools",
meaning a LIB_DEPENDS on devel/gettext-runtime and a BUILD_DEPENDS on
devel/gettext-tools.
20141126:
AUTHOR: mat@FreeBSD.org
The way Perl modules are installed has changed. Before, we had
site_perl : lib/perl5/site_perl/5.18
site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
perl_man3 : lib/perl5/5.18/man/man3
Now we have :
site_perl : lib/perl5/site_perl
site_arch : lib/perl5/site_perl/mach/5.18
perl_man3 : lib/perl5/site_perl/man/man3
Modules without any .so will be installed at the same place regardless of the
Perl version, minimizing the upgrade when the major Perl version is changed.
It uses a version dependent directory for modules with compiled bits.
As PERL_ARCH is no longer needed in plists, it has been removed from
PLIST_SUB.
The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now
always removed, as is perllocal.pod.
The old site_perl and site_perl/arch directories have been kept in the
default Perl @INC for all Perl ports, and will be phased out as these old
Perl versions expire.
20141122:
AUTHOR: crees@FreeBSD.org
Dependencies on the PostgreSQL ports have been migrated
to USES. Instead of USE_PGSQL, please use USES=pgsql instead.
USE_PGSQL=yes becomes USES=pgsql
WANT_PGSQL_VER=91+ becomes USES=pgsql:9.1+
USE_PGSQL=server becomes USES=pgsql and WANT_PGSQL=server
20141118:
AUTHOR: mat@FreeBSD.org
To ease future work, a new SITE_ARCH variable and PLIST_SUB replacement
containing SITE_PERL/PERL_ARCH has been added.
20141102:
AUTHOR: bdrewery@FreeBSD.org
SSP is now default. This can be disabled with WITHOUT_SSP.
SSP_CFLAGS defaults to -fstack-protector.
SSP will be used on all amd64 releases. It will only be used on i386
releases over 10.0.
20141007:
AUTHOR: mat@FreeBSD.org
The @cwd [path] construct in plist files is deprecated. Instead of adding
those lines to the plist:
@cwd /
etc/rc.d/foo
var/db/bar
@cwd /some
@exec mkdir -p %D/nested/dir
add this:
/etc/rc.d/foo
/var/db/bar
@exec mkdir -p /some/nested/dir
20141002:
AUTHOR: bapt@FreeBSD.org
New BUNDLE_LIBS knobs to allow a port to tell pkg(8) not to compute provided
libraries, this is to be used when a port bundles libraries it doesn't want
to expose to other ports.
20141001:
AUTHOR: tijl@FreeBSD.org
Support for autoconf213, autoheader213, aclocal14 and automake14 has been
removed from USE_AUTOTOOLS.
20140930:
AUTHOR: bdrewery@FreeBSD.org
Building ports in a chroot or jail have always required a particular
environment be setup. This was not clear though and the ports framework
did not enforce it. These requirements are:
1. Either a SRC_BASE/sys/sys/param.h, or /usr/include/sys/param.h be
present with the __FreeBSD_version_ number of the target system,
or OSVERSION be set in the environment. Lack of these would fallback
on kern.osreldate before, which is no longer the case.
2. UNAME_r,UNAME_v,UNAME_s all must be set for the target system.
Not having these values in sync will now cause the build to error until it is
resolved.
Setting these in the environment can be done via your own wrapper scripts,
or /etc/login.conf (along with cap_mkdb /etc/login.conf) or
via /etc/make.conf using appropriate values. Note that OSVERSION is redundant
if a proper param.h is in the environment:
OSVERSION+= 1100036
UNAME_ENV+= OSVERSION=${OSVERSION}
UNAME_ENV+= UNAME_s=FreeBSD
UNAME_ENV+= UNAME_r=11.0-CURRENT
UNAME_ENV+= UNAME_v="${UNAME_s} ${UNAME_r}"
.MAKEFLAGS: ${UNAME_ENV}
MAKE_ENV+= ${UNAME_ENV}
CONFIGURE_ENV+= ${UNAME_ENV}
SCRIPTS_ENV+= ${UNAME_ENV}
20140922:
AUTHOR: bapt@FreeBSD.org
pkg(8) now handles the directories under PREFIX automatically,
and will automatically remove them as needed.
A new @dir keyword has been introduced to handle directories specially:
- directories with special owner, group, or permissions (access mode)
- empty directories
- directories out of PREFIX
As a consequence @dirrm and @dirrmtry are now considered deprecated.
Credentials can now be passed in arguments to keywords
(the empty keyword means "regular file"):
@(user,group,mode) file1
@dir(user,group,mode) directory_with_special_owner_or_mode
PLIST_DIRSTRY is now considered deprecated, use PLIST_DIRS instead.
20140917:
AUTHOR: tijl@FreeBSD.org
Support for USE_AUTOTOOLS=libtool, USE_GNOME=ltasneededhack,
USE_GNOME=lthack and USE_GNOME=ltverhack has been removed.
Ports should use USES=libtool instead.
Support for USE_AUTOTOOLS=libltdl has been removed.
Ports should use LIB_DEPENDS=libltdl.so:${PORTSDIR}/devel/libltdl
20140916:
AUTHOR: tijl@FreeBSD.org
The installation of *.la files without some form of USES=libtool in the
port Makefile will now result in a stage-qa error.
Previously this would only cause a warning.
The :keepla argument to USES=libtool is no longer special. It is now
only needed if a port uses *.la files at run time and no longer to fix
link problems in other ports.
20140901:
AUTHOR: bapt@FreeBSD.org
Support for pkg_install has been removed.
Note that WITH_PKGNG is now called WITH_PKG (still used to define 'devel')
WITH_PKGNG remains for compatibility
@stopdaemon support has gone, pkg(8) has a generic mechanism to
provide the same function, see HANDLE_RC_SCRIPTS in pkg.conf(5).
20140901:
AUTHOR: bapt@FreeBSD.org
Support for NO_STAGE has been removed.
20140825:
AUTHOR: antoine@FreeBSD.org
Support for NOPORTDATA has been removed.
20140809:
AUTHOR: mva@FreeBSD.org
The Python language bits of the ports framework have been converted
to USES. Instead of USE_PYTHON, please use USES=python instead.
USE_PYTHON=yes becomes USES=python
USE_PYTHON=2.7+ becomes USES=python:2.7+
USE_PYTHON_BUILD=3.3 becomes USES=python:3.3,build
...
Additionally, several Python specific features have been converted
to USES-inspired USE_PYTHON=<featureA>,<featureB>.
USE_PYDISTUTILS becomes USE_PYTHON=distutils
PYDISTUTILS_AUTOPLIST becomes USE_PYTHON=autoplist
...
Please read the header comments of Uses/python.mk for more details
about the new and changed bits and pieces. You will find a list of
deprecated variables and how to replace them in your own ports at
the end of the header comment.
20140715:
AUTHOR: bapt@FreeBSD.org
LIB_DEPENDS only supports one form: lib*.so
20140708:
AUTHOR: mva@FreeBSD.org
Support for installations based on the easy_install setup.py target has
been removed from the Ports framework for Python software. The
PYEASYINSTALL_* knobs and support for USE_PYDISTUTILS=easy_install have
been removed.
20140623:
AUTHOR: bapt@FreeBSD.org
IGNOREFILES is not supported anymore, it was an unsafe feature allowing to
use unchecked files downloaded from untrusted places to be used in the ports
tree.
20140607:
AUTHOR: mva@FreeBSD.org
New PYTHON_CONCURRENT_INSTALL knob to support the parallel installation
of ports for different python versions.
If set to yes, the knob indicates that the port can be installed for
different python versions at the same time. The port will use a unique
prefix for certain directories using USES=uniquefiles:dirs (see the
uniquefiles.mk Uses for details about the directories). Binaries
receive an additional suffix, based on ${PYTHON_VER}.
The values for the uniquefiles USES are set as follows:
UNIQUE_PREFIX= ${PYTHON_PKGNAMEPREFIX}
UNIQUE_SUFFIX= -${PYTHON_VER}
If the port is installed for the current default python version, scripts and
binaries in
${PREFIX}/bin
${PREFIX}/sbin
${PREFIX}/libexec
are linked from the prefixed version to the prefix-less original name,
e.g. bin/foo-2.7 --> bin/foo.
20140529:
AUTHOR: miwi@FreeBSD.org
USE_GMAKE is no longer supported, please use USES=gmake instead
20140526:
AUTHOR: bapt@FreeBSD.org
USE_DOS2UNIX is no longer supported, USES=dos2unix should be used instead
20140525:
AUTHOR: mat@FreeBSD.org
Add a USE_PERL5=fixpacklist to account for ports creating a .packlist file
referencing ${STAGEDIR} when not using USE_PERL5=configure or
USE_PERL5=modbuildtiny.
20140505:
AUTHOR: bapt@FreeBSD.org
:U and :L syntax is not supported anymore in the ports tree, :tu and :tl
should be used instead
This makes the ports tree incompatible with make(1) version that does not
support :tu and :tl (aka FreeBSD 8.3 and earlier)
20140428:
AUTHOR: bapt@FreeBSD.org
EXTRA_PATCHES has been extended to support a new syntax:
EXTRA_PATCHES= file:-pX
Where X is the pathname strip count passed to patch(1)
20140423:
AUTHOR: tijl@FreeBSD.org
The semantics of USES=libtool have changed. It now deletes .la libraries
from the staging area to reduce overlinking. USES=libtool:keepla can be
used in case they need to be kept. This form still modifies .la libraries
to remove references to other libraries to reduce overlinking.
Note that .la libraries have to kept around as long as there are .la
libraries from other ports that refer to them. Those ports need to use
some form of USES=libtool first such that those references are removed.
20140419:
AUTHOR: bdrewery@FreeBSD.org
check-orphans has been renamed to check-plist. It now checks:
A. Files in STAGEDIR that are missing from plist.
To make check-plist ignore a file *as an orphan* do one of the
following:
1. Install it
2. post-install: ${RM} ${STAGEDIR}file
3. Put the file behind an OPTION with a PLIST_SUB: %%OPTION%%file
4. Add to plist as a @comment
@comment file
@comment @dirrmtry dir
B. Files in plist missing from STAGEDIR
C. Files in plist which are owned by dependencies/MTREEs
20140416:
AUTHOR: bdrewery@FreeBSD.org
The default target for 'make' now runs 'make stage' if the port supports
it, otherwise 'make build' as before.
20140411:
AUTHOR: bdrewery@FreeBSD.org
A new plist keyword has been added, @sample. It accepts a file (must end in
.sample):
@sample file.conf.sample
This will install file.conf.sample and copy it to file.conf. The file.conf
will be removed if it matches file.conf.sample on deinstall.
This replaces older patterns of:
@unexec if cmp -s %D/etc/pkgtools.conf %D/etc/pkgtools.conf.sample; then rm -f %D/etc/pkgtools.conf; fi
etc/pkgtools.conf.sample
@exec [ -f %B/pkgtools.conf ] || cp %B/%f %B/pkgtools.conf
20140312:
AUTHOR: bapt@FreeBSD.org
Two new USES were added to finish handling distfiles formats a consistent way:
USES=tar[:[xz|bzip2|Z|tgz]] handles distributions files in format:
- plain tar
- tar.xz
- tar.bz2
- tar.Z
- tgz
USES=lha handles distributions files info LHA format
20140307:
AUTHOR: rene@FreeBSD.org
Two new USES were added by bapt@FreeBSD.org :
USES=zip handles distribution files in Zip format. InfoZip files
need USES=zip:infozip
USES=makeself handles distribution files in makeself format.
20140303:
AUTHOR: kde@FreeBSD.org
Add support for Qt 5 via USE_QT5. USE_QT5 is analogous to USE_QT4,
the only difference is the list of available components
(see Mk/bsd.qt.mk for details). USES=qmake supports Qt 5 as well.
20140224:
AUTHOR: bapt@FreeBSD.org
Deprecate support for KNOBS, the new option framework allows to express a
more consistent, user friendly and visible way the same feature.
20140127:
AUTHOR: mat@FreeBSD.org
Add two new options helpers:
${OPT}_${TYPE}_DEPENDS_OFF=<something> will automatically add:
${TYPE_DEPENDS}+=<something> in case OPT is 'off'
${OPT}_${FLAG}_OFF=<something> will automatically add:
${FLAG}+=<something> in case OPT is 'off'
20140111:
AUTHOR: mva@FreeBSD.org
New USES=uniquefiles to make files or directories unique
by adding a prefix or suffix to them.
Files listed in UNIQUE_PREFIX_FILES will receive the prefix
set via UNIQUE_PREFIX. The same applies to UNIQUE_SUFFIX_FILES,
but with the chosen UNIQUE_SUFFIX. UNIQUE_PREFIX and
UNIQUE_SUFFIX are set to PKGNAMEPREFIX and PKGNAMESUFFIX by
default.
The uniquefiles USES enables ports to name files in special
ways, e.g. by outlining that the port does not support X11
(-nox11). A binary named bin/foo thus can be easily renamed
to bin/foo-featureA via
USES= uniquefiles
UNIQUE_SUFFIX= -featureA
UNIQUE_SUFFIX_FILES= bin/foo
The uniquefiles USES automatically adjusts the plist at
installation time. There is no need to consider the prefix
or suffix in the pkg-plist file itself. If the original name
of the renamed file is bin/foo, this exact name should be put
into pkg-plist.
The dirs argument to USES=uniquefiles will cause certain
standard directories, such as DOCSDIR or EXAMPLESDIR to be
prepended with the UNIQUE_PREFIX. The change to the directories
will hapen prior to configuring or building the port, so that
the port Makefile as well as the port's build logic are aware
of the changed name.
Since the uniquefiles USES effectively manipulates the port's
installation and file layout, it will only be available for
stagedir-aware ports. Ports with NO_STAGE=yes will be unable
to use the uniquefiles USES.
20131218:
AUTHOR: mva@FreeBSD.org
lang/python (and as such the 'python' binary and accomplices)
has been removed as default dependency for the USE_PYTHON,
USE_PYTHON_BUILD and USE_PYTHON_RUN knobs.
Ports need to use a designated (default) python interpreter
to build and install and in most cases for execution in the user
environment. Ports that install python scripts, which are not
limited to a certain python version (or version range), can
include lang/python as build and/or run dependency.
USE_PYTHON=yes and similar knobs will only pull in the
default python version (e.g. lang/python27), but none
of the meta ports or lang/python itself.
Please use lang/python as build or run-time dependency only,
if there is no other way to get a port working properly, since
the usage of lang/python complicates package builds for different
python versions.
20131213:
AUTHOR: tijl@FreeBSD.org
New USES=fortran to replace USE_FORTRAN.
USE_FORTRAN=yes can be replaced with USES=fortran or USES=fortran:gcc.
USE_FORTRAN=ifort can be replaced with USES=fortran:ifort.
USE_FORTRAN=f77 is deprecated and the version of gcc it depends
on (lang/gcc34) is scheduled to be removed.
Note that USE_FORTRAN=yes also makes GCC the C/C++ compiler while
USES=fortran only sets the Fortran compiler and can be used together
with Clang as C/C++ compiler.
20131208:
AUTHOR: mva@FreeBSD.org
New USES=twisted, to replace the old USE_TWISTED knob.
twisted can be configured with the arguments run or build to replace
the previous USE_TWISTED_RUN and USE_TWISTED_BUILD knobs. The twisted
components can be added as comma-separated arguments. If you previously
wrote
USE_TWISTED= yes
USE_TWISTED= conch names
USE_TWISTED_RUN= yes
you now would write
USES= twisted
USES= twisted:conch,names
USES= twisted:run
20131119:
AUTHOR: kwm@FreeBSD.org
The USE_GNOME component ltverhack no longer has a hard dependancy on
libtool.
If USE_AUTOTOOLS=libtool isn't defined it will try to patch ltmain.sh
and or libtool in ${WRKSRC}. If those files are located somewhere else
in ${WRKSRC} then it is possible to overwrite ltverhack_PATCH_FILES
with there new locations. configure script --distable-static will work also
after using the "new" ltverhack.
Please keep in mind that USE_AUTOTOOLS implies GNU_CONFIGURE so you might
need to add that back for the port to work.
20131031:
AUTHOR: rene@FreeBSD.org
Add a new USES for kernel module ports.
USES=kmod takes no arguments and:
- adds kld to CATEGORIES
- sets SSP_UNSAFE
- sets IGNORE if the kernel sources are not found
- defines KMODDIR to /boot/modules by default, add it to
PLIST_SUB and MAKE_ENV, and create it upon installation
- handles cross-referencing kernel modules upon installation and
deinstallation
20131021:
AUTHOR: amdmi3@FreeBSD.org
share/applications directory was added to the mtree, meaning that
you no longer need to create or remove it in your ports.
20131008:
AUTHOR: bapt@FreeBSD.org
New "compiler" USES to be able to select the compiler based on the
features it provides.
Supported arguments are:
- c++11-lang: the port needs a c++11 aware compiler what ever standard
library it uses, implies features
- c++11-lib: the port needs a c++11 standard library, implies features
- c11: the ports needs a c11 aware compiler implies features
- features: this will create a COMPILER_FEATURES variable which contains
the list of features ${CC} do support, implies env.
- env: the COMPILER_TYPE will be set to either gcc or clang.
By default the uses will try to use clang33 from ports when nothing in
base is relevant except if the user explicitly defines
FAVORITE_COMPILER=gcc in his make.conf
20131008:
AUTHOR: makc@FreeBSD.org
New USES: qmake, configure tool widely used among Qt based projects.
New framework is stage-friendly. To convert existing ports remove
custom configure target, adjust QMAKE_ENV, QMAKE_ARGS, QMAKE_PRO if
required (see Mk/Uses/qmake.mk for details).
20131005:
AUTHOR: bdrewery@FreeBSD.org
PATCHFILES now support an optional :-pX flag that notes which patch strip
level to use. This allows multiple patches in 1 port to use different
PATCH_DIST_STRIP values without changing PATCH_DIST_STRIP.
Syntax: PATCHFILES= patch[:-pX][:distgroup]
20131003:
AUTHOR: bapt@FreeBSD.org
New USES: scons, to handle properly the scons building system, this
this also gives the scons packages user the ability to respect MAKE_JOBS.
20130924:
AUTHOR: bapt@FreeBSD.org
Stage aware ports can now create package without the requirement from
being root.
If a port really needs root anyway it should add NEED_ROOT in its
Makefile.
For a port that needs special credential on files DO NOT RELY on
chown in post-install section but rely on @own, @group in pkg-plist
Be careful about rights on directories as pkg_install cannot store them
they needs to be done via @exec chown.
20130923:
AUTHOR: bapt@FreeBSD.org
The ports tree is now staged by default. With pkgng the sequence hasn't
changed, the main difference is that creating package is now independent
from installing it. With pkg_install, the package is now created first
and make install, do install the package.
New macros:
- STAGEDIR: PATH to the directory where the port will be staged.
- NO_STAGE: Keep the old behaviour of the ports tree (aka no staging area)
Unsupported macro if NO_STAGE is not set:
- MAN* with staging man page compression and handling of hardlinks and
symlinks is automatically done in the stage. the manpages becomes then a
"normal" plist files and should be tracked in pkg-plist.
- MANCOMPRESSED the compress-man target is able to only compress when it
needed.
New target:
- stage: this installs everything into the stage directory
- makeplist: this will create a pkg-plist and print it to stdout. This is
a sample plist and it should always be _reviewed_ not directly used.
NOTE: with staging only what is in the plist will be installed, nothing more,
meaning a port staged cannot have leftovers except directories left. It is
really important to double check the pkg-plist to make sure all the files
the maintainer wants to package are in! make makeplist can help in that area.
20130923:
AUTHOR: mva@FreeBSD.org
* New USES: zope
This replaces the previous USE_ZOPE knob. All other zope related knobs
for port Makefiles still exist. See Mk/Uses/zope.mk for details.
20130920:
AUTHOR: bdrewery@FreeBSD.org
SSP support has been added to ports with WITH_SSP_PORTS for i386 and amd64
on FreeBSD 10, and amd64 on earlier versions.
SSP_UNSAFE is added to disable in a port if it fails to build, but
this should only be used in rare circumstances such as kernel modules.
Otherwise, the port may just be failing due to lack of respecting
LDFLAGS.
On FreeBSD 10, this uses an ldscript in /usr/lib/libc.so to pull in
libssp_nonshared.a to address issues linking on i386 [1].
On earlier FreeBSD versions the WITH_SSP_PORTS knob will add -lssp_nonshared
to LDFLAGS on i386. This is not needed on amd64. However, several hundred
ports do not currently respect LDFLAGS, so this support is disabled currently
as it causes build failures if a dependency is looking for the stack_chk
symbols.
[1] http://svnweb.freebsd.org/base/head/lib/libc/libc.ldscript?revision=251668&view=markup
20130919:
AUTHOR: gahr@FreeBSD.org
* New USES: tcl, tk
This uses replaces all the previous USE_TCL, USE_TCL_BUILD, USE_TCL_RUN,
USE_TCL_WRAPPER, USE_TK, USE_TK_BUILD, USE_TK_RUN and USE_TK_WRAPPER macros.
See the Mk/Uses/tcl.mk and the commit message of r327607 for details.
Moreover, the default Tcl/Tk version is now specified in terms of
bsd.default-versions.mk. It is now possible to specify one's preferred Tcl/Tk
version using DEFAULT_VERSIONS+= tcltk=x.y in make.conf.
20130918:
AUTHOR: bapt@FreeBSD.org
The perl framework is not included unconditionally and the old framework
is not recognized anymore, the following MACROS has been removed:
* PERL_CONFIGURE
* USE_PERL5_RUN
* USE_PERL5_BUILD
* PERL_MODBUILD
20130904:
AUTHOR: madpilot@FreeBSD.org
To allow ports to work with the iconv implementation in 10-CURRENT after
commit r254273 the USES=iconv options now conditionally adds a dependency
depending on the FreeBSD version. It also defines a few utility variables
which can be used in the ports:
ICONV_CMD: location of the iconv binary.
after r254273: /usr/bin/iconv
before: ${LOCALBASE}/bin/iconv
ICONV_LIB: ld(1) flags to get the iconv DSO.
after r254273: empty
before: -liconv
ICONV_CONFIGURE_ARG: String that can be passed to configure
scripts to hint the location of the libiconv library.
after r254273: empty
before: --with-libiconv-prefix=${LOCALBASE}
20130902:
AUTHOR: bapt@FreeBSD.org
USE_GNOME=pkgconfig is not supported anymore by the ports tree, please
uses: USES=pkgconfig
20130831:
AUTHOR: bdrewery@FreeBSD.org
crees has added USE_PACKAGE_DEPENDS_ONLY which works like
USE_PACKAGE_DEPENDS but will not fallback on source if a
package is missing.
20130731:
AUTHOR: bapt@FreeBSD.org
* New USES: perl5
This uses replaces all the previous perl macros. Here is how to migrate:
Always include perl5:
USES= perl5
If USE_PERL5 is undefined then perl5 will be a build and run dependency
Migrating to new USE_PERL5:
=======================================================
| BEFORE | AFTER |
=======================================================
| PERL_CONFIGURE=yes | USE_PERL5= configure |
-------------------------------------------------------
| USE_PERL5_RUN=yes | USE_PERL5=run |
-------------------------------------------------------
| USE_PERL5_BUILD=yes | USE_PERL5=build |
-------------------------------------------------------
| PERL_MODBUILD=yes | USE_PERL5=modbuild |
-------------------------------------------------------
| USE_PERL5=yes | |
-------------------------------------------------------
| USE_PERL5=5.14+ | USE_PERL5= 5.14+ |
-------------------------------------------------------
| PERL_CONFIGURE= 5.14+ | USE_PERL5=5.14+ configure |
-------------------------------------------------------
| PERL_MODBUILD= 5.14+ | USE_PERL5=5.14+ modbuild |
-------------------------------------------------------
20130726:
AUTHOR: rene@FreeBSD.org
* With the removal of QT 3/KDE 3, the following are no longer recognized:
- USE_KDEBASE_VER
- USE_KDELIBS_VER
- USE_QT_VER
Mk/bsd.kde.mk has been removed, it was only used for QT 3/KDE 3.
20130628:
AUTHOR: bapt@FreeBSD.org
* New USES: imake
This uses replaces USE_IMAKE, it handles dependency on imake. Its only argument
is 'env', which prevent from defining the do-configure target.
* New LATE_INSTALL_TARGET
This content of this new macro is appended to INSTALL_TARGET
20130620:
AUTHOR: bapt@FreeBSD.org
* New USES: fmake
This uses will allow to build ports using the legacy FreeBSD make, for ports
not compatible with bmake
20130614:
AUTHOR: bapt@FreeBSD.org
* New macros to help dealing with ports that have options:
OPTIONS_SUB=yes when set in a port, all the option names are automatically
added to the PLIST_SUB with "@comment " value in case the option is off and
empty value in case the options is on.
${OPT}_CONFIGURE_ENABLE=<aname> will automatically add:
CONFIGURE_ARGS+=--enable-<aname> in case OPT is activated
CONFIGURE_ARGS+=--disable-<aname> in case OPT is deactivated
${OPT}_CONFIGURE_ON=<something> will automatically add:
CONFIGURE_ARGS+=<something> in case OPT is activated
${OPT}_CONFIGURE_OFF=<something> will automatically add:
CONFIGURE_ARGS+=<something> in case OPT is deactivated
${OPT}_CFLAGS will append the specified new flags to CFLAGS if OPT is 'on'
${OPT}_CXXFLAGS will append the specified new flags to CXXFLAGS if OPT is 'on'
${OPT}_LDFLAGS will append the specified new flags to LDFLAGS if OPT is 'on'
${OPT}_CONFIGURE_ENV will append the specified variables to CONFIGURE_ENV if
OPT is 'on'
${OPT}_MAKE_ENV will append the specified variables to MAKE_ENV if OPT is 'on'
${OPT}_USES will append the speficied uses to USES if OPT is 'on'
${OPT}_DISTFILES will append the specified distiles to DISTFILES if OPT in 'on'
${OPT}_CMAKE_ON=<something> will automatically add:
CMAKE_ARGS+=<something> in case OPT is activated
${OPT}_CMAKE_OFF=<something> will automatically add:
CMAKE_ARGS+=<something> in case OPT is deactivated
${OPT}_${TYPE}_DEPENDS=<something> will automatically add:
${TYPE_DEPENDS}+=<something> in case OPT is 'on'
20130614:
AUTHOR: bapt@FreeBSD.org
* New 'display' USES macro to handle building ports that may require a
a display to build.
USES= display[:install] will start Xvfb and set the DISPLAY environment
variable before the installation phase and stop it at the end. (install is
the implicit value)
USES= display:build will start Xvfb and set the DISPLAY environment variable
before the build phase and stop it at the end.
20130607:
AUTHOR: bdrewery@FreeBSD.org
* Checks were added to block GH_TAGNAME=master as this is not a valid
setup. A known hash or tag should be used for GH_TAGNAME instead of
a branch name. As soon as a branch is updated, the known checksum
in the distinfo would then be invalid.
20130606:
AUTHOR: bdrewery@FreeBSD.org
* WRKSRC_SUBDIR has been added to simplify overriding WRKSRC
to use a subdirectory:
WRKSRC= ${WRKDIR}/${DISTNAME}/src
Becomes:
WRKSRC_SUBDIR= src
20130606:
AUTHOR: bapt@FreeBSD.org
The OPTIONS macro is no longer recognized, please use the new options
framework.
20130509:
AUTHOR: kwm@FreeBSD.org
* Two new USES macros to handle mime data of ports.
USES= desktop-file-utils
Handles MimeType in .desktop files that are installed in
share/applications.
USES= shared-mime-info
For supporting mime xml files installed in
share/mime/packages.
The desktop-file-utils USES is only needed if the .desktop files
installed by the port has a MimeType field.
USE_GNOME=desktopfileutils is deprecated.
The shared-mime-info USES handles mime types xml files.
Please note that only the packages/${NAME}.xml file should be listed in
the plist. The shared-mime-info port will clean up the share/mime/*
directories and generated files.
Both USES have there own post-install and code that adds @exec/@unexec
lines to the pkg-plist. This means that when a port switches to the
USES macro, the related post-install command and @exec/@unexec
lines can be removed from the prot.
20130507:
AUTHOR: bapt@FreeBSD.org
* New USES macro to handle setting correct shebang to scripts
By default it will fix bash, perl, php, ruby and python on all files specified
in the SHEBANG_FILES macro (glob pattern relative to ${WRKSRC})
Paths can be customized, and number of languages supported can be extended.
* USE_GETTEXT, USE_NCURSES, USE_READLINE are no longer recognized
20130506:
AUTHOR: bapt@FreeBSD.org
* New USES macro to handle linking on ncurses and on readline
USES= ncurses will set env and make the port link to base version of ncurses
if no port version is installed otherwise it will link against port version
USES= ncurses:port will for the port to link against the ports version of
ncurses
USES= ncurses:base will force to link against base version of ncurses.
USES= readline will make the port link against base version of readline except
on 10+ where it will force dependency on the port version of readline
USES= readline:port will anyway force dependency on the port version of
readline.
20130426:
AUTHOR: mva@FreeBSD.org
* USE_ICONV has been deprecated and converted into the iconv USE
feature
USES= iconv
20130425:
AUTHOR: bapt@FreeBSD.org
* USE_CDRTOOLS is no longer recognized
* USE_FREETYPE is no longer recognized
20130423:
AUTHOR: jgh@FreeBSD.org
* New USES macro to handle support for gettext dependency:
USES= gettext:build will add gettext into BUILD_DEPENDS
USES= gettext:run will add gettext into RUN_DEPENDS
USES= gettext:lib will add gettext into LIB_DEPENDS
It deprecates USE_GETTEXT which will be removed as soon as it is not
used anymore
20130422:
AUTHOR: bdrewery@FreeBSD.org
* The entry for 20120830 to change CCACHE_DIR was not fully supported
by all ports. There is now a CCACHE_DIR variable that can be used
in /etc/make.conf for more complete coverage:
CCACHE_DIR=/var/cache/ccache
20130422:
AUTHOR: bapt@FreeBSD.org
* New USES macro to handle support for pkgconf (pkg-config) dependency:
USES= pkgconfig[:build] will add pkgconf into BUILD_DEPENDS
USES= pkgconfig:run will add pkgconf into RUN_DEPENDS
USES= pkgconfig:both will add pkgconf into both RUN and BUILD DEPENDS
It deprecates USE_PKGCONFIG which will be removed as soon as it is not
used anymore
20130320:
AUTHOR: jgh@FreeBSD.org
* New USES macro to handle support for Zenoss ports and Zenpacks:
USES= zenoss
20130319:
AUTHOR: makc@FreeBSD.org
* New USES macro should be used instead of deprecated USE_CMAKE and
CMAKE_OUTSOURCE:
USES= cmake:outsource
to perform out-of-source build (equivalent to former pair usage of
USE_CMAKE/CMAKE_OUTSOURCE)
USES= cmake
In-source build (equivalent to plain USE_CMAKE=yes) can be used if
project doesn't support out-of-source build.
20130319:
AUTHOR: bapt@FreeBSD.org
* The options framework now uses ports-mgmt/dialog4ports contributed by
Ilya A. Arkhipov. It boostraps it if not present when one calls
make config.
dialog4ports provides a new UI able to represent all the features
provided by the new options framework.
20130315:
AUTHOR: bdrewery@FreeBSD.org
* USE_QMAIL_RUN, USE_QMAIL_BUILD and WANT_QMAIL have been removed
and converted into the qmail USE feature
USES= qmail:run will add qmail into RUN_DEPENDS
USES= qmail:build will add qmail into BUILD_DEPENDS
USES= qmail[:both] will add qmail into both RUN and BUILD DEPENDS
USES= qmail:vars will set QMAIL_PREFIX
20130315:
AUTHOR: bapt@FreeBSD.org
* Add new Keywords directory and first info.yaml keyword (@info).
Keywords directory will contain all the custom plist keywords allowing to
extend pkg-plist with new keywords. Only works with pkgng.
20130307:
AUTHOR: bapt@FreeBSD.org
* New USES macro to handle on demand features, 2 examples has been added to
the ports tree:
pathfix: to replace USE_GNOME= gnomehack
fuse: to replace USE_FUSE= yes
20130207:
AUTHOR: gahr@FreeBSD.org
* Use of PTHREAD_CFLAGS and PTHREAD_LIBS is unsupported. The former
expands to the empty string, while the second is simply -pthread.
Please use -pthread directly in your LDFLAGS, if needed.
20121214:
AUTHOR: flo@FreeBSD.org
* Add a USE_FUSE macro to handle fuse dependencies. It makes
sure sysutils/fusefs-libs gets installed and depending on
fuse being in base or not it installs sysutils/fusefs-kmod.
20121210:
AUTHOR: bapt@FreeBSD.org
* OPTIONS has been extended 2 new macros are available:
OPTIONS_RADIO - allows only 0 or 1 options to be selected
OPTIONS_GROUP - allows 0 or N options among to be selected
20121010:
AUTHOR: bapt@FreeBSD.org
* IPV6 option is now activated by default for the whole ports tree
20121010:
AUTHOR: bapt@FreeBSD.org
* The ports tree is now using pkgng as the default package manager
for HEAD. This only affects users of CURRENT -- users of other
branches need not take any action.
To keep pkg_install as the default package manager, use the new
WITHOUT_PKGNG knob in make.conf
20120830:
AUTHOR: beat@FreeBSD.org
* CCACHE support for building ports has been added (depends on
devel/ccache). Therefore new user settable variables are available:
WITH_CCACHE_BUILD - Enable CCACHE support (Default off)
NO_CCACHE - Disable CCACHE support for example for certain
ports if CCACHE is enabled.
By default CCACHE uses $HOME/.ccache as cache directory. To use
a non-default cache directory this could be overwritten like:
MAKE_ENV+= CCACHE_DIR=/var/cache/ccache
20120820:
AUTHOR: gahr@FreeBSD.org
* GitHub support has been integrated into bsd.sites.mk. In order to
fetch distfiles from GitHub, a port must define USE_GITHUB along
with the following variables:
GH_ACCOUNT - account name of the GitHub user hosting the project
default: not set, mandatory
GH_PROJECT - name of the project on GitHub
default: ${PORTNAME}
GH_TAGNAME - name of the tag to download (master, 2.0.1, ...)
default: ${DISTVERSION}
GH_COMMIT - first 7 digits of the commit that generated GH_TAGNAME
(man git-describe(1))
default: not set, mandatory
The port www/tivoka is an example how to use this mechanism.
20120726:
AUTHOR: bapt@FreeBSD.org
* new macro USE_PKGCONFIG has been introduce in place of
USE_GNOME= pkgconfig
USE_PKGCONFIG= yes and USE_PKGCONFIG= build
for build only dependency
USE_PKGCONFIG= run
for run only dependency
USE_PKGCONFIG= both
for both build and run dependency
20120715:
AUTHOR: beat@FreeBSD.org
* The ports tree moved from CVS to Subversion. A Subversion to
CVS exporter is in place to continue the support of CVSup but
do not commit to pcvs directly.
All commits have to be done in the new port Subversion repository
on svn.FreeBSD.org. You will find more information about
Subversion in the Ports Subversion Primer in the FreeBSD wiki,
in the "Committer's Guide" and the "Porter's Handbook".
If you are in doubt or unsure about a Subversion operation
please contact ports@FreeBSD.org.
20120529:
AUTHOR: crees@FreeBSD.org
* OPTIONS has been updated with many changes and improvements.
Old-style OPTIONS declarations will continue to work for a while,
but do not introduce any into existing or new ports.
For further information, see the Porter's Handbook section on
Makefile Options.
20110923:
AUTHOR: amdmi3@FreeBSD.org
* LDFLAGS is now passed to both the configure and make environments,
and should be handled just like CPPFLAGS (see previous entry).
Summarizing both LDFLAGS and CPPFLAGS changes, where you would
have used
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
MAKE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
now just use
CPPFLAGS+= "-I${LOCALBASE}/include"
LDFLAGS+= "-L${LOCALBASE}/lib"
Note that it's advised to append these variables (+=) instead
of overriding (=) to allow customization by user.
20110320:
AUTHOR: gerald@FreeBSD.org
* CPPFLAGS is now passed to both the configure and make environments,
so this no longer needs to happen in individual ports by adding this
to CONFIGURE_ENV or MAKE_ENV. Rather, just set CPPFLAGS in the port
Makefile (if necessary).
For example, where you would have used
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include"
MAKE_ENV= SOMETHING=foo CPPFLAGS="-I${LOCALBASE}/include"
now just use
CPPFLAGS= "-I${LOCALBASE}/include"
MAKE_ENV SOMETHING=foo
20100831:
AUTHOR: autotools@FreeBSD.org
* USE_GETTEXT has been cleaned up.
'build' BUILD time dependency only
'run' RUN time dependency only
'yes' LIBRARY dependency
20100606:
AUTHOR: gerald@FreeBSD.org
* USE_GCC=4.3 is deprecated (and no port uses it anymore). USE_GCC=4.3+
is transparently rewritten to USE_GCC=4.4+ and lang/gcc43 will be
disconnected from the USE_GCC infrastructure soon.
20100524:
AUTHOR: alepulver@FreeBSD.org
* The license support files (bsd.licenses.mk and bsd.licenses.db.mk) from
GSoc 2008/2009 have been committed. A new PH entry will be available
soon, but for the moment look at:
http://wiki.freebsd.org/PortsLicenseInfrastructure
Or, alternatively, the comments at the beginning of the mentioned files.
20090906:
AUTHOR: flz@FreeBSD.org
* There is now a unified way to create users and groups
in your ports. First, make sure they are added to both
ports/GIDs and ports/UIDs, then add the following in
your port:
USERS= foo
GROUPS= foo
... if you want your port to create the foo user and
group.
20090812:
AUTHOR: portmgr@FreeBSD.org
* sourceforge.net has changed their URL layout to be more
flexible for their users. A new bsd.sites.mk macro SFP
has been added for projects that moved from
http://${mirror}/sourceforge/%SUBDIR%/
to
http://${mirror}/project/%SUBDIR%/
Note that %SUBDIR% is now highly individual for each
project and might need changing as well.
20090521:
AUTHOR: portmgr@FreeBSD.org
* bsd.port.options.mk is now clear to be widely used.
20090516:
AUTHOR: pgollucci@FreeBSD.org
* APACHE_COMPAT is dead!
* USE_APACHE=yes is dead!
* WITH_APACHE13, WITH_APACHE2, WITH_APACHE20, and WITH_APACHE22 are dead
You should set USE_APACHE=13|20|22+. WITH_APACHE option can
be used to conditional include support for ANY version of
Apache based on APACHE_PORT. Currently www/apache13
20090207:
AUTHOR: pgollucci@FreeBSD.org
* devel/libslang dropped in favor of devel/libslang2
* WITH_SLANG2 has been removed. WITH_SLANG now implies
devel/libslang2.
20080905:
AUTHOR: hrs@FreeBSD.org
* print/ghostscript-* and related ports have been renamed in the
following way:
print/ghostscript-gnu -> print/ghostscript7
print/ghostscript-gnu-nox11 -> print/ghostscript7-nox11
print/ghostscript-gnu-commfont -> print/ghostscript7-commfont
print/ghostscript-gpl -> print/ghostscript8
print/ghostscript-gpl-nox11 -> print/ghostscript8-nox11
japanese/ghostscript-gnu-jpnfont -> print/ghostscript7-jpnfont
korean/ghostscript-gnu-korfont -> print/ghostscript7-korfont
* USE_GHOSTSCRIPT now supports a version number which the port
requires. The valid value is "7" or "8". If other value is
specified, value of WITH_GHOSTSCRIPT_VER is used.
* WITH_GHOSTSCRIPT_GNU has been removed in favor of
WITH_GHOSTSCRIPT_VER. The valid value of WITH_GHOSTSCRIPT_VER is
"7" or "8", and the default value is "8".
20080821:
AUTHOR: rafan@FreeBSD.org
* CONFIGURE_ARGS is updated to use correct syntax for newer autoconf
on the configure target. Individual ports no longer need to change
CONFIGURE_TARGET to have the '--build=' prefix.
20080721:
AUTHOR: pav@FreeBSD.org
* Default OpenLDAP version was changed from 2.3 to 2.4.
* USE_GTK and USE_XPM variables are no longer recognized.
20080523:
AUTHOR: flz@FreeBSD.org
* By default, ports-mgmt/pkg_install now sets up a wrapper to use ports
pkg_install (when installed) instead of base when the former is more
recent. This can be disabled in the options menu, or with the
WITHOUT_WRAPPER knob.
20080414:
AUTHOR: pav@FreeBSD.org
* @rmtry is now supported in pkg-plist.
* USE_DISPLAY made more powerful, see comments in bsd.port.mk for details.
* ${PW} is now defined.
* LIB_DEPENDS can now be used with libraries with + sign in their name
without the need for escaping.
20080312:
AUTHOR: pav@FreeBSD.org
* USE_XPM no longer implies USE_XLIB.
* USE_LDCONFIG can now be used to Linux binary ports that install shared
libraries instead of INSTALLS_SHLIB.
20070908:
AUTHOR: gabor@FreeBSD.org, linimon@FreeBSD.org
* The Perl-related code parts have been extracted from bsd.port.mk to
bsd.perl.mk. This includes the user-settable knobs (e.g. USE_PERL5)
and infrastructure parts of the code, like default targets. The new
code is designed to be conditionally included based on either
USE_PERL5_*, PERL_CONFIGURE, or PERL_MODBUILD being set. However,
some of the default settings remain in bsd.port.mk while we make
sure that all ports comply with this.
* A convenient version handling has been implemented for Perl-related
knobs. With this new feature one can require a minimal, a maximal or an
exact version, that the given port needs. For the full description and
some examples, please see the documentation in bsd.perl.mk.
20070804:
AUTHOR: gabor@FreeBSD.org
The following functional changes were made to bsd.*.mk and to
Tools/scripts/security-check.awk:
* The variable definitions that cover command line tools, e.g. MKDIR, were
extracted from bsd.port.mk into bsd.commands.mk, so that we can
reuse them within the infrastructure later.
* The old DESTDIR implementation was removed both from the infrastructure,
and from the individual ports. Variables like TARGETDIR should not longer
be used.
* A new DESTDIR implementation has been added, implemented in bsd.destdir.mk.
The new implementation puts no requirements on the individual ports.
20070730:
AUTHOR: python@FreeBSD.org
* The default Python version has been changed from 2.4.x to 2.5.x.
* A number of variables have been added to bsd.python.mk to support
the more integrated support for Python eggs, including:
PYDISTUTILS_PKGNAME, PYDISTUTILS_PKGVERSION, PYEASYINSTALL_EGG,
PYDISTUTILS_NOEGGINFO, PYDISTUTILS_EGGINFO, PYEASYINSTALL_ARCHDEP
* More detailed descriptions of the variables can be found in the comments
in bsd.python.mk.
20070723:
AUTHOR: rafan@FreeBSD.org
* The default CONFIGURE_ARGS when GNU_CONFIGURE is set now contains
--mandir and --infodir if configure script supports them.
20070712:
AUTHOR: maho@FreeBSD.org
* Add knob USE_FORTRAN for ports which uses FORTRAN. All ports uses
FORTRAN compiler should use this knob. Usages are: USE_FORTRAN=yes
(default;gfortran42), USE_FORTRAN=ifc (Intel FORTRAN compiler)
and USE_FORTRAN=g77 (/usr/bin/f77 or g77-34).
20070701:
AUTHOR: portmgr@FreeBSD.org
The following change was made to the ports infrastructure:
* Virtual category 'kld' was added. If the port installs kernel loadable
modules, it should be included in this category.
20070524:
AUTHOR: portmgr@FreeBSD.org
The following changes were made to the ports infrastructure:
* The 'make-deinstall-all' target now checks for moved ports.
* The installation directories PORTEXAMPLES and PORTDATA are now defined.
* The USE_MAKESELF knob is added for ports that use the makeself archiver.
* The description of fetch-list was updated. The targets fetch-required-list,
fetch-url-list, and fetch-urlall-list were added.
* 'make search' will also now search in ports/MOVED.
* The default method for 'make update' is now portsnap. Previously,
you had to manually select one of 3 methods: SUP_UPDATE, CVS_UPDATE,
or PORTSNAP_UPDATE. The latter is now obsolete.
* Several Makevar definitions have been moved to the pre-makefile section:
DATADIR, DOCSDIR, ETCDIR, EXAMPLESDIR, WWWDIR.
20070403:
AUTHOR: portmgr@FreeBSD.org
The following changes were made to the ports infrastructure:
* The default dependency of USE_GHOSTSCRIPT has been changed from
ghostscript-gnu to ghostscript-gpl. The WITH_GHOSTSCRIPT_GPL variable is
now no-op. New WITH_GHOSTSCRIPT_GNU variable was added.
* bsd.tcl.mk was overhauled. Most importantly, the semantics of USE_TCL* and
USE_TK* variables was changed. USE_TCL and USE_TK now implies both build
and run dependencies, USE_TCL_RUN and USE_TK_BUILD variables were
introduced. Existing ports in the tree were modified.
* Unused category 'tcl81' was removed, and new categories 'tcl' and 'tk'
were added.
20070324:
AUTHOR: portmgr@FreeBSD.org
The following changes were made to the ports infrastructure:
* Default LIBTOOLFILES value was changed from literal `configure'
to ${CONFIGURE_SCRIPT}.
* bsd.efl.mk was moved to ports/Mk. USE_EFL family of macros is now
generally available to all ports.
* New macros COPYTREE_BIN and COPYTREE_SHARE were added, to allow
for easy installation of a tree hierarchy, either with executable (bin)
or read-only (share) permissions on files.
* A new variable WWWDIR was added, with default value of
${PREFIX}/www/${PORTNAME}.
* Variables DOCSDIR_REL, DATADIR_REL, EXAMPLESDIR_REL and WWWDIR_REL were
added for porter's convenience. They contain the values of their
respective non-REL variables, except relative to installation PREFIX.
20070313:
AUTHOR: portmgr@FreeBSD.org
The following changes were made to the ports infrastructure:
* bsd.ocaml.mk and bsd.xfce.mk were added.
* The FETCH_CMD was refactored so that ports can override the command,
the arguments, or both.
20070306:
AUTHOR: portmgr@FreeBSD.org
The following changes were made to the ports infrastructure:
* The remaining vestiges of FreeBSD 4.X support were removed. Any
remaining users of 4.X should have stayed with the RELEASE_4_EOL tag.
* It is now possible to include USE_PHP after bsd.port.pre.mk.
* 'make search' should now work with non-default ${PORTSDIR}.
20070130:
AUTHOR: portmgr@FreeBSD.org
The following changes were made to the ports infrastructure:
* DEPENDS variable was removed, please use other *_DEPENDS variables instead.
* A new pkg-plist keyword is available, @stopdaemon. It will call forcestop
on all rc.subr scripts installed by the port on deinstall, effectively
stopping services on deinstall/upgrade.
* rc.subr script suffix is now available in Makefile as RC_SUBR_SUFFIX.
* New variable USE_CDRTOOLS was introduced. It replaced direct dependencies
on sysutils/cdrtools port. It now automatically support switching to
cdrtools-cjk port when user specified WITH_CJK. All ports were converted.
* USE_DOS2UNIX, infrastructure for converting DOS to UNIX line feeds, was
enhanced by a new variable DOS2UNIX_REGEX. It allows to specify a find
-iregex parameter to limit touched files by file extensions.
* Support for partially translated manpages was added. For examples of
usage, please refer to Porter's Handbook.
* USE_TCL/USE_TK variables were changed to provide runtime dependency. New
variables USE_TCL_BUILD and USE_TK_BUILD were added. All unintuitive
quirks of these variables were fixed.
* USE_LDCONFIG was fixed to work properly for ports, that specify @cwd in the
pkg-plists.
* Old bsd.java.mk version 1.0 macros were removed.
* New category: ports-mgmt
* New virtual category: gnustep
* Unused 'picobsd' category was removed.
20070118:
AUTHOR: maho@FreeBSD.org
We'd like to ask all ports maintainers, who are using Fortran77 (f77 in base),
to switch to Fortran90/95 (gfortran42, lang/gcc42). Please refer to
http://people.freebsd.org/~maho/gfortran/gfortran.html
for details.
20061014:
AUTHOR: gnome@FreeBSD.org
The following changes have been introduced to the GNOME porting process
during the GNOME 2.16 update:
* GNOME is now installed into LOCALBASE. Any port which makes use of the
gnomeprefix component will have its PREFIX forced to LOCALBASE
20060930:
AUTHOR: portmgr@FreeBSD.org
The following functional changes were made to bsd.port.mk:
* The bsd.port.mk pre and post includes have been split into 3 pieces
instead of 2, to allow OPTIONS to be able to influence dependencies.
This is still experimental and not yet enabled by any port. This adds
the file 'bsd.port.options.mk'.
* bsd.gcc.mk has been updated to understand gfortran.
* emulators/linux_base is now removed. linux_base-fc4 has been the default
for some time.
* The USE_FIREBIRD macro was added to bsd.database.mk.
20060914:
AUTHOR: portmgr@FreeBSD.org
The following functional changes were made to bsd.port.mk:
* PKGVERSION was introduced as an intermediate variable refactored out of
PKGNAME.
* bsd.lua.mk was added to support lua-related ports.
* DESTDIR was removed from bsd.scons.mk because it was problematic.
* Some quotes were added to the 'missing' target to improve handling of
duplicate origins.
20060903:
AUTHOR: sat@FreeBSD.org
The following functional changes were made to bsd.sites.mk:
* MASTER_SITES variable can now look like MACRO1/subdir1 MACRO2/subdir2, and
be expanded in a way that you expect it to, that is apply different subdirs
to different sites. You can safely replace ${M_S_FOO:S/%SUBDIR%/bar/} with
FOO/bar.
* If M_S_SUBDIR is unset, a macro in M_S won't set it anymore, but rather
substitute %SUBDIR% all by itself. Now it's possible to use macros with
different default subdirs and they will expand in a proper way.
20060805:
AUTHOR: sat@FreeBSD.org
The following functional changes were made to bsd.sites.mk:
* MASTER_SITES variable can now contain special macros which are expanded into
traditional URL[:group] syntax and cause some convenient effects, e.g. set a
default M_S_SUBDIR.
* A macro is any space-delimited word in MASTER_SITES without a forward slash.
* If MASTER_SITE_<macro> is defined, then the macro is expanded to its value.
* Abbreviated macros are provided for extremely popular locations, e.g. CPAN
and SF. To avoid further obfuscation their unabbreviated equivalents should
be avoided.
* Popular macros can trigger M_S_SUBDIR to default to a predefined value, e.g.
${PORTNAME:L} for SF and ${PORTNAME:C/-.*//} for CPAN.
* Abbreviations and M_S_SUBDIR defaults are defined by MASTER_SITES_ABBREVS
and MASTER_SITES_SUBDIRS, both set in bsd.sites.mk.
* If a macro belongs to a group (e.g. SF:source1), all the sites it expands
into also belong to the same group.
* Macros and traditional URL's can be mixed safely, their order stays intact.
20060804:
AUTHOR: gabor@FreeBSD.org
The following functional changes were made to bsd.*.mk and to
Tools/scripts/security-check.awk:
* Add DESTDIR support to let one install ports into a jail from outside.
A package is installed under ${DESTDIR}${PREFIX} now and registered under
${DESTDIR}/var/db/pkg.
* TARGETDIR variable has been added for referencing ${DESTDIR}${PREFIX}.
* LOCALBASE, LINUXBASE and X11BASE variables point to the final destination
now, LOCALBASE_REL, LINUXBASE_REL and X11BASE_REL can be used for the
old behavior. The behavior has not been changed in PLIST_SUB.
Note, that the three variables are still overridable with a hack, so this
change doesn't affect POLA, but necessary for DESTDIR support.
* OSVERSION is now determined from the userland, not from the kernel.
Cross-compiling between releases is still not supported, but this
behavior is more correct for jails with differing userland from
the kernel version.
* Add some sanity check for PREFIX and DESTDIR. This can be skipped by
defining IGNORE_PATH_CHECKS, but very discouraged.
* Deinstalling from DESTDIR, determining if a port is already installed in
DESTDIR, etc. are implemented by chrooting those specific commands.
* Text changes to reflect that we are installing to DESTDIR, removing from
DESTDIR, etc.
Note, that this change implements only the infrastructure support. Ports should
also be implemented to respect DESTDIR.
20060717:
AUTHOR: portmgr@FreeBSD.org
The following functional changes were made to bsd.port.mk:
* Introduces IA32_BINARY_PORT for certain cases where a given port fetches
and installs compiled i386 binaries.
* Adds some infrastructure for support of 32-bit i386 apps on amd64.
* Again fix USE_LDCONFIG logic to make it work with non-default PREFIX to
fix bug introduced in previous revision.
20060705:
AUTHOR: portmgr@FreeBSD.org
The following functional changes were made to bsd.port.mk:
* Change all bogus uses of BROKEN to IGNORE. (Note: the BROKEN_WITH_*
forms are retained for compatibility but deprecated.) Internally,
these variables all had already set IGNORE, not BROKEN, so they
were really misnomers.
* Fix USE_LDCONFIG with non-default PREFIX.
* Fix DESKTOP_ENTRIES processing on 4.x.
* Add 'make missing' to show missing dependencies.
* Add bsd.scons.mk and bsd.wx.mk.
20060616:
AUTHOR: portmgr@FreeBSD.org
The patch in ports/95841 to get rid of remnants of FORCE_PKG_REGISTER
was backed out because it broke kdelibs3*.
20060616:
AUTHOR: portmgr@FreeBSD.org
The following functional changes were made to bsd.port.mk:
* Update default MySQL version from 4.1 to 5.0 [1]
* Update default PHP version from 4 to 5 [2]
* Update default LDAP version from 2.2 to 2.3 [3]
* Add support for LDAP version 2.4 [4]
* Update default linux_base from '8' (Redhat 8) to 'fc4' (Fedora Core 4) [5]
* Switch default Linux X implementation from XFree86 to X.org to track the
above [5]
* Deprecate INSTALLS_SHLIB and replace it by USE_LDCONFIG. If set to "yes",
the old behavior is preserved. Otherwise, it can be set to a list of
directories to be added to ${PREFIX}/libdata/ldconfig/${UNIQUENAME}.
Note that this directory is used by ldconfig startup script, it is meant
to replace ldconfig scripts installed by some ports as (sometimes
000.${UNQUENAME}.sh) [6]
* Adds USE_LDCONFIG32 which is like USE_LDCONFIG but the target file is
${PREFIX}/libdata/ldconfig32/${UNIQUENAME} instead. (Note: this should
only be used on 64-bit architectures) [6]
* Set the default LANG for tr to be C to avoid some build problems [7]
* Include bsd.java.mk in both pre and post sections [8]
* Get rid of remnants of FORCE_PKG_REGISTER [9]
* Always print options with make showconfig [10]
PR: 92805 [1], 92806 [2], 96793 [3], 97515 [4], 96849 [5],
91933 [6], 91381 [7], 97020 [8], 95841 [9], 97133 [10]
20060523:
AUTHOR: portmgr@FreeBSD.org
The following functional changes were made to bsd.port.mk:
* include bsd.emacs.mk only when USE_EMACS is set [5]
* Correct the implementation of pretty-print-run-depends-list [8]
* Use a consistent name for the cookies file when PKGNAMEPREFIX/SUFFIX
are set after bsd.port.pre.mk. [9]
* Include bsd.tcl.mk if USE_TCL_BUILD is defined [10]
* Set PERL_MM_USE_DEFAULT in BATCH mode [11]
* Add the {ONLY,NOT}_FOR_ARCH_REASON and
{ONLY,NOT}_FOR_ARCH_REASON_${ARCH} variables to allow better
customization of the error string reported to users when they
attempt a build on an unsupported architecture. [12]
* Avoid errors from duplicated targets when parsing MLINKS on ports
without a default value set. [13]
* Fix handling of MLINKS when invalid entries are listed [14]
* Enforce sanity of DESKTOP_ENTRIES. If the Categories field is
omitted, try to map ports categories to their freedesktop.org
counterpart [15]
PR: 95238 [5], 94164 [8], 94219 [9], 92355 [10],
95579 [11], 94675 [12], 66109 [13], 66110 [14], 95603 [15]
20060121:
AUTHOR: portmgr@FreeBSD.org
The following changes affecting ports developers were introduced:
* Gamin is a default FAM system
* New virtual categories: hamradio and rubygems
* Virtual category 'offix' was removed
* New USE_DOS2UNIX variable for converting DOS linefeeds to UNIX
* Variables like BROKEN and FORBIDDEN should no longer be quoted
* New NOFETCHFILES variable to prevent downloading from MASTER_SITES
while still allowing MASTER_SITE_OVERRIDE
* New plist macro @dirrmtry with functionality of @unexec rmdir || true
* USE_REINPLACE no longer needs to be defined, REINPLACE_CMD is always
available
Detailed documentation of new features is available in Porter's Handbook.
20051108:
AUTHOR: portmgr@FreeBSD.org
The following changes were introduced:
* Add bsd.database.mk
- move out from bsd.port.mk USE_MYSQL and USE_PGSQL.
- add support for Berkeley DB and SQLite (via USE_BDB and USE_SQLITE
knobs).
* Escape '+' in make search
* Add "makepatch" target to simplify creation of patches during porting
* Replace deprecated MACHINE_ARCH with ARCH
* Remove support of OpenLDAP 2.1
* Add bsd.tcl.mk
It introduces USE_TCL/USE_TCL_BUILD knobs to support various
version of tcl (8.0 -> 8.4)
* Fix cosmetic bugs in security-check target
* Add support for INDEX-7 and above (up to INDEX-9 actually)
* Add "package-recursive" to bsd.port.subdir.mk
* Remove check for FreeBSD version < 460101
* New category: net-im
* Add .desktop file facilities
It introduces DESKTOPDIR and DESKTOP_ENTRIES knobs
* Add SHA256 support to "*checksum" targets
* Fix USE_PYTHON with OPTIONS
* Force NO_LINT to MAKE_ENV to avoid library breaks
* Fix typo: s/RC_ORDER/USE_RCORDER/g
* Add support for PostgreSQL 8.1
* Add bsd.apache.mk
USE_APACHE knob enhancements
20051105:
AUTHOR: gnome@FreeBSD.org
GNOME has been upgraded from 2.10.2 to 2.12.1. This update brings with
it many important porting changes:
- gtk20's pkg-config file no longer contains the X11 pango modules.
Therefore, if your port requires these modules, you may have to
manually patch them in to your port's Makefiles. Contact
gnome@FreeBSD.org if you have questions on this.
- A new USE_GNOME component, ltverhack, has been added. This
pseudo-component hacks libtool so that shared library versions are
more consistent with other operating systems. Using this component
can prevent unnecessary shared library version changes.
- A new macro, INSTALLS_ICONS, has been added. If your port installs
Freedesktop-style icons to ${LOCALBASE}/share/icons or
${X11BASE}/share/icons, then you should use this macro. NOTE:
use of this macro requires your port to set either USE_GNOME or
WANT_GNOME.
20050618:
AUTHOR: netchild@FreeBSD.org
- USE_LINUX now implies NO_FILTER_SHLIBS=yes. It also doesn't use FreeBSD
tools to strip binaries anymore, so it's not necessary anymore to override
STRIP and STRIP_CMD.
- USE_LINUX_PREFIX implies NO_MTREE now.
- In the USE_LINUX case, USE_XLIB now depends upon the Linux X11 libraries
instead upon the native FreeBSD libraries.
- The variable LINUX_BASE_PORT contains a string which is suitable as an
item in *_DEPENDS, so if a port BATCH_DEPENDS or FETCH_DEPENDS upon the
default (or overridden) Linux base, ${LINUX_BASE_PORT} should be used
instead of a hardcoded reference.
- If USE_LINUX or OVERRIDE_LINUX_BASE doesn't point to an existing linux_base
port and if USE_LINUX isn't set to "yes" (case insensitive), the port will
be marked as IGNORE.
20050609:
AUTHOR: portmgr@FreeBSD.org
The following changes were introduced:
* Improve documentation of CONFLICTS.
* Fix add-plist-docs target to work correctly with wildcards.
* Fix USE_MYSQL and USE_PGSQL knobs to work in partial ports
tree.
* Introduce 2 new variables: USE_FAM and WANT_FAM_SYSTEM.
* Suppress "Vulnerability check disabled" message if
DISABLE_VULNERABILITIES is defined.
* Switch default MySQL version to 4.1
* Add support for OpenLDAP v.23
* Fix add-plist-info and add-plist-post targets to avoid warnings
from ports which redefine them.
* Fix add-plist-docs target to handle NOPORTDOCS knob properly.
* Use INSTALLDIRS="site" in configure for perl ports.
* Fix NO_(CHECKSUM|BUILD|INSTALL|PACKAGE) knobs if OPTIONS are
defined.
* Add an ability to depend on versioned installed package.
Example:
BUILD_DEPENDS=p5-Tree-Simple>=1.12:${PORTSDIR}/devel/p5-Tree-Simple
Please note, it's experimental feature, work is currently in
progress.
20050325:
AUTHOR: jdp@FreeBSD.org
The CVSup port has been upgraded with a patch to correct the
handling of the "refuse" file for files that are in the CVS Attic.
This solves a problem some people were having, where CVSup would
delete their ports/INDEX* files even though the files were listed
in the "refuse" file. The bug fix is in the cvsupd server, so
mirror sites must upgrade their servers in order for this fix to
help. Meanwhile, adding "ports/Attic/INDEX*" to the refuse file
serves as a work-around.
20050321:
AUTHOR: kwm@FreeBSD.org
The gstreamer-plugins gconf dependency moved to its own port in devel.
When your application needs gstreamer-plug-gconf, just add
USE_GSTREAMER=gconf to you Makefile
20050319:
AUTHOR: gnome@FreeBSD.org
New GNOME components have been added to bsd.gnome.mk. See
http://www.FreeBSD.org/gnome/docs/gnome2_porting.html for the complete
list of available GNOME 2 components.
Py-gnome2 lost many of its GNOME dependencies to a new port,
py-gnome-extras. Therefore, ports that used to depend on
the pygnome2 component for modules such as gtkhtml2, gnomepanel, etc.
should replace the pygnome2 dependency with pygnomeextras.
20050314:
AUTHOR: edwin@FreeBSD.org
New variable for in /etc/make.conf: IGNORE_MASTER_SITE_xxx
If you prefer a certain mastersite for a collection of master-sites,
set this in your /etc/make.conf:
MASTER_SITE_xxx=http://z.x.y/%SUBDIR%/
If you insist on only using the ones you specify, set this in
your /etc/make.conf:
IGNORE_MASTER_SITE_xxx=yes
MASTER_SITE_xxx=http://z.x.y/%SUBDIR%/
Use "make -V MASTER_SITES" to see the differences.
20050313:
AUTHOR: ahze@FreeBSD.org, kwm@FreeBSD.org
The following changes were committed:
* USE_GNOME=gstreamerplugins has been deprecated.
The new method which uses bsd.gstreamer.mk is:
USE_GSTREAMER=plugin-name
Example:
USE_GSTREAMER= dvd
or
WANT_GSTREAMER= yes
.include <bsd.port.pre.mk>
.if defined(WITH_DVD)
USE_GSTREAMER= dvd
.endif
* misc/gnomehier now creates a mtree file and each port
using USE_GNOME=gnomehier or gnomeprefix now use the
BSD.gnome-x11.dist mtree file to help "keep" directories
and not accidentally add gnome directories to a port.
20050207:
AUTHOR: portmgr@FreeBSD.org
The following changes were committed:
* Change bento to pointyhat names in comments.
* Document DISABLE_VULNERABILITIES variable.
* Add WWW: line for 'search' target.
* Speedup check-vulnerable invocation, if portaudit is installed.
* Run install-info for all .info files.
* Run add-plist-docs more strictly and prevent some situations
with leftover files in the future.
* Introduce two new variables: MASTER_PORT and SLAVE_PORT.
The results from these variables is only used as information for
users.
* Honor OPTIONS if PACKAGE_BUILDING or BATCH are defined.
* Move all USE_GCC entries to new file - bsd.gcc.mk. 'test-gcc'
target allows users to check gcc version if USE_GCC is used.
Give maintainers opportunity to add '+' character to USE_GCC version
for using specified and higher versions.
Example:
USE_GCC=3.3+
builds ports with gcc version 3.3 and higher (3.4, 4.0).
* Install startup scripts with the help of USE_RC_SUBR variable.
* Add three new targets: config-recursive, rmconfig-recursive and
config-conditional. You can set or delete OPTIONS for all
dependencies before every build. config-conditional target is
used to skip configuring ports which have already been
configured.
* Fix using of WANT_PGSQL_VER variable if PostgreSQL is already
installed.
20041231:
AUTHOR: netchild@FreeBSD.org
USE_LINUX_PREFIX doesn't implies USE_LINUX anymore.
20041209:
AUTHOR: portmgr@FreeBSD.org
The following changes were committed:
* Define new macros: DATE, FMT, MKTEMP, OBJDUMP, and use
command macro SORT.
* Change layout of comments to 4 column tabs, remove lots
of spaces and eight-column-tabs.
* Introduce 2 new variables: SUB_FILES and SUB_LIST:
Example:
SUB_FILES= pkg-message pkg-install
SUB_LIST+= "VERSION=${VERSION}"
This looks for ${FILESDIR}/pkg-message.in and ${FILESDIR}/pkg-install.in
Substitutions in SUB_LIST are applied to these files and the
output is redirected to ${WRKDIR}.
PKGMESSAGE will be set to ${WRKDIR}/pkg-message.
PKGINSTALL will be set to ${WRKDIR}/pkg-install.
* Document DEPRECATED and EXPIRATION_DATE variables.
* Sanitize the intermittent output by the build infrastructure
so that cutting and pasting from it no longer interferes
with GNATS-tags.
* Honor configure arguments for USE_XLIB if USE/WITH_LIBTOOL_ is
used.
* Properly document 'describe' target.
* Properly remove directories at deinstallation time if ports sets
a non-standard PREFIX.
* Defaults INDEXFILE to INDEX-6 on 6-CURRENT.
20041119:
AUTHOR: portmgr@FreeBSD.org
The following changes were committed:
* Fix INDEX build if MAINTAINER is not defined.
* Remove USE_QT2 option, since qt2 is obsolete.
* Better define and explain ARCH option.
* Add new script Tools/make_readmes, to speedup 'readmes'
target. Avoid recursing into individual port directories and run
it at top level, after the category README.html files have been
created.
* Fix 'search' target and enable a case-insensitive search on 5-x.
* Extend 'search' target and enable search by categories.
* Remove 'tk42' and 'tcl76' categories since they're obsolete.
* Introduce DISTVERSION variable, that can be set instead of
PORTVERSION and is automatically converted in a conforming PORTVERSION.
Example:
DISTVERSION= 10Alpha3
extends 10Alpha3 to 10.a3
DISTVERSION= 3Beta7-pre2
extends 3Beta7-pre2 to 3.b7.p2
* Use --suffix option instead of -b for patch(1), to make it
compatible with BSD patch(1).
* Fix {WANT,WITH}_MYSQL_VER behavior, to deal with conflicting
versions.
20041116:
AUTHOR: gnome@FreeBSD.org
The way OMF files are handled has been changed to use the new INSTALLS_OMF
macro (similar to INSTALLS_SHLIB). Details about the new macro can be found
at http://www.FreeBSD.org/gnome/docs/porting.html and bsd.gnome.mk.
20041113:
AUTHOR: portmgr@FreeBSD.org
Since INDEX version in CVS is always too old, portmgr decided to
remove it. You will still be able to build your own INDEX or use
'fetchindex' target in /usr/ports/.
20041109:
AUTHOR: gnome@FreeBSD.org
The way GConf schema files are handled has been changed to use the new
GCONF_SCHEMAS macro (similar to MAN). Details about the new macro can be
found at http://www.FreeBSD.org/gnome/docs/porting.html and bsd.gnome.mk.
20040803:
AUTHOR: ade@FreeBSD.org
As part of the ongoing autotools cleanup, devel/autoconf has been
replaced with devel/autoconf253, and devel/automake with devel/automake15.
Consumers of the various autotools knobs from bsd.autotools.mk should not
notice any differences. This update completes the transition of autotools
to true versioned packages (cf: tcl/tk)
20040723:
AUTHOR: anholt@FreeBSD.org
The XFREE86_VERSION variable is replaced by the X_WINDOW_SYSTEM variable.
XFREE86_VERSION may no longer be used by ports Makefiles. X_WINDOW_SYSTEM may
currently be set to xorg, xfree86-4, and xfree86-3 (please use :L in checking
it). Several X_*_PORT variables are provided by bsd.port.mk which map to the
appropriate port for the X_WINDOW_SYSTEM chosen.
20040719:
AUTHOR: ale@FreeBSD.org
There has been a big update to PHP ports and bsd.php.mk to add more
flexibility and new features.
Now a port may depend on a specific set of PHP extensions. To do so,
simply replace:
USE_PHP= yes
with:
USE_PHP= ext1 ext2 ext3 ...
in the port Makefile. A list of all PHP extensions is included in bsd.php.mk.
If the requirement is a build dependency too, the port should also define:
USE_PHP_BUILD=yes
Moreover, the new knob WANT_PHP_SCR has been added to indicate that the port
requires the 'php' binary to run.
Last but not least, many common operations to build/install/register a
PHP extension can now be omitted from the port Makefile if it defines:
USE_PHPEXT= yes
For more information on this point and on additional variables, see
bsd.php.mk.
20040717:
AUTHOR: eik@FreeBSD.org
OpenLDAP version 2.2 is now the default.
When your port links against the openldap client libraries use
USE_OPENLDAP= yes
and do not depend on a particular version. A user (or package
building cluster) can select the desired flavor with
WANT_OPENLDAP_VER and WANT_OPENLDAP_SASL, but these must not
be used in ports Makefiles.
20040709:
AUTHOR: portmgr@FreeBSD.org
USE_LIBTOOL_VER now configures a port to use the ports version of libtool
instead of its included version. This was put in place to reduce the
number of ad hoc patches to individual ports' libtools to prevent .la
file installation as well as fix various threading problems.
To restore the previous libtool behavior, use the new macro,
USE_INC_LIBTOOL_VER. It works the exact same way as USE_LIBTOOL_VER
in that it takes a libtool version as its argument.
For example, to use the included version of libtool with extra hacks
provided by libtool-1.5, add the following to your Makefile:
USE_INC_LIBTOOL_VER= 15
To use the ports version of libtool-1.5, add the following to
your Makefile:
USE_LIBTOOL_VER= 15
Note: these macros are mutually exclusive. Your port should only include
one or the other if it needs to make use of libtool.
20040707:
AUTHOR: gnome@FreeBSD.org
The way GConf schema files are installed has changed to support the upcoming
GNOME 2.8 GConf. Details about the change can be found at
http://www.FreeBSD.org/gnome/docs/porting.html. All existing ports have
been converted to the new style, and portlint has been updated to flag
old-style GConf schema installation.
20040610:
AUTHOR: portmgr@FreeBSD.org
The following behavioral or feature changes were committed:
* Support verbose index builds with INDEX_VERBOSE
* Support glob expressions in USE_GETTEXT to allow more flexibility
in the face of future gratuitous library version bumps by the gettext
developers:
USE_GETTEXT=yEs # Works as before (case-insensitive)
USE_GETTEXT=[5-7] # Accepts any of those libintl.so.x versions
# in the LIB_DEPENDS
* Extend 'make search' support to allow much more flexible searching
From the PR:
Besides the good old key and name variables, this patch adds
support for path, info, maint, cat, bdeps, and rdeps, which match
on the appropriate fields, plus their exclusion counterparts: xkey,
xname, etc.
Examples:
Find all ports whose names contain "pear-" but not "html" or "http":
make search name=pear- xname='ht(tp|ml)'
Find ports whose names contain "pear-" and which don't have apache
listed in build-time dependencies:
make search name=pear- xbdeps=apache
The positive variables (name, key, maint, etc) are AND-ed, their
negative versions are OR-ed; in other words, matching any x-
variable will cause the port to be skipped, mismatch on any non-x-
variable will cause it to be skipped.
Examples:
Find ports that are both in the 'www' category and maintained by
Thierry Thomas:
make search maint=thierry@ path=/www/
Find ports in the 'archivers' category that are either not orphaned
or don't have "zip" in their names (contrived):
make search cat=archivers xmaint=ports@freebsd xname=zip
It is possible to select fields to display.
Example:
Find PEAR ports that don't build-depend on apache, displaying only
Port:, Path:, and Info: lines:
make search name=pear- xbdeps=apache display=name,path,info
Case-sensitivity can now be turned of with icase=1.
Example:
Find ports with @freebsd.org maintainer addresses without the
"proper" capitalization (@FreeBSD.org), display their paths and
maintainer addresses:
make search maint=@freebsd\\.org icase=0 display=maint,path
The key and xkey variables can be limited in scope to displayed fields
by setting keylim to 1.
Example:
Find ports that contain "apache" in either of the name, path, info
fields, ignore the rest of the record (dependencies, maintainer
address, etc):
make search key=apache display=name,path,info keylim=1
The following variables can be set e.g. in /etc/make.conf to
control default search behavior:
PORTSEARCH_DISPLAY_FIELDS?=name,path,info,maint,index,bdeps,rdeps
PORTSEARCH_KEYLIM?=0
PORTSEARCH_XKEYLIM?=0
PORTSEARCH_IGNORECASE?=1
* Extend USE_PERL5_BUILD and USE_PERL5 to add EXTRACT and PATCH
dependencies
* While building index, treat non-existent dependencies as fatal.
Previously the error was being hidden by the stderr
redirection.
* Don't always retry BROKEN ports when package building (it is taking
too much time to continually rebuild ports that are usually going
to really be broken). Set TRYBROKEN if you want to attempt a
build of a BROKEN port.
20040604:
AUTHOR: ade@FreeBSD.org
Over the past few weeks, we have been testing the next
incarnation of ports/Mk/bsd.autotools.mk on the road to bringing
at least some semblance of sanity back to this corner of the
ports collection.
By far and away the easiest way to see the changes will be to
view the new file once committed, but here is a summary of the
changes:
1. USE_LIBTOOL, USE_AUTOCONF, USE_AUTOHEADER, USE_AUTOMAKE have
been fully deprecated. Ports attempting to use these variables
after the commit will error out, and most obviously break INDEX
generation, with a helpful error message. Instead, ports must
now specifically choose the version of any of these tools that
they need with the corresponding USE_*_VER variables. Note that
these variables understand any and all versions of autotools ports
in the tree, there is no longer a need to have specific version
numbers hardcoded in the infrastructure of bsd.autotools.mk
(as there is now). In particular, this will immediately open up
automake18 and autoconf259 for general use and beating.
2. Similarly for WANT_LIBTOOL, WANT_AUTOCONF, and WANT_AUTOMAKE.
Again, these have been fully deprecated, and the equivalent
WANT_*_VER versions should be used.
In order to preserve existing behavior for these variables, please
note the 20040314 entry in ports/CHANGES for the appropriate
version numbers to use for any ports in the GNATS queue.
Both WANT_* and USE_* bring in the relevant tool as a build
dependency, and set up a reasonably large number of variables
pointing to the right programs to be using in the port. The
only difference at the moment, is that USE_* will run an extra
autotools-related configuration step, whereas WANT_* merely
requests the environment.
3. The helper knob USE_LIBLTDL has been added which currently
simply adds a LIB dependency on the libltdl port.
4. Three new variables have been introduced,
WANT_{LIBTOOL,AUTOCONF,AUTOMAKE}_RUN=yes. These variables will
do nothing by themselves (a Work-In-Progress), but if the
appropriate autotool version is defined (either through
WANT_*_VER or USE_*_VER), this will add the relevant dependency
to RUN_DEPENDS.
Steps 3 and 4 now essentially negate the need for any kind of
direct dependency within a non-autotools port Makefile on
devel/autoconf*, devel/automake*, devel/libtool*, and devel/libltdl.
20040416:
AUTHOR: java@FreeBSD.org
There has been a couple of bsd.java.mk tweaks and fixes.
. Features from Stage 2 has been removed. A port can no
longer use the JDK dependency features by setting JAVA_HOME.
Use JAVA_PREFERRED_PORT instead (see below).
. The default JDK port now depends on OS version:
java/diablo-jdk13 for 4.x, and java/jdk14 for 5.x
. It is now possible for the user (and the porters) to
define a list of preferred JDK ports to build and run ports.
The port will use the first JDK port from the list that
matches the requirements specified in the Makefile.
JAVA_PREFERRED_PORT contains a list of suitable JDK ports
(sorted by preference). Names for JDKs may be found in
bsd.java.mk, listed in ${_JAVA_PORTS_ALL} (e.g.
"JAVA_PORT_NATIVE_BSDJAVA_1_4").
. JAVA_PORT_VERSION is now set to the full version number
of the chosen JDK (e.g. "1.4.2"). Porters will find hints
regarding how to obtain the same behavior as before in the
header of bsd.java.mk.
20040414:
AUTHOR: gnome@FreeBSD.org
When writing a port that uses GTK+ 2.X, you can now list the dependency
with "USE_GNOME=gtk20" which is preferable to LIB_DEPENDS because the
GTK+ library version only needs to be changed in bsd.gnome.mk.
Please see http://www.FreeBSD.org/gnome/docs/porting.html for all
the available GNOME components as well as detailed instructions on
creating ports that use the GNOME infrastructure.
20040404:
AUTHOR: gnome@FreeBSD.org
The glib20 and gtk20 ports were updated to 2.4.0. This new version
is completely source and binary compatible with the previous 2.2.x
series. However, certain API calls have been deprecated. If your
port defines the following macros, they may refuse to build with
the new versions of glib20 and gtk20:
GTK_DISABLE_DEPRECATED
GDK_DISABLE_DEPRECATED
G_DISABLE_DEPRECATED
The temporary solution is to either patch your port's Makefiles to,
or use an in-place regular expression to remove these macros. The
more permanent solution is to wait until the port's authors update
their code to use current API calls.
20040402:
AUTHOR: java@FreeBSD.org
There has been a big update to bsd.java.mk. However, this update
is mostly backwards compatible, so it shouldn't affect most java
port maintainers. There is some new functionality and minor
changes worth documenting here though.
bsd.java.mk now provides a new set of macros to be used by ports that
require a JDK. When USE_JAVA is set, the following variables may be set
in order to give to precision regarding the requirements of the port:
. JAVA_VERSION
A list of space-separated suitable java versions for the
port. An optional "+" allows you to specify a range of versions.
(allowed values: 1.1[+] 1.2[+] 1.3[+] 1.4[+])
(NOTE: Used to be set by bsd.java.mk)
. JAVA_OS
A list of space-separated suitable JDK port operating systems
for the port. (allowed values: native linux)
(NOTE: Used to be set by bsd.java.mk)
. JAVA_VENDOR
A list of space-separated suitable JDK port vendors for
the port. (allowed values: freebsd bsdjava sun ibm blackdown)
(NOTE: Used to be set by bsd.java.mk)
. JAVA_BUILD
When set, it means that the selected JDK port should be
added to build dependencies for the port.
. JAVA_RUN
This variable works exactly the same as JAVA_BUILD but
regarding run dependencies.
Here are some of the macros defined after setting USE_JAVA:
. JAVA_PORT
The name of the JDK port (e.g. java/jdk14)
. JAVA_HOME
The home of the JDK port in the local base
. JAVA_PORT_VERSION
The version of the JDK port.
(NOTE: Used to be JAVA_VERSION, see above)
. JAVA_PORT_OS
The operating system used by the JDK port.
(NOTE: Used to be JAVA_OS, see above)
. JAVA_PORT_VENDOR
The vendor of the JDK port.
(NOTE: Used to be JAVA_VENDOR, see above)
Plus many macros for the commonly used java executables:
APPLETVIEWER, JAR, JAVA, JAVAC, JAVADOC, JAVAH,
JAVAP, JAVA_KEYTOOL, JAVA_N2A, JAVA_POLICYTOOL,
JAVA_SERIALVER, RMIC, RMID and RMIREGISTRY.
bsd.java.mk 2.0 is mostly backward compatible with the previous
version, save for the notes above and changed internal variables.
Using the new features is strongly encouraged, since the old
bsd.java.mk 1.0 features will be deprecated and may be removed in
the future.
You will find more detailed info (as well as a quick tutorial) at:
http://www.esil.univ-mrs.fr/~hquiroz/freebsd/bsd.java.mk-2.0.html
20040316:
AUTHOR: gnome@FreeBSD.org
The print/freetype2 port has been updated to 2.1.7. This update
changes some of the internal FreeType API. Applications may need
to be patched to support this new API. If a source files includes
freetype/freetype.h, make sure ft2build.h is included before
freetype/freetype.h. The proper way to do this is:
#include <ft2build.h>
#include FT_FREETYPE_H
However, the following will work as well, but is deprecated:
#include <ft2build.h>
#include <freetype/freetype.h>
20040314:
AUTHOR: ade@FreeBSD.org
USE_LIBTOOL, USE_AUTOCONF, and USE_AUTOMAKE are now considered
deprecated, and will be removed on or around June 1st 2004.
All ports should now choose the specific version of the tool,
using USE_LIBTOOL_VER, USE_AUTOCONF_VER, and USE_AUTOMAKE_VER.
The old "system default" behavior can be written as follows:
Old New
USE_LIBTOOL=yes USE_LIBTOOL_VER=13
USE_AUTOCONF=yes USE_AUTOCONF_VER=213
USE_AUTOMAKE=yes USE_AUTOMAKE_VER=14
20040304:
AUTHOR: eik@FreeBSD.org
New variable MASTER_SITE_SOURCEFORGE_EXTENDED. It has the
ten official sourceforge.net download mirrors, whereas
MASTER_SITE_SOURCEFORGE only has five. To check if your
port is mirrored there, go to
<http://prdownloads.sourceforge.net/${MASTER_SITE_SUBDIR}/>
click on ${DISTFILES} and you'll see five or ten mirrors,
corresponding to the variables above.
20040226:
AUTHOR: knu@FreeBSD.org
The default version of Ruby is now 1.8 on all platforms
including the i386.
Users on the i386 platform need to follow the instructions
described in the UPDATING file to cope with this upgrade.
Next time ruby is major upgraded, you won't need to do this
kind of messy work because some subtle changes have been made
to the ruby port infrastructure to make it easier to handle
multiple versions of ruby.
20040217:
AUTHOR: gnome@FreeBSD.org
Mozilla will now default to using GTK2, and will only compile
against Gtk+-1.2 if explicitly requested. This is in exact
opposite to the old behavior.
The valid values of WITH_MOZILLA are now:
mozilla (www/mozilla, GTK2)
mozilla-devel (www/mozilla-devel, GTK2)
mozilla-gtk1 (www/mozilla-gtk1, GTK1)
mozilla-devel-gtk1 (www/mozilla-devel-gtk1, GTK1)
As before, WITH_MOZILLA can be set in /etc/make.conf, but doing
so is not advised unless you desire the development versions.
GTK2 browsers will automatically compile against GTK2 mozilla,
and GTK1 browsers (galeon1, galeon1, and galeon1) will
automatically compile against GTK1.
Again, the only people who will need to take action are those
who desire development versions (which are inactive at this time
anyway). Those who want GTK1 mozilla-devel must set
WITH_MOZILLA=mozilla-devel-gtk1 or they will be pleasantly
surprised with their very own GTK2 installation on the next
update.
WITH_MOZILLA=mozilla-gtk2 and WITH_MOZILLA=mozilla-devel-gtk2
are still honored for the time being, but their use is
now deprecated. Any new ports are not required to consider
their values, and so eventually WITH_MOZILLA _will_ have to
be changed.
Hopefully galeon2 can catch up to peoples' expectations from
galeon1 soon, and we can remove the GTK1 ports altogether.
20040204:
AUTHOR: portmgr@FreeBSD.org
The bsd.php.mk file has been moved out of the lang/php4 port
into the Mk directory. This will make it much easier to include
PHP support in PHP-dependent ports. Instead of including
bsd.php.mk directly, a port can simply set USE_PHP=yes, and the
ports system with Do the Right Thing.
All trailing whitespace has been removed from bsd.port.mk.
Enhance the new OPTIONS code by only including saved options if
the port defines OPTIONS, attempt to use LATEST_LINK as the
unique name for a port (fall back to ${PKGNAMEPREFIX}${PORTNAME}
otherwise), bring the ===> messages in line with the existing
ones by using PKGNAME instead of PORTNAME, use PKGNAME in the
dialog, use ECHO_CMD instead of ECHO_MSG to write the
OPTIONSFILE, display a message during compilation indicating
that user-specified options have been found, and make the output
of the showconfig target a little more user-friendly.
A new USE_ICONV macro has been added that takes the place of an
explicit LIB_DEPENDS on converters/libiconv. This will help
with future shared lib version bumps.
A new USE_GETTEXT macro has been added that takes the place of
an explicit LIB_DEPENDS on devel/gettext. This will help with
future shared lib version bumps.
Module::Build is a system for building, testing, and installing
Perl modules. It will eventually replace the obsoleted
ExtUtils::MakeMaker. Many new Perl modules have already
switched to using Build.PL instead of Makefile.PL. To
facilitate building those modules, a new PERL_MODBUILD macro has
been added. Use that in place of PERL_CONFIGURE when porting
Perl modules that make use of the Module::Build framework.
Certain ports want to check for the availability of SDL
libraries before including them. This change adds a new
WANT_SDL macro similar to WANT_GNOME. By setting this, the
porter indicates that her port can optional use SDL if present
on the system. WANT_SDL should be defined _before_
bsd.port.pre.mk is included. After including bsd.port.pre.mk,
the list of available SDL components will be returned in the
HAVE_SDL macro. For details on how to process this component
list, refer to bsd.sdl.mk.
The OpenBSD and NetBSD projects diverged from the FreeBSD ports
tree years ago, and it no longer make sense to include obsolete
references to incorrect paths in the FreeBSD ports system. This
change removes the NetBSD and OpenBSD PORTSDIR compatibility
bits from bsd.port.mk.
The comment for PKGDIR read, ``A direction containing any
package creating file.'' The word ``direction'' should be
``directory.'' This has been fixed.
A new DIRNAME macro has been added that points to
/usr/bin/dirname. All direct use of dirname in ports can be
switched to this macro.
Direct use of commands dirname, id, and rm have been corrected
to use their macro equivalents instead. Some useless ${HEAD}
-n 1 statements have been removed. A strange comment in the
do-install target and an out of place ``fi'' have been fixed as
well.
On 5-CURRENT after the 5.2-RELEASE split, the default Perl
version has been updated from 5.6.1 to 5.8.2. As well, some
Perl definitions in bsd.port.mk have been moved to their correct
locations which corrects the PERL_LEVEL definition.
The following optimizations have been added to the ports system
to speed up recursive operations such as make describe, make
index, make ignorelist, etc. bsd.gnome.mk is now only included
if a port defines USE_GNOME, WANT_GNOME, and/or USE_GTK. More
variables are cached and passed down through bsd.port.subdir.mk.
Perl is no longer invoked when a simple ``echo'' will do. More
subshell variable assignments have been hidden behind
conditionals so that the commands are not spawned every time.
Finally, dependency lists are only constructed if ports actually
declare dependencies. These optimizations give make index
approximately a 43% speedup.
If CPUFLAGS is not defined (this _CPUCFLAGS is empty), trying
to remove _CPUCFLAGS from CFLAGS will result in an error. This
change fixes that.
On recent versions of 5.X, /etc/rc.subr exists, and there is no
reason to install another copy in ${LOCALBASE}/etc. The reason
this was ever done was to workaround some build issues on bento.
However, testing OSVERSION seems to work in spite of those build
issues.
The ports system now supports MySQL 3.23, 4.0, 4.1, and 5.0.
Also, the ability to scale to newer versions was also but in
place.
An .endif comment indicated that the .if block checked
WANT_MYSQL when, in fact, it was checking WANT_MYSQL_VER. This
has been corrected.
The PTHREAD{CFLAGS,LIBS} macros have been made overridable on
all versions of FreeBSD to allow for alternate threading
implementations (e.g. -lc_r, -lthr, -mt, etc.). The default
threading library has been changed to -lpthread from -lc_r on
-CURRENT.
The new SIZE support broke distfiles fetching on FreeBSD < 4.8.
On those versions of FreeBSD, the SIZE distfile attribute is now
ignored. Also, defining DISABLE_SIZE in, for example,
/etc/make.conf, will ignore the SIZE attribute on all versions
of FreeBSD. This is useful with alternate values for FETCH_CMD.
A new vulnerabilities database has been added to the ports
system in order to keep more accurate, up-to-date, track of
security vulnerabilities. The ports system now knows how to
query that database and dynamically prevents the installation
of vulnerable ports.
In order to allow for more rapid development of the package
tools, the ports system will prefer to use pkg_* tools found in
${LOCALBASE} over those in the base system. However, all PKG_*
macros are still overridable.
A new physical category, net-mgmt, has been created to house
network management ports.
The /var/db/port.mkversion file never really took off, and is
now very obsolete. Replace the code used to generate and check
this file with a simple OSVERSION check. The ports system now
requires FreeBSD 4.3 or higher.
The last round of bsd.*.mk changes broke ports that had
duplicate distinfo entries (e.g. linux_base). This is now
fixed. Along with this fix, only distfiles with a bad checksum
will be refetched, where as distfiles missing from distinfo will
not be refetched.
The PLIST_{DIRS,FILES} macros were passed to the final package
list unchanged by PLIST_SUB. This is not always desirable.
Now, those macros are passed through PLIST_SUB.
The previous OPTIONS code assumed users would be running port
build as root. If this was not the case, OPTIONS configuration
would fail. Now, the bits of the config and rmconfig targets
that require write access to system directories are run under
SU_CMD.
The makesum target will now add a SIZE attribute for each
distfile by default. This can be overridden by defining NO_SIZE
in a port's Makefile. Note: this could probably be expanded to
omit SIZE attributes for specific distfiles in the future.
20040129:
AUTHOR: trevor@FreeBSD.org
SIZE lines in distinfo files: if you set USE_SIZE when you do "make
makesum", the byte sizes of the distfiles will be listed in the
distinfo file. Then, if a distfile is replaced on its master site with
one of a different size than that listed, "make fetch" will fail with a
"size mismatch" error before downloading the file and the user will be
asked to fetch the file by hand. Also, a user will know the size of
the distfiles before fetching and decide to fetch later.
20040129:
AUTHOR: erwin@FreeBSD.org
Start of CHANGES file.
FORMAT:
This file contains a list, in reverse chronological order, of major
breakages or added features in tracking ports. Not all things will be
listed here, and it only starts on January 29, 2004.
Copyright information:
Copyright 2004-2012 FreeBSD Foundation All Rights Reserved.
Redistribution, publication, translation and use, with or without
modification, in full or in part, in any form or format of this
document are permitted without further permission from the author.
THIS DOCUMENT IS PROVIDED BY FREEBSD FOUNDATION ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL WARNER LOSH BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
Contact portmgr@FreeBSD.org if you have any questions about your use of
this document.
$FreeBSD$
Index: head/MOVED
===================================================================
--- head/MOVED (revision 434379)
+++ head/MOVED (revision 434380)
@@ -1,9077 +1,9082 @@
#
# MOVED -- A list of (recently) moved or removed ports
#
# $FreeBSD$
#
# Each entry consists of a single line containing the following four
# fields in the order named, separated with the pipe (`|') character:
#
# Port: A port that was moved (category/portname)
# Moved to: Where the port was moved to, or which port users can
# and should migrate to (category/portname); no entry
# indicates that the port was deleted
# Date: When the moving or the removal was done (YYYY-MM-DD,
# in PST/PDT)
# Why: The reason why the port was moved or removed
#
# Keep this list sorted in the chronological order. New entries must be
# added at the tail. Reason for (re)move should start with a capital letter
# (unless it's a file or other special name) and not end with the dot.
#
# If previously removed port gets restored, make sure to delete the relevant
# line. If a port is copied to a new location and the old location is kept
# (e.g. upgraded to a later version), don't record it here.
#
# Port|Moved to|Date|Why
audio/polypaudio|audio/pulseaudio|2008-01-01|Project renamed
audio/akode-plugins-polypaudio||2008-01-01|Polypaudio is obsolete in favor of Pulseaudio
audio/teknap|net-p2p/teknap|2008-01-09|Moved to net-p2p category
net/freeradius-devel|net/freeradius2|2008-01-18|Development version no longer necessary
devel/p5-gearmand|devel/p5-Gearman-Server|2008-01-20|Replaced by p5-Gearman-Server
databases/mysqltoolkit|databases/maatkit|2008-01-21|Project was renamed
games/sturmbahnfahrer|games/stormbaancoureur|2008-01-27|Project was renamed
net/cactid|net-mgmt/cacti-spine|2008-01-27|Project was renamed
devel/wxGlade-devel||2008-02-11|Has expired: has been the same version as wxGlade for a long time; use it instead
sysutils/sge|sysutils/sge60|2008-02-12|Splitting into 6.0 and 6.1 versions
mail/linux-netscape-messenger|mail/thunderbird|2008-02-13|Abandoned by AOL
www/linux-netscape-navigator|www/firefox|2008-02-13|Abandoned by AOL
audio/daapd||2008-02-26|Has expired: Development stalled, outdated. Does not support newer versions of DAAP protocol
audio/daaplib||2008-02-26|Has expired: Development stalled for years, outdated. Does not support newer versions of DAAP protocol
www/libhttpd-persistent||2008-02-27|Has expired: Development stalled for years, outdated
www/vtiger4||2008-02-27|Has expired: This version is no longer supported by the developers
www/xpi-surfkeys||2008-02-27|Has expired: Development has been ceased
sysutils/eventwatcher||2008-02-27|Has expired: no active development
sysutils/p5-UPS-Nut||2008-02-27|Has expired: Version branch long since retired
net-mgmt/netsaint||2008-02-27|Has expired: Now developed as Nagios, see net-mgmt/nagios port
net-mgmt/netsaint-plugins||2008-02-27|Has expired: Now developed as Nagios, see net-mgmt/nagios port
games/ggo||2008-02-27|Has expired: developer's focus have moved elsewhere
mail/claws-mail-etpan_privacy||2008-02-27|Has expired: no longer supported by developers
x11-themes/indubstrial||2008-02-28|Has expired: yes
x11-themes/gtk-smooth-engine||2008-02-28|Has expired: Redundant port (now included in gtk-engines), no release since 2005
security/amavis-perl||2008-02-28|Has expired: depends on misc/compat3x, which has security problems
sysutils/cdbakeoven||2008-02-28|Has expired: Abandonware
net/gnu-finger||2008-02-28|Has expired: no active development and known security vulnerabilities
misc/seizedesktop||2008-02-28|Has expired: development stalled for years, outdated, unmaintained
net-im/wildfire||2008-02-28|Has expired: Use net-im/openfire instead of this port
www/gekko||2008-02-28|Has expired: This port is not being developed anymore. This was replaced by textmotion (http://code.google.com/p/textmotion/)
www/gekko-modules||2008-02-28|Has expired: This port is not being developed anymore. This was replaced by textmotion (http://code.google.com/p/textmotion/)
java/linux-blackdown-jre11||2008-02-28|Has expired: Obsolete version; support for Java 1.1 is to be removed from the ports tree
french/pluxml||2008-02-28|Has expired: no active development and known security vulnerabilities, see http://www.securityfocus.com/bid/24607/info for details
french/pluxml-theme-bridge||2008-02-28|Has expired: pluxml is marked as deprecated
french/pluxml-theme-snowxml||2008-02-28|Has expired: pluxml is marked as deprecated
databases/pgbash||2008-02-28|Has expired: Last release in 2003, relies on outdated PostgreSQL 7.3 and bash 2.05a
audio/nogger||2008-02-28|Has expired: just makes a humming noise
x11-wm/wmDeskGuide||2008-02-28|Has expired: Version branch long since retired
ftp/axelq||2008-02-28|Has expired: Unmaintained, website disappeared
lang/fpc-devel||2008-02-28|Has expired: now lags behind version in lang/fpc; use that instead
devel/php-dbg||2008-02-28|Has expired: does not work with PHP 5 and does not compile on GCC 4.2
graphics/jgv||2008-02-28|Has expired: development stalled for years, outdated, unmaintained
editors/muggy||2008-02-28|Has expired: development stalled for years, unmaintained
x11-fm/binder||2008-02-28|Has expired: development stalled for years, outdated, unmaintained
x11-toolkits/guile-gnome||2008-03-02|Software is obsolete
security/openssh||2008-03-02|Has expired: Outdated and has security issues
www/p5-FastCGI-ProcManager||2008-03-07|Duplicate of www/p5-FCGI-ProcManager
x11/compositeext|x11/compositeproto|2008-03-07|Port has been outdated since X.Org 7.2 merge
x11/damageext|x11/damageproto|2008-03-07|Port has been outdated since X.Org 7.2 merge
x11/fixesext|x11/fixesproto|2008-03-07|Port has been outdated since X.Org 7.2 merge
x11/panoramixext||2008-03-07|Port has been outdated since X.Org 7.2 merge
x11/randrext|x11/randrproto|2008-03-07|Port has been outdated since X.Org 7.2 merge
x11/renderext|x11/renderproto|2008-03-07|Port has been outdated since X.Org 7.2 merge
x11/resourceext|x11/resourceproto|2008-03-07|Port has been outdated since X.Org 7.2 merge
x11/xextensions||2008-03-07|Port has been outdated since X.Org 7.2 merge
x11/printext|x11/printproto|2008-03-07|Port has been outdated since X.Org 7.2 merge
x11/libXxf86||2008-03-07|Port has been outdated since X.Org 7.2 merge
x11/xf86ext||2008-03-07|Port has been outdated since X.Org 7.2 merge
devel/imake-4||2008-03-07|XFree86-4 is no longer supported on FreeBSD
graphics/xfree86-dri||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11-fonts/XFree86-4-font100dpi||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11-fonts/XFree86-4-font75dpi||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11-fonts/XFree86-4-fontCyrillic||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11-fonts/XFree86-4-fontDefaultBitmaps||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11-fonts/XFree86-4-fontEncodings||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11-fonts/XFree86-4-fontScalable||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11-servers/XFree86-4-FontServer||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11-servers/XFree86-4-NestServer||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11-servers/XFree86-4-PrintServer||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11-servers/XFree86-4-Server||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11-servers/XFree86-4-VirtualFramebufferServer||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11/XFree86-4||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11/XFree86-4-clients||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11/XFree86-4-documents||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11/XFree86-4-libraries||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11/XFree86-4-manuals||2008-03-07|XFree86-4 is no longer supported on FreeBSD
x11/ecore|devel/ecore|2008-03-12|Change category
www/scout||2008-03-12|Has expired: Abandonware, website disappeared
security/nmapfe|security/zenmap|2008-03-14|Project renamed
x11/hs-x11-extras-ghc||2008-03-14|Has expired: Use x11/hs-x11-ghc instead
www/mod_dosevasise20||2008-03-14|Has expired: Use www/mod_evasive20 instead
devel/hc12mem|devel/hcs12mem|2008-03-17|Project renamed
mail/claws-mail-maildir||2008-03-21|Has expired: no longer supported by developers
x11/e17-module-devian||2008-03-21|Has expired: abandoned by developer
x11/e17-module-engage||2008-03-21|Has expired: abandoned by developer
x11/e17-module-eveil||2008-03-21|Has expired: abandoned by developer
sysutils/hal-device-manager|sysutils/gnome-device-manager|2008-03-23|hal-device-manager has been retired
security/gnome-keyring-manager|security/seahorse|2008-03-23|Functionality has been rolled into seahorse
ports-mgmt/pkg_install-devel|ports-mgmt/pkg_install|2008-03-31|Port has been unmaintained for a few years
x11-toolkits/qwt|x11-toolkits/qwt4|2008-04-02|Renamed for better naming
x11-toolkits/qwt-devel|x11-toolkits/qwt5|2008-04-02|Renamed for better naming
audio/csound-manual||2008-04-04|Merged with main port
security/acid||2008-04-04|Has expired: development has ceased, use security/base
archivers/deepforest||2008-04-09|Has expired: development stalled for years, outdated, unmaintained
graphics/libimg-tkstep80||2008-04-09|Has expired: tkstep80 scheduled for expiration
x11-toolkits/tkstep80||2008-04-09|Has expired: development stalled for years, outdated, unmaintained
devel/p5-Tie-Watch|x11-toolkits/p5-Tk|2008-04-14|Bundled with p5-Tk
games/teewars|games/teeworlds|2008-04-17|Project renamed
multimedia/exportvideo||2008-04-21|Add-on for soon to be removed nuppelvideo port
multimedia/nuppelvideo||2008-04-21|Unmaintained upstream for years. The nuppelvideo format is now supported by mencoder
graphics/ascii0|graphics/asciio|2008-04-22|Renamed by delete+add
misc/kde3-i18n-id||2008-04-25|Has expired: Distfile no longer available, outdated
net/dhcp-agent||2008-04-25|Has expired: Dhcp-agent has not been updated since 2003, it does not build with guile-1.8, and it is unmaintained
net/ocaml-netclient||2008-04-25|Has expired: is part of ocaml-net
graphics/entice||2008-04-25|Has expired: Broken and unmaintained
games/glpuzzle|games/jigzo|2008-04-28|Project renamed
ftp/greed||2008-04-29|Has expired: No longer maintained
x11-themes/gnome-industrial-theme||2008-04-29|Has expired: gnome-themes-extras no longer has industrial engine
www/firefox15||2008-04-30|Has expired: Obsolete version, use Firefox 2.0 or greater instead
www/phpadsnew||2008-04-30|Has expired: replaced by www/openx
x11-wm/yawm||2008-04-30|Has expired: project no longer exists
x11-wm/uwm||2008-04-30|Has expired: Version branch long since retired
arabic/katoob||2008-04-30|Removed on maintainers request due to inactivity of project
security/drupal4-ldap_integration||2008-04-30|Removed due to being broken and clearly not used
ports-mgmt/instant-tinderbox||2008-05-07|No longer functional in the current infrastructure
devel/swigruby||2008-05-11|Has expired: use devel/swig13 instead, last release was 8 years ago
japanese/epson-ttfonts||2008-05-12|Removed because of extremely restrictive license
x11-servers/xorg-printserver||2008-05-15|Has expired, software is obsolete
www/mod_evasive20|www/mod_evasive|2008-05-17|No reason to have the 20 in the name, so remove it
multimedia/smplayer-qt4||2008-05-17|Functionality is now included in smplayer
devel/php-Net_Gearman|devel/pear-Net_Gearman|2008-05-19|Now it is a pear module
devel/swig11||2008-05-21|Has expired: use devel/swig13 instead, last release of 1.1 was 8 years ago
japanese/truetypefonts||2008-05-25|Removed due to copyright problem
japanese/kochi-cidfonts||2008-05-25|Removed due to copyright problem
japanese/latex-japanese|japanese/platex-japanese|2008-05-26|Works only with platex
ports-mgmt/newportsversioncheck||2008-05-27|Obsoleted by portscout
net-p2p/dclibc||2008-05-30|Has expired: Abandoned, not used, website disappeared
multimedia/xfce4-xmms-controller-plugin||2008-05-30|Has expired: Project is dead
www/pear-HTTP_Session||2008-05-30|Has expired: Use www/pear-HTTP_Session2 instead
security/bioapitool||2008-05-30|Has expired: All functionality of these tools has been merged with pam_bsdbioapi
japanese/motoya-ttfonts||2008-05-31|Removed because of extremely restrictive license
devel/libffi-devel||2008-06-02|Has expired: Use devel/libffi instead
www/mod_auth_pwcheck||2008-06-17|Depends on expired port, website disappeared
security/cyrus-sasl||2008-06-17|Has expired: Unsupported, please move to cyrus-sasl2
converters/compface|mail/faces|2008-06-17|Removed in favor to mail/faces
security/p5-openxpki-client-cli||2008-06-18|Has expired: no longer supported. Use p5-openxpki-client-html-mason instead
audio/mbrola||2008-06-18|Has expired: relies on forbidden port misc/compat3x; last release 2000
emulators/linux-winetools||2008-06-18|Has expired: very old, discontinued, and replaced by emulators/wine-doors
games/linux-x-plane||2008-06-18|Relies on expired, unfetchable installer port
games/linux-x-plane-net-installer||2008-06-18|Has expired: unfetchable
japanese/vje30||2008-06-18|Has expired: depends on forbidden port misc/compat3x
math/umfpack||2008-06-18|Has expired: Outdated subset of math/suitesparse
net/apache-soap||2008-06-18|Has expired: Development has been ceased, superseded by www/axis
net/archie||2008-06-18|Has expired: No servers active anymore
net/xarchie||2008-06-18|Has expired: No servers active anymore
net/p5-Net-Z3950||2008-06-18|Has expired: does not compile with yaz 3.x, deprecated in favor of ZOOM-Perl (net/p5-Net-Z3950-ZOOM)
net/vls||2008-06-18|Has expired: Does not build with current libdvbpsi. Development has been moved to multimedia/vlc
net-mgmt/nsc||2008-06-18|Has expired: Project abandoned
security/amavisd||2008-06-18|Has expired: depends on misc/compat3x, which has security problems; old version
games/linux-goodway||2008-06-18|A tool for a port that was removed
graphics/gtkcairo||2008-06-19|Unused, unfetchable, obsolete
net/openospfd-devel||2008-06-19|Has expired: no longer maintained
x11-servers/xorg-server-snap|x11-servers/xorg-server|2008-06-19|Has expired: no longer maintained
archivers/dynamite|archivers/libdynamite|2008-06-22|Moved to archivers/libdynamite
archivers/orange|archivers/liborange|2008-06-22|Moved to archivers/liborange
security/barnyard-sguil6|security/barnyard-sguil|2008-06-22|Moved to security/barnyard-sguil
java/bsh|lang/bsh|2008-06-22|Moved to lang/bsh
www/mod_security2|www/mod_security21|2008-06-22|Moved to www/mod_security2
devel/dumb|audio/dumb|2008-06-23|Moved to a better category
security/ca-roots||2008-06-29|No longer supported by FreeBSD Security Officer
devel/subversion-perl|devel/p5-subversion|2008-06-30|Rename to reflect official Perl modules naming scheme
devel/subversion-python|devel/py-subversion|2008-06-30|Rename to reflect official Python modules naming scheme
devel/subversion-ruby|devel/ruby-subversion|2008-06-30|Rename to reflect official Ruby modules naming scheme
misc/goblin|math/goblin|2008-06-30|Moved to a better category
editors/openoffice.org-1.0||2008-07-02|Removed
editors/openoffice.org-1.1||2008-07-02|Removed
editors/openoffice.org-1.1-devel||2008-07-02|Removed
deskutils/gdeskcal||2008-07-03|Disappeared from master site
deskutils/gdeskcal-skins||2008-07-03|Disappeared from master site
deskutils/gnome-menu-editor||2008-07-03|Disappeared from master site and take over by alacarte
textproc/dictum-emacs22||2008-07-05|Assimilated into textproc/dictum
sysutils/gnu-unifont|x11-fonts/gnu-unifont|2008-07-05|Category change
chinese/links||2008-07-05|Has been ignored for 15 months
net-im/psi-gentoo||2008-07-11|Removed because no longer supported
lang/yarv|lang/ruby19|2008-07-11|Officially released as Ruby 1.9
japanese/samba|japanese/samba3|2008-07-21|Superseded by japanese/samba3
net/silky||2008-07-21|Broken with newer silc-toolkit version
japanese/kterm16c|japanese/kterm|2008-07-24|Deprecated in favor of japanese/kterm
lang/gambc|lang/gambit-c|2008-07-24|Port was renamed
devel/legoctl|devel/roboctl|2008-07-26|Port was renamed
games/ssamtse|games/linux-ssamtse|2008-07-26|Upgraded to Linux version of the game
palm/synce-rra|palm/synce-librra|2008-07-27|Port was renamed
palm/synce-dccm|palm/synce-vdccm|2008-07-27|Port was renamed
arabic/php_doc||2008-08-04|Manual in this language was removed
chinese/php_doc-hk||2008-08-04|Manual in this language was removed
chinese/php_doc-tw||2008-08-04|Manual in this language was removed
chinese/php_doc-zh||2008-08-04|Manual in this language was removed
hungarian/php_doc||2008-08-04|Manual in this language was removed
mbone/rtpmon||2008-08-16|Abandoned upstream and needs gcc32 which is going to be removed
games/ssc||2008-08-16|Abandoned upstream and needs gcc32 which is going to be removed
mail/mutt-ng||2008-08-18|Has expired: Abandoned by upstream maintainers; use mail/mutt-devel
x11-wm/heliodor||2008-08-18|No longer supported -- use compiz
x11-wm/beryl||2008-08-18|Has expired: No longer supported -- use compiz
x11-wm/beryl-core||2008-08-18|Has expired: No longer supported -- use compiz
x11-wm/beryl-manager||2008-08-18|Has expired: No longer supported -- use compiz
x11-wm/beryl-plugins||2008-08-18|Has expired: No longer supported -- use compiz
x11-wm/beryl-plugins-unsupported||2008-08-18|Has expired: No longer supported -- use compiz
x11-wm/beryl-settings||2008-08-18|Has expired: No longer supported -- use compiz
x11-wm/beryl-settings-bindings||2008-08-18|Has expired: No longer supported -- use compiz
japanese/lyx|print/lyx|2008-08-18|No longer maintained and print/lyx now supports Unicode
japanese/lyx-doc||2008-08-18|Obsolete
games/blobandconquer||2008-08-20|Removed due to copyright problems
games/randomshooter||2008-08-20|Removed due to copyright problems
devel/autoconf261|devel/autoconf262|2008-08-20|Migration to autoconf-2.62
x11-themes/enlightenment-theme-BlueSteel||2008-08-20|Deprecated by x11-themes/e16-themes
x11-themes/enlightenment-theme-BrushedMetal-Tigert||2008-08-20|Deprecated by x11-themes/e16-themes
x11-themes/enlightenment-theme-Ganymede||2008-08-20|Deprecated by x11-themes/e16-themes
x11-themes/enlightenment-theme-ShinyMetal||2008-08-20|Deprecated by x11-themes/e16-themes
www/mediawiki17||2008-08-22|Expired, use www/mediawiki instead
www/mediawiki18||2008-08-22|Expired, use www/mediawiki instead
x11-wm/9wm||2008-08-22|Has expired: Project is dead, last release from 2002
x11-wm/gwm||2008-08-22|Has expired: Project is dead
x11-wm/mlvwm||2008-08-22|Has expired: Project is dead
x11-wm/novawm||2008-08-22|Has expired: Project is dead
x11-wm/orion||2008-08-22|Has expired: Version branch long since retired
x11-wm/ude||2008-08-22|Has expired: Remove dead project
lang/gcc32|lang/gcc42|2008-08-23|Abandoned upstream more than five years ago; superseded by lang/gcc42 and later
irc/iip||2008-08-24|Abandonware, long since deprecated
www/mediawiki19||2008-08-26|Expired, use www/mediawiki instead
www/mediawiki110||2008-08-26|Expired, use www/mediawiki instead
www/mediawiki111||2008-08-26|Expired, use www/mediawiki instead
graphics/openproducer||2008-08-27|Now included in graphics/osg
devel/openthreads||2008-08-27|Now included in graphics/osg
www/cherokee-devel||2008-08-27|Removed, use www/cherokee instead
irc/tirc||2008-08-28|Has expired: Project is dead
x11-toolkits/gtkdatabox2||2008-08-29|Removed, use x11-toolkits/gtkdatabox instead
chinese/BBMan||2008-08-30|Removed, abandoned by upstream maintainer
games/q3base||2008-09-01|Project gone, website defaced
editors/ooo-build||2008-09-01|Has expired: Has been broken for more than 6 months
mail/pine4|mail/alpine|2008-09-01|No further development for pine, alpine has more features and is config-compatible
editors/pico|editors/pico-alpine|2008-09-01|No further development for pine, alpine has more features and is config-compatible
print/ghostscript-gnu|print/ghostscript7|2008-09-05|Renamed for better naming
print/ghostscript-gnu-nox11|print/ghostscript7-nox11|2008-09-05|Renamed for better naming
print/ghostscript-gnu-commfont|print/ghostscript7-commfont|2008-09-05|Renamed for better naming
japanese/ghostscript-gnu-jpnfont|print/ghostscript7-jpnfont|2008-09-05|Renamed for better naming
korean/ghostscript-gnu-korfont|print/ghostscript7-korfont|2008-09-05|Renamed for better naming
print/ghostscript-gpl-nox11|print/ghostscript8-nox11|2008-09-05|Renamed for better naming
chinese/acroread-zh_CN|chinese/acroread8-zh_CN|2008-09-06|Removed because of security vulnerability
chinese/acroread-zh_TW|chinese/acroread8-zh_TW|2008-09-06|Removed because of security vulnerability
french/acroread|french/acroread8|2008-09-06|Removed because of security vulnerability
german/acroread|german/acroread8|2008-09-06|Removed because of security vulnerability
japanese/acroread|japanese/acroread8|2008-09-06|Removed because of security vulnerability
korean/acroread|korean/acroread8|2008-09-06|Removed because of security vulnerability
portuguese/acroread|portuguese/acroread8|2008-09-06|Removed because of security vulnerability
print/acroread7|print/acroread8|2008-09-06|Removed because of security vulnerability
print/dk-acroread|print/dk-acroread8|2008-09-06|Removed because of security vulnerability
print/es-acroread|print/es-acroread8|2008-09-06|Removed because of security vulnerability
print/fi-acroread|print/fi-acroread8|2008-09-06|Removed because of security vulnerability
print/it-acroread|print/it-acroread8|2008-09-06|Removed because of security vulnerability
print/nl-acroread|print/nl-acroread8|2008-09-06|Removed because of security vulnerability
print/no-acroread|print/no-acroread8|2008-09-06|Removed because of security vulnerability
print/sv-acroread|print/sv-acroread8|2008-09-06|Removed because of security vulnerability
net/py-zsi-devel||2008-09-07|Removed in favor of py-zsi
audio/squeezecenter-transitionupdater||2008-09-07|Plugin integrated in to SqueezeCenter 7.1
japanese/xjman||2008-10-05|No longer maintained
japanese/xjman-3||2008-10-05|No longer maintained
net/isc-dhcp3-server|net/isc-dhcp30-server|2008-10-13|Swap to multiple versions
net/isc-dhcp3-relay|net/isc-dhcp30-relay|2008-10-13|Swap to multiple versions
net/isc-dhcp3-client|net/isc-dhcp30-client|2008-10-13|Swap to multiple versions
japanese/sj3|japanese/sj3-server|2008-10-26|Renamed for -server/-lib separation
japanese/Canna|japanese/canna-server|2008-10-26|Renamed for -server/-lib separation
japanese/kinput2-canna|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-canna+freewnn|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-canna+freewnn+sj3|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-canna+sj3|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-canna+sj3+wnn6|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-canna+sj3+wnn7|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-canna+wnn6|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-canna+wnn7|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-freewnn|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-freewnn+sj3|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-sj3|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-sj3+wnn6|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-sj3+wnn7|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-wnn6|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/kinput2-wnn7|japanese/kinput2|2008-10-26|Integrated into japanese/kinput2
japanese/onew-canna|japanese/onew|2008-10-26|Integrated into japanese/onew
japanese/onew-canna+freewnn|japanese/onew|2008-10-26|Integrated into japanese/onew
japanese/onew-canna+wnn6|japanese/onew|2008-10-26|Integrated into japanese/onew
japanese/onew-canna+wnn7|japanese/onew|2008-10-26|Integrated into japanese/onew
japanese/onew-freewnn|japanese/onew|2008-10-26|Integrated into japanese/onew
japanese/onew-wnn6|japanese/onew|2008-10-26|Integrated into japanese/onew
japanese/onew-wnn7|japanese/onew|2008-10-26|Integrated into japanese/onew
japanese/jvim||2008-10-26|Removed: no longer maintained
japanese/jvim-canna||2008-10-26|Removed: no longer maintained
japanese/jvim-canna+freewnn||2008-10-26|Removed: no longer maintained
japanese/jvim-canna+wnn6||2008-10-26|Removed: no longer maintained
japanese/jvim-canna+wnn7||2008-10-26|Removed: no longer maintained
japanese/jvim-freewnn||2008-10-26|Removed: no longer maintained
japanese/jvim-wnn6||2008-10-26|Removed: no longer maintained
japanese/jvim-wnn7||2008-10-26|Removed: no longer maintained
japanese/jvim3-canna|japanese/jvim3|2008-10-28|Integrated into japanese/jvim3
japanese/jvim3-canna+freewnn|japanese/jvim3|2008-10-28|Integrated into japanese/jvim3
japanese/jvim3-canna+wnn6|japanese/jvim3|2008-10-28|Integrated into japanese/jvim3
japanese/jvim3-canna+wnn7|japanese/jvim3|2008-10-28|Integrated into japanese/jvim3
japanese/jvim3-direct_canna|japanese/jvim3|2008-10-28|Integrated into japanese/jvim3
japanese/jvim3-freewnn|japanese/jvim3|2008-10-28|Integrated into japanese/jvim3
japanese/jvim3-wnn6|japanese/jvim3|2008-10-28|Integrated into japanese/jvim3
japanese/jvim3-wnn7|japanese/jvim3|2008-10-28|Integrated into japanese/jvim3
security/libfwbuilder2|security/libfwbuilder|2008-11-05|Replaced by libfwbuilder 3.0
security/fwbuilder2|security/fwbuilder|2008-11-05|Replaced by fwbuilder 3.0
japanese/magicpoint|misc/magicpoint|2008-11-07|Integrated into misc/magicpoint
databases/firebird2-client|databases/firebird20-client|2008-11-24|Renamed
databases/firebird2-server|databases/firebird20-server|2008-11-24|Renamed
emulators/linux_base-gentoo-stage2||2008-11-24|Removed
emulators/linux_dist-gentoo-stage2||2008-11-24|Removed
mail/libspf-alt||2008-12-03|Removed
portuguese/aspell|portuguese/aspell-pt_PT|2008-12-07|Repocopy finished for proper package naming
x11-wm/kahakai||2008-12-07|Has expired: Development ceased
palm/synce-gnomevfs||2008-12-07|Has expired: No longer supported by developers
palm/synce-kde||2008-12-07|Has expired: No longer supported by developers
palm/synce-multisync||2008-12-07|Has expired: No longer supported by developers
shells/ksh93-devel||2008-12-07|Has expired: This port is outdated, please use shells/ksh93
sysutils/dtc-toaster||2008-12-07|Has expired: Has been broken for more than 6 months
sysutils/dusage||2008-12-07|Has expired: Has been broken for more than 6 months
games/linux-alienarena||2008-12-07|Has expired: Has been broken for more than 6 months
japanese/escpf||2008-12-07|Has expired: Has been broken for more than 6 months
java/java-gcj-compat||2008-12-07|Has expired: Has been broken for more than 6 months
lang/screamer||2008-12-07|Has expired: Has been broken for more than 6 months
misc/documancer||2008-12-07|Has expired: Unmaintained upstream
multimedia/manslide||2008-12-07|Has expired: Use multimedia/smile instead
net/globus4||2008-12-07|Has expired: Has been broken for more than 6 months
net/p5-Parallel-MPI||2008-12-07|Has expired: Has been broken for more than 6 months
net/p54u||2008-12-07|Has expired: website disappeared
net-im/ginsu||2008-12-07|Has expired: Has been broken for more than 6 months
net-p2p/py-kenosis-bittorrent||2008-12-07|Has expired: Has been broken for more than 6 months
sysutils/sjog||2008-12-07|Has expired: Has been broken for more than 6 months
textproc/Ebnf2ps||2008-12-07|Has expired: Has been broken for more than 6 months
www/roxen||2008-12-07|Has expired: Has been broken for more than 6 months
x11-fm/evidence||2008-12-07|Has expired: Has been broken for more than 6 months
www/yui||2008-12-09|Already exists as www/yahoo-ui
security/pecl-filter|security/php5-filter|2008-12-11|Now bundled in php5
math/py-numeric17||2008-12-12|Old obsolete version
devel/hs-buddha||2008-12-13|Has expired: Has been broken for more than 6 months
devel/hs-tclhaskell-ghc||2008-12-13|Has expired: Has been broken for more than 6 months
devel/pear-apd||2008-12-13|Has expired: Has been broken for more than 6 months
databases/py-tada||2008-12-13|Has expired: Has been broken for more than 6 months
databases/qdbm-java||2008-12-13|Has expired: Has been broken for more than 6 months
audio/shellac||2008-12-13|Has expired: Has been broken for more than 6 months
audio/snett||2008-12-13|Has expired: Has been broken for more than 6 months
x11-wm/alloywm||2008-12-13|Has expired: Has been broken for more than 6 months, upstream disappeared
x11/9term||2008-12-13|Has expired: depends on expired port
textproc/rubygem-spreadsheet-excel|textproc/rubygem-spreadsheet|2008-12-14|Project renamed
textproc/hs-utf8-string||2008-12-19|Duplicate of devel/hs-utf8-string-ghc
audio/euphoria||2008-12-19|Has been broken or ignored for past 24 months, depends on broken, expired port
audio/ruby-xmms2-ecore||2008-12-19|Has expired: Has been broken for more than 6 months
databases/p5-DBD-PgSPI||2008-12-19|Has expired: Has been broken for more than 6 months
databases/mysql-query-browser||2008-12-19|Has expired: Has been broken for more than 6 months, abandoned upstream
games/clanbomber||2008-12-19|Has expired: Has been broken for more than 6 months
graphics/gstreamer-plugins-swfdec||2008-12-19|Has expired: Has been broken for more than 6 months
irc/erc||2008-12-19|Has expired: Has been broken for more than 6 months
lang/chameleon||2008-12-19|Has expired: Has been broken for more than 6 months
math/ses||2008-12-19|Has expired: Has been broken for more than 6 months
x11-toolkits/p5-qt||2008-12-19|Has expired: Has been broken for more than 6 months
www/phpSysInfo||2008-12-24|Split into www/phpsysinfo and www/phpsysinfo-dev
japanese/msdosfs||2008-12-28|Removed: only for 5.x
korean/msdosfs||2008-12-28|Removed: only for 5.x
security/openssl-stable|security/openssl|2008-12-30|Removed: only for 6.0
dns/bind9-dlz|dns/bind94|2008-12-31|DLZ patches are now in bind 9.4 distribution
x11-drivers/xf86-video-i810|x11-drivers/xf86-video-intel|2009-01-05|Replaced by the xf86-video-intel driver
misc/utf8locale||2009-01-05|Part of the base system since FreeBSD 5.3
lang/gcc41-withgcjawt||2009-01-06|Removed
java/gjdoc||2009-01-06|Removed
java/ecj-bootstrap||2009-01-06|Removed
emulators/mupen64plus-sound||2009-01-06|No supported anymore by mupen64plus team
misc/heyu||2009-01-07|Has expired: no longer under development, use misc/heyu2
sysutils/pkill||2009-01-07|Part of the base system since FreeBSD 5.3
ports-mgmt/portsnap||2009-01-07|Part of the base system since FreeBSD 5.5
lang/py-compiler||2009-01-08|Included with Python since 2.2
net/nvnet||2009-01-08|Part of the base system since FreeBSD 6.0
security/openssl-beta|security/openssl|2009-01-09|Removed
accessibility/gail|x11-toolkits/gtk20|2009-01-10|Now included with Gtk20
accessibility/gail-reference|x11-toolkits/gtk20-reference|2009-01-10|Now included with Gtk20
x11/fast-user-switch-applet|x11/gdm|2009-01-10|This is now part of GDM
net-mgmt/bsnmpd||2009-01-10|Part of the base system since FreeBSD 6.0
devel/cogito||2009-01-11|Broken and abandoned upstream
net-mgmt/hobbit-client|net-mgmt/xymon-client|2009-01-11|Renamed
net-mgmt/hobbit-server|net-mgmt/xymon-server|2009-01-11|Renamed
science/gchempaint|science/gchemutils|2009-01-13|gchempaint was integrated into gchemutils
net/fpc-libasync|devel/fpc-fcl-async|2009-01-13|This unit was renamed
x11-toolkits/forms|x11-toolkits/xforms|2009-01-13|This unit was renamed
x11-toolkits/gtk|x11-toolkits/gtk12|2009-01-13|This unit was renamed
devel/fpc-gconf||2009-01-13|This is now part of fpc-gnome1
x11-toolkits/fpc-zvt||2009-01-13|This is now part of fpc-gnome1
net/fpc-netdb||2009-01-13|This is now part of fpc-fcl-net
textproc/p5-Text-CSV_PP||2009-01-14|Has expired: textproc/Text-CSV_PP was merged into textproc/p5-Text-CSV
games/fgfs-base|games/flightgear-data|2009-01-15|Renamed
lang/gcc41|lang/gcc42|2009-01-17|Abandoned upstream, superseded by gcc42 and, preferably, gcc43
devel/apr-svn|devel/apr|2009-01-18|Only needed for FreeBSD 5.2 and below for threading
math/elmer-mathlibs||2009-01-18|Removed
textproc/py-wbxml||2009-01-19|Expired: No longer supported by developers
mail/claws-mail-smime|mail/claws-mail|2009-01-19|The SMIME plugin is included in the main port via the GPGME option now
www/fpc-httpd||2009-01-19|Split into www/fpc-httpd13, www/fpc-httpd20, and www/fpc-httpd22
multimedia/vlc-devel||2009-01-19|Removed: merged into multimedia/vlc
textproc/nltk_lite||2009-01-21|Removed
x11-toolkits/fox10||2009-01-21|Removed deprecated port, use x11-toolkits/fox16 instead
x11-toolkits/fxscintilla-fox10||2009-01-21|Removed deprecated port, use x11-toolkits/fxscintilla instead
x11-toolkits/py-fox||2009-01-21|Removed deprecated port, has a broken dependency
x11-toolkits/ruby-fox10||2009-01-21|Removed deprecated port, use x11-toolkits/ruby-fox16 instead
devel/linux-glib2||2009-01-21|Removed since the port is incorporated into all Linux base ports
x11/xorg-protos||2009-01-23|Not really necessary
x11-drivers/synaptics|x11-drivers/xf86-input-synaptics|2009-01-23|Now an official X.Org driver
lang/gcc28|lang/gcc42|2009-01-24|Abandoned upstream, superseded by gcc42 and, preferably, gcc43
x11/xphelloworld||2009-01-24|Xprint application, deprecated upstream
x11/xclock|x11-clocks/xclock|2009-01-28|Moved to a more appropriate category
lang/perl5|lang/perl5.6|2009-02-01|Renamed
devel/libmcve|devel/libmonetra|2009-02-01|Project renamed
misc/gnomesword|misc/xiphos|2009-02-02|Project renamed
www/aolserver-nscache||2009-02-03|Removed
games/emacs-chess||2009-02-03|Has expired: has been broken for more than 6 months
devel/subversion-devel||2009-02-03|Has expired: Use devel/subversion or devel/subversion-freebsd instead of this port
devel/hs-hpl||2009-02-03|Has expired: has been broken for more than 6 months
mail/claws-mail-clamav||2009-02-03|Has expired: has been broken for more than 6 months
mail/sylpheed2-devel||2009-02-03|Has expired: has been broken for more than 6 months
www/pecl-mnogosearch||2009-02-03|Has expired: has been broken for more than 6 months
x11-fonts/mathfonts||2009-02-03|Has expired: This port was supported by Mozilla 1.8 (including Firefox 2.0) - to be replaced by STIX fonts for Firefox 3.x
x11-wm/fluxspace||2009-02-03|Has expired: has been broken for more than 6 months
x11-wm/expocity||2009-02-03|Has expired: project has been abandoned
x11/bbuname||2009-02-03|Has expired: has been broken for more than 6 months
security/squidclam||2009-02-03|Has expired: has been broken for more than 6 months
print/virtualpaper||2009-02-03|Has expired: depends on broken, expired port
print/ifhp||2009-02-03|Has expired: has been broken for more than 6 months
net-p2p/peercast||2009-02-03|Has expired: has been forbidden for more than 6 months
palm/pdbc||2009-02-03|Has expired: has been broken for more than 6 months
net-mgmt/NeTraMet||2009-02-03|Has expired: has been broken for more than 6 months
net-im/sulci||2009-02-03|Has expired: has been broken for more than 6 months
multimedia/mjpegtools-yuvfilters||2009-02-03|Has expired: has been broken for more than 6 months
multimedia/helixplayer||2009-02-03|Has expired: has been broken for more than 6 months
misc/pybliographer||2009-02-03|Has expired: has been broken for more than 6 months
net/versuch||2009-02-03|Has expired: has been broken for more than 6 months
net/py-mantissa||2009-02-03|Has expired: has been broken for more than 6 months
net/libunpipc||2009-02-03|Has expired: has been broken for more than 6 months
net/gnometelnet||2009-02-03|Has expired: has been broken for more than 6 months
net/gacxtool||2009-02-03|Has expired: depends on expired, broken port
devel/py-coro||2009-02-03|Has expired: has been broken for more than 6 months
chinese/stardict2-dict-zh_TW||2009-02-03|Has expired: has been broken for more than 6 months
x11-themes/gtk-industrial-theme||2009-02-03|Has expired: has been broken for more than 6 months
sysutils/srmt||2009-02-07|Moved into archivers/star
devel/libslang|devel/libslang2|2009-02-07|Abandoned upstream, replaced by devel/libslang2
graphics/processing-devel|graphics/processing|2009-02-09|Retire, as non-devel port was updated to newer version
audio/xmms-imms||2009-02-13|Has expired: does not configure or build
devel/libgnugetopt||2009-02-13|Has expired: was only relevant on FreeBSD 4.x
games/planeshift||2009-02-13|Has expired: Depends on broken, expired port
net-mgmt/nfsen-devel||2009-02-13|Has expired: no separate development version exists anymore
www/ocaml-wdialog||2009-02-13|Has expired: has been broken for more than 6 months
news/sabnzbd||2009-02-13|Has expired: no longer developed, use news/sabnzbdplus instead
devel/erlslang||2009-02-14|Broken with libslang2; no upstream development
mail/py-pyclamd|security/py-pyclamd|2009-02-14|Category change
deskutils/zbgset|deskutils/p5-ZConf-BGSet|2009-02-15|Integrated into deskutils/p5-ZConf-BGSet
deskutils/zbgset-admin|deskutils/p5-ZConf-BGSet|2009-02-15|Integrated into deskutils/p5-ZConf-BGSet
net/samba32-devel|net/samba32|2009-02-16|Samba 3.2 became stable enough to be used in production
editors/sam||2009-02-19|Has expired: distfile and homepage disappeared
math/slsc||2009-02-28|Has expired: No longer maintained by author
finance/eqonomize|finance/eqonomize-kde3|2009-03-02|Use finance/eqonomize-kde3
x11/libxfce4mcs||2009-03-02|Got obsolete by Xfce 4.6 update
sysutils/xfce4-mcs-manager||2009-03-02|Got obsolete by Xfce 4.6 update
sysutils/xfce4-mcs-plugins||2009-03-02|Got obsolete by Xfce 4.6 update
x11-themes/xfce4-icon-theme||2009-03-02|Got obsolete by Xfce 4.6 update
x11-toolkits/scx||2009-03-06|Abandoned upstream
x11-toolkits/xg||2009-03-06|Abandoned upstream
audio/quelcom||2009-03-07|Abandoned upstream, requires obsolete version of GCC
math/cxsc||2009-03-07|Abandoned upstream, requires obsolete version of GCC
devel/prcs||2009-03-07|Abandoned upstream, requires obsolete version of GCC
devel/tvision||2009-03-07|Abandoned upstream, requires obsolete version of GCC
textproc/latte||2009-03-07|Abandoned upstream, requires obsolete version of GCC
textproc/nicetext||2009-03-07|Abandoned upstream, requires obsolete version of GCC
multimedia/libspiff|multimedia/libxspf|2009-03-08|Project renamed
graphics/libgdgeda||2009-03-09|Has expired: is not required anymore
japanese/ruby-tk||2009-03-09|Has expired: uses old Tk, not required with newer versions
www/p5-Cookie-XS|www/p5-CGI-Cookie-XS|2009-03-09|Renamed
databases/rubygem-rrdtool||2009-03-09|Has expired: port no longer maintained upstream; use rrdtools' own Ruby bindings instead
graphics/crystalentitylayer-devel||2009-03-09|Has expired: Depends on broken, expired port
graphics/crystalspace-devel||2009-03-09|Has expired: Has been broken for more than 6 months
ftp/downloader||2009-03-09|Has expired: sources unavailable - website disappeared
devel/rubygem-mojombo-grit||2009-03-09|Has expired: Obsolete, use devel/rubygem-grit instead
mail/postfix1||2009-03-09|Has expired: Not supported anymore by vendor. Please choose a new one version
mail/postfix21||2009-03-09|Has expired: Not supported anymore by vendor. Please choose a new one version
mail/postfix22||2009-03-09|Has expired: Not supported anymore by vendor. Please choose a new one version
www/rubygem-actionwebservice||2009-03-09|Has expired: from rails 2.0 www/rubygem-rails use www/rubygem-activeresource instead
x11-toolkits/inti-gconf||2009-03-09|Has expired: unmaintained upstream for more than five years; no ports depend on it
x11-toolkits/inti-gl||2009-03-09|Has expired: unmaintained upstream for more than five years; no ports depend on it
x11-toolkits/inti-sourceview||2009-03-09|Has expired: unmaintained upstream for more than five years; no ports depend on it
misc/git|misc/gnuit|2009-03-14|Renamed
lang/gcc33|lang/gcc43|2009-03-14|Abandoned upstream, superseded by later versions
sysutils/libisoburn|sysutils/xorriso|2009-03-16|Project was renamed
games/PySolFC|games/pysolfc|2009-03-19|Port renamed
net-im/ruby-xmpp4r|net-im/rubygem-xmpp4r|2009-03-21|Renamed
audio/rhythmbox-devel|audio/rhythmbox|2009-03-21|Main port updated to the latest stable version
net/penguintv-devel||2009-03-23|Main port updated to the latest stable version
x11/oclock|x11-clocks/oclock|2009-03-23|Moved to a more appropriate category
www/p5-Catalyst-Plugin-Authentication-Store-DBIx-Class||2009-03-23|Removed
emulators/dlx||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
java/javel||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
java/guavac||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
graphics/xrml||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
graphics/renderpark||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
games/jumpnbump||2009-03-23|Has expired: Tcl 8.0 support is going to be dropped
irc/blackened||2009-03-23|Has expired: Broken and abandonware
devel/libg++||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
devel/freescope||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
misc/menushki||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
misc/vbidecode||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
lang/wamcc||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
multimedia/mpegedit||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
mail/dkimap4||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
net-mgmt/oproute||2009-03-23|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
x11/tkgoodstuff||2009-03-23|Has expired: Tcl 8.0 support is going to be dropped
x11-toolkits/inti||2009-03-23|Has expired: unmaintained upstream for more than five years; no ports depend on it
mbone/nte||2009-03-23|Has expired: Tcl 8.0 support is going to be dropped
mbone/relate||2009-03-23|Has expired: Tcl 8.0 support is going to be dropped
mbone/wbd||2009-03-23|Has expired: Tcl 8.0 support is going to be dropped
comms/plp||2009-03-24|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
devel/ruby-zoom|devel/rubygem-zoom|2009-03-26|Renamed
net/sipxcalllib||2009-03-28|Has expired: old version, needs updating
net/sipxcommserverlib||2009-03-28|Has expired: old version, needs updating, and does not compile
net/sipxconfig||2009-03-28|Has expired: depends on broken port net/sipxcommserverlib
net/sipxmediaadapterlib||2009-03-28|Has expired: old version, needs updating
net/sipxmedialib||2009-03-28|Has expired: old version, needs updating
net/sipxpbx||2009-03-28|Has expired: depends on broken port net/sipxcommserverlib
net/sipxproxy||2009-03-28|Has expired: depends on broken port net/sipxcommserverlib
net/sipxportlib||2009-03-28|Has expired: old version, needs updating
net/sipxpublisher||2009-03-28|Has expired: depends on broken port net/sipxcommserverlib
net/sipxregistry||2009-03-28|Has expired: depends on broken port net/sipxcommserverlib
net/sipxtacklib||2009-03-28|Has expired: old version, needs updating
net/sipxvxml||2009-03-28|Has expired: old version, needs updating
www/drupal4-attachment||2009-04-04|Has expired: Drupal 4.7.x is end-of-life since 200802. Please migrate to Drupal 6.x
www/drupal4-filemanager||2009-04-04|Has expired: Drupal 4.7.x is end-of-life since 200802. Please migrate to Drupal 6.x
www/drupal4-gsitemap||2009-04-04|Has expired: Drupal 4.7.x is end-of-life since 200802. Please migrate to Drupal 6.x
www/drupal4-i18n||2009-04-04|Has expired: Drupal 4.7.x is end-of-life since 200802. Please migrate to Drupal 6.x
www/drupal4-nice_menus||2009-04-04|Has expired: Drupal 4.7.x is end-of-life since 200802. Please migrate to Drupal 6.x
www/drupal4-taxonomy_access||2009-04-04|Has expired: Drupal 4.7.x is end-of-life since 200802. Please migrate to Drupal 6.x
www/drupal4-textile||2009-04-04|Has expired: Drupal 4.7.x is end-of-life since 200802. Please migrate to Drupal 6.x
www/drupal4||2009-04-04|Has expired: Drupal 4.7.x is end-of-life since 200802. Please migrate to Drupal 6.x
www/squid26||2009-04-04|Has expired: The 2.6 series is no longer actively maintained by the Squid developers
x11-themes/camaelon-nesedah||2009-04-04|Has expired: now included in camaelon
x11-wm/compiz-fusion-plugins-main|x11-wm/compiz-plugins-main|2009-04-08|Dropping the fusion name
x11-wm/compiz-fusion-plugins-extra|x11-wm/compiz-plugins-extra|2009-04-08|Dropping the fusion name
x11-wm/compiz-fusion-plugins-unsupported|x11-wm/compiz-plugins-unsupported|2009-04-08|Dropping the fusion name
devel/gnome-build||2009-04-10|This port has been merged into Anjuta and is now obsolete
sysutils/gnome-volume-manager||2009-04-10|This port has been obsoleted by Nautilus
science/oof||2009-04-11|Has expired: Broken with GCC 4.2 and beyond
www/raqdevil||2009-04-11|Has expired: Master site gone, distfiles not fetchable
devel/arm-rtems-g77|devel/arm-rtems-gcc|2009-04-11|Has expired: use arm-rtems-gcc instead
devel/arm-rtems-objc|devel/arm-rtems-gcc|2009-04-11|Has expired: use arm-rtems-gcc instead
devel/i386-rtems-g77|devel/i386-rtems-gcc|2009-04-11|Has expired: use i386-rtems-gcc instead
devel/i386-rtems-objc|devel/i386-rtems-gcc|2009-04-11|Has expired: use i386-rtems-gcc instead
devel/i960-rtems-binutils||2009-04-11|Has expired: abandoned by mainstream
devel/i960-rtems-gcc||2009-04-11|Has expired: abandoned by mainstream
devel/i960-rtems-gdb||2009-04-11|Has expired: abandoned by mainstream
devel/m68k-rtems-g77|devel/m68k-rtems-gcc|2009-04-11|Has expired: use m68k-rtems-gcc instead
devel/m68k-rtems-objc|devel/m68k-rtems-gcc|2009-04-11|Has expired: use m68k-rtems-gcc instead
devel/mips-rtems-g77|devel/mips-rtems-gcc|2009-04-11|Has expired: use mips-rtems-gcc instead
devel/mips-rtems-objc|devel/mips-rtems-gcc|2009-04-11|Has expired: use mips-rtems-gcc instead
devel/powerpc-rtems-g77|devel/powerpc-rtems-gcc|2009-04-11|Has expired: use powerpc-rtems-gcc instead
devel/powerpc-rtems-objc|devel/powerpc-rtems-gcc|2009-04-11|Has expired: use powerpc-rtems-gcc instead
devel/sh-rtems-g77|devel/sh-rtems-gcc|2009-04-11|Has expired: use sh-rtems-gcc instead
devel/sh-rtems-objc|devel/sh-rtems-gcc|2009-04-11|Has expired: use sh-rtems-gcc instead
devel/sparc-rtems-g77|devel/sparc-rtems-gcc|2009-04-11|Has expired: use sparc-rtems-gcc instead
devel/sparc-rtems-objc|devel/sparc-rtems-gcc|2009-04-11|Has expired: use sparc-rtems-gcc instead
polish/gnugadu|polish/gnugadu2|2009-04-11|Has expired: Not developed anymore, unmaintained
security/cutlass||2009-04-11|Has expired: does not work with current version of security/botan
www/rt2|www/rt38|2009-04-11|Obsolete version, use www/rt38 instead
www/rt32|www/rt38|2009-04-11|Obsolete version, use www/rt38 instead
www/rt34|www/rt38|2009-04-11|Obsolete version, use www/rt38 instead
www/mod_snake||2009-04-12|Doesn't compile; abandoned upstream since 2002
www/mod_mya||2009-04-13|Depends on broken databases/mysql323-client
www/mod_mysqluserdir||2009-04-13|Depends on broken databases/mysql323-client
x11/nvidia-driver-71xx|x11/nvidia-driver-71|2009-04-13|Renamed
x11/nvidia-driver-96xx|x11/nvidia-driver-96|2009-04-13|Renamed
emulators/cpmtools27|emulators/cpmtools2|2009-04-25|Renamed
games/chromium|games/chromium-bsu|2009-04-26|Renamed
russian/xneur|deskutils/xneur|2009-04-27|Better category: supports many languages
audio/rubygem-mp3info|audio/rubygem-ruby-mp3info|2009-04-28|Updated to match GEM name, use rubygem-ruby-mp3info instead
sysutils/linux-megacli2|sysutils/linux-megacli|2009-04-30|Folded into unversioned port directory
net/vnstati|net/vnstat|2009-04-30|Use net/vnstat
audio/snowstar||2009-05-01|Has expired: Tcl 8.0 support is going to be dropped
devel/cppadvio||2009-05-01|Has expired: abandoned upstream, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
irc/olirc||2009-05-01|Has expired: project is discontinued and Tcl 8.2 support is going to be dropped
multimedia/toxine||2009-05-01|Has expired: has been inactive for almost 5 years
net-mgmt/nagios12||2009-05-01|Has expired: Obsolete version, consider migration to net-mgmt/nagios
sysutils/bbsmount||2009-05-01|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
sysutils/puppet-devel||2009-05-01|Has expired: Use sysutils/puppet instead
sysutils/tua||2009-05-01|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
x11/qrash||2009-05-01|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
textproc/sp||2009-05-03|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
www/phpsurveyor|www/limesurvey|2009-05-05|Project was renamed
devel/oskit||2009-05-07|Has expired: does not work with current versions of GCC, needs gcc295 which has been failing to build for months, no active maintainer
www/p5-WWW-Nicovideo-Download|www/p5-WWW-NicoVideo-Download|2009-05-07|Directory renamed
german/swissgerman-ding|german/ding|2009-05-12|Integrated into german/ding
misc/sonytv||2009-05-28|Has expired: Tcl 8.3 support is going to be dropped
mail/postilion||2009-05-28|Has expired: Tcl 8.3 support is going to be dropped
x11-toolkits/p5-TclTk||2009-05-28|Has expired: replaced by x11-toolkits/p5-Tcl-Tk
japanese/ipa-ttfonts|japanese/font-ipa|2009-05-30|Renamed
japanese/sazanami-ttf|japanese/font-sazanami|2009-05-30|Renamed
japanese/kochi-ttfonts|japanese/font-kochi|2009-05-30|Renamed
japanese/umefont|japanese/font-ume|2009-05-30|Renamed
japanese/mplusfonts|japanese/font-mplus|2009-05-30|Renamed
japanese/vlgothic|japanese/font-vlgothic|2009-05-30|Renamed
japanese/shinonome|japanese/font-shinonome|2009-05-30|Renamed
net/tftp-hpa|ftp/tftp-hpa|2009-05-31|Duplicate port
biology/p5-bioperl-devel||2009-06-05|Has expired: no longer under development
biology/p5-bioperl-run-devel||2009-06-05|Has expired: no longer under development
net-p2p/deluge05||2009-06-05|Has expired: use net-p2p/deluge instead
textproc/gmat||2009-06-05|Has expired: failed to build for a long time, no maintainer and apparently no users either
devel/powerpc-gcc||2009-06-06|Has expired: use cross-gcc instead
devel/powerpc-binutils||2009-06-06|Has expired: use cross-binutils instead
www/apache-jserv|www/tomcat6|2009-06-08|Has expired: superseded by tomcat
lang/perl5.6||2009-06-08|Has expired: no longer under development, use lang/perl5.10 or lang/perl5.8
multimedia/dplay|multimedia/playd|2009-06-10|Port renamed
www/epiphany-webkit|www/epiphany|2009-06-10|Webkit backend isn't supported
japanese/slirc||2009-06-13|Removed
chinese/wordpress||2009-06-13|Removed due to security vulnerabilities
www/amaya||2009-06-13|Removed due to security vulnerabilities
www/awstats-devel||2009-06-13|Removed due to security vulnerabilities
audio/festival+OGI||2009-06-13|Has expired: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
audio/festlex-ifd||2009-06-13|Has expired: unfulfilled dependencies for 8+ months, no active maintainer, no user interest
audio/festogi-italian||2009-06-13|Has expired: unfulfilled dependencies for 8+ months, no active maintainer, no user interest
audio/festogi-spanish||2009-06-13|Has expired: unfulfilled dependencies for 8+ months, no maintainer, no user interest
audio/festvox-abc||2009-06-13|Has expired: unfulfilled dependencies for 8+ months, no user interest
audio/festvox-hvs||2009-06-13|Has expired: unfulfilled dependencies for 8+ months, no user interest
audio/festvox-jph||2009-06-13|Has expired: unfulfilled dependencies for 8+ months, no maintainer, no user interest
audio/festvox-lp||2009-06-13|Has expired: unfulfilled dependencies for 8+ months, no active maintainer, no user interest
audio/festvox-mwm||2009-06-13|Has expired: unfulfilled dependencies for 8+ months, no maintainer, no user interest
audio/festvox-ogirab||2009-06-13|Has expired: unfulfilled dependencies for 8+ months, no maintainer, no user interest
audio/festvox-pc||2009-06-13|Has expired: unfulfilled dependencies for 8+ months, no active maintainer, no user interest
audio/festvox-tll||2009-06-13|Has expired: unfulfilled dependencies for 8+ months, no maintainer, no user interest
audio/py-sdl_mixer||2009-06-13|Has expired: has been broken for more than 6 months
graphics/libimg-tk83||2009-06-13|Has expired: Tcl 8.3 support is going to be dropped
multimedia/manencode||2009-06-13|Has expired
www/mnogosearch31||2009-06-13|Has expired: Use www/mnogosearch instead, this version is ancient
www/php4-mnogosearch||2009-06-13|Removed
www/winhelpcgi||2009-06-13|Has expired
x11-toolkits/p5-GtkXmHTML||2009-06-13|Has expired: depends on a broken, expired port
x11-toolkits/wxmozilla||2009-06-13|Has expired: has been broken for more than 6 months
audio/gnomad2||2009-06-13|Removed
audio/p5-Audio-TagLib||2009-06-13|Removed
audio/sineshaper||2009-06-13|Removed
comms/xcept||2009-06-13|Removed; obsolete protocol no longer in use by telcos
comms/gfax||2009-06-13|Removed
deskutils/kio_locate||2009-06-13|Removed
deskutils/mical||2009-06-13|Removed
devel/p5-VCP||2009-06-13|Removed
devel/ruby-p4||2009-06-13|Removed
games/fgsd||2009-06-13|Removed
graphics/demeter||2009-06-13|Removed
irc/ircg||2009-06-13|Removed
mail/silkymail||2009-06-13|Removed
multimedia/dirac-reference||2009-06-13|Removed
multimedia/smilutils||2009-06-13|Removed
net-im/icqnd||2009-06-13|Removed
net-im/ocaml-jabbr||2009-06-13|Removed
net-mgmt/nav||2009-06-13|Removed
net/evolution-rss||2009-06-13|Removed
net/openpbx.org||2009-06-13|Removed
news/inn-current||2009-06-13|Removed
science/elmerfront||2009-06-13|Removed
science/openfoam||2009-06-13|Removed
www/cacheboy||2009-06-13|Removed
www/p5-HTML-Embperl||2009-06-13|Removed
www/thttpd-st||2009-06-13|Removed
www/toofpy||2009-06-13|Removed
x11-drivers/xf86-video-vga||2009-06-13|Removed
x11-toolkits/py-pyxfce||2009-06-13|Removed
multimedia/mlt++|multimedia/mlt|2009-06-15|Project reorganization
x11-wm/enlightenment-devel|x11-wm/enlightenment|2009-06-15|Relocated
lang/pm3-base||2009-06-15|Has expired: Has been broken for more than 6 months
lang/pm3-forms||2009-06-15|Has expired: depends on broken, expired port
lang/pm3-gui||2009-06-15|Has expired: depends on broken, expired port
lang/pm3-m3tk||2009-06-15|Has expired: depends on broken, expired port
lang/pm3-net||2009-06-15|Has expired: depends on broken, expired port
lang/pm3-netobj||2009-06-15|Has expired: depends on broken, expired port
graphics/juno-2||2009-06-15|Removed
net/p5-ZConf-Mail|mail/p5-ZConf-Mail|2009-06-15|Moved to mail/p5-ZConf-Mail
net/p5-ZConf-BGSet|deskutils/p5-ZConf-BGSet|2009-06-15|Moved to deskutils/p5-ZConf-BGSet
www/postnuke||2009-06-16|Project abandoned
x11-toolkits/py-anygui||2009-06-16|No longer actively developed or supported
mail/mailrep||2009-06-18|Project abandoned
devel/monodoc||2009-06-19|Now included in lang/mono
misc/koffice-i18n|editors/koffice-i18n|2009-06-29|Moved to editors category
misc/koffice-i18n-af|editors/koffice-i18n-af|2009-06-29|Moved to editors category
misc/koffice-i18n-bg|editors/koffice-i18n-bg|2009-06-29|Moved to editors category
misc/koffice-i18n-br|editors/koffice-i18n-br|2009-06-29|Moved to editors category
misc/koffice-i18n-bs|editors/koffice-i18n-bs|2009-06-29|Moved to editors category
misc/koffice-i18n-ca|editors/koffice-i18n-ca|2009-06-29|Moved to editors category
misc/koffice-i18n-cs|editors/koffice-i18n-cs|2009-06-29|Moved to editors category
misc/koffice-i18n-cy|editors/koffice-i18n-cy|2009-06-29|Moved to editors category
misc/koffice-i18n-da|editors/koffice-i18n-da|2009-06-29|Moved to editors category
misc/koffice-i18n-el|editors/koffice-i18n-el|2009-06-29|Moved to editors category
misc/koffice-i18n-en_GB|editors/koffice-i18n-en_GB|2009-06-29|Moved to editors category
misc/koffice-i18n-eo|editors/koffice-i18n-eo|2009-06-29|Moved to editors category
misc/koffice-i18n-es|editors/koffice-i18n-es|2009-06-29|Moved to editors category
misc/koffice-i18n-et|editors/koffice-i18n-et|2009-06-29|Moved to editors category
misc/koffice-i18n-eu|editors/koffice-i18n-eu|2009-06-29|Moved to editors category
misc/koffice-i18n-fa|editors/koffice-i18n-fa|2009-06-29|Moved to editors category
misc/koffice-i18n-fi|editors/koffice-i18n-fi|2009-06-29|Moved to editors category
misc/koffice-i18n-ga|editors/koffice-i18n-ga|2009-06-29|Moved to editors category
misc/koffice-i18n-gl|editors/koffice-i18n-gl|2009-06-29|Moved to editors category
misc/koffice-i18n-hi|editors/koffice-i18n-hi|2009-06-29|Moved to editors category
misc/koffice-i18n-hsb|editors/koffice-i18n-hsb|2009-06-29|Moved to editors category
misc/koffice-i18n-is|editors/koffice-i18n-is|2009-06-29|Moved to editors category
misc/koffice-i18n-it|editors/koffice-i18n-it|2009-06-29|Moved to editors category
misc/koffice-i18n-km|editors/koffice-i18n-km|2009-06-29|Moved to editors category
misc/koffice-i18n-lo|editors/koffice-i18n-lo|2009-06-29|Moved to editors category
misc/koffice-i18n-lt|editors/koffice-i18n-lt|2009-06-29|Moved to editors category
misc/koffice-i18n-lv|editors/koffice-i18n-lv|2009-06-29|Moved to editors category
misc/koffice-i18n-mk|editors/koffice-i18n-mk|2009-06-29|Moved to editors category
misc/koffice-i18n-ms|editors/koffice-i18n-ms|2009-06-29|Moved to editors category
misc/koffice-i18n-mt|editors/koffice-i18n-mt|2009-06-29|Moved to editors category
misc/koffice-i18n-nb|editors/koffice-i18n-nb|2009-06-29|Moved to editors category
misc/koffice-i18n-nl|editors/koffice-i18n-nl|2009-06-29|Moved to editors category
misc/koffice-i18n-nn|editors/koffice-i18n-nn|2009-06-29|Moved to editors category
misc/koffice-i18n-ro|editors/koffice-i18n-ro|2009-06-29|Moved to editors category
misc/koffice-i18n-se|editors/koffice-i18n-se|2009-06-29|Moved to editors category
misc/koffice-i18n-sk|editors/koffice-i18n-sk|2009-06-29|Moved to editors category
misc/koffice-i18n-sl|editors/koffice-i18n-sl|2009-06-29|Moved to editors category
misc/koffice-i18n-sr|editors/koffice-i18n-sr|2009-06-29|Moved to editors category
misc/koffice-i18n-sr@Latn|editors/koffice-i18n-sr@Latn|2009-06-29|Moved to editors category
misc/koffice-i18n-sv|editors/koffice-i18n-sv|2009-06-29|Moved to editors category
misc/koffice-i18n-ta|editors/koffice-i18n-ta|2009-06-29|Moved to editors category
misc/koffice-i18n-tg|editors/koffice-i18n-tg|2009-06-29|Moved to editors category
misc/koffice-i18n-th|editors/koffice-i18n-th|2009-06-29|Moved to editors category
misc/koffice-i18n-tr|editors/koffice-i18n-tr|2009-06-29|Moved to editors category
misc/koffice-i18n-uz|editors/koffice-i18n-uz|2009-06-29|Moved to editors category
misc/koffice-i18n-ven|editors/koffice-i18n-ven|2009-06-29|Moved to editors category
misc/koffice-i18n-xh|editors/koffice-i18n-xh|2009-06-29|Moved to editors category
misc/koffice-i18n-zu|editors/koffice-i18n-zu|2009-06-29|Moved to editors category
x11-toolkits/tk80||2009-07-07|Has expired: Tcl 8.0 support is dropped
lang/tcl80||2009-07-07|Has expired: Tcl 8.0 support is dropped
audio/gai-album||2009-07-07|Has expired: abandoned project, does not build
audio/gai-visual-audio||2009-07-07|Has expired: abandoned project, does not build
devel/linxt||2009-07-07|Has expired: Use devel/roboctl instead
german/citrix_ica|net/citrix_ica|2009-07-07|Has expired: Use net/citrix_ica
japanese/citrix_ica|net/citrix_ica|2009-07-07|Has expired: Use net/citrix_ica
mail/bogofilter-qdbm||2009-07-07|Has expired: Migrate to bogofilter-tc instead
mail/xc-mail||2009-07-07|Has expired: depends on a port that expired in 2007
www/trac-blog||2009-07-07|Has expired: Not supported anymore for trac > 0.10; use FullBlogPlugin instead
www/trac-restrictedarea||2009-07-07|Has expired: Not supported anymore; functionality included in trac since 0.11
deskutils/plasma-applet-quicklauncher||2009-07-10|Not supported anymore; functionality in kdebase4-workspace now
net-mgmt/net-snmp53||2009-07-13|Has expired: Use net-mgmt/net-snmp
www/firefox-devel||2009-07-13|Please use www/firefox3 or www/firefox35
databases/phpminadmin|databases/adminer|2009-07-14|Project was renamed
math/R-sp|math/R-cran-sp|2009-07-17|Port was renamed
lang/gcc-ooo|lang/gcc43|2009-07-18|Not used by OpenOffice anymore, superseded by gcc43
security/altivore||2009-07-19|Removed
editors/openoffice.org-2-devel||2009-07-21|Removed
games/amy||2009-07-28|Has expired: mastersite disappeared, does not build on recent version
security/hashish||2009-07-28|Has expired: does not compile
security/smtpmap||2009-07-28|Has expired: depends on GCC 2.95 which has not been available for 9+ months
devel/boost|devel/boost-libs|2009-07-28|Boost ports were split and sliced
devel/boost-python|devel/boost-python-libs|2009-07-28|Boost ports were split and sliced
www/xpi-firegpg||2009-07-31|Removed
editors/koffice-i18n-sr@Latn|editors/koffice-i18n-sr_Latn|2009-08-02|Use editors/koffice-i18n-sr_Latn
misc/kde3-i18n-sr@Latn|misc/kde3-i18n-sr_Latn|2009-08-02|Use misc/kde3-i18n-sr_Latn
lang/tinycobol||2009-08-08|Has expired: no longer being developed; consider using lang/open-cobol instead
net/ppptraf||2009-08-08|Removed: author has abandoned this program
www/zope-guf||2009-08-08|Removed: no longer being developed: use SimpleUserFolder or exUserFolder instead
misc/xenmenu||2009-08-08|Removed: Project abandoned in 1998
security/dns-proxy-tor||2009-08-09|Removed
security/trans-proxy-tor||2009-08-09|Removed: trans-proxy-tor is rendered obsolete by Tor's TransPort option (currently only available in tor-devel)
science/dft++||2009-08-11|Removed
devel/p5-MooseX-Policy-SemiAffordanceAccessor|devel/p5-MooseX-SemiAffordanceAccessor|2009-08-18|Renamed
www/mediawiki12|www/mediawiki112|2009-08-19|Renamed
lang/gcc42-withgcjawt|lang/gcc42|2009-08-19|Not needed any longer, still an option for the regular lang/gcc ports
math/octave-forge-windows||2009-08-23|Abandoned upstream
math/freefem++||2009-08-23|Has expired: unmaintained and consistently unportable
math/it++||2009-08-23|Has expired: unmaintained and consistently unportable
databases/firebird-client||2009-09-03|Removed: no longer under development
databases/firebird-server||2009-09-03|Removed: no longer under development
audio/slimserver|audio/squeezecenter|2009-09-04|SlimServer has been superseded by SqueezeCenter
audio/slimserver-dynamicplaylist|audio/squeezecenter-dynamicplaylist|2009-09-04|SlimServer has been superseded by SqueezeCenter
audio/slimserver-dynamictransition||2009-09-04|SlimServer has been superseded by SqueezeCenter
audio/slimserver-lastfm||2009-09-04|SlimServer has been superseded by SqueezeCenter
audio/slimserver-lazysearch|audio/squeezecenter-lazysearch|2009-09-04|SlimServer has been superseded by SqueezeCenter
audio/slimserver-slimscrobbler||2009-09-04|SlimServer has been superseded by SqueezeCenter
audio/slimserver-sqlplaylist|audio/squeezecenter-sqlplaylist|2009-09-04|SlimServer has been superseded by SqueezeCenter
audio/slimserver-superdatetime|audio/squeezecenter-superdatetime|2009-09-04|SlimServer has been superseded by SqueezeCenter
audio/slimserver-trackstat|audio/squeezecenter-trackstat|2009-09-04|SlimServer has been superseded by SqueezeCenter
www/conkeror|www/xpi-conkeror|2009-09-05|Please use www/xpi-conkeror
www/nvu|www/kompozer|2009-09-10|Abandoned upstream since 2005
editors/bed||2009-09-13|Removed: marked IGNORE for more than two years, unmaintained
devel/eric||2009-09-16|Removed: obsoleted by devel/eric4
devel/p5-Algorithm-MDiff||2009-09-16|Has expired: the module was removed from CPAN
devel/p5-Data-Postponed||2009-09-16|Has expired: the module was removed from CPAN
net/asterisk12-addons||2009-09-16|Has expired: does not build
archivers/lzmautils|archivers/xz|2009-09-21|Project was renamed
archivers/lzmautils-devel|archivers/xz|2009-09-21|Project was renamed
audio/audacious-mac||2009-09-21|Does not work with audacious 2 and audacious-plugins already delivers a demac plugin
systutils/uptimec||2009-09-23|Project is gone since 2007
www/cakephp||2009-09-23|Repomoved to www/cakephp11
www/cakephp-devel||2009-09-23|Repomoved to www/cakephp12
audio/gmpccaa||2009-09-24|Unmaintained upstream
audio/gmpc-osd||2009-09-24|Unmaintained upstream
audio/gmpc-qosd||2009-09-24|Unmaintained upstream
audio/gmpc-random-playlist||2009-09-24|Unmaintained upstream
audio/gmpc-serverstats||2009-09-24|Unmaintained upstream
audio/gmpc-favorites||2009-09-24|Unmaintained upstream
audio/gmpc-autoplaylist||2009-09-24|Unmaintained upstream
audio/gmpc-stopbutton||2009-09-24|Unmaintained upstream
sysutils/zccron|sysutils/p5-ZConf-Cron|2009-09-27|Please use sysutils/p5-ZConf-Cron
devel/p5-Cwd|devel/p5-PathTools|2009-09-30|Please use devel/p5-PathTools
x11/electricsheep||2009-10-02|No source tarball, Unix code unmaintained
sysutils/fusefs-gphotofs||2009-10-05|Removed
x11/kxgenerator||2009-10-07|Has expired: Project abandoned, master site disappeared
hebrew/geresh||2009-10-08|No longer maintained upstream
misc/tmux|sysutils/tmux|2009-10-14|Moved to sysutils category
audio/xmms-uade|audio/uade|2009-10-18|Decoupled from XMMS port
net-p2p/mute-net-gui|net-p2p/mute-net|2009-10-19|Broken for extensive period of time and unmaintained
net-p2p/mute-net-text|net-p2p/mute-net|2009-10-19|Broken for extensive period of time and unmaintained
graphics/libwpcg||2009-10-25|Unmaintained upstream, depends on an old version of GCC, lacks a maintainer, and not used by anything else
databases/ruby-dbd_msql||2009-10-29|Has expired: no longer under development
databases/ruby-dbd_proxy||2009-10-29|Has expired: no longer under development
databases/ruby-dbd_interbase||2009-10-29|Has expired: no longer under development
textproc/p5-XML-LibXML-Common|textproc/p5-XML-LibXML|2009-10-30|Merged
misc/bibletime-kde4|misc/bibletime|2009-10-30|Renamed now that KDE dependencies are removed
net/xmlrpc++||2009-10-31|Unmaintained upstream and on the FreeBSD side
net-p2p/mute-net||2009-10-31|Broken for extensive period of time and unmaintained
emulators/fceu|emulators/fceux|2009-11-04|Repocopied to new location
net/p5-Net-EPP-Frame|net/p5-Net-EPP|2009-11-11|Please use net/p5-Net-EPP
net/p5-Net-EPP-Client|net/p5-Net-EPP|2009-11-11|Please use net/p5-Net-EPP
editors/qemacs||2009-11-19|Has expired: depends on old version of GCC, no maintainer, not used by any other port, dead upstream
mail/postfix-gps-devel||2009-11-19|Has expired: Older than main port, no sign of maintainer activity beyond port creation 4+ years ago
graphics/php4-ffmpeg||2009-11-19|Has expired: development continues only for php5
net-p2p/nicotine||2009-11-19|Has expired: development stalled years ago, use net-p2p/nicotine-plus instead
sysutils/rsyslog||2009-11-19|Has expired: Use sysutils/rsyslog3 or sysutils/rsyslog4 instead
sysutils/rsyslog-gssapi||2009-11-19|Has expired: Use sysutils/rsyslog3 or sysutils/rsyslog4 instead
sysutils/rsyslog-mysql||2009-11-19|Has expired: Use sysutils/rsyslog3 or sysutils/rsyslog4 instead
sysutils/rsyslog-pgsql||2009-11-19|Has expired: Use sysutils/rsyslog3 or sysutils/rsyslog4 instead
misc/kde4-l10n-ta||2009-11-19|Has expired: unfetchable and unmaintained upstream
security/f-prot-sig||2009-11-20|No longer needed with security/f-prot update
lang/gcc295|lang/gcc44|2009-11-21|Abandoned upstream, superseded by later versions
games/freebsd-games|games/bsdgames|2009-11-21|Superseded by and equivalent to freebsd-games
devel/arm-elf-gcc295|devel/cross-gcc|2009-11-21|Broken with current versions of FreeBSD, abandoned upstream, superseded by later versions
x11-toolkits/xclasses||2009-11-24|Has expired: Version branch long since retired
mail/p5-Email-MIME-Creator||2009-11-24|Folded into p5-Email-MIME package
mail/p5-Email-MIME-Modifier||2009-11-24|Folded into p5-Email-MIME package
mail/p5-Email-Simple-Creator||2009-11-24|Folded into p5-Email-Simple package
www/gecko-sharp10|www/gecko-sharp20|2009-11-26|Superseded by later version
devel/tclxml-libxml2|devel/tclxml|2009-11-26|Port now is part of devel/tclxml
devel/tclxml-expat|devel/tclxml|2009-11-26|Port now is part of devel/tclxml
www/tcldom|devel/tclxml|2009-11-26|Port now is part of devel/tclxml
www/tcldom-libxml2|devel/tclxml|2009-11-26|Port now is part of devel/tclxml
lang/erlang-doc||2009-11-27|Documentation now part of lang/erlang package
devel/gtkmozedit||2009-11-27|No longer under development, does not build with libxul
finance/p5-HTML-Query|www/p5-HTML-Query|2009-11-28|Moved to www category
graphics/clutter-cairo|graphics/clutter|2009-11-28|This port is obsolete, all functionality is now in graphics/clutter
www/galeon||2009-11-28|This port is obsolete; similar functionality can be found in www/epiphany
sysutils/policykit-kde||2009-11-29|This port is obsolete; all functionality included in x11/kdebase4
audio/squeezecenter-trackstat|audio/squeezeboxserver-trackstat|2009-11-30|Has expired: Replaced by audio/squeezeboxserver-trackstat
audio/squeezecenter-superdatetime|audio/squeezeboxserver-superdatetime|2009-11-30|Has expired: Replaced by audio/squeezeboxserver-superdatetime
audio/squeezecenter-sqlplaylist|audio/squeezeboxserver-sqlplaylist|2009-11-30|Has expired: Replaced by audio/squeezeboxserver-sqlplaylist
audio/squeezecenter-lazysearch|audio/squeezeboxserver-lazysearch|2009-11-30|Has expired: Replaced by audio/squeezeboxserver-lazysearch
audio/squeezecenter-dynamicplaylist|audio/squeezeboxserver-dynamicplaylist|2009-11-30|Has expired: Replaced by audio/squeezeboxserver-dynamicplaylist
audio/squeezecenter|audio/squeezeboxserver|2009-11-30|Has expired: Replaced by audio/squeezeboxserver
www/mod_auth_mysql41_ap2||2009-11-30|Has expired: distfile no longer fetchable
x11-toolkits/gtkscintilla||2009-11-30|Has expired: no longer under development, last release in 2002
x11-toolkits/py-gtkscintilla||2009-11-30|Has expired: no longer under development, last release in 2002
www/xulrunner|www/libxul|2009-12-02|Superseded by www/libxul
security/pear-Crypt_HMAC||2009-12-07|Please use security/pear-Crypt_HMAC2
mail/dovecot-devel|mail/dovecot|2009-12-08|Non-devel version is newer
net-mgmt/net-snmp-tkmib||2009-12-08|Depends on expired port p5-SNMP
net-mgmt/p5-SNMP||2009-12-08|Expired
www/jakarta-tomcat4||2009-12-08|Has expired: www/jakarta-tomcat5 is recommended instead for new installations
x11-toolkits/p5-Gnome||2009-12-08|Has expired: Has been broken for more than 6 months
editors/abiword-extras|editors/abiword|2009-12-08|This subport has been included in the main port
editors/abiword-plugins|editors/abiword|2009-12-08|This subport has been included in the main port
www/jakarta-tomcat5||2009-12-10|Has expired: Old version, consider using www/tomcat55 or www/tomcat6 instead
net-mgmt/zabbix|net-mgmt/zabbix-server|2009-12-13|Port was split into three components
net/grdc|net/remmina|2009-12-14|Project was renamed
net/grdc-applet|net/remmina-applet|2009-12-14|Project was renamed
security/pfw||2009-12-14|Project is no longer maintainer
ftp/pftpx||2009-12-15|Broken by libevent update and the project is dead
x11-toolkits/evilvte|x11/evilvte|2009-12-15|Moved to x11 category
lang/python23||2009-12-18|No longer under development
lang/python30||2009-12-18|No longer under development
cad/fandango||2009-12-18|No longer under development
math/py-mpz||2009-12-18|Depends on expired Python ports
www/neon26|www/neon28|2009-12-19|Removed due to security vulnerabilities
misc/bsdiff||2009-12-24|Incorporated into base system long ago
security/freebsd-update||2009-12-24|Incorporated into base system long ago
sysutils/est||2009-12-24|Incorporated into base system long ago
sysutils/estctrl||2009-12-24|Incorporated into base system long ago
sysutils/freebsd-sha1||2009-12-24|Incorporated into base system long ago
sysutils/freebsd-sha256||2009-12-24|Incorporated into base system long ago
irc/znc-extras||2009-12-24|Has expired: Migrate to irc/znc instead
games/love|devel/love|2009-12-26|Moved to a better category
archivers/star-devel||2009-12-26|Removed
databases/mysql54-client|databases/mysql55-client|2010-01-04|Updated to milestone 2
databases/mysql54-server|databases/mysql55-server|2010-01-04|Updated to milestone 2
databases/mysql54-scripts|databases/mysql55-scripts|2010-01-04|Updated to milestone 2
databases/p5-DBD-mysql54|databases/p5-DBD-mysql55|2010-01-04|Updated to milestone 2
misc/sword15|misc/sword|2010-01-06|Has expired: use misc/sword
misc/bibletime-kde3|misc/bibletime|2010-01-06|Has expired: use misc/bibletime
mail/squirrelmail-devel|mail/squirrelmail|2010-01-06|Has expired: use mail/squirrelmail
lang/drscheme|lang/plt-scheme|2010-01-07|Superseded by lang/plt-scheme
databases/mysql60-client||2010-01-10|Has expired: no longer under development
databases/mysql60-server||2010-01-10|Has expired: no longer under development
databases/mysql60-scripts||2010-01-10|Has expired: no longer under development
databases/p5-DBD-mysql60||2010-01-10|Has expired: no longer under development
devel/cl-asdf-sbcl||2010-01-12|lang/sbcl has a bundled asdf version
emulators/virtualbox|emulators/virtualbox-ose|2010-01-13|Renamed and split into two components
devel/gold|devel/binutils|2010-01-13|Part of binutils
shells/tcsh-bofh||2010-01-15|Removed
audio/ccaudio||2010-01-18|Has expired: has been broken for 4 months
audio/py-libmpdclient||2010-01-18|Has expired: has been broken for 3 months
chinese/gbk2uni||2010-01-18|Has expired: has been broken for 6 months
chinese/iiimf-le-xcin||2010-01-18|Has expired: has been broken for 3 months
devel/adabindx||2010-01-18|Has expired: has been broken for 3 months
devel/agide||2010-01-18|Has expired: has been broken for 6 months
devel/asis||2010-01-18|Has expired: has been broken for 3 months
devel/callgrind||2010-01-18|Has expired: Included in devel/valgrind
devel/florist||2010-01-18|Has expired: has been broken for 3 months
graphics/gephex||2010-01-18|Has expired: has been broken for 3 months
graphics/irit||2010-01-18|Has expired: has been broken for 3 months
graphics/pixieplus||2010-01-18|Has expired: has been broken for 6 months
japanese/expect||2010-01-18|Has expired: has been broken for 3 months
lang/pnetc||2010-01-18|Has expired: has been broken for 5 months
mail/libnewmail||2010-01-18|Has expired: has been broken for 3 months
net-mgmt/flowscan||2010-01-18|Has expired: has been broken for 5 months
net/astmanproxy||2010-01-18|Has expired: has been broken for 3 months
palm/prc-tools||2010-01-18|Has expired: has been broken for 4 months
print/latex-msc||2010-01-18|Has expired: has been broken for 3 months
science/xloops-ginac||2010-01-18|Has expired: has been broken for 3 months
shells/bush||2010-01-18|Has expired: has been broken for 3 months
textproc/iiimf-gnome-im-switcher||2010-01-18|Has expired: has been broken for 4 months
textproc/iiimf-gtk||2010-01-18|Has expired: has been broken for 3 months
x11-toolkits/gtkada-devel||2010-01-18|Has expired: has been broken for 3 months
x11-wm/ion-2||2010-01-18|Has expired: has been broken for 4 months
databases/pear-Doctrine2||2010-01-20|Removed
audio/dino||2010-01-20|Has expired: has been broken for 7 months
devel/asis-gpl||2010-01-20|Has expired: has been broken for 3 months
devel/kdesvn||2010-01-20|Has expired: has been broken for 4 months
devel/radrails||2010-01-20|Has expired: has been broken for 3 months
devel/rubygem-rtags||2010-01-20|Has expired: has been broken for 5 months
games/hattrickorganizer||2010-01-20|Has expired: Has been broken for a while
games/laughingman||2010-01-20|Has expired: has been broken for 3 months
devel/gdb53||2010-01-20|Has expired: has been broken for 3 months
lang/ccscript||2010-01-20|Has expired: has been broken for 4 months
lang/gnat-glade||2010-01-20|Has expired: has been broken for 3 months
lang/xsb||2010-01-20|Has expired: has been broken for 6 months
multimedia/nmm||2010-01-20|Has expired: has been broken for 3 months
textproc/bidiv||2010-01-20|Has expired: has been broken for 3 months
textproc/xmlada-gps||2010-01-20|Has expired: has been broken for 3 months
net/mugshot||2010-01-23|No longer working, Mastersite disappeared
lang/gnat-gcc41|lang/gnat-gcc44|2010-01-24|Superseded by newer upstream versions
x11-toolkits/gtkada-gcc||2010-01-24|Not really maintained for a while and depended on lang/gnat-gcc41 which is gone
x11-toolkits/gtkada-gps||2010-01-28|Has expired: has been broken for 3 months
x11-fm/velocity||2010-01-28|Has expired: has been broken for 7 months
x11-drivers/xf86-video-nsc||2010-01-28|Has expired: has been broken for 5 months
security/shibboleth-sp||2010-01-28|Has expired: has been broken for 3 months
www/pecl-pecl_http|www/pecl-http|2010-01-31|Duplicate ports
chinese/stardict2-dict-zh_CN||2010-01-31|Please use chinese/stardict-dict-zh_CN
math/octave-forge-ann||2010-02-02|Has expired: has been broken for 3 months
math/octave-forge-fixed||2010-02-02|Has expired: has been broken for 3 months
math/octave-forge-ftp||2010-02-02|Has expired: has been broken for 3 months
math/octave-forge-graceplot||2010-02-02|Has expired: has been broken for 3 months
math/octave-forge-triangular||2010-02-02|Has expired: has been broken for 3 months
math/octave-forge-vrml||2010-02-02|Has expired: has been broken for 3 months
sysutils/lugtools|sysutils/p5-Plugtools|2010-02-04|Superseded by sysutils/p5-Plugtools
irc/conspire||2010-02-04|Upstream development abandoned
x11-toolkits/swt31|x11-toolkits/swt|2010-02-07|Superseded by x11-toolkits/swt
sysutils/smartmontools-devel|sysutils/smartmontools|2010-02-10|Removed, use sysutils/smartmontools instead
ports-mgmt/portbrowser||2010-02-16|No longer maintained
editors/openoffice.org-2-RC||2010-02-19|Removed
net-p2p/rblibtorrent-devel|net-p2p/libtorrent-rasterbar-14|2010-02-21|No longer devel, recognize project name
sysutils/munin-main|sysutils/munin-master|2010-02-22|Reorganized upstream
multimedia/tsMuxeR|multimedia/linux-tsmuxer|2010-02-24|Port was given a better name
japanese/stardict2-dict-ja||2010-02-25|Please use japanese/stardict-dict-ja
net/mpd||2010-02-25|Has expired: obsoleted, unsupported port. Use net/mpd4, net/mpd5 instead
textproc/xmlada-gcc||2010-02-27|Has expired: broken and practically unmaintained
www/cheetah||2010-03-16|Has expired: broken, unmaintained, development ceased in 2001
net-p2p/rblibtorrent-devel||2010-03-16|Old version, no longer depended on
mail/sylpheed2|mail/sylpheed3|2010-03-23|Update to new major version
multimedia/gstreamer-schroedinger||2010-03-24|Removed
multimedia/video4bsd-kmod|multimedia/cuse4bsd-kmod|2010-03-25|Renamed
japanese/asterisk-sound|japanese/asterisk-sounds|2010-03-26|Fix port name typo
x11-drivers/xf86-input-calcomp||2010-03-27|Unmaintained upstream. Notify x11 Maintainers if you have this device
x11-drivers/xf86-input-digitaledge||2010-03-27|Unmaintained upstream. Notify x11 Maintainers if you have this device
x11-drivers/xf86-input-dmc||2010-03-27|Unmaintained upstream. Notify x11 Maintainers if you have this device
x11-drivers/xf86-input-dynapro||2010-03-27|Unmaintained upstream. Notify x11 Maintainers if you have this device
x11-drivers/xf86-input-elo2300||2010-03-27|Unmaintained upstream. Notify x11 Maintainers if you have this device
x11-drivers/xf86-input-jamstudio||2010-03-27|Unmaintained upstream. Notify x11 Maintainers if you have this device
x11-drivers/xf86-input-magellan||2010-03-27|Unmaintained upstream. Notify x11 Maintainers if you have this device
x11-drivers/xf86-input-microtouch||2010-03-27|Unmaintained upstream. Notify x11 Maintainers if you have this device
x11-drivers/xf86-input-palmax||2010-03-27|Unmaintained upstream. Notify x11 Maintainers if you have this device
x11-drivers/xf86-input-spaceorb||2010-03-27|Unmaintained upstream. Notify x11 Maintainers if you have this device
x11-drivers/xf86-input-summa||2010-03-27|Unmaintained upstream. Notify x11 Maintainers if you have this device
x11-drivers/xf86-input-tek4957||2010-03-27|Unmaintained upstream. Notify x11 Maintainers if you have this device
audio/ym2wav|audio/stymulator|2010-03-27|ym2wav is now part of stymulator
www/trac-webadmin||2010-03-30|Incorporated to www/trac
audio/gstreamer-plugins-ivorbis|audio/gstreamer-plugins-vorbis|2010-03-30|ivorbis plugin got merged into the vorbis plugin
math/octave-forge-arpack||2010-04-02|Incorporated to math/octave-forge
www/p5-Plack-Request||2010-04-03|Incorporated to www/p5-Plack
net-im/pidgin-birthday_reminder|net-im/pidgin-birthday-reminder|2010-04-05|Project was renamed
misc/proj4|graphics/proj|2010-04-05|Replaced
sysutils/phplogcon|sysutils/loganalyzer|2010-04-05|Project was renamed
databases/php5-dbase||2010-04-09|Removed from core php
devel/php5-ncurses||2010-04-09|Removed from core php
devel/php5-pcre|lang/php5|2010-04-09|Bundled in core php
devel/php5-spl|lang/php5|2010-04-09|Bundled in core php
graphics/php5-ming||2010-04-09|Removed from core php
security/php5-mhash|security/php5-hash|2010-04-09|Wrapper in hash extension
databases/php5-oci8||2010-04-11|Doesn't support Oracle8 client library
databases/php5-pdo_oci||2010-04-11|Doesn't support Oracle8 client library
sysutils/rc_subr||2010-04-16|No longer needed
math/libgmp4|math/gmp|2010-04-19|Switch to newer performance release
irc/dircproxy-devel||2010-04-19|Removed
security/krb5-17||2010-04-25|Deleted: no longer builds with new OpenSSL 1.0; security/krb5 now contains 1.8.1
www/blogd|www/ephemera|2010-04-26|Port renamed
audio/py-flac||2010-05-02|Has expired: has been marked IGNORE for past 24 months
databases/mysql-connector-java50||2010-05-02|Has expired: Old version: please use databases/mysql-connector-java instead
databases/p5-DBIx-Class-HTML-FormFu||2010-05-02|Has expired: This module is obsoleted by www/p5-HTML-FormFu-Model-DBIC
devel/py-rbtree||2010-05-02|Has expired: does not build with new pyrex and not actively maintained
devel/tavrasm||2010-05-02|Has expired: No longer maintained, use devel/avra instead
mail/postfix23||2010-05-02|Has expired: No longer maintained by upstream developer
misc/ezload||2010-05-02|Has expired: does not build with new USB stack in 8-STABLE
misc/gkrellmbgchg||2010-05-02|Has expired: use misc/gkrellmbgchg2
multimedia/kbtv||2010-05-02|Has expired: no longer under development by author
net/plb||2010-05-02|Has expired: broken; abandoned by author; use net/relayd or www/nginx instead
security/vpnd||2010-05-02|Has expired: This software is no longer developed
textproc/isearch||2010-05-02|Has expired: abandoned upstream, uses an obsolete version of GCC, not used by any other port
www/caudium12||2010-05-02|Has expired: No longer maintained upstream, please switch to www/caudium14
www/p5-Catalyst-Plugin-Cache-FileCache||2010-05-02|Has expired: Deprecated by module author in favor of www/p5-Catalyst-Plugin-Cache
accessibility/gir-repository-atk|accessibility/atk|2010-05-10|Now installed by accessibility/atk
multimedia/totem-xine|multimedia/totem|2010-05-10|Totem xine backend is dead for a while
www/gir-repository-webkit|www/webkit-gtk2|2010-05-10|Now installed by www/webkit-gtk2
x11-toolkits/gir-repository-gtk20|x11-toolkits/gtk20|2010-05-10|Now installed by x11-toolkits/gtk20
x11-toolkits/gir-repository-libwnck|x11-toolkits/libwnck|2010-05-10|Now installed by x11-toolkits/libwnck
x11-toolkits/gir-repository-pango|x11-toolkits/pango|2010-05-10|Now installed by x11-toolkits/pango
x11/gir-repository-gnome-menus|x11/gnome-menus|2010-05-10|Now installed by x11/gnome-menus
x11/kdelibs4-experimental|x11/kdelibs4|2010-05-11|Now integrated to x11/kdelibs4
www/mod_extract_forwarded2||2010-05-12|Use www/mod_extract_forwarded instead
misc/ldconfig_compat||2010-05-14|Supported releases don't need the port anymore
devel/nx||2010-05-14|Remove due math/py-networkx be the same port and with more appropriated name
math/libranlib|math/librandlib|2010-05-17|Project renamed
print/hplip3|print/hplip|2010-05-17|hplip port updated to 3.X version
emulators/sdlmame|emulators/mame|2010-05-17|SDL port has been integrated into mainstream
devel/apr|devel/apr1|2010-05-18|Renamed to devel/apr1
science/pyNN|science/pynn|2010-05-19|Rename to science/pynn
databases/postgresql-contrib|databases/postgresql82-contrib|2010-05-20|Use databases/postgresqlNN-contrib, select version to match your PostgreSQL server
lang/yorick-doc||2010-05-20|Has expired: up-to-date docs are included in the lang/yorick port
devel/perforce|devel/p4|2010-05-20|Split into multiple ports
net/dgd-net||2010-05-24|Has expired: all network functionality is included in net/dgd
archivers/hs-zip-archive-ghc|archivers/hs-zip-archive|2010-05-24|Renamed: No need for suffix
devel/hs-binary-ghc|devel/hs-binary|2010-05-24|Renamed: No need for suffix
devel/darcs|devel/hs-darcs|2010-05-24|Renamed: It has become a hackage transcript
devel/hs-language-c-ghc|devel/hs-language-c|2010-05-24|Renamed: No need for suffix
devel/hs-lazysmallcheck-ghc|devel/hs-lazysmallcheck|2010-05-24|Renamed: No need for suffix
devel/hs-pcre-light-ghc|devel/hs-pcre-light|2010-05-24|Renamed: No need for suffix
devel/hs-utf8-string-ghc|devel/hs-utf8-string|2010-05-24|Renamed: No need for suffix
graphics/hs-HGL-ghc|graphics/hs-HGL|2010-05-24|Renamed: No need for suffix
ports-mgmt/porte|ports-mgmt/hs-porte|2010-05-24|Renamed: It has become a hackage transcript
security/hs-digest-ghc|security/hs-digest|2010-05-24|Renamed: No need for suffix
textproc/hs-haxml|textproc/hs-HaXml|2010-05-24|Renamed: Brought in sync with HackageDB
textproc/hs-highlighting-kate-ghc|textproc/hs-highlighting-kate|2010-05-24|Renamed: No need for suffix
textproc/hs-polyparse-ghc|textproc/hs-polyparse|2010-05-24|Renamed: No need for suffix
textproc/pandoc|textproc/hs-pandoc|2010-05-24|Renamed: It has become a Cabal transcript
x11/hs-x11-ghc|x11/hs-X11|2010-05-24|Renamed: Brought in sync with HackageDB and no need for suffix
x11/hs-x11-xft-ghc|x11/hs-X11-xft|2010-05-24|Renamed: Brought in sync with HackageDB and no need for suffix
x11/xmobar|x11/hs-xmobar|2010-05-24|Renamed: It has become a hackage transcript
x11-toolkits/hs-OpenGLRaw-ghc|x11-toolkits/hs-OpenGLRaw|2010-05-24|Renamed: No need for suffix
x11-toolkits/hs-GLURaw-ghc|x11-toolkits/hs-GLURaw|2010-05-24|Renamed: No need for suffix
x11-toolkits/hs-opengl-ghc|x11-toolkits/hs-OpenGL|2010-05-24|Renamed: Brought in sync with HackageDB and no need for suffix
x11-toolkits/hs-glut-ghc|x11-toolkits/hs-GLUT|2010-05-24|Renamed: Brought in sync with HackageDB and no need for suffix
x11-wm/xmonad|x11-wm/hs-xmonad|2010-05-24|Renamed: It has become a Cabal transcript
x11-wm/xmonad-contrib|x11-wm/hs-xmonad-contrib|2010-05-24|Renamed: It has become a Cabal transcript
devel/ruby-game|devel/rubygem-rubygame|2010-05-24|Use devel/rubygem-rubygame instead
devel/py-ro||2010-05-25|Use devel/py-pyro instead
devel/runawk|lang/runawk|2010-05-31|Port duplicate with lang/runawk
misc/ipod-sharp|audio/ipod-sharp|2010-06-02|Fix category
lang/pike72|lang/pike76|2010-06-02|Has expired: Please use pike76 or pike78
lang/pexts||2010-06-02|Depends on expired port lang/pike72
databases/ptop||2010-06-04|Broken with no update from maintainer or upstream
deskutils/dolphin-plugins-mplayerthumbs||2010-06-05|No longer supported by upstream
irc/p5-IRC|irc/p5-Bot-BasicBot|2010-06-07|Has been deceased for over 5 years
emulators/linux_base-gentoo-stage1||2010-06-08|Expired: please use emulators/linux_base-gentoo-stage3
emulators/linux_dist-gentoo-stage1||2010-06-08|Expired: please use emulators/linux_dist-gentoo-stage3
www/weave|www/firefox-sync|2010-06-09|Project was renamed
misc/freedialog||2010-06-10|Removed, has been in base for a decade
print/lyx15||2010-06-14|Removed, print/lyx has been updated to the latest version
sysutils/tinybsd||2010-06-18|Incorporated into base system long ago
www/mythweb|www/mythplugin-mythweb|2010-06-21|Renamed: Common prefix for all MythTV plugins
www/firefox3|www/firefox35|2010-06-23|Upstream support dropped
www/firefox3-i18n|www/firefox35-i18n|2010-06-23|Upstream support dropped
security/krb4||2010-06-26|Security vulnerability and no longer developed
www/linux-mozilla|www/linux-seamonkey|2010-06-27|Security vulnerabilities and abandoned upstream since 2006
security/audit||2010-07-01|Development has been discontinued
net/isc-dhcp30-client|net/isc-dhcp31-client|2010-07-09|Has expired: deprecated upstream since March 2009
net/isc-dhcp30-relay|net/isc-dhcp31-relay|2010-07-09|Has expired: deprecated upstream since March 2009
net/isc-dhcp30-server|net/isc-dhcp31-server|2010-07-09|Has expired: deprecated upstream since March 2009
net/nss_ldapd|net/nss-pam-ldapd|2010-07-16|Project was renamed
sysutils/bacula-client-devel||2010-07-16|Removed
sysutils/bacula-server-devel||2010-07-16|Removed
java/eclipse-v4all||2010-07-16|Not useful with Eclipse 3.x
irc/kvirc-devel||2010-07-17|irc/kvirc has been updated to the latest version
www/p5-Plack-Server-AnyEvent||2010-07-19|Use www/p5-Twiggy instead
science/qelectrotech|cad/qelectrotech|2010-07-21|Fix category
mail/squirrelmail-compatibility-plugin1|mail/squirrelmail-compatibility-plugin|2010-07-21|Has expired: use mail/squirrelmail-compatibility-plugin
mail/squirrelmail-newuser_wiz-plugin|mail/squirrelmail-askuserinfo-plugin|2010-07-21|Has expired: use mail/squirrelmail-askuserinfo-plugin
textproc/mini-xml|textproc/mxml|2010-07-25|Duplicate port
net/gir-repository-avahi|net/avahi-app|2010-07-25|Handled by net/avahi-app now
www/neonpp||2010-07-30|Does not build with neon 0.28 and above
www/neon28|www/neon29|2010-07-30|Replaced by neon 0.29.x
sysutils/aaccli||2010-08-03|Has expired: see sysutils/arcconf instead, no longer maintained by Adaptec
mail/moztraybiff|mail/mail-notification|2010-08-03|Depends on obsolete Thunderbird 2.0
deskutils/lightning-xpi|deskutils/lightning|2010-08-03|Depends on obsolete Thunderbird 2.0
sysutils/zfSnap|sysutils/zfsnap|2010-08-03|Change name to lower case
mail/lightning|deskutils/lightning|2010-08-03|Upstream development discontinued
devel/py_otp_interface|devel/py-interface|2010-08-06|Duplicate py-interface port has better distutils handling
www/mplayer-plugin|www/gecko-mediaplayer|2010-08-08|Upstream support dropped
lang/plt-scheme|lang/racket|2010-08-08|Upstream development discontinued
emulators/sdlmess|emulators/mess|2010-08-08|SDL port has been integrated into mainstream
security/libassuan-1||2010-08-08|This is an ex-library (Superseded by security/libassuan, but not compatible)
www/mod_webapp||2010-08-08|Removed
net/p5-IO-INET6|net/p5-IO-Socket-INET6|2010-08-09|Renamed
net-p2p/ktorrent-devel||2010-08-11|Obsoleted: please use net-p2p/ktorrent2 or net-p2p/ktorrent
multimedia/mpeg4ip-libmp4v2|multimedia/mp4v2|2010-08-11|Superseded by multimedia/mp4v2
lang/ifc7||2010-08-12|Distfile no longer available
multimedia/kaffeine-devel|multimedia/kaffeine|2010-08-14|New non-development version
www/peacock||2010-08-17|Has runtime errors, upstream development discontinued
www/gtkhtml38||2010-08-17|Removed, because there are no more users of this library
security/isolate||2010-08-17|Security vulnerability
www/wordpress-mu|www/wordpress|2010-08-19|Multiuser support was incorporate in the upstream version
archivers/py-tarfile||2010-08-21|Has expired: all development activity in this port has been merged into mainline Python after 2.4
www/rssdler|www/py-rssdler|2010-08-21|Rename to consistency with other Python ports
www/mod_webobjects||2010-08-23|Broken for 6+ months, unmaintained
www/woadaptor||2010-08-23|Broken for 6+ months, unmaintained
www/woadaptor-cgi||2010-08-23|Broken for 6+ months, unmaintained
x11-toolkits/ruby-fox12||2010-08-23|Removed
x11-toolkits/fxscintilla-fox12||2010-08-23|Removed
x11-toolkits/fox12||2010-08-23|Has expired: Unsupported, please use x11-toolkits/fox14 or x11-toolkits/fox16 instead
editors/mondrian||2010-08-23|Removed
devel/freeride||2010-08-23|Removed
devel/freebase||2010-08-23|Removed
x11-themes/kde4-windeco-aurorae||2010-08-23|Integrated into x11/kdebase4-workspace
x11-toolkits/fxscintilla-fox14||2010-08-23|Removed
net/tintin++-devel|net/tintin++|2010-08-24|net/tintin++-devel is no longer devel, merged back to net/tintin++
audio/gmm|audio/gogglesmm|2010-08-24|Project was renamed
irc/irssi-xmpp-devel||2010-08-25|Devel is unmaintained and older than stable
www/lighttpd-mysqlauth|www/lighttpd|2010-08-28|Integrated into www/lighttpd
games/jfduke3d||2010-08-28|Development ceased; see games/eduke32 for alternative
www/dotproject-devel||2010-08-30|Older than stable port and unmaintained
www/dokuwiki-devel||2010-08-30|Older than stable port and unmaintained
www/linux-seamonkey-devel||2010-08-30|Older than stable port and unmaintained
chinese/gcin-devel||2010-08-31|Older than stable port, broken and unmaintained
graphics/xfractint-devel||2010-08-31|Older than stable port and unmaintained
misc/kcd-devel||2010-08-31|Older than stable port and unmaintained
sysutils/logtool-devel||2010-08-31|Older than stable port and unmaintained
textproc/smartdoc-devel||2010-08-31|Older than stable port and unmaintained
comms/spandsp-devel5||2010-08-31|Older than stable port and unmaintained
french/pluxml-devel||2010-08-31|Stable was removed 2 years ago, doesn't make sense to keep -devel
graphics/lphoto||2010-08-31|Has expired: broken
mail/ngmp||2010-08-31|Has expired: does not compile and no longer supported by upstream
multimedia/libdvdnav-mplayer||2010-09-02|Removed in favor of updated multimedia/libdvdnav
lang/gcc43|lang/gcc44|2010-09-04|Superseded by gcc44 or gcc45
databases/sybase-ocsd||2010-09-04|Distfile(s) no longer available
editors/staroffice5||2010-09-04|Distfile(s) no longer available
editors/staroffice52||2010-09-04|Distfile(s) no longer available
editors/staroffice60||2010-09-04|Distfile(s) no longer available
editors/staroffice70||2010-09-04|Distfile(s) no longer available
emulators/linux-vmware-toolbox2||2010-09-04|Distfile(s) no longer available
french/staroffice52||2010-09-04|Distfile(s) no longer available
german/staroffice5||2010-09-04|Distfile(s) no longer available
german/staroffice52||2010-09-04|Distfile(s) no longer available
german/staroffice70||2010-09-04|Distfile(s) no longer available
java/simplicity||2010-09-04|Distfile(s) no longer available
lang/icc7||2010-09-04|Distfile(s) no longer available
portuguese/staroffice52||2010-09-04|Distfile(s) no longer available
sysutils/linux-acu||2010-09-04|Distfile(s) no longer available
lang/ficl-devel|lang/ficl|2010-09-07|Moved to lang/ficl since it's a stable version
games/abridge||2010-09-07|Broken, abandoned upstream
deskutils/linux-sunbird|deskutils/lightning|2010-09-07|Upstream development discontinued
deskutils/sunbird|deskutils/lightning|2010-09-07|Upstream development discontinued
deskutils/sunbird-i18n||2010-09-07|Upstream development discontinued
audio/audacious-crossfade||2010-09-08|Broken for 6+ months, unmaintained
audio/ecamegapedal||2010-09-08|Has expired: Abandoned since 2004, please use audio/jack-rack or audio/creox instead
comms/asmodem||2010-09-08|Broken for 6+ months, unmaintained
comms/ltmdm||2010-09-08|Broken for 6+ months, unmaintained
comms/yawmppp||2010-09-08|Broken for 6+ months, unmaintained
devel/p5-ORBit||2010-09-08|Broken for 6+ months, unmaintained
emulators/p-interp||2010-09-08|Broken for 6+ months, unmaintained
graphics/visionegg||2010-09-08|Broken for 6+ months, unmaintained
japanese/okphone||2010-09-08|Broken for 6+ months, unmaintained
java/openjit||2010-09-08|Broken for 6+ months, unmaintained
multimedia/xmps-win32-plugin||2010-09-08|Broken for 6+ months, unmaintained
net-mgmt/tknetmon||2010-09-08|Broken for 6+ months, unmaintained
net/arpd||2010-09-08|Broken for 6+ months, unmaintained
net/vomit||2010-09-08|Broken for 6+ months, unmaintained
sysutils/xwipower||2010-09-08|Broken for 6+ months, unmaintained
www/lws||2010-09-08|Broken for 6+ months, unmaintained
net-p2p/javadc||2010-09-08|Has expired: is ancient, unmaintained, works only with JDK 1.3, no master site
net/pathchar||2010-09-08|Has expired: has been broken for 2+ years, no sources available
www/linux-nvu|www/kompozer|2010-09-08|Has expired: NVU 1.0 last release June 2005, use www/kompozer instead
print/cupsddk||2010-09-09|Now part of print/cups-base
databases/mongodb-devel||2010-09-11|Older than databases/mongodb
japanese/tdiary-devel||2010-09-12|Removed
www/tdiary-devel||2010-09-12|Removed
multimedia/playd2|multimedia/playd|2010-09-13|Has expired: Use multimedia/playd instead
mail/mailscanner-devel|mail/mailscanner|2010-09-14|Removed, mail/mailscanner is newer
databases/sqlite-ext-inet||2010-09-14|Has expired: Please install databases/sqlite-ext-mobigroup instead
editors/koffice-kde4-l10n-fy||2010-09-14|Has expired
editors/koffice-kde4-l10n-hne||2010-09-14|Has expired
graphics/xaralx-devel||2010-09-14|Has expired: Does not compile with png-1.4 and latest version is from Aug 2006
graphics/xaralx||2010-09-14|Has expired: Does not compile with png-1.4 and latest version is from Aug 2006
misc/kde4-l10n-bn_IN||2010-09-14|Has expired
misc/kde4-l10n-hne||2010-09-14|Has expired
misc/kde4-l10n-ku||2010-09-14|Has expired
multimedia/vlconwooztalk||2010-09-14|Has expired: wooztalk website not responding as of 20100731
net-im/wooztalk||2010-09-14|Has expired: wooztalk website not responding as of 20100731
russian/php_doc||2010-09-14|Has expired: Support for the Russian translation of the PHP manual seems to have stopped
sysutils/ipmi-kmod||2010-09-14|Has expired: in base system since 6.2-RELEASE
www/p5-Plack-Server-AnyEvent||2010-09-14|Has expired: yes
www/xpi-dailymotiononwooztalk||2010-09-14|Has expired: wooztalk website not responding as of 20100731
www/xpi-deezeronwooztalk||2010-09-14|Has expired: wooztalk website not responding as of 20100731
www/xpi-firefoxonwooztalk||2010-09-14|Has expired: wooztalk website not responding as of 20100731
www/xpi-googlevideoonwooztalk||2010-09-14|Has expired: wooztalk website not responding as of 20100731
www/xpi-imeemonwooztalk||2010-09-14|Has expired: wooztalk website not responding as of 20100731
www/xpi-jiwaonwooztalk||2010-09-14|Has expired: wooztalk website not responding as of 20100731
www/xpi-lastfmonwooztalk||2010-09-14|Has expired: wooztalk website not responding as of 20100731
www/xpi-vimeoonwooztalk||2010-09-14|Has expired: wooztalk website not responding as of 20100731
www/xpi-youtubeonwooztalk||2010-09-14|Has expired: wooztalk website not responding as of 20100731
x11/chameleon||2010-09-14|Has expired: No longer under development, master site disappeared years ago
net/csup||2010-09-14|Has expired: is already included in base system of all supported releases
textproc/py-Pootle||2010-09-15|Removed
devel/autoconf262|devel/autoconf267|2010-09-15|Migration to autoconf-2.67
editors/vim6||2010-09-17|Has expired: Outdated, superseded by editors/vim7 and has multiple security issues
editors/vim6+ruby||2010-09-17|Has expired: Outdated, superseded by editors/vim7 and has multiple security issues
sysutils/cdrtools-cjk|sysutils/cdrtools|2010-09-17|Obsoleted by iconv support in mainstream kit
lang/pfe-devel|lang/pfe|2010-09-20|Moved to lang/pfe since it's a stable version
archivers/p5-Compress-Zlib|archivers/p5-IO-Compress|2010-09-21|Replaced by archivers/p5-IO-Compress
archivers/p5-IO-Compress-Base|archivers/p5-IO-Compress|2010-09-21|Replaced by archivers/p5-IO-Compress
archivers/p5-IO-Compress-Bzip2|archivers/p5-IO-Compress|2010-09-21|Replaced by archivers/p5-IO-Compress
archivers/p5-IO-Compress-Zlib|archivers/p5-IO-Compress|2010-09-21|Replaced by archivers/p5-IO-Compress
audio/linux-nerodigitalaudio|audio/linux-neroaaccodec|2010-09-22|Project was renamed
devel/automake16||2010-09-22|Outdated, no longer required by any port
devel/automake17||2010-09-22|Outdated, was not being used by any port
devel/automake18||2010-09-22|Outdated, ports (2) migrated to automake19
devel/automake15||2010-09-23|Outdated, ports migrated to automake19
www/xpi-gbutts|www/xpi-google_shortcuts|2010-09-28|Plugin was renamed
mail/sympa-elixus||2010-09-28|Has expired: no longer maintained, no longer fetchable, no longer builds with sympa
net-mgmt/zabbix16-server||2010-10-01|Has expired: Development has ceased. Please upgrade to Zabbix 1.8
net-mgmt/zabbix16-agent||2010-10-01|Has expired: Development has ceased. Please upgrade to Zabbix 1.8
net-mgmt/zabbix16-frontend||2010-10-01|Has expired: Development has ceased. Please upgrade to Zabbix 1.8
net-mgmt/zabbix16-proxy||2010-10-01|Has expired: Development has ceased. Please upgrade to Zabbix 1.8
net-p2p/mutella||2010-10-01|Has expired: No longer under active development
www/xpi-hit-a-hint||2010-10-01|Has expired: Development has been ceased and not compatible with Firefox > 2
www/xpi-preferential||2010-10-01|Has expired: Development has been ceased and not compatible with Firefox > 2
www/xpi-statusbarclock||2010-10-01|Has expired: Development has been ceased and not compatible with Firefox > 2
devel/cego-base|devel/lfc|2010-10-02|Project was renamed
devel/cego-xml|devel/lfcxml|2010-10-02|Project was renamed
www/p5-WWW-Pastebin-RafbNet-Create||2010-10-02|http://rafb.net service is dead
devel/maven||2010-10-03|Has expired: Development has been ceased, superseded by devel/maven2
games/daimonin-client|games/daimonin|2010-10-04|Renamed
sysutils/rsyslog55|sysutils/rsyslog5|2010-10-05|Renamed
sysutils/rsyslog55-dbi|sysutils/rsyslog5-dbi|2010-10-05|Renamed
sysutils/rsyslog55-gnutls|sysutils/rsyslog5-gnutls|2010-10-05|Renamed
sysutils/rsyslog55-gssapi|sysutils/rsyslog5-gssapi|2010-10-05|Renamed
sysutils/rsyslog55-mysql|sysutils/rsyslog5-mysql|2010-10-05|Renamed
sysutils/rsyslog55-pgsql|sysutils/rsyslog5-pgsql|2010-10-05|Renamed
sysutils/rsyslog55-relp|sysutils/rsyslog5-relp|2010-10-05|Renamed
sysutils/rsyslog55-rfc3195|sysutils/rsyslog5-rfc3195|2010-10-05|Renamed
sysutils/rsyslog55-snmpl|sysutils/rsyslog5-snmp|2010-10-05|Renamed
net-p2p/amule2|net-p2p/amule|2010-10-05|Split to -devel and non-devel ports
devel/automake19||2010-10-07|No longer required by any port
devel/automake110||2010-10-07|No longer required by any port
japanese/p5-jcode.pl|japanese/jcode.pl|2010-10-10|Duplicate port
www/p5-Plack-Server-ServerSimple|www/p5-Plack|2010-10-11|Included in p5-Plack now
www/trac-multirepos||2010-10-11|Has expired: Multiple repositories support has been merged in trunk, please use Trac 0.12+ (www/trac) instead
devel/p5-P4||2010-10-14|Has expired: Depends of p5-P4-Client, which is DEPRECATED
devel/p5-P4-Client||2010-10-14|Has expired: has been broken for 11 months
net-p2p/btpeer||2010-10-14|Has expired: Does not build with net/Sockets and is unmaintained
net-mgmt/net-snmp4||2010-10-14|Has expired: Use net-mgmt/net-snmp port instead
net/gkrellm_snmp||2010-10-14|Has expired: Depends of net-snmp4, that is deprecated also and will be removed soon
net/Sockets-devel||2010-10-14|Has expired: Older than net/Sockets and unmaintained
devel/clang|lang/clang|2010-10-14|Compilers typically live in the lang category
security/ssh2||2010-10-15|Has expired: abandoned upstream
security/ssh2-nox11||2010-10-15|Has expired: abandoned upstream
devel/autoconf267|devel/autoconf268|2010-10-16|Bump
net/samba3||2010-10-18|Has expired: Unsupported by the upstream. Please, consider to upgrade
net/samba32||2010-10-18|Has expired: Unsupported by the upstream. Please, consider to upgrade
net/samba33||2010-10-18|Has expired: Unsupported by the upstream. Please, consider to upgrade
japanese/samba3||2010-10-18|Has expired: Unsupported by the upstream. Please, consider to upgrade
net/py-samba||2010-10-18|Has expired: Unsupported by the upstream. Please, consider to upgrade
security/samba-vscan||2010-10-18|Removed
www/firefox3-devel|www/firefox|2010-10-24|Upstream development focuses on Firefox 4.0
editors/vim5||2010-10-26|Has expired: Outdated, superseded by editors/vim7 and has security issues
sysutils/sfdisk||2010-10-27|Has expired: All supported FreeBSD versions now have sade, sfdisk 0.2 is outdated
sysutils/synergy-plus|sysutils/synergy|2010-11-01|Synergy+ and Synergy have merged
ftp/kwebget||2010-11-04|Has expired: Development has ceased
multimedia/clive-utils||2010-11-04|Has expired: development has ceased; use multimedia/umph instead
ports-mgmt/barry||2010-11-04|Has expired: Development has ceased
www/wb0||2010-11-04|Has expired: Development has ceased
x11/e17-module-bling|x11-wm/e17-module-bling|2010-11-07|Fix category
x11/e17-module-calendar|x11-wm/e17-module-calendar|2010-11-07|Fix category
x11/e17-module-cpu|x11-wm/e17-module-cpu|2010-11-07|Fix category
x11/e17-module-deskshow|x11-wm/e17-module-deskshow|2010-11-07|Fix category
x11/e17-module-flame|x11-wm/e17-module-flame|2010-11-07|Fix category
x11/e17-module-language|x11-wm/e17-module-language|2010-11-07|Fix category
x11/e17-module-mail|x11-wm/e17-module-mail|2010-11-07|Fix category
x11/e17-module-mem|x11-wm/e17-module-mem|2010-11-07|Fix category
x11/e17-module-mixer|x11-wm/e17-module-mixer|2010-11-07|Fix category
x11/e17-module-moon|x11-wm/e17-module-moon|2010-11-07|Fix category
x11/e17-module-rain|x11-wm/e17-module-rain|2010-11-07|Fix category
x11/e17-module-screenshot|x11-wm/e17-module-screenshot|2010-11-07|Fix category
x11/e17-module-slideshow|x11-wm/e17-module-slideshow|2010-11-07|Fix category
x11/e17-module-snow|x11-wm/e17-module-snow|2010-11-07|Fix category
x11/e17-module-uptime|x11-wm/e17-module-uptime|2010-11-07|Fix category
x11/e17-module-weather|x11-wm/e17-module-weather|2010-11-07|Fix category
x11/e17-module-winselector|x11-wm/e17-module-winselector|2010-11-07|Fix category
devel/libisc||2010-11-08|Has expired: Unlikely to be used
emulators/vmware-guestd3||2010-11-08|Has expired: Depends of misc/compat3x, that is deprecated and set to be removed
emulators/vmware-tools3||2010-11-08|Has expired: Depends of misc/compat3x, that is deprecated and set to be removed
misc/compat3x||2010-11-08|Has expired: Only FreeBSD 6.4+ are supported in ports
misc/bidwatcher||2010-11-08|Has expired: Obsoleted by JBidwatcher and changes at http://ebay.com
security/vscan||2010-11-08|Has expired: Depends of misc/compat3x, that is deprecated and set to be removed
www/ssserver||2010-11-08|Has expired: Depends of misc/compat3x, that is deprecated and set to be removed
graphics/qtpfsgui|graphics/luminance|2010-11-12|Project has been renamed
devel/gir-repository-gconf2|devel/gconf2|2010-11-20|Merged into gconf2
x11-fm/gir-repository-nautilus|x11-fm/nautilus|2010-11-20|Merged into nautilus
devel/gir-repository-libsoup|devel/libsoup|2010-11-20|Merged into libsoup
x11-toolkits/gir-repository-gtksourceview2|x11-toolkits/gtksourceview2|2010-11-20|Merged into gtksourceview2
security/gir-repository-gnome-keyring||2010-11-20|Not buildable
devel/gir-repository-dbus|devel/gobject-introspection|2010-11-20|Merged into gobject-introspection
net/asterisk-addons|net/asterisk14-addons|2010-11-22|Renamed via repocopy
devel/gdb6|devel/gdb66|2010-11-24|Directory renamed
net-p2p/eiskaltdc|net-p2p/eiskaltdcpp-qt|2010-11-26|GUI ports separated
japanese/uim-canna|textproc/uim|2010-11-26|Integrated into textproc/uim
japanese/uim-prime|textproc/uim|2010-11-26|Integrated into textproc/uim
www/google_shortcuts|www/xpi-google_shortcuts|2010-11-26|Use www/xpi-google_shortcuts instead
x11-toolkits/ruby-gtksourceview||2010-11-27|Removed
misc/libpri-bristuff||2010-11-28|Superseded by asterisk 1.8
net/asterisk-bristuff||2010-11-28|Superseded by asterisk 1.8
www/p5-Mojo|www/p5-Mojolicious|2010-11-29|Project's distfile name has changed
shells/bash-completion-classic|shells/bash-completion|2010-11-29|amd64 workaround no longer required
devel/p5-usb|devel/p5-Device-USB|2010-11-29|Directory renamed
www/phpwebgallery|www/piwigo|2010-11-29|Project renamed
net/asterisk12||2010-11-30|EOL'ed upstream on 21 Nov 2010
net/asterisk12-app-ldap||2010-11-30|EOL'ed upstream on 21 Nov 2010
dns/bind9||2010-12-01|EOL - Update to dns/bind97 or dns/bind96
archivers/linux-par2cmdline||2010-12-04|Has expired: Native version available
audio/bmp-musepack||2010-12-04|Has expired: does not build with audio/musepack
audio/libmpcdec|audio/musepack|2010-12-04|Has expired: superseded by audio/musepack
audio/py-musepack||2010-12-04|Has expired: does not build with audio/musepack
chinese/chinput3||2010-12-04|Has expired: Development has ceased
emulators/dynagen-devel||2010-12-04|Has expired: Please install emulators/dynagen instead
net-p2p/gift-fasttrack||2010-12-04|Has expired: unmaintained upstream
net-p2p/gift-gnutella||2010-12-04|Has expired: unmaintained upstream
net-p2p/gift-openft||2010-12-04|Has expired: unmaintained upstream
net-p2p/pyslsk||2010-12-04|Has expired: unmaintained upstream, use net-p2p/nicotine-plus
security/pamsfs||2010-12-04|Has expired: SFS is dead, this project is dead, and site is gone
www/p5-Catalyst-Plugin-CommandLine||2010-12-04|Has expired: The module is not needed anymore; with new Catalyst (at least 5.7014) it works out of the box
devel/autoconf268|devel/autoconf|2010-12-08|Autotools cleanup
devel/automake111|devel/automake|2010-12-08|Autotools cleanup
devel/libtool22|devel/libtool|2010-12-08|Autotools cleanup
devel/libltdl22|devel/libltdl|2010-12-08|Autotools cleanup
devel/rubygem-image_science|graphics/rubygem-image_science|2010-12-11|Moved category
emulators/mupen64plus-base|emulators/mupen64plus-core|2010-12-13|Port was renamed
emulators/mupen64plus-sdlaudio|emulators/mupen64plus-audio-sdl|2010-12-13|Port was renamed
emulators/mupen64plus-sdlinput|emulators/mupen64plus-input-sdl|2010-12-13|Port was renamed
emulators/mupen64plus-rsp|emulators/mupen64plus-rsp-hle|2010-12-13|Port was renamed
emulators/mupen64plus-rice|emulators/mupen64plus-video-rice|2010-12-13|Port was renamed
emulators/mupen64plus-dummyaudio||2010-12-13|Port was removed, now it is obsolete
emulators/mupen64plus-dummyvideo||2010-12-13|Port was removed, now it is obsolete
emulators/mupen64plus-glide||2010-12-13|Port was removed, now it is obsolete
emulators/mupen64plus-gln64||2010-12-13|Port was removed, now it is obsolete
emulators/mupen64plus-input||2010-12-13|Port was removed, now it is obsolete
misc/zaptel||2010-12-14|Superseded by misc/dahdi
japanese/mozilla-jlp||2010-12-15|Has expired: Depends on obsolete port www/mozilla
devel/icu2|devel/icu|2010-12-16|Removed: now obsolete and unused please use newer devel/icu instead
devel/icu4|devel/icu|2010-12-17|Removed: devel/icu is now following 4.x version
multimedia/flv2mpeg4||2010-12-23|Abandoned upstream
databases/mysql55-scripts||2010-12-27|Merged in other mysql ports
databases/p5-sqlrelay||2010-12-31|Has expired: broken and upstream disappeared
devel/php-dbg2||2010-12-31|Has expired: No upstream support
dns/fourcdns||2010-12-31|Has expired: upstream has disappeared
emulators/win4bsd||2010-12-31|Has expired: Development has ceased and distfile is no longer available
french/mozilla-flp||2010-12-31|Has expired: www/seamonkey port is deprecated. Consider using the www/firefox-i18n
french/xtel||2010-12-31|Has expired: Minitel services will be discontinued at the end of 2010
ftp/ftpq||2010-12-31|Has expired: upstream has disappeared
graphics/paintlib||2010-12-31|Has expired: does not compile with new tiff and no longer maintained upstream
graphics/g3dviewer||2010-12-31|Has expired: does not build with gcc 4.2, upstream disappeared
lang/scriba||2010-12-31|Has expired: Does not compile with gcc 4.2+, looks like abandonware
math/rascal||2010-12-31|Has expired: Broken on every arch since 2008, looks like abandonware
net-mgmt/nrg|net-mgmt/cacti|2010-12-31|Has expired: Project has vanished. Use cacti instead
security/hostsentry||2010-12-31|Has expired: Project is dead
sysutils/kcube||2010-12-31|Has expired: Project has vanished
www/cybercalendar||2010-12-31|Has expired: has been unmaintained since 2001 and is unusable with dates after 2010 (see ports/150974)
www/flock||2010-12-31|Has expired: Flock 3 moves from Firefox to Chromium
www/linux-flock||2010-12-31|Has expired: Flock 3 moves from Firefox to Chromium
x11-clocks/xtu||2010-12-31|Has expired: Looks like abandonware
java/tya||2010-12-31|Has expired: looks like abandonware and does not compile with gcc4.2
net-p2p/qbittorrent-22|net-p2p/qbittorrent|2011-01-01|Old version no longer updated. Try net-p2p/qbittorrent
dns/bind95||2011-01-01|Entered EOL 2010-09 - Update to dns/bind97 or dns/bind96
www/mozilla|www/seamonkey2|2011-01-01|Unmaintained upstream for years and has security issues
security/lxnb||2011-01-02|Has expired: Development has ceased, mastersite disappeared
x11-wm/lxsession-lite|x11-wm/lxsession|2011-01-02|Has expired: Superseded by x11-wm/lxsession
audio/emphasis||2011-01-03|Has expired: abandoned upstream
converters/ecore-txt||2011-01-03|Has expired: abandoned upstream
deskutils/estickies||2011-01-03|Has expired: abandoned upstream
devel/ecore-job||2011-01-03|Has expired: abandoned upstream
devel/engrave||2011-01-03|Has expired: abandoned upstream
devel/evfs||2011-01-03|Has expired: abandoned upstream
devel/ruby-ecore||2011-01-03|Has expired: abandoned upstream
graphics/exhibit||2011-01-03|Has expired: abandoned upstream
graphics/epsilon||2011-01-03|Has expired: abandoned upstream
graphics/esmart||2011-01-03|Has expired: abandoned upstream
graphics/ruby-edje||2011-01-03|Has expired: abandoned upstream
graphics/ruby-esmart||2011-01-03|Has expired: abandoned upstream
graphics/ruby-evas||2011-01-03|Has expired: abandoned upstream
graphics/ruby-redact||2011-01-03|Has expired: abandoned upstream
multimedia/eclair||2011-01-03|Has expired: abandoned upstream
security/phpmyid||2011-01-03|Has expired: Development has ceased
sysutils/ecore-config||2011-01-03|Has expired: abandoned upstream
sysutils/extrackt||2011-01-03|Has expired: abandoned upstream
textproc/exml||2011-01-03|Has expired: abandoned upstream
www/mod_accesscookie||2011-01-03|Has expired: upstream is gone
www/mod_vdbh||2011-01-03|Has expired: upstream is gone
www/mod_auth_any||2011-01-03|Has expired: upstream is gone
www/mod_log_data||2011-01-03|Has expired: upstream is gone and will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now
x11-fm/entropyfm||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-splash-fortune||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-splash-shiny||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-splash-takara||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-theme-blue_eyed||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-theme-dali||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-theme-gant||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-theme-japan2007||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-theme-kor||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-theme-milky||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-theme-night_bling||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-theme-simply_white||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-splash-azul||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-splash-blue||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-splash-clean||2011-01-03|Has expired: abandoned upstream
x11-themes/e17-splash-logo||2011-01-03|Has expired: abandoned upstream
x11-toolkits/etk||2011-01-03|Has expired: abandoned upstream
x11-toolkits/ewl||2011-01-03|Has expired: abandoned upstream
x11-toolkits/enhance||2011-01-03|Has expired: abandoned upstream
x11-wm/e17-module-bling||2011-01-03|Has expired: abandoned upstream
x11-wm/e17-module-mixer||2011-01-03|Has expired: abandoned upstream
x11-wm/e17-utils||2011-01-03|Has expired: abandoned upstream
x11/elicit||2011-01-03|Has expired: abandoned upstream
x11/enity||2011-01-03|Has expired: abandoned upstream
x11/examine||2011-01-03|Has expired: abandoned upstream
x11/ecore-desktop||2011-01-03|Has expired: abandoned upstream
x11/enterminus||2011-01-03|Removed
deskutils/gnome-pim||2011-01-03|Removed due to x11/libcapplet broke
mail/pmail||2011-01-03|Removed due to x11/libcapplet broke
mail/pygmy||2011-01-03|Removed due to x11/libcapplet broke
math/scigraphica||2011-01-03|Removed due to x11/libcapplet broke
net/geotrace||2011-01-03|Removed due to x11/libcapplet broke
security/nofgpg||2011-01-03|Removed due to x11/libcapplet broke
sysutils/gnome-control-center1||2011-01-03|Removed due to x11/libcapplet broke
www/gtkhtml||2011-01-03|Removed due to x11/libcapplet broke
x11/libcapplet||2011-01-03|Removed: broken and unmaintained upstream
x11/wmmenu||2011-01-03|Removed due to x11/libcapplet broke
x11-toolkits/py-gnome||2011-01-03|Removed due to x11/libcapplet broke
www/glibwww||2011-01-04|Removed due to no port depend on it
math/octave-forge-spanish|math/octave-forge-es|2011-01-13|Replaced by math/octave-forge-es
devel/cvsnt||2011-01-15|Removed: abandoned upstream
net-p2p/qbittorrent-23|net-p2p/qbittorrent|2011-01-24|Old, no longer updated. Try net-p2p/qbittorrent
dns/staticcharge||2011-01-29|Has expired: abandoned by author
shells/bash3|shells/bash|2011-01-29|Has expired: Use shells/bash or shells/bash-static instead
shells/bash3-static|shells/bash-static|2011-01-29|Has expired: Use shells/bash or shells/bash-static instead
audio/ecawave||2011-02-01|Has expired: has been broken for over one year
mail/spamass-rules_du_jour||2011-02-01|Has expired: Use sa-update instead
x11/accessx||2011-02-01|Has expired: Project abandoned, mastersite disappeared
x11/kde3-apireference||2011-02-01|Has expired: outdated and obsolete
misc/py-distutils||2011-02-02|Included in current Python versions
databases/qt-ibase-plugin||2011-02-04|Has expired: Port is broken on all supported versions of FreeBSD
devel/ace+tao||2011-02-04|Has expired: Outdated and does not compile on any supported version of FreeBSD
graphics/ray++||2011-02-04|Has expired: Does not compile on supported versions of FreeBSD
japanese/oleo||2011-02-04|Has expired: Does not compile on supported versions of FreeBSD
lang/dylan||2011-02-04|Has expired: does not build
multimedia/jahshaka||2011-02-04|Has expired: Does not compile on supported versions of FreeBSD
audio/libjackasyn|audio/jack|2011-02-11|Has expired: development has ceased; try audio/jack instead
audio/xmms-jackasyn|audio/xmms-jack|2011-02-11|Has expired: development has ceased; try audio/xmms-jack instead
lang/p5-SQL-Tokenizer|textproc/p5-SQL-Tokenizer|2011-02-13|Moved to a more appropriate category
misc/wanpipe||2011-02-14|Removed
devel/root||2011-02-21|Has expired: Port does not build on supported versions of FreeBSD
net/ztelnet||2011-02-21|Has expired: unfetchable
print/kaspaliste||2011-02-21|Has expired: yes
sysutils/perf||2011-02-21|Has expired: Does not build on supported versions of FreeBSD
databases/redis1||2011-02-24|Removed
devel/pmake||2011-02-24|Has expired: does not build on any supported version of FreeBSD
net-p2p/linux-agsatellite||2011-02-24|Has expired: the whole service went to cloud
databases/redis2||2011-02-25|Removed, use databases/redis instead
textproc/py-expat||2011-02-25|Removed, part of Python since 2.5
devel/py-ctypes||2011-02-25|Removed, part of Python since 2.5
security/py-hashlib||2011-02-25|Removed, part of Python since 2.5
www/py-hashlib||2011-02-25|Removed, part of Python since 2.5
x11/gstreamer-plugins-vdpau|multimedia/gstreamer-plugins-vdpau|2011-02-25|Move to the multimedia category
x11/gir-repository-babl|x11/babl|2011-02-25|Merged into babl
net/gnet|net/gnet2|2011-02-27|No longer maintained or updated, try to use net/gnet2
www/py-turbodjango||2011-02-27|Removed, part of Python since 2.5
www/py-turbosetup||2011-02-27|Removed, part of Python since 2.5
textproc/py-csv||2011-02-27|Removed, part of Python since 2.5
devel/py-uuid||2011-02-27|Removed, part of Python since 2.5
graphics/libv3d||2011-02-28|Has expired: unmaintained and failed to build for months
mbone/rat|audio/rat|2011-03-06|Changed category
mbone/rat30|audio/rat30|2011-03-06|Changed category
mbone/speak_freely|audio/speak_freely|2011-03-06|Changed category
mbone/vat|audio/vat|2011-03-06|Changed category
mbone/xspeakfree|audio/xspeakfree|2011-03-06|Changed category
mbone/vic|multimedia/vic|2011-03-06|Changed category
mbone/imm|net/imm|2011-03-06|Changed category
mbone/mcl|net/mcl|2011-03-06|Changed category
mbone/rqm|net/rqm|2011-03-06|Changed category
mbone/rtptools|net/rtptools|2011-03-06|Changed category
mbone/sdr|net/sdr|2011-03-06|Changed category
mbone/udpcast|net/udpcast|2011-03-06|Changed category
mbone/wb|net/wb|2011-03-06|Changed category
lang/gnat-doc-html||2011-03-07|Unmaintained and obsolete
lang/gnat-doc-info||2011-03-07|Unmaintained and obsolete
lang/gnat-doc-ps||2011-03-07|Unmaintained and obsolete
lang/gnat-doc-texi||2011-03-07|Unmaintained and obsolete
lang/gnat-doc-txt||2011-03-07|Unmaintained and obsolete
www/py-cherrypy-devel|www/py-cherrypy|2011-03-15|Removed, use www/py-cherrypy instead
science/py-obspy.core|science/py-obspy-core|2011-03-16|Removed, use science/py-obspy-core instead
devel/py-unit||2011-03-17|Unmaintained and obsolete, included in Python distribution since 2.1
lang/gnat-gcc42||2011-03-17|Removed unmaintained and obsolete
lang/gnat-gcc43||2011-03-17|Removed unmaintained and obsolete
lang/gnat-gcc44||2011-03-17|Removed unmaintained and obsolete
games/wormux-devel||2011-03-17|Project was renamed
games/etuxracer|games/etracer|2011-03-18|Removed it is a duplicate of games/etracer
net/p5-Net-IP-Anonymous|net/p5-IP-Anonymous|2011-03-19|Move to a correct directory
databases/db50||2011-03-21|Removed, use databases/db51 instead
games/wormux|games/warmux|2011-03-21|Project was renamed
irc/ircd-hybrid-ru|russian/ircd-hybrid|2011-03-27|Renamed
devel/thunar-svn-plugin|devel/thunar-vcs-plugin|2011-03-27|Removed, use devel/thunar-vcs-plugin instead
devel/id-utils|devel/idutils|2011-03-28|Project renamed
russian/ircd-hybrid-ru|russian/ircd-hybrid|2011-03-30|Renamed
java/netbeans3|java/netbeans|2011-03-31|Has expired: old, unmaintained, use java/netbeans instead
java/netbeans4|java/netbeans|2011-03-31|Has expired: old, unmaintained, use java/netbeans instead
java/netbeans5|java/netbeans|2011-03-31|Has expired: old, unmaintained, use java/netbeans instead
textproc/rubygem-bzip2||2011-04-03|Removed
accessibility/linux-f8-atk||2011-04-04|Has expired: End of Life since Jan 7, 2009
archivers/linux-f8-ucl||2011-04-04|Has expired: End of Life since Jan 7, 2009
archivers/linux-f8-upx||2011-04-04|Has expired: End of Life since Jan 7, 2009
audio/linux-f8-alsa-lib||2011-04-04|Has expired: End of Life since Jan 7, 2009
audio/linux-f8-arts||2011-04-04|Has expired: End of Life since Jan 7, 2009
audio/linux-f8-esound||2011-04-04|Has expired: End of Life since Jan 7, 2009
audio/linux-f8-freealut||2011-04-04|Has expired: End of Life since Jan 7, 2009
audio/linux-f8-libaudiofile||2011-04-04|Has expired: End of Life since Jan 7, 2009
audio/linux-f8-libogg||2011-04-04|Has expired: End of Life since Jan 7, 2009
audio/linux-f8-libvorbis||2011-04-04|Has expired: End of Life since Jan 7, 2009
audio/linux-f8-mikmod||2011-04-04|Has expired: End of Life since Jan 7, 2009
audio/linux-f8-nas-libs||2011-04-04|Has expired: End of Life since Jan 7, 2009
audio/linux-f8-openal||2011-04-04|Has expired: End of Life since Jan 7, 2009
audio/linux-f8-sdl_mixer||2011-04-04|Has expired: End of Life since Jan 7, 2009
databases/linux-f8-sqlite3||2011-04-04|Has expired: End of Life since Jan 7, 2009
databases/postgresql81-server||2011-04-04|Has expired: EOL; see http://wiki.postgresql.org/wiki/PostgreSQL_Release_Support_Policy
databases/postgresql73-server||2011-04-04|Has expired: EOL; see http://wiki.postgresql.org/wiki/PostgreSQL_Release_Support_Policy
databases/postgresql74-server||2011-04-04|Has expired: EOL; see http://wiki.postgresql.org/wiki/PostgreSQL_Release_Support_Policy
databases/postgresql80-server||2011-04-04|Has expired: EOL; see http://wiki.postgresql.org/wiki/PostgreSQL_Release_Support_Policy
devel/linux-f8-libglade||2011-04-04|Has expired: End of Life since Jan 7, 2009
devel/linux-f8-sdl12||2011-04-04|Has expired: End of Life since Jan 7, 2009
devel/linux-f8-allegro||2011-04-04|Has expired: End of Life since Jan 7, 2009
devel/linux-f8-libsigc++20||2011-04-04|Has expired: End of Life since Jan 7, 2009
devel/linux-f8-libglade2||2011-04-04|Has expired: End of Life since Jan 7, 2009
devel/linux-f8-nspr||2011-04-04|Has expired: End of Life since Jan 7, 2009
dns/linux-f8-libidn||2011-04-04|Has expired: End of Life since Jan 7, 2009
emulators/linux_base-f8||2011-04-04|Has expired: End of Life since Jan 7, 2009
emulators/linux_base-f9||2011-04-04|Has expired: End of Life since Jul 10, 2009
emulators/linux_base-fc6||2011-04-04|Has expired: End of Life since December 7, 2007
emulators/linux_base-f7||2011-04-04|Has expired: End of Life since June 13, 2008
ftp/linux-f8-curl||2011-04-04|Has expired: End of Life since Jan 7, 2009
graphics/linux-f8-sdl_image||2011-04-04|Has expired: End of Life since Jan 7, 2009
graphics/linux-f8-ungif||2011-04-04|Has expired: End of Life since Jan 7, 2009
graphics/linux-f8-imlib||2011-04-04|Has expired: End of Life since Jan 7, 2009
graphics/linux-f8-cairo||2011-04-04|Has expired: End of Life since Jan 7, 2009
graphics/linux-f8-dri||2011-04-04|Has expired: End of Life since Jan 7, 2009
graphics/linux-f8-gdk-pixbuf||2011-04-04|Has expired: End of Life since Jan 7, 2009
graphics/linux-f8-jpeg||2011-04-04|Has expired: End of Life since Jan 7, 2009
graphics/linux-f8-png||2011-04-04|Has expired: End of Life since Jan 7, 2009
graphics/linux-f8-libGLU||2011-04-04|Has expired: End of Life since Jan 7, 2009
graphics/linux-f8-libmng||2011-04-04|Has expired: End of Life since Jan 7, 2009
graphics/linux-f8-png10||2011-04-04|Has expired: End of Life since Jan 7, 2009
graphics/linux-f8-tiff||2011-04-04|Has expired: End of Life since Jan 7, 2009
lang/linux-f8-libg2c||2011-04-04|Has expired: End of Life since Jan 7, 2009
lang/linux-f8-tcl84||2011-04-04|Has expired: End of Life since Jan 7, 2009
multimedia/linux-f8-libtheora||2011-04-04|Has expired: End of Life since Jan 7, 2009
net-p2p/dcd||2011-04-04|Has expired: No fetch sources and looks like project abandoned
net/straw||2011-04-04|Has expired: abandoned upstream and does not work with Python 2.6+
security/linux-f8-libssh2||2011-04-04|Has expired: End of Life since Jan 7, 2009
security/linux-f8-nss||2011-04-04|Has expired: End of Life since Jan 7, 2009
security/linux-f8-openssl||2011-04-04|Has expired: End of Life since Jan 7, 2009
textproc/linux-f8-libxml2||2011-04-04|Has expired: End of Life since Jan 7, 2009
textproc/linux-f8-scim-gtk||2011-04-04|Has expired: End of Life since Jan 7, 2009
textproc/linux-f8-scim-libs||2011-04-04|Has expired: End of Life since Jan 7, 2009
textproc/linux-f8-expat||2011-04-04|Has expired: End of Life since Jan 7, 2009
textproc/linux-f8-libxml||2011-04-04|Has expired: End of Life since Jan 7, 2009
textproc/linux-f8-aspell||2011-04-04|Has expired: End of Life since Jan 7, 2009
www/linux-f8-flashplugin10||2011-04-04|Has expired: End of Life since Jan 7, 2009
www/mediawiki112||2011-04-04|Has expired: abandoned upstream
www/mediawiki113||2011-04-04|Has expired: abandoned upstream
www/mediawiki114||2011-04-04|Has expired: abandoned upstream
www/mediawiki16||2011-04-04|Has expired: abandoned upstream
x11-fonts/linux-f8-fontconfig||2011-04-04|Has expired: End of Life since Jan 7, 2009
x11-themes/gnome-icons-cool-gorilla||2011-04-04|Has expired: no mastersite
x11-themes/linux-f8-hicolor-icon-theme||2011-04-04|Has expired: End of Life since Jan 7, 2009
x11-toolkits/linux-f8-gtk||2011-04-04|Has expired: End of Life since Jan 7, 2009
x11-toolkits/linux-f8-gtk2||2011-04-04|Has expired: End of Life since Jan 7, 2009
x11-toolkits/linux-f8-openmotif||2011-04-04|Has expired: End of Life since Jan 7, 2009
x11-toolkits/linux-f8-pango||2011-04-04|Has expired: End of Life since Jan 7, 2009
x11-toolkits/linux-f8-qt33||2011-04-04|Has expired: End of Life since Jan 7, 2009
x11-toolkits/linux-f8-tk84||2011-04-04|Has expired: End of Life since Jan 7, 2009
x11/linux-f8-xorg-libs||2011-04-04|Has expired: End of Life since Jan 7, 2009
databases/erserver||2011-04-04|Has expired: does not compile on FreeBSD 7.x or newer
databases/postgresql73-client||2011-04-04|Removed
databases/postgresql74-client||2011-04-04|Removed
databases/postgresql74-contrib||2011-04-04|Removed
databases/postgresql80-client||2011-04-04|Removed
databases/postgresql80-contrib||2011-04-04|Removed
databases/postgresql81-client||2011-04-04|Removed
security/barnyard||2011-04-04|Has expired: use barnyard2 instead
graphics/linux_dri-devel|graphics/linux_dri|2011-04-07|Retire: is older than non-devel port
math/linux-SHA-1_collision_search_graz||2011-04-07|Has expired: Project discontinued
lang/compaq-cc||2011-04-09|Does not work on a supported platform
devel/thistest||2011-04-12|Has expired: development has ceased; website disappeared
emulators/xmamegui||2011-04-12|Has expired: development has ceased; try emulators/qmc2 instead
games/airrox||2011-04-12|Has expired: development has ceased
games/bfm||2011-04-12|Has expired: development has ceased; website disappeared
games/xracer||2011-04-12|Has expired: has not been developed for 10 years
net-p2p/gift-ares||2011-04-12|Has expired: development has ceased; does not work
net-p2p/torrent_swapper||2011-04-12|Has expired: development has ceased (last release is of 2006)
net-p2p/torrentvolve||2011-04-12|Has expired: development has ceased, and last release is beta
sysutils/gag||2011-04-12|Has expired: no point in having it as a port, can be downloaded from the website and burned
lang/gpc|lang/fpc|2011-04-12|Has expired: development has ceased; use lang/fpc instead
security/mypasswordsafe|security/gorilla|2011-04-12|Has expired: development has ceased; try security/gorilla instead
databases/db2||2011-04-12|Deprecated; use newer databases/db5* instead
sysutils/rsyslog5-devel|sysutils/rsyslog5|2011-04-14|5.8.0 is the -stable for 5.7.x, and 5.6.x is now deprecated
sysutils/rsyslog5-devel-dbi|sysutils/rsyslog5-dbi|2011-04-14|5.8.0 is the -stable for 5.7.x, and 5.6.x is now deprecated
sysutils/rsyslog5-devel-gnutls|sysutils/rsyslog5-gnutls|2011-04-14|5.8.0 is the -stable for 5.7.x, and 5.6.x is now deprecated
sysutils/rsyslog5-devel-gssapi|sysutils/rsyslog5-gssapi|2011-04-14|5.8.0 is the -stable for 5.7.x, and 5.6.x is now deprecated
sysutils/rsyslog5-devel-mysql|sysutils/rsyslog5-mysql|2011-04-14|5.8.0 is the -stable for 5.7.x, and 5.6.x is now deprecated
sysutils/rsyslog5-devel-pgsql|sysutils/rsyslog5-pgsql|2011-04-14|5.8.0 is the -stable for 5.7.x, and 5.6.x is now deprecated
sysutils/rsyslog5-devel-relp|sysutils/rsyslog5-relp|2011-04-14|5.8.0 is the -stable for 5.7.x, and 5.6.x is now deprecated
sysutils/rsyslog5-devel-rfc3195|sysutils/rsyslog5-rfc3195|2011-04-14|5.8.0 is the -stable for 5.7.x, and 5.6.x is now deprecated
sysutils/rsyslog5-devel-snmp|sysutils/rsyslog5-snmp|2011-04-14|5.8.0 is the -stable for 5.7.x, and 5.6.x is now deprecated
net-im/pickwick|net-im/chattahoochie|2011-04-15|Project renamed
cad/tclspice||2011-04-18|Has expired: has been broken for more than a year
comms/hcfmdm||2011-04-18|Has expired: does not compile on 7.X or higher
databases/mysqlcc||2011-04-18|Has expired: has been broken for almost a year
devel/ruby-rjudy||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
devel/xfc||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
devel/lamson||2011-04-18|Has expired: has been broken for a half year
devel/cocktail||2011-04-18|Has expired: does not build on FreeBSD 7.x or newer
devel/djgpp-gcc||2011-04-18|Has expired: has been broken for half a year
devel/gauche-sdl||2011-04-18|Has expired: has been broken for a year
devel/gdb53-act||2011-04-18|Has expired: does not compile on FreeBSD 7.x and up
editors/zed||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
games/aqbubble||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
graphics/libvisual-plugins||2011-04-18|Has expired: has been broken for 3 years
japanese/roundcube||2011-04-18|Has expired: has been broken for almost a year
japanese/tkstep80||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
lang/u++||2011-04-18|Has expired: has been broken for over a half year
lang/pugs||2011-04-18|Has expired: has been broken for over a year
lang/mozart||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
math/linalg||2011-04-18|Has expired: does not build on FreeBSD 7.x or newer
misc/ftree||2011-04-18|Has expired: has been broken for over a half year
multimedia/katchtv||2011-04-18|Has expired: has been broken for a half year
multimedia/libomxil-bellagio||2011-04-18|Has expired: has been broken for almost a year
multimedia/banshee-mirage||2011-04-18|Has expired: has been broken for over a half year
net-p2p/trackerbt||2011-04-18|Has expired: has been broken for a half year
net/cap||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
net/ggsd||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
net/b2bua||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
net/penguintv||2011-04-18|Has expired: has been broken for a half year
news/openftd||2011-04-18|Has expired: has been broken for almost a year
palm/romeo||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
science/pcp||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
science/elmer-fem||2011-04-18|Has expired: has been broken for over a year
security/newpki-lib||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
security/newpki-server||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
security/xmlsec||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
security/f-protd||2011-04-18|Has expired: has been broken for over a year
sysutils/xwlans||2011-04-18|Has expired: does not compile on FreeBSD 7.x or newer
www/bk_edit||2011-04-18|Has expired: does not compile on FreeBSD 7.x and newer
www/bricolage||2011-04-18|Has expired: has been broken for a half year
x11-toolkits/gauche-gtk||2011-04-18|Has expired: has been broken for a year
x11-toolkits/php-gtk2||2011-04-18|Has expired: has been broken for over a half year
x11-toolkits/p5-Tcl-Tk||2011-04-18|Has expired: has been broken for 2 year
security/newpki-client||2011-04-18|Removed
lang/gnustep-objc|lang/gnustep-libobjc|2011-04-19|Replaced with libobjc
graphics/netpbm-devel|graphics/netpbm|2011-04-22|Updated to default
ports-mgmt/portmk||2011-04-29|Has expired: has not been kept up to date for > 6 months
ports-mgmt/portsman||2011-04-29|Has expired: hardwires an ancient version of INDEX
mail/kiltdown||2011-04-29|Has expired: upstream seems dead since 2001
devel/pinstall||2011-04-30|Removed
x11-wm/kappdock||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-wm/wmg||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-toolkits/gtkglarea--||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-toolkits/php-gtk||2011-05-01|Has expired: Abandoned upstream
x11-toolkits/py-gtkextra||2011-05-01|Has expired: Abandoned upstream
x11-toolkits/viewkit||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/buffy||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/clean-theme-gtk||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/colorstep||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/engradient||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/flux-art||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/gtk-Mac2-theme||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/gtk-flat-theme||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/gtkbe||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/gtkstep||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/gtkstep-pastel||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/icegradient||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/notif2||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/whistlerk||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/xenophilia||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-themes/xenostep||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-fm/cfm||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-fm/gnome-commander||2011-05-01|Has expired: Gnome1 is deprecated, consider using gnome-commander2
x11-fm/jaffm||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-fm/workplace||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-clocks/bdesktopclock||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-clocks/washerdryer||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-clocks/wmtz||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11-clocks/xmms-alarm||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11/buttonbox||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11/cnslock||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11/gnome-launch-box||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11/gtk-themepreview||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11/gxset||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11/portoseguro||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11/wmfstatus||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11/wmoldmenu2new||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11/xbindkeys_config||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11/xmold||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
x11/xtattr||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
www/indexme||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
www/osb-browser||2011-05-01|Has expired: Abandonware, please use www/webkit-gtk2
www/osb-nrcit||2011-05-01|Has expired: Abandonware, please use www/webkit-gtk2
www/osb-nrcore||2011-05-01|Has expired: Abandonware, please use www/webkit-gtk2
www/pumperweb||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
www/py-ez_web||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
www/py-pullparser||2011-05-01|Has expired: Obsolete and deprecated
www/sidplug||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
www/twhttpd||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
www/wnews||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
www/xpath2rss||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
japanese/iiimf-le-freewnn||2011-05-01|Removed, depends on expired library
japanese/iiimf-le-canna||2011-05-01|Removed, depends on expired library
chinese/iiimf-le-newpy||2011-05-01|Removed, depends on expired library
korean/iiimf-le-hangul||2011-05-01|Removed, depends on expired library
chinese/iiimf-le-ude||2011-05-01|Removed, depends on expired library
textproc/ctpp|textproc/ctpp2|2011-05-01|Has expired: Deprecated; please use textproc/ctpp2
textproc/dsssl-docbook-cygnus||2011-05-01|Has expired: Distfile is no longer available
textproc/fdp-tools||2011-05-01|Has expired: Distfile is no longer available
textproc/iiimf-client-lib||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/iiimf-csconv||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/iiimf-headers||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/iiimf-le-unit||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/iiimf-protocol-lib||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/iiimf-server||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/iiimf-x||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/iiimf-x-lib||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/maketeidtd||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/minidom||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/ocaml-yaxpo||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/p5-LJ-SpellCheck||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/py-HyperText||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/smartdoc||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
textproc/xmlpp||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/acidlaunch||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/cpbk||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/dc42wrap||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/deleted||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/dolly+||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/durep||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/dvdtape||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/fontedit||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/ftrace||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/gfslicer||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/ghasher||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/gkrellmouse||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/gkrellmwho||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/glload||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/gnomefind||2011-05-01|Has expired: Abandoned upstream
sysutils/graft||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/growspd||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/gtoaster||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/idled||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available, consider using sysutils/doinkd
sysutils/maint||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/ndir||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/p5-LJ-Cache||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/p5-LJ-TextMessage||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/reclinker||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/rotate||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/ticker.app||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/upsmon||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/usbutil||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/uwatch||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/wmavgload||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/wmfsm||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/wmhm||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/wminet||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/wmlmmon||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/wmlongrun||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/wmmemmon||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/wmmount||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/wmpccard||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/wmshutdown||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
sysutils/wmzazof||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/aafid2||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/bjorb||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/borzoi||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/find_ddos||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/ftpmap||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/hafiye||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/ident2||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/liedentd||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/pam_pop3||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/poc||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/portscanner||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/ppgen||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/qident||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/quintuple-agent||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/rc5pipe||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/rid||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/ssh||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/tea-total||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
security/uberkey||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/bjfilter360||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/bjfilter850||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/bjfilter850ug||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/bjfilter860||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/bjfilter870||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/bjfiltercom||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/bjfilters600||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/bjfilters630||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/bjfilters6300||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/bsd_lpr||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/dvi2xx||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/envelope||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/pclprint||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/psmark||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/tipograf||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/tr2latex||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
print/wmlpq||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
palm/jfconv||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
palm/palmpower||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
palm/sitescooper||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
palm/uppc-kmod||2011-05-01|Has expired: Upstream disappeared and distfile is no longer available
news/leafnode+||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
news/pyne||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
news/slurp||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
news/unpost||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-p2p/edonkey-gui-gtk||2011-05-02|Removed, depends on linux-edonkey-core which has expired
net-p2p/edonkey-gui-gtk-urlslave||2011-05-02|Removed, depends on linux-edonkey-core which has expired
net-p2p/fcptools||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-p2p/hx||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-p2p/linux-edonkey-core||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-p2p/linux-edonkey-server||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-p2p/linux-edonkey-tool-recovermet||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-mgmt/junipoll||2011-05-02|Removed, depends on expired net-mgmt/p5-Altoids
net-mgmt/annextools||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-mgmt/asused||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-mgmt/ipsectrace||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-mgmt/knowlan||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-mgmt/p5-Altoids||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-mgmt/scotty3||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-im/aim||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-im/jit||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net-im/kf||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/bbsnet||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/bing||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/brutecopy||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/crescendo||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/danamics||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/etunnel||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/gastman||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/generic-nqs||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/gkrellmmultiping2||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/gkrellmwireless||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/gnoemoe||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/gnosamba||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/merlinmon||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/msntp||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/ntalk||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/onion-fec||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/openverse||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/poink||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/roadrunner||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/sambasentinel||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/scand||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/tacshell||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/telserv||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/tvark||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/warppipe||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/wistumbler2||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/wmq3||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/xbone-gui||2011-05-02|Has expired: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now
net/xsmbrowser||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/xtraceroute||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/ytalk||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
net/zniper||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
multimedia/gtksubtitler||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
multimedia/hayes||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
multimedia/netshow||2011-05-02|Has expired: Distfile is no longer available
multimedia/smpeg-xmms||2011-05-02|Has expired: Distfile is no longer available
multimedia/streamdvd||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
multimedia/sublib||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
multimedia/tkxanim||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
multimedia/tosvcd||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
multimedia/tv_grab_au||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
multimedia/xdvshow||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
multimedia/xmms-avi||2011-05-02|Has expired: Distfile is no longer available
multimedia/xmps||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
multimedia/xvid4conf||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/acron||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/chord||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/datedif||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/earthview||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/fcalc||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/gkrellscore||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/goldstr||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/gtl||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/kp||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/nserver||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/patanjali||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/qmc||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/snowflake||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/translator||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/videotext||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
misc/wmweather||2011-05-02|Has expired: Distfile is no longer available, try misc/wmweather+
misc/wmx10||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
math/fudgit||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
math/kaskade||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
math/qscanplot||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
math/rpc||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
math/ss||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
math/wmcalc||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/crashecho||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/drbl||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/glbiff||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/libsrs||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/majorcool||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/messagewall||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/pgen||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/regm||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/ricochet||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/smtpclient||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/smtpproxy||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/solidpop3d||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/spruce||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/teapop-devel||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/wmmail||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/wmmultipop3||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
mail/wmymail||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
java/avalon-logkit||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
java/gnu-regexp||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
java/jce-aba||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
java/jsdk||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
irc/garnaxfs||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
irc/party||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/cqcam||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/dc3play||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/dore||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/fig2pstricks||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/geist||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/gfont||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/gimp-greycstoration||2011-05-02|Has expired: Superseded by graphics/gimp-gmic-plugin
graphics/glean||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/gltk||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/gridpix||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/gtkfig||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/gview||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/icod||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/isreal||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/oglext||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/ophoto||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/py-gdchart||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/py-gdchart2||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/qglviewer||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/robot||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/s3switch||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/sced||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/shim||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/snx101util||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/tcm||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/vertex||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/vvv||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/xdl||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/xmms-goom||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
graphics/xmms-infinity||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
ftp/axyftp||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
ftp/emacs-wget||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
ftp/moftpd||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
ftp/wu-ftpd||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
ftp/xrmftp||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
ftp/yale-tftpd||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
emulators/basiliskII||2011-05-02|Has expired: Distfile is no longer available; official website has older distfiles
emulators/tkhfs||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
emulators/twin||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
emulators/vgb||2011-05-02|Has expired: Distfile is no longer available (latest binaries provided by upstream are for 5.x)
emulators/vpce||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
chinese/nvi-big5||2011-05-02|Has expired: Distfile is no longer available
chinese/nvi-euc-cn||2011-05-02|Has expired: Distfile is no longer available
chinese/nvi-euc-tw||2011-05-02|Has expired: Distfile is no longer available
editors/nvi-perl||2011-05-02|Has expired: Distfile is no longer available
japanese/nvi-euc-jp||2011-05-02|Has expired: Distfile is no longer available
japanese/nvi-iso-2022-jp||2011-05-02|Has expired: Distfile is no longer available
japanese/nvi-sjis||2011-05-02|Has expired: Distfile is no longer available
korean/nvi-euc-kr||2011-05-02|Has expired: Distfile is no longer available
korean/nvi-iso-2022-kr||2011-05-02|Has expired: Distfile is no longer available
editors/MathPlanner||2011-05-02|Has expired: Upstream says project is canceled and no more distfiles can be found
editors/bitmap||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
editors/bitmap-emacs21||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
editors/cle||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
editors/dedit||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
editors/em||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
editors/leim21||2011-05-02|Has expired: Distfile is no longer available
editors/lpe||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
editors/vilearn||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
editors/xenon||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/a2dev||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/c2lib||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/c2man||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/c_parser||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/cdoc||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/diffconvert||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/error||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/excalibur-configuration||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/freelibiberty||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/gengameng||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/hptools||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/invitation_to_ruby||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/kimwitu++||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/libU77||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/libcoro||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/libpperl||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/lincvs||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/linux-runrev||2011-05-02|Has expired: Abandoned upstream and distfile is no longer available
devel/makeplus||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/maketool||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/mob||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/mprof||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/ngpt||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/pedisassem||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/rinfo||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/templ||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
devel/towitoko||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
x11-fonts/avifonts||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
x11-fonts/bitmap-fonts||2011-05-02|Has expired: Distfile is no longer available
x11-fonts/mozilla-fonts||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
x11-fonts/xfed||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
x11-fonts/xmbdfed||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
audio/dap||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
audio/gdrdao||2011-05-02|Has expired: Upstream disappeared and no more distfiles available
databases/gmysql||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
deskutils/kuake||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
finance/xinvest||2011-05-02|Has expired: Outdated, abandoned
finance/xquote||2011-05-02|Has expired: Outdated, abandoned
french/plgrenouille||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
editors/xemacs-devel-mule-xft||2011-05-02|Remove, editors/xemacs-devel-mule builds with xft support now
lang/cim||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
lang/clips||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
lang/eiffel||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
lang/libutils||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
lang/linux-libperl5.8||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
lang/osb-jscore||2011-05-02|Has expired: Abandonware, please use www/webkit-gtk2
devel/kxl||2011-05-02|Has expired: Upstream disappeared and distfile is no longer available
games/geki2||2011-05-02|Removed, Upstream disappeared and distfile is no longer available
games/geki3||2011-05-02|Removed, Upstream disappeared and distfile is no longer available
games/grande||2011-05-02|Removed, Upstream disappeared and distfile is no longer available
games/spacearyarya||2011-05-02|Removed, Upstream disappeared and distfile is no longer available
ftp/ftptool||2011-05-02|Removed, depend on this expired editors/textedit
security/libfwbuilder||2011-05-02|libfwbuilder merged into fwbuilder
games/monopd||2011-05-03|Removed, depends on an expired library: devel/libcapsinetwork
devel/libcapsinetwork||2011-05-03|Has expired: Upstream disappeared and distfile is no longer available
audio/albumart||2011-05-03|Has expired: Upstream disappeared and distfile is no longer available
audio/aylet||2011-05-03|Has expired: Upstream disappeared and distfile is no longer available
audio/cantus||2011-05-03|Has expired: Upstream disappeared and distfile is no longer available
audio/xaylet||2011-05-03|Has expired: Upstream disappeared and distfile is no longer available
science/oases||2011-05-03|Has expired: Upstream disappeared and distfile is no longer available
shells/pash||2011-05-03|Has expired: Upstream disappeared and distfile is no longer available
www/codeigniter-devel||2011-05-03|Removed
devel/common_msgs|devel/ros-common_msgs|2011-05-03|Renamed
math/geometry|math/ros-geometry|2011-05-03|Renamed
devel/hs-FileManip|devel/hs-filemanip|2011-05-08|Renamed: Cabal package has been renamed
devel/lhs2TeX|textproc/hs-lhs2tex|2011-05-08|Renamed: It has become a Cabal transcript
devel/bnfc|devel/hs-BNFC|2011-05-08|Renamed: It has become a Cabal transcript
graphics/hs-hgl|graphics/hs-HGL|2011-05-08|Deleted: overridden by graphics/hs-HGL
net/hs-network-bytestring||2011-05-08|Removed: It is deprecated by net/hs-network
devel/hs-uvector||2011-05-08|Removed: It is deprecated by devel/hs-vector
devel/hs-uvector-algorithms||2011-05-08|Removed: It is deprecated by devel/hs-vector-algorithms
devel/jude-community|devel/astah-community|2011-05-09|Project was renamed
net/skype12|net-im/skype12|2011-05-09|Moved to a better category
net/skype|net-im/skype|2011-05-09|Moved to a better category
net/skype-devel|net-im/skype-devel|2011-05-12|Moved to a better category
devel/libchipcard-kde||2011-05-14|Obsolete
sysutils/libgksuui|sysutils/libgksu|2011-05-14|Removed: It is a part of sysutils/libgksu now
security/barnyard-sguil|security/barnyard2-sguil|2011-05-15|barnyard2 has build in sguil support
multimedia/rebot3||2011-05-16|Removed
devel/tcl-neo||2011-05-22|Removed: deprecated and no maintainer interest
www/neowebscript||2011-05-22|Removed: deprecated and no maintainer interest
databases/db3||2011-05-23|Removed: all users set USE_BDB=3+ and have been using 4.0+
databases/db45|databases/db46|2011-05-28|Removed: no users left that require exactly 4.5
textproc/scim-kmfl-european-latin|textproc/kmfl-european-latin|2011-05-29|KMFL keyboard ports are now platform-independent
textproc/scim-kmfl-sil-ezra|textproc/kmfl-sil-ezra|2011-05-29|KMFL keyboard ports are now platform-independent
textproc/scim-kmfl-sil-galatia|textproc/kmfl-sil-galatia|2011-05-29|KMFL keyboard ports are now platform-independent
textproc/scim-kmfl-sil-ipa-unicode5|textproc/kmfl-sil-ipa-unicode|2011-05-29|KMFL keyboard ports are now platform-independent
textproc/scim-kmfl-sil-panafrican-latin|textproc/kmfl-sil-panafrican-latin|2011-05-29|KMFL keyboard ports are now platform-independent
textproc/scim-kmfl-sil-yi|textproc/kmfl-sil-yi|2011-05-29|KMFL keyboard ports are now platform-independent
textproc/scim-kmfl-varamozhi-malayalam|textproc/kmfl-varamozhi-malayalam|2011-05-29|KMFL keyboard ports are now platform-independent
dns/bind94||2011-05-31|EOL - Update to dns/bind97 or dns/bind96
dns/bind94-geoip||2011-05-31|BIND 9.4.x is EOL
german/citrix_xenapp||2011-06-01|Has expired: crashes with Fedora 10 Linux base
japanese/citrix_xenapp||2011-06-01|Has expired: crashes with Fedora 10 Linux base
net/citrix_xenapp||2011-06-01|Has expired: crashes with Fedora 10 Linux base
comms/gammu-python||2011-06-01|Has expired: since version 1.29.0 comms/gammu uses Python by default
java/gj||2011-06-01|Has expired: Upstream disappeared and distfile is no longer available
net/ipv6socket_scrub||2011-06-01|Has expired: Upstream disappeared and distfile is no longer available
graphics/lodju||2011-06-01|Has expired: depends on rep-gtk, which doesn't build anymore
www/mod_pubcookie||2011-06-01|Has expired: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now
ftp/prozilla||2011-06-01|Has expired: Upstream disappeared and distfile is no longer available
www/py-django11||2011-06-01|Has expired: Unsupported (no longer receive security updates or bugfixes)
x11-toolkits/rep-gtk||2011-06-01|Has expired: missing rep-config from librep port broke the build
games/tnl||2011-06-01|Has expired: Upstream development has ceased, it doesn't work with newer CEGUI and is generally broken
net/vnc2swf|deskutils/vnc2flv|2011-06-01|Has expired: Development is now superseded by deskutils/vnc2flv
mail/postfix24||2011-06-03|Has expired: no further upstream development; please consider upgrading
www/mod_roaming2||2011-06-04|Has expired: no supported browser and no further upstream development; see PR 73383
net-p2p/qbittorrent26|net-p2p/qbittorrent|2011-06-05|Old version no longer updated. Try net-p2p/qbittorrent
net-p2p/qbittorrent26-nox11|net-p2p/qbittorrent-nox11|2011-06-05|Old version no longer updated. Try net-p2p/qbittorrent
net-p2p/qbittorrent27|net-p2p/qbittorrent|2011-06-05|Old version no longer updated. Try net-p2p/qbittorrent
net-p2p/qbittorrent27-nox11|net-p2p/qbittorrent-nox11|2011-06-05|Old version no longer updated. Try net-p2p/qbittorrent
www/pubcookie-login-server||2011-06-06|Has expired: Unused by maintainer, needs updates
databases/mariadb||2011-06-06|Split into databases/mariadb-{client,scripts,server}
devel/bugzilla2||2011-06-07|Removed: no longer under development
lang/ruby-js||2011-06-09|Removed: depends on expired port, seems abandonware itself
textproc/ruby-xml-script||2011-06-09|Removed: depends on expired port, seems abandonware itself
www/ruby-asp||2011-06-09|Removed: depends on expired port, seems abandonware itself
lang/njs||2011-06-09|Has expired: Upstream disappeared and distfile is no longer available
editors/wily||2011-06-09|Removed, depends on an expired port
x11-fonts/Xg||2011-06-09|Has expired: Upstream disappeared and distfile is no longer available
irc/bitlbee-otr||2011-06-13|Removed, overridden by irc/bitlbee
deskutils/mcatalog||2011-06-13|Has expired: Upstream disappeared and distfile is no longer available
mail/evolution-sharp||2011-06-13|Has expired: has been broken for over a year
print/cmpsfont|print/font-amsfonts|2011-06-15|Renamed
print/amspsfnt|print/font-amsfonts|2011-06-15|Renamed
irc/ezbounce-devel|irc/ezbounce|2011-06-19|Main port updated to the latest available version
graphics/povray|graphics/povray36|2011-06-21|Renamed
x11/widgetfactory|x11-themes/thewidgetfactory|2011-06-23|Duplicate ports merged
deskutils/opengoo|deskutils/fengoffice|2011-06-24|It was renamed to deskutils/fengoffice
irc/gdesklets-irc||2011-06-25|Has expired: Upstream disappeared and distfile is no longer available
net/libevnet||2011-06-25|Has expired: no longer necessary now that libevent2 has been released
www/mod_auth_ldap||2011-06-25|Has expired: apache 13/20 is scheduled for deletion, migrate to 2.2.x+ and mod_authnz_ldap now
www/mod_auth_remote||2011-06-25|Has expired: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now
www/mod_authenticache||2011-06-25|Has expired: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now
www/mod_layout2||2011-06-25|Has expired: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now
www/mod_macro2||2011-06-25|Has expired: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now
www/mod_traf_thief||2011-06-25|Has expired: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now
www/mod_transform||2011-06-25|Has expired: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now
comms/ruby-termios|comms/rubygem-ruby-termios|2011-06-25|Development has moved, <=0.9.5 doesn't work with Ruby 1.9.x
java/jdk14||2011-06-28|Has expired: does not build on FreeBSD 7.x or newer
mail/vpopmail-devel|mail/vpopmail|2011-06-28|Has expired: Obsolete version, install mail/vpopmail port
audio/rat||2011-07-01|The mbone is no more
audio/rat30||2011-07-01|The mbone is no more
audio/speak_freely||2011-07-01|The mbone is no more
audio/vat||2011-07-01|The mbone is no more
audio/xspeakfree||2011-07-01|The mbone is no more
net/imm||2011-07-01|The mbone is no more
net/mcl||2011-07-01|The mbone is no more
net/rqm||2011-07-01|The mbone is no more
net/sdr||2011-07-01|The mbone is no more
net/udpcast||2011-07-01|The mbone is no more
net/wb||2011-07-01|The mbone is no more
math/femlab||2011-07-02|Has expired: No more distfiles, looks like abandonware
japanese/wikicker||2011-07-02|Has expired: Looks like abandonware
emulators/vmware3||2011-07-02|Has expired: No more distfiles available; emulators/virtualbox-ose can be used as a replacement
devel/libevocosm||2011-07-02|Has expired: Looks like abandonware
devel/acovea||2011-07-02|Has expired: Looks like abandonware
devel/acovea-gtk||2011-07-02|Has expired: Looks like abandonware
sysutils/service-config||2011-07-02|Has expired: mastersite disappeared
print/lyx-devel||2011-07-03|print/lyx has been updated to a newer version, use it instead
archivers/lzo||2011-07-07|Use archivers/lzo2 instead
www/horde4-browser||2011-07-07|Removed
www/horde4-template||2011-07-07|Removed
deskutils/horde4-itip||2011-07-07|Removed
deskutils/horde4-alarm||2011-07-07|Removed
devel/horde4-rdo||2011-07-07|Removed
devel/horde4-date||2011-07-07|Removed
devel/horde4-autoloader||2011-07-07|Removed
devel/horde4-cache||2011-07-07|Removed
devel/horde4-dateparser||2011-07-07|Removed
devel/horde4-translation||2011-07-07|Removed
devel/horde4-streamfilter||2011-07-07|Removed
devel/horde4-constraint||2011-07-07|Removed
devel/horde4-streamwrapper||2011-07-07|Removed
graphics/horde4-image||2011-07-07|Removed
security/horde4-auth||2011-07-07|Removed
x11-wm/boxtools|x11-wm/blackbox|2011-07-08|Ports merged together
audio/ruby-ogginfo||2011-07-09|Replaced with audio/rubygem-ogginfo
audio/ruby-shout||2011-07-10|Replaced with audio/rubygem-shout
textproc/xpp3||2011-07-11|Removed depends on an expired ports
textproc/xmlpull||2011-07-11|Has expired: Upstream disappeared and distfile is no longer available
java/shujit||2011-07-13|Has expired: ancient version of Java
net-im/skype12||2011-07-13|Has expired: very old version
net-p2p/tvrss||2011-07-14|tvrss site does not exist anymore
www/horde4-meta||2011-07-14|Removed
graphics/crystalentitylayer||2011-07-17|Removed
graphics/crystalspace||2011-07-17|Has expired: has been broken for a year
mail/qmail-vida||2011-07-18|Has expired: UID collisions, IGNOREd for four years with no one caring
java/jdk13|java/jdk15|2011-07-21|Has expired: ancient version of Java
java/linux-sun-jdk13|java/linux-sun-jdk15|2011-07-21|Has expired: ancient version of Java
java/jboss3||2011-07-21|Has expired: Depends on expired Java 1.4
textproc/galax||2011-07-21|Has expired: Depends on expired Java 1.4
devel/colorer||2011-07-21|Has expired: Depends on deprecated Java 1.4
security/jce_policy14||2011-07-21|Has expired: Only for Java 1.4, which is deprecated
java/linux-blackdown-jdk14||2011-07-21|Has expired: ancient version of Java
java/linux-sun-jdk14|java/linux-sun-jdk15|2011-07-21|Has expired: ancient version of Java
dns/dhid||2011-07-28|Has expired: Unmaintained, distfile has changed with no explanation
math/librandlib|math/randlib|2011-07-28|Move to a location that matches the name
science/bblimage|science/pyvox|2011-07-28|Track the upstream name change
net-im/gnome-jabber|net-im/empathy|2011-07-28|Has expired: No longer maintained upstream since 2005; use net-im/empathy instead
devel/gir-repository||2011-07-30|Removed
devel/gir-repository-libnotify||2011-07-30|Removed
graphics/gir-repository-goocanvas||2011-07-30|Removed
graphics/gir-repository-poppler||2011-07-30|Removed
x11-toolkits/gir-repository-vte||2011-07-30|Removed
mail/rubygem-smtp_tls||2011-07-30|Has expired: no supported version of FreeBSD have < 1.8.7.p72
textproc/pl-hunspell|polish/hunspell|2011-07-31|Move to a better place via repocopy
www/mod_roaming||2011-08-01|Has expired: no supported browser and no further upstream development; see PR 73383
archivers/zipios++||2011-08-01|Has expired: No more public distfiles
astro/sattrack||2011-08-01|Has expired: No more public distfiles
audio/bladeenc||2011-08-01|Has expired: Looks like abandonware
audio/cdplayer.app||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
audio/linux-vsound||2011-08-01|Has expired: Abandonware
audio/mpegaudio||2011-08-01|Has expired: No more public distfiles
audio/mpmf20||2011-08-01|Has expired: Abandonware
audio/mutemix||2011-08-01|Has expired: abandonware, no more public distfiles
audio/phatbeat||2011-08-01|Has expired: abandonware, no more public distfiles
audio/pimp3||2011-08-01|Has expired: No more public distfiles
audio/rbscrobbler||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
audio/ripenc||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
audio/wmcdplay||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
audio/wmfmixer||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
audio/wmmp3||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
audio/wmusic||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
audio/xmms-kj||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
audio/xmms-pipe||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
audio/xmms-speex||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
audio/xsidplay||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
audio/xtuner||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
benchmarks/rawio||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
benchmarks/tmetric||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
biology/L-Breeder||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
biology/crimap||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
biology/distribfold||2011-08-01|Has expired: No more upstream, looks like abandonware
biology/kinemage||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
biology/lsysexp||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
chinese/chm2html||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
chinese/ntuttf||2011-08-01|Has expired: No more public distfiles available
chinese/tocps||2011-08-01|Has expired: No more public distfiles available
chinese/xttmgr||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
comms/mserver||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
comms/qicosi||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
comms/smstools||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
converters/siconv||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
converters/utf8conv||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
databases/pgcluster||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
databases/py-MySQL||2011-08-01|Has expired: Please use databases/py-MySQLdb instead
databases/py-SQLDict||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
databases/py-rrdpipe||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
databases/sybase_ase||2011-08-01|Has expired: no more public distfiles available
deskutils/gkrellm-timers||2011-08-01|Has expired: No more public distfile
deskutils/multi-backgrounds-daemon||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
deskutils/py-tagfu||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
deskutils/taskstep||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
devel/c_c++_reference||2011-08-01|Has expired: No more public distfiles
devel/libcoyotl||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
devel/libfs++||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
devel/mkmf||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
devel/p5-Include||2011-08-01|Has expired: No more public distfiles
devel/rubygem-newgem||2011-08-01|Has expired: broken since 2010/09/22
devel/tpg||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
games/amphetamine||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
games/anagramarama||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
games/connect4||2011-08-01|Has expired
games/wrogue||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
graphics/xmms-msa||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/chimera||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/drpl||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/easypr||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/elisp-manual||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/emacs-manual||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/ewipe||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/ircII||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/jhd||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/libjconv||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/mimekit||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/nethack32||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/paledit||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/recjis||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/typist||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/weblint97||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/xmsgsaver||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/xshodo||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
japanese/xvi-euc||2011-08-01|Has expired: No more public distfiles
japanese/xvi-sjis||2011-08-01|Has expired: No more public distfiles
japanese/xyagamo||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
korean/a2ps||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
korean/bitchx||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
korean/elm||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
korean/linuxdoc-sgml||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
korean/mod_url||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
korean/nh2ps||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
korean/pinetreefonts||2011-08-01|Has expired: No more public distfile
mail/cmail||2011-08-01|Has expired: No more public distfile
math/qgfe||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
misc/ewipe||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
misc/gkrellmfmonitor2||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
misc/gkx86info||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
multimedia/goggles||2011-08-01|Has expired: Abandonware, see: http://www.fifthplanet.net/2010/01/dead-projects-goggles-dvd-player.html
multimedia/ldvd||2011-08-01|Has expired: Abandonware
multimedia/linux-divx4linux||2011-08-01|Has expired: No longer needed
multimedia/linux-divx4linux4||2011-08-01|Has expired: No longer needed
multimedia/ogle||2011-08-01|Has expired: Abandonware
multimedia/ogle-gui||2011-08-01|Has expired: Abandonware
multimedia/okle||2011-08-01|Has expired: Abandonware
multimedia/subconv||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
net/callgen323||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
net/lyntin||2011-08-01|Has expired: No longer under active development
net/py-rt||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
net/traffic||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
net-im/gnomeicu||2011-08-01|Has expired: No longer maintained upstream, use net-im/empathy instead
net-mgmt/trafd||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
net-p2p/gkrellm-gift||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
news/bgrab||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
news/rkive||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
polish/sap||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
devel/eboxy||2011-08-01|Removed: depends on expired sdl_gui
russian/messarge||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
russian/pgp.language||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
security/ifd-gempc410||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
security/libidea||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
security/rain||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
sysutils/Tee||2011-08-01|Has expired: No more public distfile
sysutils/i855vidctl10||2011-08-01|Has expired: No more public distfiles
sysutils/rsyslog3-snmp||2011-08-01|Has expired: unsupported upstream
sysutils/xapply||2011-08-01|Has expired: No more public distfiles
textproc/diff-mode.el||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
vietnamese/gtk-im-vi||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
www/campsite||2011-08-01|Has expired: Does not work
www/p5-PLP||2011-08-01|Has expired: No more upstream, looks like an abandonware
www/wcol||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
x11-toolkits/sdl_gui||2011-08-01|Has expired: Looks like abandonware, no more public distfiles
www/contenido||2011-08-01|Has expired: ancient version of PHP needed
audio/rio||2011-08-02|Has expired: Looks like abandonware, no more public distfiles
audio/ruby-musicextras||2011-08-02|Has expired: Upcoming ruby-gnome removes dependencies
deskutils/sshmenu||2011-08-02|Has expired: Upcoming ruby-gnome removes dependencies
science/gave||2011-08-02|Has expired: Upcoming ruby-gnome removes dependencies
x11-themes/gnome-art||2011-08-02|Has expired: Upcoming ruby-gnome removes dependencies
x11-themes/gnome-splashscreen-manager||2011-08-02|Has expired: Upcoming ruby-gnome removes dependencies
databases/mysql-gui-tools||2011-08-02|Removed; broken for more than 6 months
www/adblock|www/xpi-adblock|2011-08-02|Depends on obsolete SeaMonkey 1.1
www/bugmenot|www/bugmenot-firefox|2011-08-02|Depends on obsolete SeaMonkey 1.1
www/mozex|www/xpi-mozex|2011-08-02|Depends on obsolete SeaMonkey 1.1
www/preferential||2011-08-02|Depends on obsolete SeaMonkey 1.1
comms/ruby-serialport||2011-08-03|Has expired: Doesn't work with Ruby 1.9
databases/ruby-search-namazu||2011-08-03|Has expired: Doesn't work with Ruby 1.9
databases/ruby-sqlite||2011-08-03|Has expired: Doesn't work with Ruby 1.9
databases/rubygem-kirbybase||2011-08-03|Has expired: Doesn't work with Ruby 1.9
devel/ruby-eet||2011-08-03|Has expired: Doesn't work with Ruby 1.9
devel/ruby-filelock||2011-08-03|Has expired: Doesn't work with Ruby 1.9
devel/ruby-filemagic||2011-08-03|Has expired: Doesn't work with Ruby 1.9
devel/ruby-metaruby||2011-08-03|Has expired: Doesn't work with Ruby 1.9
devel/ruby-poll||2011-08-03|Has expired: Doesn't work with Ruby 1.9
devel/ruby-rrb||2011-08-03|Has expired: Doesn't work with Ruby 1.9
devel/ruby-strongtyping||2011-08-03|Has expired: Doesn't work with Ruby 1.9
devel/ruby-textbuf||2011-08-03|Has expired: Doesn't work with Ruby 1.9
graphics/ruby-graph||2011-08-03|Has expired: Doesn't work with Ruby 1.9
graphics/ruby-libpng||2011-08-03|Has expired: Doesn't work with Ruby 1.9
japanese/ruby-kakasi||2011-08-03|Has expired: Doesn't work with Ruby 1.9
lang/ruby-extensions||2011-08-03|Has expired: Doesn't work with Ruby 1.9
lang/ruby-lua||2011-08-03|Has expired: Doesn't work with Ruby 1.9
lang/ruby-perl||2011-08-03|Has expired: Doesn't work with Ruby 1.9
mail/ruby-tmail||2011-08-03|Has expired: Doesn't work with Ruby 1.9
math/ruby-bitset||2011-08-03|Has expired: Doesn't work with Ruby 1.9
math/ruby-bitvector||2011-08-03|Has expired: Doesn't work with Ruby 1.9
math/ruby-gmp||2011-08-03|Has expired: Doesn't work with Ruby 1.9
net/ruby-mpi||2011-08-03|Has expired: Doesn't work with Ruby 1.9
net/ruby-nis||2011-08-03|Has expired: Doesn't work with Ruby 1.9
net/ruby-pcap||2011-08-03|Has expired: Doesn't work with Ruby 1.9
net/ruby-romp||2011-08-03|Has expired: Doesn't work with Ruby 1.9
net/ruby-spread||2011-08-03|Has expired: Doesn't work with Ruby 1.9
print/ruby-pdflib||2011-08-03|Has expired: Doesn't work with Ruby 1.9
security/ruby-aes||2011-08-03|Has expired: Doesn't work with Ruby 1.9
security/ruby-blowfish||2011-08-03|Has expired: Doesn't work with Ruby 1.9
security/ruby-cast_256||2011-08-03|Has expired: Doesn't work with Ruby 1.9
security/ruby-mcrypt||2011-08-03|Has expired: Doesn't work with Ruby 1.9
security/ruby-pam||2011-08-03|Has expired: Doesn't work with Ruby 1.9
sysutils/ruby-log4r||2011-08-03|Has expired: Doesn't work with Ruby 1.9
textproc/ruby-csv||2011-08-03|Has expired: Doesn't work with Ruby 1.9
textproc/ruby-formvalidator||2011-08-03|Has expired: Doesn't work with Ruby 1.9
textproc/ruby-gdome||2011-08-03|Has expired: Doesn't work with Ruby 1.9
textproc/ruby-htmltools||2011-08-03|Has expired: Doesn't work with Ruby 1.9
textproc/ruby-nqxml||2011-08-03|Has expired: Doesn't work with Ruby 1.9
textproc/ruby-quixml||2011-08-03|Has expired: Doesn't work with Ruby 1.9
textproc/ruby-raspell||2011-08-03|Has expired: Doesn't work with Ruby 1.9
textproc/ruby-tempura||2011-08-03|Has expired: Doesn't work with Ruby 1.9
textproc/ruby-xtemplate||2011-08-03|Has expired: Doesn't work with Ruby 1.9
www/ruby-tmpl||2011-08-03|Has expired: Doesn't work with Ruby 1.9
x11/gcursor||2011-08-03|No longer maintained upstream
www/firefox35||2011-08-03|Has expired: Upstream support dropped. Please consider using www/firefox instead
www/firefox35-i18n||2011-08-03|Has expired: Upstream support dropped. Please consider using www/firefox-i18n instead
graphics/leptonlib|graphics/leptonica|2011-08-05|Follow upstream name change
lang/gnustep-libobjc|lang/libobjc2|2011-08-06|Replaced with libobjc2
sysutils/p5-mogilefs-server|sysutils/p5-MogileFS-Server|2011-08-08|Move to a better place via repocopy
devel/fossology||2011-08-09|Has expired: Broken for four months with no one caring
deskutils/alexandria||2011-08-10|Has expired: Upcoming ruby-gnome removes dependencies
security/drweb||2011-08-10|Has expired: fails to fetch (website rearranged)
security/drweb-postfix||2011-08-10|Has expired: fails to fetch (website rearranged)
security/drweb-qmail||2011-08-10|Has expired: fails to fetch (website rearranged)
security/drweb-sendmail||2011-08-10|Has expired: fails to fetch (website rearranged)
math/hs-category-extras||2011-08-14|Removed: this package is obsolete
lang/p5-POE-Component-Hailo||2011-08-14|Removed
java/jdk14-doc|java/jdk16-doc|2011-08-14|Removed: jdk14 has been removed
audio/coverhunter||2011-08-14|Has expired: required Amazon Developer Tokens are no longer available
databases/gauche-gdbm||2011-08-14|Has expired: has been broken for more than a year
www/wiliki||2011-08-14|Removed: depends on expired gauche-gdbm
mail/scmail||2011-08-14|Removed: depends on expired gauche-gdbm
x11-themes/fluxbox-sid-pack||2011-08-14|Has expired: No longer maintained upstream
japanese/ical||2011-08-15|Removed
lang/ocamlduce||2011-08-16|Has expired: has been broken for over a year
devel/cl-asdf-binary-locations||2011-08-16|Obsoleted by ASDF 2 capabilities
devel/py-istring||2011-08-17|Has expired: port is unmaintained and broken
mail/sylpheed3|mail/sylpheed|2011-08-22|Removed: please use mail/sylpheed instead
www/p5-FastCGI|www/p5-FCGI|2011-08-23|Rename to reflect official module name
databases/db51|databases/db5|2011-08-26|Removed: please use the newer databases/db5 instead
chinese/firebird||2011-08-30|Has expired: Broken, maintainer timed out, untouched for five years
www/drupal5-securepages||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-xmlsitemap||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-token||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-cck||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-disknode||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-views||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-ubercart||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-taxonomy_access||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-insert-view||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-thickbox||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-taxonomy_ticker||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-tinymce||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-adsense||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-tagadelic||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-imagefield||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-nodewords||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-bluebreeze||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-imagecache||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-nice_menus||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-ubrowser||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-google_analytics||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-bookreview||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-tapir||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-i18n||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-simplenews||2011-08-30|Has expired: Use drupal[67] instead
www/drupal5-workflow_ng||2011-08-30|Has expired: Use drupal[67] instead
astro/gkrellmoon||2011-09-01|Has expired: Abandonware
astro/spacechart||2011-09-01|Has expired: Abandonware
audio/adpcm||2011-09-01|Has expired: No more public distfiles
audio/aube||2011-09-01|Has expired: Abandonware
audio/festvox-aec||2011-09-01|Has expired: Broken for more than 6 months
audio/gtkgep||2011-09-01|Has expired: Abandonware
audio/gtkhirad||2011-09-01|Has expired: No more public distfiles
audio/opmixer||2011-09-01|Has expired: No more upstream
audio/swami||2011-09-01|Has expired: Abandonware
audio/xmms-sndstretch||2011-09-01|Has expired: No Master Site
cad/linux-gid||2011-09-01|Has expired: No more public distfiles
chinese/gbscript||2011-09-01|Has expired: No more public distfiles
chinese/mplayer-fonts||2011-09-01|Has expired: No more public distfiles
chinese/oxford||2011-09-01|Has expired: No more public distfiles
chinese/vflib||2011-09-01|Has expired: No more public distfiles
databases/mysql++||2011-09-01|Has expired: No more public distfiles
databases/mysql_last_value||2011-09-01|Has expired: No Master Site
databases/p5-DBIx-Table||2011-09-01|Has expired: No more public distfiles
deskutils/gkrellm-gtodo||2011-09-01|Has expired: No more public distfiles
deskutils/xopps||2011-09-01|Has expired: No more public distfiles
devel/adocman||2011-09-01|Has expired: No more public distfiles
devel/bisongen||2011-09-01|Has expired: No more public distfiles
devel/crow||2011-09-01|Has expired: Broken for more than 6 months
devel/p5-Config-INI-MVP||2011-09-01|Has expired: Disappear from CPAN
devel/p5-Date-Set||2011-09-01|Has expired: Disappear from CPAN
devel/p5-File-FTS||2011-09-01|Has expired: No more public distfiles
devel/p5-PerlMenu||2011-09-01|Has expired: No more public distfiles
devel/p5-Proc-PIDFile||2011-09-01|Has expired: No more public distfiles
devel/p5-UNIVERSAL-exports||2011-09-01|Has expired: Disappear from CPAN
devel/ruby-rbtree||2011-09-01|Has expired: No Master Site
dns/host||2011-09-01|Has expired: No more public distfiles
emulators/linux-padjoy||2011-09-01|Has expired: No more public distfiles
emulators/mame-extras||2011-09-01|Has expired: No more public distfiles
emulators/snespp||2011-09-01|Has expired: Broken for more than 6 months
emulators/xgs||2011-09-01|Has expired: No more public distfiles
ftp/gproftpd||2011-09-01|Has expired: No more public distfiles
ftp/muddleftpd||2011-09-01|Has expired: No more public distfiles
audio/gx2osd||2011-09-03|Has expired: No more public distfiles
devel/p5-Getopt-Mixed||2011-09-03|Use devel/p5-Getopt-Long instead
net/AquaGatekeeper2||2011-09-03|Binary port of software abandoned by the vendor
net/xwhois||2011-09-03|Unmaintained upstream for several years
www/p5-Catalyst-Engine-HTTP-POE||2011-09-03|Use p5-Catalyst-Engine-HTTP-Prefork instead
www/p5-Catalyst-Model-DBIC||2011-09-03|Obsoleted by www/p5-Catalyst-Model-DBIC-Schema
www/p5-Catalyst-Plugin-Cache-Store-FastMmap||2011-09-03|Deprecated, not depended on
www/p5-HTTP-MobileAttribute||2011-09-03|Use www/p5-HTTP-MobileAgent instead
irc/ptlink-ircd||2011-09-03|Has expired: No upstream source, no distfile and no maintainer
irc/ptlink-services||2011-09-03|Has expired: No upstream source, no distfile and no maintainer
www/mediawiki115||2011-09-03|Unsupported upstream
www/p5-Catalyst-Plugin-Authentication-Store-DBIC||2011-09-03|Use p5-Catalyst-Authentication-Store-DBIx-Class instead
net/uproxy||2011-09-04|Master site disappeared, abandonware
x11/ebuttons||2011-09-05|Has expired: Website has disappeared
cad/oregano||2011-09-05|Has expired: Website has disappeared
devel/jakelib2||2011-09-05|Has expired: Website has disappeared
x11-wm/epiwm||2011-09-07|Has expired: Abandonware
x11-toolkits/p5-GdkPixbuf||2011-09-07|Has expired: Disappear from CPAN
x11-toolkits/XawPlus||2011-09-07|Has expired: No more public distfiles
x11-fonts/gnome-font-sampler||2011-09-07|Has expired: No more public distfiles
www/xitami||2011-09-07|Has expired: No more public distfiles
www/webredirect||2011-09-07|Has expired: No more public distfiles
www/webglimpse||2011-09-07|Has expired: No more public distfiles
www/squishdot||2011-09-07|Has expired: No more public distfiles
www/py-forgethtml||2011-09-07|Has expired: No more public distfiles
www/mmosaic||2011-09-07|Has expired: No more public distfiles
www/ljsm||2011-09-07|Has expired: No more public distfiles
www/ljpms||2011-09-07|Has expired: No more public distfiles
www/ashe||2011-09-07|Has expired: No more public distfiles
textproc/europass-xsl||2011-09-07|Has expired: Broken for more than 6 months
textproc/carthage||2011-09-07|Has expired: No more public distfiles
korean/hlatexfonts-ocf||2011-09-07|Has expired: No more public distfiles
korean/pgp.language||2011-09-07|Has expired: No more public distfiles
games/xgammon||2011-09-07|Has expired: No more public distfiles
korean/hanIM||2011-09-07|Has expired: No more public distfiles
misc/gplbp||2011-09-07|Has expired: No more public distfiles
net/vyqchat||2011-09-07|Has expired: No more public distfiles
news/xmitbin||2011-09-07|Has expired: No more public distfiles
games/tvp||2011-09-07|Has expired: No more public distfiles
games/glasteroids||2011-09-07|Has expired: No more public distfiles
korean/hanmiscutils||2011-09-07|Has expired: No more public distfiles
net-p2p/hagelslag||2011-09-07|Has expired: No more public distfiles
games/cgoban2||2011-09-07|Has expired: No more public distfiles
games/krosswordplayer||2011-09-07|Has expired: No more public distfiles
korean/helvis||2011-09-07|Has expired: No more public distfiles
print/mgv||2011-09-07|Has expired: No more public distfiles
japanese/linux-JM||2011-09-07|Has expired: No more public distfiles
games/xlines||2011-09-07|Has expired: No more public distfiles
games/xgame||2011-09-07|Has expired: No more public distfiles
net/ttt||2011-09-07|Has expired: No more public distfiles
games/merlin||2011-09-07|Has expired: No more public distfiles
games/slige||2011-09-07|Has expired: No more public distfiles
games/wmtimebomb||2011-09-07|Has expired: No more public distfiles
net-mgmt/cfgstoragemk||2011-09-07|Has expired: No more public distfiles
mail/libspf2-10||2011-09-09|Vulnerable, use mail/libspf2 instead
mail/postfix-policyd-spf||2011-09-09|Relies on vulnerable mail/libspf2-10
multimedia/bmpx||2011-09-11|Has expired: Broken for more than 6 months
editors/openoffice.org-2|editors/openoffice.org-3|2011-09-20|Unsupported upstream and vulnerable
devel/monodevelop-boo||2011-09-21|Removed
www/ruby-http-access||2011-09-22|Has expired: Deprecated upstream, please use www/rubygem-httpclient
sysutils/wots||2011-09-22|Has expired: No more public distfiles
sysutils/plod||2011-09-22|Has expired: No more public distfiles
sysutils/checkservice||2011-09-22|Has expired: Broken for more than 6 months
security/nsm-console||2011-09-22|Has expired: Broken for more than 6 months
security/fressh||2011-09-22|Has expired: No more public distfiles
palm/pose||2011-09-22|Has expired: No more public distfiles
palm/isilo||2011-09-22|Has expired: No more public distfiles
news/ija||2011-09-22|Has expired: Broken for more than 6 months
news/PicMonger||2011-09-22|Has expired: Abandonware
net/py-zopeproxy|net/py-zope.proxy|2011-09-23|Removed: please use net/py-zope.proxy instead
devel/libnotifymm||2011-09-23|Has expired: Doesn't build and isn't used by anything
games/abuse||2011-09-23|Has expired: Broken after games/abuse_sdl update
security/donkey||2011-09-23|Has expired: No more public distfiles
graphics/moth||2011-09-23|Has expired: No more public distfiles
net-mgmt/aguri||2011-09-23|Has expired: No more public distfiles
games/senso||2011-09-23|Has expired: No more public distfiles
net-im/jabber-users-agent||2011-09-23|Has expired: No more public distfiles
games/cchess||2011-09-23|Has expired: No more public distfiles
devel/git-annex|devel/hs-git-annex|2011-09-26|It has become a Cabal transcript
devel/py-zopetesting|devel/py-zope.testing|2011-09-27|Removed: please use devel/py-zope.testing instead
astro/boinc-milkyway||2011-09-27|No longer useful
www/linux-firefox-devel|www/linux-firefox|2011-09-27|Older than www/linux-firefox
graphics/pgperl|graphics/p5-PGPLOT|2011-09-28|Move to a better place via repocopy
devel/py-zopeInterface|devel/py-zope.interface|2011-09-29|Removed: please use devel/py-zope.interface instead
audio/mt-daapd||2011-09-30|Use audio/firefly instead
databases/p5-DBIx-Class-Validation||2011-09-30|Depends on textproc/p5-FormValidator-Simple, which is DEPRECATED
devel/p5-Class-Data-Accessor||2011-09-30|Please consider using p5-Class-Accessor-Grouped or p5-Moose
graphics/libflash||2011-09-30|gplflash is no longer supported, please use gnash instead
graphics/flashplayer||2011-09-30|Depends on DEPRECATED graphics/libflash
japanese/p5-FormValidator-Simple-Plugin-Number-Phone-JP||2011-09-30|Depends on textproc/p5-FormValidator-Simple, which is DEPRECATED
net/p5-OAuth-Lite||2011-09-30|Depends on devel/p5-Class-Data-Accessor, which is DEPRECATED
net-mgmt/py-snmp||2011-09-30|Use net-mgmt/py-snmp4 instead
net-mgmt/py-twistedSNMP||2011-09-30|Relies on net-mgmt/py-snmp, which is DEPRECATED
net-p2p/gift||2011-09-30|Unmaintained upstream for several years
net-p2p/giftcurs||2011-09-30|Unmaintained upstream for several years
net-p2p/giftoxic||2011-09-30|Unmaintained upstream for several years
net-p2p/giftui||2011-09-30|Unmaintained upstream for several years
net-p2p/apollon||2011-09-30|Depends on net-p2p/gift, which is DEPRECATED
textproc/p5-FormValidator-Simple||2011-09-30|Depends on devel/p5-Class-Data-Accessor, which is DEPRECATED
www/flashplugin-mozilla||2011-09-30|gplflash is no longer supported, please use graphics/gnash
www/p5-HTML-Widget||2011-09-30|Depends on devel/p5-Class-Data-Accessor, which is DEPRECATED
www/p5-Catalyst-Plugin-AutoRestart||2011-09-30|Depends on devel/p5-Class-Data-Accessor, which is DEPRECATED
www/p5-Catalyst-Example-InstantCRUD||2011-09-30|Depends on www/p5-HTML-Widget, which is DEPRECATED
www/p5-Catalyst-Plugin-FormValidator-Simple||2011-09-30|Depends on textproc/p5-FormValidator-Simple, which is DEPRECATED
www/p5-Catalyst-Plugin-HTML-Widget||2011-09-30|Depends on www/p5-HTML-Widget, which is DEPRECATED
www/asterisk-fop||2011-09-30|Depends on www/flashplugin-mozilla which is DEPRECATED
www/p5-Handel||2011-09-30|Depends on textproc/p5-FormValidator-Simple, which is DEPRECATED
www/p5-DBIx-Class-HTMLWidget||2011-09-30|Depends on www/p5-HTML-Widget, which is DEPRECATED
www/p5-HTML-Widget-DBIC||2011-09-30|Disappear from CPAN
x11-wm/fvwm24||2011-09-30|No longer supported by fvwm.org
math/mupad||2011-09-30|Relies on xpm, vulnerable since 2004-09-15
net-p2p/torrentflux||2011-09-30|Vulnerable since 2006-10-07
net/tptest||2011-09-30|Vulnerable since 2009-12-17
security/pgp6||2011-09-30|Vulnerable since 2005-07-31
www/p5-RTx-RightsMatrix||2011-09-30|Only works with www/rt36, which is FORBIDDEN
www/p5-RTx-Shredder||2011-09-30|Only works with www/rt36, which is FORBIDDEN
www/p5-RTx-Statistics||2011-09-30|Only works with www/rt36, which is FORBIDDEN
www/rt36||2011-09-30|Vulnerable since 2009-12-09
www/zope-archetypes||2011-09-30|Depends on www/plone, which is FORBIDDEN
www/zope-calendaring||2011-09-30|Depends on www/plone, which is FORBIDDEN
www/zope-coreblog2||2011-09-30|Depends on www/plone, which is FORBIDDEN
www/zope-i18nlayer||2011-09-30|Depends on www/plone, which is FORBIDDEN
www/zope-plonelanguagetool||2011-09-30|Depends on www/plone, which is FORBIDDEN
www/zope-simpleblog||2011-09-30|Depends on www/plone, which is FORBIDDEN
dns/nsd2||2011-09-30|EOL since 2007, unsupported. Use dns/nsd instead
audio/orpheus|audio/cmus|2011-10-01|Has expired: Contains problem with autotools, security CVE-2005-3863. Use audio/cmus instead
sysutils/syslog-ng3-devel|sysutils/syslog-ng-devel|2011-10-04|Port renamed
sysutils/cfvers||2011-10-04|Has expired: Dead upstream, author disowns it, use git/hg instead
devel/p5-Scalar-Util-Clone||2011-10-05|Disappear from CPAN
print/lyx14||2011-10-05|Has expired: last release in 2007, use print/lyx16 or print/lyx instead
multimedia/enjoympeg||2011-10-05|Has expired: Looks like abandonware, no more public distfiles
devel/py-zopeevent|devel/py-zope.event|2011-10-08|Removed: please use devel/py-zope.event instead
astro/gkrellsun||2011-10-08|Abandonware
astro/xrmap||2011-10-08|No more public distfiles
audio/midimountain||2011-10-08|Abandonware
audio/gkrellmss||2011-10-08|Abandonware
audio/gnapster||2011-10-08|Abandonware
databases/xbase||2011-10-08|No more public distfiles
databases/xbsql||2011-10-08|No more public distfiles
games/gtkabale||2011-10-08|No more public distfiles
games/battleball||2011-10-08|No more public distfiles, does not compile on ia64 or sparc64
games/race||2011-10-08|No more public distfiles
games/stvef-paks||2011-10-08|No more public distfiles
games/stvef-server||2011-10-08|No more public distfiles
games/tome||2011-10-08|No more public distfiles
games/qkmj||2011-10-08|No more public distfiles
games/oilwar||2011-10-08|No more public distfiles
games/xbaby||2011-10-08|No more public distfiles
games/xword||2011-10-08|Abandonware
games/kslide||2011-10-08|No more public distfiles
graphics/xmrm||2011-10-08|No more public distfiles, does not compile on amd64 or sparc64
graphics/giftrans||2011-10-08|Upstream disappeared and distfile is not available
graphics/wildmagic||2011-10-08|Broken for more than 6 months, does not fetch
irc/ircd-rusnet||2011-10-08|No more public distfiles
irc/tkirc||2011-10-08|No more public distfiles
korean/mizifont||2011-10-08|No more public distfiles
lang/freetxl||2011-10-08|No more public distfiles
math/nsc2ke||2011-10-08|No more public distfiles
misc/mgp-mode.el||2011-10-08|No more public distfiles
multimedia/p5-RIFF-Info||2011-10-08|No more public distfiles
net/p5-Net-OpenDHT||2011-10-08|No more public distfiles
net/mudix||2011-10-08|No more public distfiles
net-im/newsbot||2011-10-08|No more public distfiles
net-im/libicq2000||2011-10-08|Abandonware
net-im/gossip||2011-10-08|No longer maintained upstream, use net-im/empathy instead
net-im/ickle||2011-10-08|Abandonware
net-mgmt/nipper||2011-10-08|Broken for more than 6 months, does not fetch
net-p2p/mldonkey-serverspy||2011-10-08|No more public distfiles
news/p5-Gateway||2011-10-08|No more public distfiles
print/epsmerge||2011-10-08|No more public distfiles
science/at||2011-10-08|No more public distfiles
science/pyvox||2011-10-08|No more public distfiles
security/p5-Email-Obfuscate||2011-10-08|No more public distfiles
security/libparanoia||2011-10-08|No more public distfiles
security/execwrap||2011-10-08|No more public distfiles
audio/p5-MusicBrainz-TRM||2011-10-08|Disappeared from CPAN
mail/p5-Mail-QuoteWrap||2011-10-08|Disappeared from CPAN
www/p5-Catalyst-Plugin-FormCanary||2011-10-08|Disappeared from CPAN
security/snort_inline||2011-10-09|Does not build properly, no longer supported upstream
databases/ruby-pg|databases/rubygem-pg|2011-10-10|Replaced by rubygem-pg
databases/rubygem-postgres|databases/rubygem-pg|2011-10-10|Replaced by rubygem-pg
databases/ruby-postgres|databases/rubygem-pg|2011-10-10|Replaced by rubygem-pg
archivers/pecl-phar||2011-10-14|Vulnerable since 2011-01-13
comms/libsyncml||2011-10-14|Depends on devel/libsoup22, which is FORBIDDEN
databases/mysql323-server||2011-10-14|Vulnerable since 2006-10-29
databases/mysql323-client||2011-10-14|Vulnerable since 2006-10-29
databases/mysql323-scripts||2011-10-14|Vulnerable since 2006-10-29
databases/mysql40-server||2011-10-14|Vulnerable since 2006-10-29
databases/mysql40-client||2011-10-14|Vulnerable since 2006-10-29
databases/mysql40-scripts||2011-10-14|Vulnerable since 2006-10-29
databases/p5-DBD-mysql40||2011-10-14|Depends on databases/mysql40-server, which is FORBIDDEN
deskutils/buoh||2011-10-14|Depends on devel/libsoup22, which is FORBIDDEN
deskutils/libopensync-plugin-syncml||2011-10-14|Depends on comms/libsyncml, which is DEPRECATED
devel/libsoup22||2011-10-14|Vulnerable since 2011-07-28
dns/bind9-sdb-ldap||2011-10-14|Vulnerable since 2011-06-04
dns/bind9-sdb-postgresql||2011-10-14|Vulnerable since 2011-06-04
ftp/wgetpro||2011-10-14|Vulnerable since 2004-12-14
games/quake2forge||2011-10-14|Vulnerable since 2005-01-21
japanese/mutt||2011-10-14|Vulnerable since 2007-07-29
japanese/asterisk14-sounds||2011-10-14|Depends on net/asterisk14, which is FORBIDDEN
net/isc-dhcp3-devel||2011-10-14|Vulnerable since 2011-04-10
net/isc-dhcp31-client||2011-10-14|Vulnerable since 2011-04-10
net/isc-dhcp31-server||2011-10-14|Vulnerable since 2011-04-10
net/isc-dhcp31-relay||2011-10-14|Vulnerable since 2011-04-10
net/asterisk-app-ldap||2011-10-14|Depends on net/asterisk14, which is FORBIDDEN
net/asterisk-app-notify||2011-10-14|Depends on net/asterisk14, which is FORBIDDEN
net/astfax||2011-10-14|Depends on net/asterisk14, which is FORBIDDEN
net-mgmt/nagios2||2011-10-14|Vulnerable since 2009-06-30
www/gforge||2011-10-14|Vulnerable since 2005-08-09
www/linux-flashplugin7||2011-10-14|Vulnerable since at least 2008-05-30
www/plone3||2011-10-14|Vulnerable and unsupported upstream
www/serendipity-devel||2011-10-14|Vulnerable since 2008-04-25
www/ziproxy||2011-10-14|Vulnerable since 2010-06-15
www/asterisk-gui||2011-10-14|Depends on net/asterisk14, which is FORBIDDEN
databases/dbmetrix||2011-10-14|Depends on databases/mysql323-client, which is FORBIDDEN
databases/xmysqladmin||2011-10-14|Depends on databases/mysql323-client, which is FORBIDDEN
devel/subversion-freebsd||2011-10-16|Merged with devel/subversion
accessibility/ktts|accessibility/jovie|2011-10-16|Renamed upstream
misc/konq-plugins-kde4||2011-10-16|Merged with x11/kde4-baseapps
misc/nepomukcontroller||2011-10-16|Merged with x11/kde4-runtime
x11/kdebase4|x11/kde4-baseapps|2011-10-16|Renamed upstream
x11/kdebase4-runtime|x11/kde4-runtime|2011-10-16|Renamed upstream
x11/kdebase4-workspace|x11/kde4-workspace|2011-10-16|Renamed upstream
deskutils/lightning|www/seamonkey|2011-10-19|Superseded by LIGHTNING option in SeaMonkey
deskutils/lightning-thunderbird|mail/thunderbird|2011-10-19|Superseded by LIGHTNING option in Thunderbird
mail/enigmail-seamonkey2|mail/enigmail-seamonkey|2011-10-19|Depends on outdated and vulnerable SeaMonkey 2.0
www/seamonkey2-i18n|www/seamonkey-i18n|2011-10-19|Depends on outdated and vulnerable SeaMonkey 2.0
www/seamonkey2|www/seamonkey|2011-10-19|Upstream support dropped and multiple vulnerabilities
security/py-arm||2011-10-20|Renamed to security/arm
devel/boost-pyste||2011-10-22|Has expired: Still requires GCC 3.4 (strictly) and gccxml which is deprecated (and has been broken for a while)
devel/gccxml||2011-10-22|Has expired: Unmaintained upstream, still requires GCC 3.4 (strictly), just used by boost-pyste which is of archaeological interest only itself
java/java-tutorial||2011-10-23|Has expired: disappeared from vendor a long time ago
lang/smarteiffel||2011-10-23|Has expired: Dead upstream, broken on amd64 with gcc>4
sysutils/syslog-ng1||2011-10-24|Has expired: Suggested by syslog-ng upline, no longer supported
www/tomcat41||2011-10-24|No more upstream support
graphics/gnash-devel||2011-10-24|Outdated, use graphics/gnash instead
net-p2p/transmisson-remote-gui|net-p2p/transmission-remote-gui|2011-10-25|Renamed to net-p2p/transmission-remote-gui
x11-wm/fvwm2-devel||2011-10-25|Has expired: No longer supported by fvwm.org
devel/py-myghtyutils||2011-10-27|Has expired: Merged into Beaker; use www/py-beaker instead
www/myghty||2011-10-27|Has expired: Upstream suggests textproc/py-mako instead
astro/weatherget||2011-10-27|Has expired: Broken b/c of weather.com new licensing rules not agreed by author
devel/py-reverse||2011-10-27|Has expired: now part of pylint
devel/py-vmaps||2011-10-27|Has expired: author recommends using math/py-numpy instead
devel/rubygem-rack-protection||2011-10-28|Removed
graphics/tumbler|deskutils/xfce4-tumbler|2011-10-29|Duplicate ports merged
graphics/poppler-gtk|graphics/poppler-glib|2011-10-31|Move to match library name
audio/mp3butler||2011-10-31|Depends on audio/p5-MusicBrainz-Client which is DEPRECATED
audio/p5-MusicBrainz-Client||2011-10-31|Disappeared from CPAN
editors/doxymacs||2011-10-31|Depends on www/w3-4, which is DEPRECATED
graphics/libart||2011-10-31|Does not fetch, no more public distfiles
java/jboss4||2011-10-31|Does not build with new ant
korean/hanterm||2011-10-31|Depends on korean/johabfonts, which is DEPRECATED, fails to build with new utmpx
korean/johabfonts||2011-10-31|No more public distfiles, installs into /
korean/hlatex-psfonts-uhc-extra||2011-10-31|Depends on korean/hlatex, which is DEPRECATED
korean/texinfo||2011-10-31|Depends on korean/hlatex, which is DEPRECATED
korean/hlatex||2011-10-31|No more public distfiles
mail/jboss-mailservices||2011-10-31|Depends on java/jboss4, which is DEPRECATED
misc/p5-Geography-NationalGrid-TW||2011-10-31|Depends on misc/p5-Geography-NationalGrid, which is DEPRECATED
misc/p5-Geography-NationalGrid||2011-10-31|Disappeared from CPAN
net/py-timeoutsocket||2011-10-31|Upstream disappeared and distfile is no longer available
textproc/p5-XML-LibRSVG||2011-10-31|Unmaintained and not used anymore
textproc/javacc||2011-10-31|No more public distfiles
www/w3-4||2011-10-31|Upstream disappeared and distfile is no longer available
www/commonist||2011-10-31|Depends on textproc/javacc, which is DEPRECATED
www/newsfeed||2011-10-31|Depends on net/py-timeoutsocket, which is DEPRECATED
x11/fbsd-icons||2011-10-31|Upstream disappeared and distfile is no longer available
x11-themes/geramik||2011-10-31|Depends on x11-toolkits/qtpixmap, which is DEPRECATED
x11-toolkits/qtpixmap||2011-10-31|No more public distfiles
x11-wm/fvwm95-i18n||2011-10-31|Depends on x11/fbsd-icons, which is DEPRECATED
x11-wm/fvwm95||2011-10-31|Depends on x11/fbsd-icons, which is DEPRECATED
x11-toolkits/gambas2-gb-qt||2011-10-31|Has been broken for over a year
archivers/gambas2-gb-compress-bzlib2||2011-10-31|Has been broken for over a year
archivers/gambas2-gb-compress-zlib||2011-10-31|Has been broken for over a year
audio/gambas2-gb-sdl-sound||2011-10-31|Has been broken for over a year
databases/gambas2-gb-db-firebird||2011-10-31|Has been broken for over a year
databases/gambas2-gb-db-mysql||2011-10-31|Has been broken for over a year
databases/gambas2-gb-db-odbc||2011-10-31|Has been broken for over a year
databases/gambas2-gb-db-postgresql||2011-10-31|Has been broken for over a year
databases/gambas2-gb-db-sqlite2||2011-10-31|Has been broken for over a year
databases/gambas2-gb-db-sqlite3||2011-10-31|Has been broken for over a year
devel/gambas2-gb-corba||2011-10-31|Has been broken for over a year
devel/gambas2-gb-pcre||2011-10-31|Has been broken for over a year
devel/gambas2-gb-sdl||2011-10-31|Has been broken for over a year
editors/gambas2-ide||2011-10-31|Has been broken for over a year
ftp/gambas2-gb-net-curl||2011-10-31|Has been broken for over a year
graphics/gambas2-gb-gtk-svg||2011-10-31|Has been broken for over a year
graphics/gambas2-gb-image||2011-10-31|Has been broken for over a year
graphics/gambas2-gb-opengl||2011-10-31|Has been broken for over a year
graphics/gambas2-gb-pdf||2011-10-31|Has been broken for over a year
lang/gambas2||2011-10-31|Has been broken for over a year
lang/gambas2-base||2011-10-31|Has been broken for over a year
lang/gambas2-components||2011-10-31|Has been broken for over a year
lang/gambas2-examples||2011-10-31|Has been broken for over a year
mail/gambas2-gb-net-smtp||2011-10-31|Has been broken for over a year
net/gambas2-gb-net||2011-10-31|Has been broken for over a year
security/gambas2-gb-crypt||2011-10-31|Has been broken for over a year
textproc/gambas2-gb-xml||2011-10-31|Has been broken for over a year
x11-toolkits/gambas2-gb-gtk||2011-10-31|Has been broken for over a year
x11/gambas2-gb-desktop||2011-10-31|Has been broken for over a year
x11/gambas2-gb-qt-kde||2011-10-31|Has been broken for over a year
games/phpua-ut2003||2011-11-01|Has expired: depends on phpua-engine
games/phpua-engine||2011-11-01|Has expired: apache13 is deprecated, migrate to 2.2.x+ now
games/phpua-hl||2011-11-01|Has expired: depends on phpua-engine
games/phpua-ut||2011-11-01|Has expired: depends on phpua-engine
games/phpua-cod||2011-11-01|Has expired: depends on phpua-engine
games/uox3||2011-11-01|Has expired: no more public distfiles
games/phpua-q3||2011-11-01|Has expired: depends on phpua-engine
games/phpua-bf||2011-11-01|Has expired: depends on phpua-engine
graphics/kallery||2011-11-01|Has expired: does not build; last release 20010511
graphics/gtksee||2011-11-01|Has expired: depends on unfetchable port archivers/bzip; last release 2004
mail/mailscanner-mrtg||2011-11-01|Has expired: apache13 is deprecated, migrate to 2.2.x+ now
net-p2p/qbittorrent-28-nox11|net-p2p/qbittorrent-nox11|2011-11-01|Has expired: please migrate to net-p2p/qbittorrent
net-p2p/qbittorrent-28|net-p2p/qbittorrent|2011-11-01|Has expired: please migrate to net-p2p/qbittorrent
net-p2p/dctc-gui-qt||2011-11-01|Removed
net-p2p/dctc-gui||2011-11-01|Removed
net-p2p/dctc||2011-11-01|Has expired: No more public distfiles
www/slash||2011-11-01|Has expired: apache13 is deprecated, migrate to 2.2.x+ now
databases/maatkit||2011-11-01|Has expired: upstream support dropped; please consider using databases/percona-toolkit
databases/mysqlman||2011-11-01|Has expired: apache13 is deprecated, migrate to 2.2.x+ now
databases/mysql-editor||2011-11-01|Has expired: apache13 is deprecated, migrate to 2.2.x+ now
databases/gnats||2011-11-01|Has expired: security issues
graphics/poppler-qt||2011-11-01|Poppler upstream removed support for Qt 3.x
audio/linux-shoutcast||2011-11-01|Unfetchable; website rearranged
chinese/scim-chewing||2011-11-01|Does not configure
converters/py-cjkcodecs||2011-11-01|Integrated into every Python version in the tree
databases/kpogre||2011-11-01|Does not compile
deskutils/mhc||2011-11-01|Does not fetch
deskutils/org-mode.el6||2011-11-01|Does not fetch
deskutils/gemcal||2011-11-01|Does not fetch
devel/erlang-thrift||2011-11-01|Does not build
dns/domtools||2011-11-01|Does not fetch
editors/richtext||2011-11-01|Does not compile
games/vultures-claw||2011-11-01|Does not fetch
games/bomb||2011-11-01|Does not fetch
games/lgeneral-data||2011-11-01|Bad pkg-plist
games/xphotohunter||2011-11-01|Does not fetch
graphics/gimpshop||2011-11-01|Fails to patch
graphics/lightspark-devel||2011-11-01|Does not compile
graphics/xmms-plazma||2011-11-01|Does not fetch
graphics/py-cgkit||2011-11-01|Does not fetch, does not compile on ia64, powerpc, or sparc64
japanese/rxvt||2011-11-01|Does not fetch, fails to build with new utmpx
japanese/epic4||2011-11-01|Some distfiles do not fetch
java/jde||2011-11-01|Does not fetch
java/kaffe||2011-11-01|Does not fetch
korean/gdick||2011-11-01|HTMLs from the Yahoo! Korea Dictionary cannot be parsed, other runtime problems
korean/hanterm-xf86||2011-11-01|Does not compile
korean/stardict2-dict-kr||2011-11-01|Does not fetch
lang/p5-JavaScript||2011-11-01|Does not fetch
lang/TenDRA||2011-11-01|Website disappeared; last release in 2006, does not compile on recent FreeBSD-9
mail/freepops||2011-11-01|Does not build
mail/itraxp||2011-11-01|Does not build
misc/tellico||2011-11-01|Leaves files behind on deinstallation
net/gsambad||2011-11-01|Does not fetch
net/nocatauth-gateway||2011-11-01|Uses a UID registered to another port
net/nocatauth-server||2011-11-01|Uses a UID registered to another port
net/kmuddy||2011-11-01|Does not fetch
net/netboot||2011-11-01|Does not build
net-mgmt/jffnms||2011-11-01|Does not fetch
net-p2p/frostwire||2011-11-01|Does not fetch
net-p2p/azureus||2011-11-01|Does not fetch
news/cleanscore||2011-11-01|Does not fetch
news/nntpswitch||2011-11-01|Does not fetch
news/p5-NewsLib||2011-11-01|Does not fetch
russian/cyrproxy||2011-11-01|Does not fetch
science/gerris||2011-11-01|Does not fetch
security/opensaml||2011-11-01|Does not fetch
sysutils/wmbattery||2011-11-01|Does not fetch
textproc/tei-guidelines-p4||2011-11-01|Does not fetch
textproc/tei-p4||2011-11-01|Does not fetch
textproc/py-hyperestraier||2011-11-01|Does not fetch
textproc/tdtd.el||2011-11-01|Does not fetch
textproc/tei-lite||2011-11-01|Does not fetch
www/phpwiki13||2011-11-01|Does not fetch
www/p5-Apache-Scoreboard||2011-11-01|Depends on mod_perl
www/p5-B-LexInfo||2011-11-01|Broken due the new mod_perl2 API
www/phpwiki||2011-11-01|Does not fetch
www/smb2www||2011-11-01|Apache13 is deprecated, migrate to 2.2.x+ now
www/spip||2011-11-01|Checksum is changing daily
www/monkey||2011-11-01|Does not fetch
x11-toolkits/jdic||2011-11-01|Does not fetch
x11-toolkits/py-kde||2011-11-01|Does not compile
sysutils/rsyslog3||2011-11-02|Has expired: unsupported upstream
sysutils/rsyslog3-dbi||2011-11-02|Has expired: unsupported upstream
sysutils/rsyslog3-gssapi||2011-11-02|Has expired: unsupported upstream
sysutils/rsyslog3-mysql||2011-11-02|Has expired: unsupported upstream
sysutils/rsyslog3-pgsql||2011-11-02|Has expired: unsupported upstream
sysutils/rsyslog3-relp||2011-11-02|Has expired: unsupported upstream
sysutils/rsyslog4-devel||2011-11-02|Is now stable; see sysutils/rsyslog4
sysutils/rsyslog4-devel-dbi||2011-11-02|Is now stable; see sysutils/rsyslog4
sysutils/rsyslog4-devel-gnutls||2011-11-02|Is now stable; see sysutils/rsyslog4
sysutils/rsyslog4-devel-gssapi||2011-11-02|Is now stable; see sysutils/rsyslog4
sysutils/rsyslog4-devel-mysql||2011-11-02|Is now stable; see sysutils/rsyslog4
sysutils/rsyslog4-devel-pgsql||2011-11-02|Is now stable; see sysutils/rsyslog4
sysutils/rsyslog4-devel-relp||2011-11-02|Is now stable; see sysutils/rsyslog4
sysutils/rsyslog4-devel-rfc3195||2011-11-02|Is now stable; see sysutils/rsyslog4
sysutils/rsyslog4-devel-snmp||2011-11-02|Is now stable; see sysutils/rsyslog4
www/php-yaf|www/pecl-yaf|2011-11-02|The project has been moved to PECL
sysutils/xfce4-places-plugin||2011-11-06|Removed, integrated in Xfce 4.8 panel
lang/p5-F77|lang/p5-ExtUtils-F77|2011-11-07|Move to a better place via repocopy
devel/soup||2011-11-09|Has expired: Unmaintained, use devel/libsoup
graphics/clutter-qt||2011-11-09|Has expired: upstream distfile disappeared, doesn't build, and doesn't seem to be developed anymore
graphics/p5-clutter||2011-11-09|Has expired: upstream distfile disappeared, and doesn't seem to be developed anymore
graphics/librsvg||2011-11-09|Has expired: unmaintained and not used anymore
www/p5-Catalyst-Log-Log4perl||2011-11-09|Has expired: Use Log::Log4perl::Catalyst (devel/p5-Log-Log4perl) instead
lang/open-cobol-devel||2011-11-09|Has expired: No activity since 2007
databases/py-axiom||2011-11-11|Has expired: Distfile is missing, runtime broken; use databases/py-sqlobject instead
sysutils/duplicity-devel||2011-11-12|Much older than current version, use sysutils/duplicity instead
security/libfwbuilder-devel||2011-11-14|libfwbuilder-devel merged into fwbuilder-devel
russian/apache13||2011-11-15|Has expired: no active development and known security vulnerabilities
devel/tortoisehg1|devel/tortoisehg2|2011-11-22|Has expired: does not work with current devel/mercurial, use tortoisehg2
mail/zms||2011-11-22|Has expired: No longer under development, since 2009
mail/dkim-milter|mail/opendkim|2011-11-23|Has expired: switch to mail/opendkim instead
lang/gcc45|lang/gcc46|2011-11-23|Superseded by gcc46
japanese/pycodec-zope||2011-11-27|Has expired: Handled in Python-2.4 upwards
japanese/zope-ejsplitter||2011-11-27|Has expired: Plone4 has newer and better splitter mechanism than ejSplitter
japanese/zope-jamailhost||2011-11-27|Has expired: Zope has changed MailHost specification and it is not sure jaMailHost works well
japanese/pycodec||2011-11-27|Has expired: Handled in Python-2.4 upwards
net-im/py-turpial||2011-11-28|Renamed to net-im/turpial
databases/p5-Mysql-Diff|databases/p5-MySQL-Diff|2011-11-28|Move to a better place via repocopy
mail/gtray||2011-12-02|Has expired: Upcoming ruby-gnome update removes dependencies
devel/ruby-gconf2||2011-12-05|Removed
devel/ruby-gnomevfs||2011-12-05|Removed
devel/ruby-libglade2||2011-12-05|Removed
graphics/ruby-gnomecanvas2||2011-12-05|Removed
graphics/ruby-libart2||2011-12-05|Removed
print/ruby-gnomeprint||2011-12-05|Removed
www/ruby-gtkhtml2||2011-12-05|Removed
www/ruby-gtkmozembed||2011-12-05|Removed
x11-toolkits/ruby-gnomeprintui||2011-12-05|Removed
x11-toolkits/ruby-gtkglext||2011-12-05|Removed
x11-toolkits/ruby-panelapplet||2011-12-05|Removed
x11/ruby-gnome2-all||2011-12-05|Removed
devel/zeroinstall-injector||2011-12-06|Duplicates PBI functionality, and 0install feeds are available as ports
audio/py-taglib||2011-12-07|Only compatible with Python 2.4. Use audio/py-tagpy instead
x11-wm/wmthemeinstall||2011-12-10|Abandonware: no more upstream, no more public distfiles
databases/py-pysqlite20||2011-12-11|Unmaintained upstream, only useful for python2.4 or less, no consumers in the ports tree
databases/py-pysqlite21||2011-12-11|Unmaintained upstream, only useful for python2.4 or less, no consumers in the ports tree
databases/py-pysqlite22||2011-12-11|Unmaintained upstream, only useful for python2.4 or less, no consumers in the ports tree
databases/py-pysqlite23||2011-12-11|Unmaintained upstream, only useful for python2.4 or less, no consumers in the ports tree
databases/py-PySQLite10||2011-12-11|Unmaintained upstream, only useful for python2.4 or less, no consumers in the ports tree
databases/py-PySQLite11||2011-12-11|Unmaintained upstream, only useful for python2.4 or less, no consumers in the ports tree
converters/py-iconvcodec||2011-12-12|Included into python itself since version 2.4
devel/py-waf||2011-12-12|Port is outdated. Author discourages system-wide installation. Download it manually
security/p5-Digest-SHA256||2011-12-20|Removed: use the built-in Digest::SHA instead
net/mpd4||2011-12-21|Removed
japanese/ruby-refe||2011-12-21|Has been broken for 11 months
www/zope-epoz||2011-12-25|Unmaintained upstream, isn't used by anything
math/mingw32-libgmp4|math/mingw32-libgmp|2011-12-25|Version is no longer 4
devel/py-kss.core|devel/py-kss-core|2011-12-26|Remove bad-named port (with .core in it's name)
textproc/skribe||2011-12-28|Has expired
emulators/wahcade||2011-12-28|Has expired
databases/keximdb||2011-12-28|Has expired: Depends on editors/koffice-kde3, which is scheduled for deletion
editors/koffice-kde3||2011-12-28|Has expired
net/keepalived||2011-12-28|Has expired: Depends on net/ipvs, which is scheduled for deletion
net/ipvs||2011-12-28|Has expired: Designed for FreeBSD 5.x, which is no longer supported
databases/fireprofile||2011-12-28|Has expired
audio/gnowavcut||2011-12-28|Has expired: Abandonware
mail/demime||2011-12-28|Has expired: No upstream development since 2007
x11/wmmsg||2011-12-28|Has expired: No more public distfiles
x11-toolkits/libgtkeditor||2011-12-28|Has expired: No longer supported upstream, not depended upon anymore
misc/demoniac||2011-12-28|Has expired: No more upstream, no more public distfiles
databases/clip||2011-12-28|Has expired: No upstream development for a long time
x11-toolkits/gtkextra||2011-12-28|Has expired: no longer supported upstream, no more depend on
www/xpi-mousegestures||2011-12-28|Has expired: Development has been ceased and not compatible with Firefox > 2
www/xpi-mozex||2011-12-28|Has expired: Development has been ceased and not compatible with Firefox > 3
sysutils/duplicity05||2012-01-01|Has expired: This version is out of date, and the 0.6.x branch is considered stable
japanese/py-kanjilib||2012-01-01|Has expired: This port is not needed with any supported python version
www/squid30||2012-01-01|Has expired: This version of Squid is no longer actively maintained upstream
devel/slglade||2012-01-01|Has expired: Depends on non-functional x11-toolkits/slgtk
x11-toolkits/slgtk||2012-01-01|Has expired: Does not work with newer GTK+, upstream development has ceased
x11-toolkits/slgtkdatabox||2012-01-01|Has expired: Depends on non-functional x11-toolkits/slgtk
www/apache13|www/apache22|2012-01-01|apache13 is deprecated, use www/apache22
www/apache-contrib||2012-01-01|Has expired: Depends on expired www/apache13
www/apache13+ipv6|www/apache22|2012-01-01|apache13 is deprecated, use www/apache22
www/apache13-modperl|www/apache22|2012-01-01|apache13 is deprecated, use www/apache22
www/apache13-modssl|www/apache22|2012-01-01|apache13 is deprecated, use www/apache22
www/apache13-modssl+ipv6|www/apache22|2012-01-01|apache13 is deprecated, use www/apache22
www/apache13-ssl|www/apache22|2012-01-01|apache13 is deprecated, use www/apache22
databases/p5-ApacheDBILogConfig||2012-01-01|Has expired: Depends on expired www/apache13
databases/p5-ApacheDBILogger||2012-01-01|Has expired: Depends on expired www/apache13
textproc/p5-Apache-XBEL||2012-01-01|Has expired: Depends on expired www/apache13
www/auth_ldap||2012-01-01|Has expired: Depends on expired www/apache13
www/kdedict||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_access_identd||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_access_referer||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_accounting||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_auth_cookie_mysql|www/mod_auth_cookie_mysql2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_auth_external|www/mod_auth_external2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_auth_imap|www/mod_auth_imap2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_auth_kerb|www/mod_auth_kerb2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_auth_mysql|www/mod_auth_mysql2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_auth_pam|www/mod_auth_pam2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_auth_pgsql|www/mod_auth_pgsql2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_auth_useragent||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_backhand||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_bandwidth||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_bf||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_blosxom||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_blowchunks||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_bunzip2||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_cgi_debug||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_color||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_curb||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_cvs|www/mod_cvs2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_dav||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_dtcl||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_extract_forwarded_ap13|www/mod_extract_forwarded|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_filter||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_geoip|www/mod_geoip2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_gzip|www/mod_gzip2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_index_rss||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_layout|www/mod_layout22|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_limitipconn|www/mod_limitipconn2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_log_spread||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_log_sql|www/mod_log_sql2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_macro|www/mod_macro22|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_mp3||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_mylo||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_ntlm|www/mod_ntlm2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_perl|www/mod_perl2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_proxy_add_forward||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_put||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_python|www/mod_python3|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_realip||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_rpaf|www/mod_rpaf2|2012-01-01|Has expired: Depends on expired www/apache13
www/mod_sed||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_sequester||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_shapvh||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_sqlinclude||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_ticket||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_trigger||2012-01-01|Has expired: Depends on expired www/apache13
www/mod_tsunami||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-AntiSpam||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-AuthenCache||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-AuthenURL||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-AutoIndex||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-AxKit-Plugin-AddXSLParams-Request||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-Clean|www/p5-Apache-Clean2|2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-Compress||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-CompressClientFixup||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-DBI-mp1|www/p5-Apache-DBI|2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-DebugInfo||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-DumpHeaders||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-Filter||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-Icon||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-Language||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-NNTPGateway||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-PageKit||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-Peek||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-Radius||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-Reload||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-SSI||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-SubProcess||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-Template||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-AxKit||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-AxKit-XSP-Cookie||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-AxKit-XSP-ESQL||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-AxKit-XSP-Exception||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-AxKit-XSP-IfParam||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-AxKit-XSP-Param||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-AxKit-XSP-PerForm||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-AxKit-XSP-Sendmail||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-AxKit-XSP-Util||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-AxKit-XSP-WebUtils||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Bundle-Slash||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Text-Markdown-ApacheHandler||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-libapreq|www/p5-libapreq2|2012-01-01|Has expired: Depends on expired www/apache13
www/p5-libapreq-static||2012-01-01|Has expired: Depends on expired www/apache13
www/web-traceroute||2012-01-01|Has expired: Depends on expired www/apache13
www/wget4web||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-Test||2012-01-01|Has expired: Depends on expired www/apache13
net-im/jwchat||2012-01-01|Has expired: Depends on expired www/apache13
www/p5-Apache-DBI-mp2|www/p5-Apache-DBI|2012-01-01|This sub-port is no longer needed
editors/ged||2012-01-04|Removed: Use ed from base instead
ftp/proftpd-devel||2012-01-04|Removed
devel/ruby-thrift|devel/rubygem-thrift|2012-01-04|Renamed: now a rubygems module
x11-wm/cl-stumpwm||2012-01-04|Abandoned copy of x11-wm/stumpwm
www/knowledgekit||2012-01-06|Development seems stalled. Last release is from 1999. Doesn't works with Zope 2.13
www/znavigator||2012-01-06|Development seems stalled. Last release is from 2000
www/zope-FileSystemSite||2012-01-06|Doesn't work with modern Zope versions
www/zope-annotations||2012-01-06|Doesn't work with modern Zope versions
www/zope-btreefolder2||2012-01-06|Doesn't work with modern Zope versions
www/zope-cmfactionicons||2012-01-06|Doesn't work with modern Zope versions
www/zope-cmfformcontroller||2012-01-06|Doesn't work with modern Zope versions
www/zope-cmfforum||2012-01-06|Development seems stalled. Last release is from 2002
www/zope-cmfphoto||2012-01-06|Development seems stalled. Last release is from 2004
www/zope-cmfphotoalbum||2012-01-06|Development seems stalled. Last release is from 2004
www/zope-cmfquickinstaller||2012-01-06|Doesn't work with modern Zope versions
www/zope-coreblog||2012-01-06|Development ceased
www/zope-exuserfolder||2012-01-06|Doesn't work with modern Zope versions
www/zope-formulator||2012-01-06|Doesn't work with modern Zope versions
www/zope-generator||2012-01-06|Development seems stalled. Last release from 2005
www/zope-groupuserfolder||2012-01-06|Doesn't work with modern Zope versions
www/zope-kupu||2012-01-06|Doesn't work with modern Zope versions
www/zope-mimetypesregistry||2012-01-06|Doesn't work with modern Zope versions
www/zope-mindmapbbs||2012-01-06|Development seems stalled. Last release is from 2004
www/zope-mysqluserfolder||2012-01-06|Development seems stalled. Last release is from 2005
www/zope-parsedxml||2012-01-06|Doesn't work with modern Zope versions
www/zope-placelesstranslationservice||2012-01-06|Doesn't work with modern Zope versions
www/zope-portaltransforms||2012-01-06|Doesn't work with modern Zope versions
www/zope-proxyindex||2012-01-06|Doesn't work with modern Zope versions
www/zope-silva||2012-01-06|Doesn't work with modern Zope versions
www/zope-silvaviews||2012-01-06|Doesn't work with modern Zope versions
www/zope-ttwtype||2012-01-06|Development seems stalled. Last release is from 2003
www/zope-validation||2012-01-06|Doesn't work with modern Zope versions
www/zope-xmlmethods||2012-01-06|Development seems stalled. Last release is from 2003
www/zope-xmlwidgets||2012-01-06|Doesn't work with modern Zope versions
www/zope-zmysqlda||2012-01-06|Doesn't work with modern Zope versions
www/zope-zsyncer||2012-01-06|Doesn't work with modern Zope versions
www/zope-zwiki||2012-01-06|Doesn't work with modern Zope versions
www/zope210||2012-01-06|End of life is reached
www/zope28||2012-01-06|End of life is reached
www/zope29||2012-01-06|End of life is reached
www/zope3||2012-01-06|End of life is reached
x11-drivers/xf86-input-citron||2012-01-07|Removed
multimedia/avifile||2012-01-08|Has expired: Broken for an extended period, superseded by other multimedia players
devel/bonobo-conf||2012-01-08|Has expired: No longer supported upstream, not depended upon anymore
www/typo343||2012-01-08|Has expired: Support will end in the near future, see http://typo3.org/download/packages/ for details
devel/gnome-crash||2012-01-08|Has expired: No longer supported upstream, not depended upon anymore
x11-toolkits/gob||2012-01-08|Has expired: No longer supported upstream, not depended upon anymore
www/rubygem-htauth||2012-01-08|Has expired: broke for ~12 months
www/instiki||2012-01-08|Has expired: has been marked ignore since 2010/09/16
mail/msmtpqueue||2012-01-08|Has expired: These scripts now come with mail/msmtp
security/cryptplug||2012-01-08|Has expired: development has ceased
security/gpgme03||2012-01-08|Has expired: superseded by security/gpgme
databases/pear-Doctrine||2012-01-08|Has expired: Please upgrade to 1.2.x: http://svn.doctrine-project.org/tags/1.2.4/UPGRADE_TO_1_2
x11-themes/gtk-qn-x11-theme||2012-01-08|Has expired: No more public distfiles
x11-themes/gtk-zenith-theme||2012-01-08|Has expired: No more public distfiles
graphics/stl2pov|graphics/py-stl|2012-01-08|New port graphics/py-stl deprecates graphics/stl2pov
devel/py-py_static_check|devel/py_static_check|2012-01-12|Rename for consistency
databases/phpmyadmin211||2012-01-13|Has expired: No longer supported by the phpMyAdmin project
www/xpi-autobrowse||2012-01-14|Has expired: Development has been ceased and not compatible with Firefox > 7
www/xpi-joga||2012-01-14|Has expired: Development has been ceased and not compatible with Firefox > 7
www/xpi-num2web||2012-01-14|Has expired: Development has been ceased and not compatible with Firefox > 7
www/xpi-savegenpage||2012-01-14|Has expired: Development has been ceased and not compatible with Firefox > 7
www/xpi-videodownloader||2012-01-14|Has expired: Development has been ceased and not compatible with Firefox > 7
www/xpi-xpcom-component-viewer||2012-01-14|Has expired: Development has been ceased and not compatible with Firefox > 7
net-im/skype20||2012-01-14|Has expired: old version without many of the newer features; please try net-im/skype instead
sysutils/rsyslog4|sysutils/rsyslog5|2012-01-16|EOL Upstream
sysutils/rsyslog4-dbi|sysutils/rsyslog5-dbi|2012-01-16|EOL Upstream
sysutils/rsyslog4-gnutls|sysutils/rsyslog5-gnutls|2012-01-16|EOL Upstream
sysutils/rsyslog4-gssapi|sysutils/rsyslog5-gssapi|2012-01-16|EOL Upstream
sysutils/rsyslog4-mysql|sysutils/rsyslog5-mysql|2012-01-16|EOL Upstream
sysutils/rsyslog4-pgsql|sysutils/rsyslog5-pgsql|2012-01-16|EOL Upstream
sysutils/rsyslog4-relp|sysutils/rsyslog5-relp|2012-01-16|EOL Upstream
sysutils/rsyslog4-rfc3195|sysutils/rsyslog5-rfc3195|2012-01-16|EOL Upstream
sysutils/rsyslog4-snmp|sysutils/rsyslog5-snmp|2012-01-16|EOL Upstream
net-im/gicq||2012-01-18|Runtime is broken. Unmaintained upstream
net-im/libicq||2012-01-18|Runtime is broken. Unmaintained upstream
devel/luajit|lang/luajit|2012-01-19|Compilers typically live in the lang category
devel/p5-DBIx-Class-Schema-PopulateMore||2012-01-20|Removed
textproc/qgoogletranslator||2012-01-20|Has expired: Runtime is broken because Google close free usage of API. Project closed
www/py-rssdler||2012-01-25|Runtime is mostly broken, abandoned upstream. Use www/py-flexget instead
ftp/proftpd-mysql|databases/proftpd-mod_sql_mysql|2012-01-26|Module now in slave port
games/flightgear-aircrafts|games/flightgear-aircraft|2012-01-31|Renamed for better naming
audio/wmmixer||2012-02-01|EOL Upstream; please use audio/wmsmixer instead
x11-wm/xfce|x11-wm/xfce4|2012-02-02|Has expired: abandoned upstream, use x11-wm/xfce4 instead
sysutils/py-dvdvideo|sysutils/dvdvideo|2012-02-03|Renamed for better naming
science/R-cran-survival||2012-02-03|This CRAN port has been included in math/R
editors/openoffice.org-3-devel|editors/openoffice-3-devel|2012-02-06|Project was taken over and renamed
www/zope-cmf||2012-02-07|Has expired: Doesn't work with modern Zope versions
chinese/fcitx-keyboard|textproc/fcitx-keyboard|2012-02-07|Moved to more appropriate category
textproc/hs-attoparsec-text||2012-02-13|Removed: The package is deprecated
devel/hs-hmake||2012-02-13|Removed: Broken, unmaintained upstream
net/yate-devel||2012-02-17|Removed, please use net/yate
databases/p5-postgresql-plperl|databases/postgresql84-plperl|2012-02-19|Split into versioned ports
devel/p5-Version-Requirements||2012-03-01|Removed: deprecated, use CPAN::Meta::Requirements (devel/p5-CPAN-Meta >= 2.113640) instead
net/ipw-firmware||2012-03-02|Removed: is already included in base system
net/ipw-firmware-kmod||2012-03-02|Removed: is already included in base system
net/iwi-firmware||2012-03-02|Removed: is already included in base system
net/iwi-firmware-kmod||2012-03-02|Removed: is already included in base system
devel/dklibs||2012-03-03|Has expired: not needed for graphics/bmeps anymore, no other users
security/blocksshd||2012-03-03|Removed: security/sshguard is more active and a better tool
net/p5-Net-Subnets||2012-03-03|Has expired: Disappeared from CPAN
www/mediawiki116||2012-03-04|Has expired: Unsupported upstream
databases/postgresql-docs|databases/postgresql84-docs|2012-03-04|Split into versioned ports
databases/postgresql-pltcl|databases/postgresql84-pltcl|2012-03-05|Split into versioned ports
x11-wm/scrotwm|x11-wm/spectrwm|2012-03-05|Project renamed
databases/p5-Mysql||2012-03-07|No release in 11 years, doesn't work with mysql 4.0+, unmaintained
audio/easytag-devel||2012-03-12|Outdated development version
korean/unfonts-ttf||2012-03-16|Was divided into korean/unfonts-core and korean/unfonts-extra
mail/py-email||2012-03-17|Has expired: Included into all supported python versions
databases/py25-bsddb||2012-03-18|Has expired: This was only needed for mail/py-spambayes. Now it's not
www/p5-Apache-AddHostPath||2012-03-20|Has expired: Only works with mod_perl 1 which is removed
www/p5-Apache-Archive||2012-03-20|Has expired: Requires mod_perl 1 which is gone
editors/openoffice.org-3-RC||2012-03-20|Removed
graphics/vrml2pov||2012-03-21|Has expired: unfetchable (no public distfiles)
net-p2p/fidelio||2012-03-21|Has expired: Hotline services does not exists anymore
japanese/postgresql-tcltk||2012-03-21|Has expired: Broken for months with no one caring, superseded by http://pgtclng.sourceforge.net/
databases/postgresql-tcltk|databases/pgtcl|2012-03-21|Has expired: Broken for months with no one caring, superseded by http://pgtclng.sourceforge.net/
devel/p5-Make-Cache||2012-03-25|Has expired: Removed from CPAN, does not work, unmaintained
databases/gbib||2012-03-26|Has expired
sysutils/syscp|sysutils/froxlor|2012-03-26|Has expired: Long ditched, possibly dangerous and replaced with sysutils/froxlor
audio/py-libtunepimp||2012-04-07|Has expired: MusicBrainz RDF webservice no longer functions
audio/py-musicbrainz||2012-04-07|Has expired: MusicBrainz RDF webservice no longer functions
audio/p5-MusicBrainz-Queries||2012-04-09|Has expired: MusicBrainz RDF webservice no longer functions
audio/ruby-musicbrainz||2012-04-09|Has expired: MusicBrainz RDF webservice no longer functions
converters/ruby-lv||2012-04-09|Has expired: upstream no longer has this
devel/p5-Getopt-Popt||2012-04-09|Has expired: gone from CPAN
net/p5-Net-Rendezvous||2012-04-09|Has expired: superseded by dns/p5-Net-Bonjour
audio/gstreamer-plugins-musicbrainz||2012-04-09|Has expired: MusicBrainz RDF webservice no longer functions
x11/wrapper||2012-04-10|Has expired: not needed anymore
www/resin2||2012-04-10|Has expired: unsupported upstream, consider www/resin3
ftp/ftp-proxy||2012-04-13|Has expired: is a part of the base system in all supported FreeBSD versions
databases/postgresql82-server||2012-04-15|Has expired: EOL and multiple vulnerabilities
databases/postgresql82-client||2012-04-15|Has expired: EOL and multiple vulnerabilities
databases/postgresql82-contrib||2012-04-15|Has expired: EOL and multiple vulnerabilities
www/pivot-weblog||2012-04-15|Has expired: unsupported upstream, consider www/pivotx
java/jbootstrap||2012-04-16|Has expired: bootstrap for an ancient version of Java
lang/python-doc-postscript-a4||2012-04-17|This port was broken for a long time, deprecated upstream
lang/python-doc-postscript-letter||2012-04-17|This port was broken for a long time, deprecated upstream
mail/dbmail20||2012-04-18|Has expired: No longer supported upstream. No ports depend on this
mail/dbmail21||2012-04-18|Has expired: No longer supported upstream. No ports depend on this
mail/dbmail23||2012-04-18|Has expired: No longer supported upstream. No ports depend on this
math/octave-forge-times||2012-04-18|Depreciated upstream
www/fpc-httpd13||2012-04-19|Obsolete freepascal unit. Use www/fpc-httpd22 instead of it
www/fpc-httpd20||2012-04-19|Obsolete freepascal unit. Use www/fpc-httpd22 instead of it
editors/lazarus-gtk2||2012-04-20|Never fully added. Use editors/lazarus instead
editors/lazarus-qt4||2012-04-20|Never fully added. Use editors/lazarus instead
net/socks5||2012-04-21|Removed
games/netpanzer-data||2012-04-25|No longer needed
www/typo344||2012-04-30|Has expired: Support will end in the near future, see http://typo3.org/download/packages/ for details
databases/py-MySQLdb-devel|databases/py-MySQLdb|2012-05-01|Port is outdated, use databases/py-MySQLdb instead
misc/fortune-mod-the-godfather||2012-05-07|Has expired: No longer supported
editors/openoffice.org-3|editors/openoffice-3|2012-05-09|Project renamed
devel/py-boto-devel|devel/py-boto|2012-05-09|Upstream does not provide development snapshots anymore, use devel/py-boto instead
graphics/R-cran-labeling||2012-05-09|Removed
multimedia/mythtv-themes||2012-05-10|Included in multimedia/mythtv since 0.25
multimedia/mytplugin-mythvideo||2012-05-10|Included in multimedia/mythtv since 0.25
archivers/php4-bz2||2012-05-11|Has expired: php4 is EOLed
archivers/php4-zlib||2012-05-11|Has expired: php4 is EOLed
converters/php4-iconv||2012-05-11|Has expired: php4 is EOLed
converters/php4-mbstring||2012-05-11|Has expired: php4 is EOLed
converters/php4-recode||2012-05-11|Has expired: php4 is EOLed
databases/php4-dba||2012-05-11|Has expired: php4 is EOLed
databases/php4-dbase||2012-05-11|Has expired: php4 is EOLed
databases/php4-dbx||2012-05-11|Has expired: php4 is EOLed
databases/php4-filepro||2012-05-11|Has expired: php4 is EOLed
databases/php4-interbase||2012-05-11|Has expired: php4 is EOLed
databases/php4-mssql||2012-05-11|Has expired: php4 is EOLed
databases/php4-mysql||2012-05-11|Has expired: php4 is EOLed
databases/php4-odbc||2012-05-11|Has expired: php4 is EOLed
databases/php4-oracle||2012-05-11|Has expired: php4 is EOLed
databases/php4-pgsql||2012-05-11|Has expired: php4 is EOLed
databases/php4-rrdtool||2012-05-11|Removed
databases/php4-sybase_ct||2012-05-11|Has expired: php4 is EOLed
devel/php4-dio||2012-05-11|Has expired: php4 is EOLed
devel/php4-gettext||2012-05-11|Has expired: php4 is EOLed
devel/php4-mcve||2012-05-11|Has expired: php4 is EOLed
devel/php4-ncurses||2012-05-11|Has expired: php4 is EOLed
devel/php4-pcntl||2012-05-11|Has expired: php4 is EOLed
devel/php4-pcre||2012-05-11|Has expired: php4 is EOLed
devel/php4-readline||2012-05-11|Has expired: php4 is EOLed
devel/php4-shmop||2012-05-11|Has expired: php4 is EOLed
devel/php4-sysvmsg||2012-05-11|Has expired: php4 is EOLed
devel/php4-sysvsem||2012-05-11|Has expired: php4 is EOLed
devel/php4-sysvshm||2012-05-11|Has expired: php4 is EOLed
devel/php4-tokenizer||2012-05-11|Has expired: php4 is EOLed
finance/php4-pfpro||2012-05-11|Has expired: php4 is EOLed
ftp/php4-curl||2012-05-11|Has expired: php4 is EOLed
ftp/php4-ftp||2012-05-11|Has expired: php4 is EOLed
graphics/php4-chartdirector||2012-05-11|Has expired: php4 is EOLed
graphics/php4-exif||2012-05-11|Has expired: php4 is EOLed
graphics/php4-gd||2012-05-11|Has expired: php4 is EOLed
lang/php4||2012-05-11|Removed
lang/php4-extensions||2012-05-11|Has expired: php4 is EOLed
lang/php4-overload||2012-05-11|Has expired: php4 is EOLed
mail/php4-imap||2012-05-11|Has expired: php4 is EOLed
math/php4-bcmath||2012-05-11|Has expired: php4 is EOLed
math/php4-gmp||2012-05-11|Has expired: php4 is EOLed
misc/php4-calendar||2012-05-11|Has expired: php4 is EOLed
misc/php4-mcal||2012-05-11|Has expired: php4 is EOLed
net/php4-ldap||2012-05-11|Has expired: php4 is EOLed
net/php4-sockets||2012-05-11|Has expired: php4 is EOLed
net/php4-xmlrpc||2012-05-11|Has expired: php4 is EOLed
net/php4-yp||2012-05-11|Has expired: php4 is EOLed
net-mgmt/php4-snmp||2012-05-11|Has expired: php4 is EOLed
security/php4-crack||2012-05-11|Has expired: php4 is EOLed
security/php4-mcrypt||2012-05-11|Has expired: php4 is EOLed
security/php4-mhash||2012-05-11|Has expired: php4 is EOLed
security/php4-openssl||2012-05-11|Has expired: php4 is EOLed
sysutils/php4-posix||2012-05-11|Has expired: php4 is EOLed
textproc/php4-ctype||2012-05-11|Has expired: php4 is EOLed
textproc/php4-domxml||2012-05-11|Has expired: php4 is EOLed
textproc/php4-pspell||2012-05-11|Has expired: php4 is EOLed
textproc/php4-wddx||2012-05-11|Has expired: php4 is EOLed
textproc/php4-xml||2012-05-11|Has expired: php4 is EOLed
textproc/php4-xslt||2012-05-11|Has expired: php4 is EOLed
www/php4-session||2012-05-11|Has expired: php4 is EOLed
archivers/pecl-zip||2012-05-11|Has expired: php4 is EOLed
databases/pecl-sqlite||2012-05-11|Has expired: php4 is EOLed
devel/pear-XML_XPath||2012-05-11|Has expired: php4 is EOLed
devel/pecl-json||2012-05-11|Has expired: php4 is EOLed
www/pecl-tidy||2012-05-11|Has expired: php4 is EOLed
www/php-dyn||2012-05-11|Has expired: php4 is EOLed
security/pecl-hash||2012-05-11|Has expired: php4 is EOLed
net/phpldapadmin098||2012-05-11|Has expired: php4 is EOLed
graphics/jpgraph||2012-05-11|Removed
games/netrek-COW3-bin|games/netrek-client-cow|2012-05-11|COW3-bin obsolete in favor of client-cow
www/firefox-sync|www/firefox-esr|2012-05-12|Integrated in newer version of Firefox
www/firefox36|www/firefox-esr|2012-05-12|Upstream support dropped
www/firefox36-i18n|www/firefox-esr-i18n|2012-05-12|Upstream support dropped
mail/enigmail-thunderbird3|mail/enigmail-thunderbird-esr|2012-05-12|Depends on obsolete Thunderbird 3.1
mail/thunderbird3|mail/thunderbird-esr|2012-05-12|Upstream support dropped
mail/thunderbird3-i18n|mail/thunderbird-esr-i18n|2012-05-12|Upstream support dropped
databases/php5-sqlite||2012-05-16|Removed from core php
www/py-django-css|www/py-django_compressor|2012-05-16|Upstream development stopped. Use www/py-django_compressor instead
net-p2p/py-bittorrent-core||2012-05-16|Broken for more than 6 months, there are no upstream distfiles anymore
net-p2p/py-bittorrent||2012-05-16|Broken for more than 6 months, there are no upstream distfiles anymore
astro/boinc-einsteinathome||2012-05-16|Not usable with current project
x11/avant-window-navigator-xfce4||2012-05-18|Has expired: Broken for more than 6 months
deskutils/xfce4-volstatus-icon||2012-05-18|Has expired: Broken for more than 6 months
multimedia/xfmedia-remote-plugin||2012-05-18|Has expired: Broken for more than 6 months
sysutils/thunar-volman-plugin||2012-05-18|Has expired: Broken for more than 6 months
databases/sqlite34||2012-05-18|Has expired: No longer supported, please use databases/sqlite3 instead
graphics/long-exposure-tools||2012-05-18|Has expired: broken for more than 6 months, unmaintained upstream
misc/kde3-i18n-hsb||2012-05-18|Has expired: Broken for more than 6 months
misc/kde3-i18n-mt||2012-05-18|Has expired: Broken for more than 6 months
misc/kde3-i18n-nso||2012-05-18|Has expired: Broken for more than 6 months
net-im/pino||2012-05-18|Has expired: broken for more than 6 months, unmaintained upstream
print/perlftlib||2012-05-18|Has expired: No more upstream, no longer used in the ports tree
editors/libreoffice-legacy||2012-05-18|Has expired: not supported upstream, maintaining two versions of LibreOffice is really painful
devel/p5-POE-Exceptions||2012-05-18|Has expired: included in devel/p5-POE and not needed according to configure message
net/p5-Net-Services||2012-05-18|Has expired: Removed from CPAN
net/perldap||2012-05-18|Has expired: Broken for more than 6 months
security/p5-Crypt-Cryptix||2012-05-18|Has expired: Gone from CPAN, project site says project is dead
www/p5-HTML-Sanitizer||2012-05-18|Has expired: no longer in CPAN
www/p5-IMDB-Movie||2012-05-18|Has expired: Removed from CPAN
net/ng_car||2012-05-19|In base for all supported versions of FreeBSD
palm/coldsync||2012-05-19|Broken for more than 6 months, does not compile
graphics/linux-ac3d||2012-05-19|Has expired: Broken for more than 6 months
archivers/pecl-bz2|archivers/php5-bz2|2012-05-20|bz2 is included in core php
misc/freshmeat-submit|misc/freecode-submit|2012-05-20|Project renamed
devel/kdebindings4-kross-interpreters||2012-05-25|kdebindings4 ports have been refactored
devel/kdebindings4-python||2012-05-25|kdebindings4 ports have been refactored
devel/kdebindings4-ruby||2012-05-25|kdebindings4 ports have been refactored
devel/kdebindings4-smoke||2012-05-25|kdebindings4 ports have been refactored
deskutils/plasma-applet-icontasks||2012-05-25|Integrated to KDE SC 4.8
audio/audacity-devel|audio/audacity|2012-05-30|Removed in favor of stable
editors/koffice-i18n||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-af||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-bg||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-br||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-bs||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-ca||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-cs||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-cy||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-da||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-el||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-en_GB||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-eo||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-es||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-et||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-eu||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-fa||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-fi||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-ga||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-gl||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-hi||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-hsb||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-is||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-it||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-km||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-lo||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-lt||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-lv||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-mk||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-ms||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-mt||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-nb||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-nl||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-nn||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-ro||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-se||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-sk||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-sl||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-sr||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-sr_Latn||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-sv||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-ta||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-tg||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-th||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-tr||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-uz||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-ven||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-xh||2012-05-31|Depends on editors/koffice-kde3, which is deleted
editors/koffice-i18n-zu||2012-05-31|Depends on editors/koffice-kde3, which is deleted
chinese/koffice-kde4-l10n-zh_CN|chinese/calligra-l10n-zh_CN|2012-05-31|Unmaintained upstream, use Calligra
chinese/koffice-kde4-l10n-zh_TW|chinese/calligra-l10n-zh_TW|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-ca_valencia|editors/calligra-l10n-ca_valencia|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-ca|editors/calligra-l10n-ca|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-da|editors/calligra-l10n-da|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-el|editors/calligra-l10n-el|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-en_GB|editors/calligra-l10n-en_GB|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-es|editors/calligra-l10n-es|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-et|editors/calligra-l10n-et|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-gl||2012-05-31|Unmaintained upstream
editors/koffice-kde4-l10n-it|editors/calligra-l10n-it|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-kk|editors/calligra-l10n-kk|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-nb|editors/calligra-l10n-nb|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-nds|editors/calligra-l10n-nds|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-nl|editors/calligra-l10n-nl|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-sv|editors/calligra-l10n-sv|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4-l10n-tr||2012-05-31|Unmaintained upstream
editors/koffice-kde4-l10n-wa||2012-05-31|Unmaintained upstream
editors/koffice-kde4-l10n|editors/calligra-l10n|2012-05-31|Unmaintained upstream, use Calligra
editors/koffice-kde4|editors/calligra|2012-05-31|Unmaintained upstream, use Calligra
french/koffice-kde4-l10n|french/calligra-l10n|2012-05-31|Unmaintained upstream, use Calligra
german/koffice-kde4-l10n|german/calligra-l10n|2012-05-31|Unmaintained upstream, use Calligra
hungarian/koffice-kde4-l10n|hungarian/calligra-l10n|2012-05-31|Unmaintained upstream, use Calligra
japanese/koffice-kde4-l10n||2012-05-31|Unmaintained upstream
polish/koffice-kde4-l10n|polish/calligra-l10n|2012-05-31|Unmaintained upstream, use Calligra
portuguese/koffice-kde4-l10n-pt_BR|portuguese/calligra-l10n-pt_BR|2012-05-31|Unmaintained upstream, use Calligra
portuguese/koffice-kde4-l10n|portuguese/calligra-l10n|2012-05-31|Unmaintained upstream, use Calligra
russian/koffice-kde4-l10n|russian/calligra-l10n|2012-05-31|Unmaintained upstream, use Calligra
ukrainian/koffice-kde4-l10n|ukrainian/calligra-l10n|2012-05-31|Unmaintained upstream, use Calligra
dns/drill||2012-05-31|drill tool is a part of ldns package now
devel/hs-binary||2012-06-03|Removed: this package became part of lang/ghc
devel/hs-convertible-text||2012-06-03|Removed: this package is obsolete
devel/hs-control-monad-attempt||2012-06-03|Removed: this package is obsolete
devel/hs-data-object||2012-06-03|Removed: this package is obsolete
devel/hs-data-object-yaml||2012-06-03|Removed: this package is obsolete
devel/hs-deepseq||2012-06-03|Removed: this package became part of lang/ghc
devel/hs-ghc-paths-docs||2012-06-03|Removed: not needed anymore
devel/hs-haddock-docs||2012-06-03|Removed: not needed anymore
devel/hs-mtl-docs||2012-06-03|Removed: not needed anymore
devel/hs-pool||2012-06-03|Removed: this package is obsolete
devel/hs-transformers-docs||2012-06-03|Removed: not needed anymore
print/hs-hscolour-docs||2012-06-03|Removed: not needed anymore
textproc/hs-xhtml-docs||2012-06-03|Removed: not needed anymore
textproc/hs-xml-enumerator||2012-06-03|Removed: this package is obsolete
www/hs-happstack-data||2012-06-03|Removed: this package is obsolete
www/hs-happstack-ixset||2012-06-03|Removed: this package is obsolete
www/hs-happstack-state||2012-06-03|Removed: this package is obsolete
www/hs-happstack-util||2012-06-03|Removed: this package is obsolete
www/hs-http-enumerator||2012-06-03|Removed: this package is obsolete
graphics/libungif|graphics/giflib|2012-06-05|Replaced by giflib
mail/kavmilter||2012-06-06|Removed: security package unmaintained upstream
sysutils/linux-megacli|sysutils/megacli|2012-06-06|Removed: native version available
ftp/wu-ftpd+ipv6||2012-06-07|Removed: Upstream disappeared and distfile is no longer available
sysutils/pwgen2|sysutils/pwgen|2012-06-07|pwgen2 is a continuation of pwgen that fixes several serious bugs
x11-toolkits/xforms-i18n||2012-06-08|Has expired: Broken for more than 6 months
security/ifd-devkit||2012-06-08|Conflicts with dependency, not useful
www/kazehakase||2012-06-10|Has expired: Broken for more than 6 months
x11/trayer-srg|x11/trayer|2012-06-11|Merged into x11/trayer
games/flightgear-atlas||2012-06-12|Unmaintained upstream
deskutils/sciplore-mindmapping||2012-06-12|Has expired: Discontinued, use deskutils/docear instead
devel/libtool-fixed||2012-06-12|Has expired: libtool has been fixed, no more need of this version
devel/p5-Devel-ObjectTracker||2012-06-12|Has expired: removed from CPAN
devel/rubygem-vmc||2012-06-12|Has expired: Broken for more than 6 months
games/antrix||2012-06-12|Has expired: no more public distfiles, abandoned upstream
games/sfbol||2012-06-12|Has expired: Broken for more than 6 months
java/eclipseme||2012-06-12|Has expired: depends on java/sun-wtk
mail/lmtpd||2012-06-12|Has expired: Broken for more than 6 months
print/cups-magicolor||2012-06-12|Has expired: Broken for more than 6 months
security/pantera||2012-06-12|Has expired: Broken for more than 6 months
graphics/djvulibre-nox11|graphics/djvulibre|2012-06-13|Merged back into graphics/djvulibre
games/wesnoth-devel||2012-06-13|Has expired: Broken for more than 6 months
www/trac-ticketdelete||2012-06-14|Has expired: Functionality of this plugin has been incorporated into Trac 0.12
x11-themes/gtk-qt-engine||2012-06-16|Has expired: Broken for more than 6 months
devel/bazaar|devel/baz|2012-06-17|Project renamed
devel/bazaar-ng|devel/bzr|2012-06-17|Project renamed
ftp/IglooFTP||2012-06-18|Has expired: No longer supported
audio/libtunepimp||2012-06-20|MusicBrainz RDF webservice no longer functions
audio/libtunepimp-old||2012-06-20|MusicBrainz RDF webservice no longer functions
sysutils/xfce4-utils||2012-06-23|No longer relevant, see UPDATING
devel/py-sendfile|net/py-pysendfile|2012-06-24|Domain lapsed, forked
www/joomla||2012-06-25|Unmaintained upstream, please use www/joomla25 instead
graphics/p5-chart|graphics/p5-Chart|2012-06-30|Move to a better place via repocopy
textproc/libupskirt|textproc/libsoldout|2012-07-01|Move to respect upstream new name
net-p2p/libtorrent-rasterbar-14||2012-07-01|Discontinued upstream, move to libtorrent-rasterbar-16
net-p2p/hrktorrent||2012-07-01|Relies on net-p2p/libtorrent-rasterbar-14, which has been discontinued
net-p2p/sharktorrent||2012-07-01|Relies on net-p2p/libtorrent-rasterbar-14, which has been discontinued
databases/postgresql-libpqxx30|databases/postgresql-libpqxx3|2012-07-03|Port renamed to be updated to 3.1
mail/mew2|mail/mew|2012-07-06|Development of this versions ceased, superseded by mail/mew
mail/mew3|mail/mew|2012-07-06|Development of this versions ceased, superseded by mail/mew
sysutils/devcpu||2012-07-06|Already included in base system
mail/squirreloutlook||2012-07-06|Based on a vulnerable version of squirrelmail, use mail/squirrelmail for similar functionality
x11-wm/e17-module-itask-ng|x11-wm/e17-module-engage|2012-07-06|Project has been renamed
sysutils/rubygem-puppet-module||2012-07-07|Integrated in to sysutils/puppet since 2.7.14
mail/sympa5|mail/sympa|2012-07-07|Has expired: Unsupported upstream, multiple vulnerabilities have been discovered in Sympa archive management that allow to skip the scenario-based authorization mechanisms (http://www.sympa.org/security_advisories)
science/ics||2012-07-07|ICS is no more a part of Code_Saturne
mail/postfix25||2012-07-07|Has expired: no further upstream development; please consider upgrading
misc/alevt||2012-07-16|Has expired: No more upstream
multimedia/moonlight||2012-07-16|Has expired: Broken for more than 6 months
lang/python24||2012-07-16|End Of Life reached
lang/python25||2012-07-16|End Of Life reached
www/zope||2012-07-16|End Of Life reached
www/zope211||2012-07-16|End Of Life reached
archivers/zlib||2012-07-18|Removed in favor of base system zlib
devel/app|devel/papp|2012-07-18|Project renamed upstream
databases/redis-scripting|databases/redis-devel|2012-07-19|Removed, please use databases/redis-devel instead
devel/acpicatools||2012-07-22|Has expired: obsolete and already in the base system for a long time
mail/mutt-devel|mail/mutt|2012-07-22|mail/mutt-devel is ready for prime time
mail/mutt-devel-lite|mail/mutt-lite|2012-07-22|mail/mutt-devel is ready for prime time
deskutils/phpgroupware|www/phpgroupware|2012-07-23|Moved to proper category
textproc/fcitx-keyboard||2012-07-25|Removed, merged into chinese/fcitx
devel/pkg-config|devel/pkgconf|2012-07-26|pkg-config has been replaced by pkgconf
print/pdfmerge||2012-07-27|Removed
audio/etoile-melodie||2012-07-28|Has expired: API no longer supported
audio/etoile-volumecontrolmenulet||2012-07-28|Has expired: API no longer supported
deskutils/etoile-corner||2012-07-28|Has expired: API no longer supported
deskutils/etoile-dictionaryreader||2012-07-28|Has expired: API no longer supported
deskutils/etoile-distributedview||2012-07-28|Has expired: API no longer supported
deskutils/etoile-extendedworkspacekit||2012-07-28|Has expired: API no longer supported
deskutils/etoile-hardware||2012-07-28|Has expired: API no longer supported
deskutils/etoile-inspectorkit||2012-07-28|Has expired: API no longer supported
deskutils/etoile-lookandbehavior||2012-07-28|Has expired: API no longer supported
deskutils/etoile-menuserver||2012-07-28|Has expired: API no longer supported
deskutils/etoile-panekit||2012-07-28|Has expired: API no longer supported
deskutils/etoile-scriptservices||2012-07-28|Has expired: API no longer supported
deskutils/etoile-servicemenulet||2012-07-28|Has expired: API no longer supported
deskutils/etoile-servicesbarkit||2012-07-28|Has expired: API no longer supported
deskutils/etoile-systemconfig||2012-07-28|Has expired: API no longer supported
deskutils/etoile-trackerkit||2012-07-28|Has expired: API no longer supported
deskutils/etoile-ui||2012-07-28|Has expired: API no longer supported
devel/etoile-collectionkit||2012-07-28|Has expired: API no longer supported
devel/etoile-coreobject||2012-07-28|Has expired: API no longer supported
devel/etoile-foundation||2012-07-28|Has expired: API no longer supported
devel/etoile-serialize||2012-07-28|Has expired: API no longer supported
devel/etoile-unitkit||2012-07-28|Has expired: API no longer supported
devel/llvm-etoile||2012-07-28|Has expired: API no longer supported
editors/etoile-typewriter||2012-07-28|Has expired: API no longer supported
graphics/popplerkit||2012-07-28|Has expired: API no longer supported
graphics/vindaloo||2012-07-28|Has expired: API no longer supported
lang/etoile-compiler||2012-07-28|Has expired: API no longer supported
lang/etoile-io||2012-07-28|Has expired: API no longer supported
lang/etoile-languagekit||2012-07-28|Has expired: API no longer supported
lang/etoile-lkplugins||2012-07-28|Has expired: API no longer supported
lang/etoile-scriptkit||2012-07-28|Has expired: API no longer supported
lang/etoile-smalltalkkit||2012-07-28|Has expired: API no longer supported
multimedia/etoile-babbler||2012-07-28|Has expired: API no longer supported
multimedia/etoile-mediakit||2012-07-28|Has expired: API no longer supported
multimedia/etoile-multimediakit||2012-07-28|Has expired: API no longer supported
net-im/etoile-stepchat||2012-07-28|Has expired: API no longer supported
net-im/etoile-xmppkit||2012-07-28|Has expired: API no longer supported
sysutils/etoile-behavior||2012-07-28|Has expired: API no longer supported
sysutils/etoile-installer||2012-07-28|Has expired: API no longer supported
sysutils/etoile-powermenulet||2012-07-28|Has expired: API no longer supported
sysutils/etoile-system||2012-07-28|Has expired: API no longer supported
textproc/etoile-lucenekit||2012-07-28|Has expired: API no longer supported
textproc/etoile-ogrekit||2012-07-28|Has expired: API no longer supported
textproc/etoile-opmlkit||2012-07-28|Has expired: API no longer supported
www/etoile-bookmarkkit||2012-07-28|Has expired: API no longer supported
www/etoile-mollusk||2012-07-28|Has expired: API no longer supported
x11-fm/etoile-fontmanager||2012-07-28|Has expired: API no longer supported
x11-themes/etoile-azbackground||2012-07-28|Has expired: API no longer supported
x11-themes/etoile-camaelon||2012-07-28|Has expired: API no longer supported
x11-themes/etoile-etoilemenus||2012-07-28|Has expired: API no longer supported
x11-themes/etoile-iconkit||2012-07-28|Has expired: API no longer supported
x11-themes/etoile-wildmenus||2012-07-28|Has expired: API no longer supported
x11-wm/etoile-azalea||2012-07-28|Has expired: API no longer supported
x11-wm/etoile-azdock||2012-07-28|Has expired: API no longer supported
x11-wm/etoile-azswitch||2012-07-28|Has expired: API no longer supported
x11-wm/etoile-login||2012-07-28|Has expired: API no longer supported
x11/etoile||2012-07-28|Has expired: Update to a new release is required
x11/etoile-idle||2012-07-28|Has expired: API no longer supported
x11/etoile-iterm||2012-07-28|Has expired: API no longer supported
x11/etoile-xwindowserverkit||2012-07-28|Has expired: API no longer supported
lang/steptalk||2012-07-29|Has expired: API no longer supported
editors/emacs.app||2012-07-29|Has expired: API no longer supported
devel/ruby-gnustep||2012-07-29|Has expired: API no longer supported
www/etoile-rsskit|www/rsskit|2012-08-04|Project renamed
www/etoile-grr|www/grr|2012-08-04|Project renamed
graphics/libglut|graphics/freeglut|2012-08-04|Replace libglut with freeglut
x11-fm/FSViewer||2012-08-05|Broken, unmaintained, dead upstream
games/gomoku.app|games/gomoku|2012-08-06|Project renamed
devel/projectcenter.app|devel/projectcenter|2012-08-06|Project renamed
audio/volumecontrol.app|audio/volumecontrol|2012-08-06|Project renamed
editors/textedit.app|editors/textedit|2012-08-07|Project renamed
deskutils/preferences.app|deskutils/preferences|2012-08-07|Project renamed
www/trac-ctxtnavadd||2012-08-09|Functionality of this plugin merged into Trac itself - see trac.web.chrome.add_ctxtnav function
net-p2p/qbittorrent-29|net-p2p/qbittorrent|2012-08-11|Moved to match port name
net-p2p/qbittorrent-29-nox11|net-p2p/qbittorrent-nox11|2012-08-11|Moved to match port name
sysutils/cfengine-legacy|sysutils/cfengine32|2012-08-14|Standardize port naming
sysutils/cfengine3|sysutils/cfengine33|2012-08-14|Standardize port naming
lang/erlang-lite|lang/erlang|2012-08-15|Redundant port removed
devel/apr0|devel/apr1|2012-08-18|Has expired
www/apache20|www/apache22|2012-08-18|Has expired
www/django-mezzanine-filebrowser|www/py-django-mezzanine-filebrowser|2012-08-19|Rename to consistency with other Python ports
www/django-mezzanine-grappelli|www/py-django-mezzanine-grappelli|2012-08-19|Rename to consistency with other Python ports
misc/gpt31||2012-08-20|Has expired: was a dependency for net/globus4, which was removed 2008-12-07, unmaintained upstream since 2004
misc/gpt||2012-08-20|Has expired: was a dependency for net/globus4, which was removed 2008-12-07, unmaintained upstream since 2004
www/xxxterm|www/xombrero|2012-08-20|Project renamed
www/cakephp2|www/cakephp21|2012-08-21|Moved to match port version
databases/libudbc||2012-08-21|Has expired: Does not fetch and no vendor support anymore
net/asterisk16||2012-08-22|Unsupported upstream, please use net/asterisk instead
net/asterisk16-addons||2012-08-22|Unsupported upstream, now part of net/asterisk
databases/edb||2012-08-26|Has expired: Deprecated by enlightenment.org team
databases/php5-rrdtool||2012-08-26|Has expired: deprecated via upstream please use databases/pecl-rrd
graphics/evas-engine-xrender||2012-08-26|Has expired: Deprecated by enlightenment.org
graphics/evas-loader-edb||2012-08-26|Has expired: Deprecated by enlightenment.org
www/linux-f10-flashplugin10|www/linux-f10-flashplugin11|2012-08-26|Has expired: has vulnerabilities and is EOL
x11-wm/e17-module-efm_nav||2012-08-26|Has expired: Deprecated by enlightenment.org
x11-wm/e17-module-efm_path||2012-08-26|Has expired: Deprecated by enlightenment.org
x11-wm/e17-module-efm_pathbar||2012-08-26|Has expired: Deprecated by enlightenment.org
x11-wm/e17-module-notification||2012-08-26|Has expired: Merged into x11-wm/enlightenment
www/py-django12||2012-08-31|Has expired: Unsupported version
www/p5-Xango||2012-08-31|Has expired: Removed from CPAN
lang/spidermonkey|lang/spidermonkey17|2012-09-01|Moved to allow for addition of the 1.8 development line
cad/gtkwave3|cad/gtkwave|2012-09-04|There is only one version of this now
multimedia/x264-devel||2012-09-07|Has expired: x264 github development makes this port obsolete
audio/holyshout||2012-09-07|Has expired: upstream has disappeared
devel/R-cran-survival||2012-09-12|Part of R
japanese/postgresql73-man||2012-09-13|There no according PostgreSQL version in the tree anymore
japanese/postgresql74-man||2012-09-13|There no according PostgreSQL version in the tree anymore
japanese/postgresql80-man||2012-09-13|There no according PostgreSQL version in the tree anymore
japanese/postgresql81-man||2012-09-13|There no according PostgreSQL version in the tree anymore
audio/libmusicbrainz||2012-09-18|Has expired: MusicBrainz RDF webservice no longer functions
net-mgmt/better-cacti-templates|net-mgmt/percona-monitoring-plugins|2012-09-19|Project renamed
print/pips3300||2012-09-22|Removed
print/pips-spr200_210||2012-09-22|Removed
print/pipsv600||2012-09-22|Removed
print/pips-spr800||2012-09-22|Removed
print/pips-sc85_86s||2012-09-22|Removed
print/pips2200||2012-09-22|Removed
print/pips880||2012-09-22|Removed
print/pips940||2012-09-22|Removed
print/pips730||2012-09-22|Removed
print/pips900||2012-09-22|Removed
print/pips820||2012-09-22|Removed
print/pips740||2012-09-22|Removed
print/pipsg700||2012-09-22|Removed
print/pipsv700-cups||2012-09-22|Removed
print/pipsg900||2012-09-22|Removed
print/pips-sp2100_2200||2012-09-22|Removed
print/pips4000||2012-09-22|Removed
print/pips980||2012-09-22|Removed
print/pips740-cups||2012-09-22|Removed
print/pips970-cups||2012-09-22|Removed
print/pipsv500||2012-09-22|Removed
print/pips-scx3500_3600s||2012-09-22|Removed
print/pips-sc65_66s||2012-09-22|Removed
print/pips970||2012-09-22|Removed
print/pips750_2000||2012-09-22|Removed
print/pips780||2012-09-22|Removed
print/pips-sc84_83s||2012-09-22|Removed
print/pipsv700||2012-09-22|Removed
print/pips800||2012-09-22|Removed
print/pips-sc60s||2012-09-22|Removed
print/pips3500||2012-09-22|Removed
print/pips3000||2012-09-22|Removed
print/pips870||2012-09-22|Removed
print/pips670||2012-09-22|Removed
print/pips760||2012-09-22|Removed
print/pips-sc80s||2012-09-22|Removed
print/pipsg800||2012-09-22|Removed
print/pips870-cups||2012-09-22|Removed
print/pips-spr300_310||2012-09-22|Removed
print/pips930||2012-09-22|Removed
print/pips770||2012-09-22|Removed
www/linuxpluginwrapper||2012-09-22|Has expired: doesn't support ELF symbol versioning, yet
net/fping+ipv6|net/fping|2012-09-24|IPv6 support has been merged
textproc/aspell-without-dicten|textproc/aspell|2012-09-24|The dictionary is no longer installed with textproc/aspell
www/jakarta-jmeter|www/jmeter|2012-09-25|Former Jakarta projects now live on their own
www/smarty|www/smarty2|2012-09-26|Renamed to prepare for addition of Smarty 3.x to the tree
devel/p5-Devel-Mallinfo||2012-10-08|Has expired: Does not work on FreeBSD, mallinfo() is a GNU libc function and is not available on FreeBSD
multimedia/vdpau-video|multimedia/libva-vdpau-driver|2012-10-09|Project renamed
mail/enigmail||2012-10-10|Enigmail is now an option in the thunderbird/seamonkey port
mail/enigmail-seamonkey||2012-10-10|Enigmail is now an option in the seamonkey port
mail/enigmail-thunderbird||2012-10-10|Enigmail is now an option in the thunderbird port
mail/enigmail-thunderbird-esr||2012-10-10|Enigmail is now an option in the thunderbird-esr port
sysutils/binup||2012-10-14|Upstream disappeared, use freebsd-update(8) instead
math/guppi||2012-10-15|Not developed anymore, consider math/gnumeric instead
x11-toolkits/gal||2012-10-15|Development ceased, nothing in the ports tree uses it anymore
math/octave-forge-physicalconstants||2012-10-15|Incorporated upstream into math/octave-forge-miscellaneous
math/octave-forge-combinatorics||2012-10-15|Incorporated upstream into math/octave-forge-miscellaneous
games/8kingdoms||2012-10-16|Has expired: Broken for more than 6 months
games/freeorion||2012-10-16|Has expired: Broken for more than 6 months
games/rigsofrods||2012-10-16|Has expired: Broken for more than 6 months
sysutils/bacula2-client||2012-10-20|No longer supported upstream and may contain vulnerabilities. Use sysutils/bacula-client instead
sysutils/bacula2-server||2012-10-20|No longer supported upstream and may contain vulnerabilities. Use sysutils/bacula-server instead
x11-wm/wmcp||2012-10-25|Has expired: No more public distfiles
x11-wm/skippy-xd||2012-10-25|Has expired: Abandonware, upstream disappeared
x11-wm/skippy||2012-10-25|Has expired: Abandonware, upstream disappeared
x11-wm/matchbox||2012-10-25|Has expired: Abandonware, upstream disappeared
x11-wm/blwm||2012-10-25|Has expired: Abandonware, upstream disappeared
x11-wm/badwm||2012-10-25|Has expired: Development ceased
x11-wm/amaterus||2012-10-25|Has expired: Abandonware, upstream disappeared
x11-wm/ahwm||2012-10-25|Has expired: Abandoned upstream
x11-toolkits/py-SciParam||2012-10-25|Has expired: Depends on the deprecated wx 2.4
x11-toolkits/p5-GdkImlib||2012-10-25|Has expired: Abandoned upstream, not used by any ports
x11-toolkits/mesgui||2012-10-25|Has expired: Abandoned upstream, no ports depend on it
x11-toolkits/gtkmm12||2012-10-25|Has expired: Abandoned upstream, no more depending ports
x11-toolkits/flu||2012-10-25|Has expired: No more public distfiles
x11-toolkits/efltk||2012-10-25|Has expired: Abandoned upstream, no ports depend on it
x11-toolkits/9libs||2012-10-25|Has expired: Abandonware, no ports depend on it, and broken on most arches
x11-themes/metacity-ana-theme||2012-10-25|Has expired: No more public distfiles
x11-themes/gtk-ana-theme||2012-10-25|Has expired: No more public distfiles
x11-fonts/getbdf||2012-10-25|Has expired: No more public distfiles
x11-fonts/arkpandora||2012-10-25|Has expired: No more public distfiles
x11-clocks/wmdate||2012-10-25|Has expired: No more public distfiles
x11/multi-gnome-terminal||2012-10-25|Has expired: depends on deprecated gnome1 things
www/wacko||2012-10-25|Has expired: No more public distfiles
sysutils/wtmp-tools||2012-10-25|Has expired: No more public distfiles
sysutils/pdumpfs-rsync||2012-10-25|Has expired: No more public distfiles
sysutils/pdumpfs-clean||2012-10-25|Has expired: No more public distfiles
sysutils/netdump-server||2012-10-25|Has expired: No more public distfiles
sysutils/nctop||2012-10-25|Has expired: No more public distfiles
sysutils/memgrep||2012-10-25|Has expired: No more public distfiles
sysutils/logserial||2012-10-25|Has expired: No more public distfiles
sysutils/dupfind||2012-10-25|Has expired: No more public distfiles
sysutils/dump9660||2012-10-25|Has expired: No more public distfiles
sysutils/desktopbsd-tools||2012-10-25|Has expired: No more public distfiles
sysutils/agef||2012-10-25|Has expired: No more public distfiles
security/sscep||2012-10-25|Has expired: No more public distfiles
security/py-rijndael||2012-10-25|Has expired: No more public distfiles
security/pam_af||2012-10-25|Has expired: No more public distfiles
security/its4||2012-10-25|Has expired: No more public distfiles
russian/xcyrBGR||2012-10-25|Has expired: No more public distfiles
russian/wmcyrx||2012-10-25|Has expired: No more public distfiles
print/advi||2012-10-25|Has expired: No more public distfiles
palm/plucker||2012-10-25|Has expired: No more public distfiles
net-p2p/py-bittornado-core||2012-10-25|Has expired: Depends on the deprecated wx 2.4
net-p2p/py-bittornado||2012-10-25|Has expired: Depends on the deprecated wx 2.4
net-mgmt/nagios-radauth-plugin||2012-10-25|Has expired: No more public distfiles
net-mgmt/nagios-check_nick||2012-10-25|Has expired: No more public distfiles
net-im/grouch||2012-10-25|Has expired: No more public distfiles
net-im/firetalk||2012-10-25|Has expired: No more public distfiles
net/linneighborhood||2012-10-25|Has expired: No more public distfiles
net/libconnect||2012-10-25|Has expired: No more public distfiles
multimedia/vcdtools||2012-10-25|Has expired: No more public distfiles
multimedia/mpeg||2012-10-25|Has expired: No more public distfiles
multimedia/gnustep-mplayer||2012-10-25|Has expired: No more public distfiles
misc/voltcraft304||2012-10-25|Has expired: No more public distfiles
misc/thailocale||2012-10-25|Has expired: No more public distfiles
misc/flyway||2012-10-25|Has expired: No more public distfiles
mail/zabit||2012-10-25|Has expired: No more public distfiles
mail/wbl||2012-10-25|Has expired: No more public distfiles
mail/smtpd||2012-10-25|Has expired: No more public distfiles
lang/cu-prolog||2012-10-25|Has expired: No more public distfiles
japanese/stardict-dict-ja||2012-10-25|Has expired: No more public distfiles
japanese/otojiro-fpw||2012-10-25|Has expired: No more public distfiles
japanese/hex||2012-10-25|Has expired: No more public distfiles
japanese/gxditview||2012-10-25|Has expired: No more public distfiles
graphics/view3ds||2012-10-25|Has expired: No more public distfiles
graphics/photoclip||2012-10-25|Has expired: No more public distfiles
graphics/multivideo||2012-10-25|Has expired: Abandonware, no more upstream, depends on the deprecated wxGTK 2.4
graphics/kphotoalbum||2012-10-25|Has expired: No more public distfiles
graphics/jpegpixi||2012-10-25|Has expired: No more public distfiles
graphics/gimp-manual-pdf||2012-10-25|Has expired: No more public distfiles
games/yace||2012-10-25|Has expired: No more public distfiles
games/xripple||2012-10-25|Has expired: No more public distfiles
games/wolf3d||2012-10-25|Has expired: No more public distfiles
games/pets||2012-10-25|Has expired: No more public distfiles
games/linux-enemyterritory-fortress||2012-10-25|Has expired: No more public distfiles
games/linux-enemyterritory-etpub||2012-10-25|Has expired: No more public distfiles (for the .pk3)
games/freesci||2012-10-25|Has expired: No more public distfiles
dns/gresolver||2012-10-25|Has expired: No more public distfiles
devel/vb2c||2012-10-25|Has expired: No more public distfiles
devel/libsigc++||2012-10-25|Has expired: Abandoned upstream, no more depending ports
devel/klassmodeler||2012-10-25|Has expired: Abandonware, depends on the deprecated wxGTK 2.4
devel/ecos-tools||2012-10-25|Has expired: Depends on an obsolete version of wx, broken with gcc4.2 for long
devel/datadesigner||2012-10-25|Has expired: Abandonware, depends on the deprecated wxGTK 2.4
chinese/wangttf||2012-10-25|Has expired: No more public distfiles
chinese/stardict-dict-zh_TW||2012-10-25|Has expired: No more public distfiles
chinese/stardict-dict-zh_CN||2012-10-25|Has expired: No more public distfiles
chinese/mingunittf||2012-10-25|Has expired: No more public distfiles
chinese/dfsongsd||2012-10-25|Has expired: No more public distfiles
biology/dna-qc||2012-10-25|Has expired: No more public distfiles
x11-toolkits/wxgtk24||2012-10-26|Not supported upstream anymore, consider using more recent version
x11-toolkits/wxgtk24-contrib||2012-10-26|Not supported upstream anymore, consider using more recent version
x11-toolkits/wxgtk24-docs||2012-10-26|Not supported upstream anymore, consider using more recent version
x11-toolkits/py-wxPython24||2012-10-26|Not supported upstream anymore, consider using more recent version
audio/gogo||2012-10-26|No more public distfiles
deskutils/superkaramba-lwp||2012-10-26|Has expired: No more public_distfiles
x11-toolkits/paragui||2012-10-26|Has expired: No more upstream, no ports depending on it
deskutils/gnuwash||2012-10-26|Has expired: No more public distfiles
devel/p5-Class-MOP||2012-10-27|Has expired: distribution has been merged with devel/p5-Moose
x11-toolkits/ocaml-lablgtk||2012-10-27|Has expired: Abandoned upstream, consider using x11-toolkit/ocaml-lablgtk2
audio/xmms-arts_output||2012-10-28|Has expired: Outdated and distfile no longer available
databases/pear-MDB2_Driver_ibase||2012-10-28|Has expired: Broken for more than 6 months
textproc/xerces-c||2012-11-05|Has expired: No more supported upstream, consider using xerces-c2 or xerces-c3
x11-wm/wampager||2012-11-05|Has expired: Development ceased
x11-wm/waimea||2012-11-05|Has expired: Development ceased
x11-wm/waimea-devel||2012-11-05|Has expired: Development ceased
devel/py-liblarch_gtk||2012-11-09|Merged into devel/py-liblarch
x11-fonts/tolkien-ttf||2012-11-11|Has expired: Does not fetch: there are no more public distfiles
www/mod_jk-apache2|www/mod_jk|2012-11-14|Apache 1.3 is no longer in the tree
net-im/qutim-plugin-icq||2012-11-19|Has expired: It is not needed for new QutIM
net-im/qutim-plugin-jabber||2012-11-19|Has expired: It is not needed for new QutIM
www/trac-customroadmap||2012-11-19|Has expired: Functionality of this plugin is available in the Trac core as of 0.11
net-mgmt/py-snmp2||2012-11-19|Has expired: Dead upstream, use net-mgmt/py-snmp4 instead
net-im/ccmsn||2012-11-19|Has expired: The project no longer exists
irc/py-irclib|irc/py-irc|2012-11-22|Rename according to upstream name change
editors/glimmer||2012-11-28|Has expired: Depends on the expired gtkglarea through py-gtk
palm/txt2pdbdoc||2012-11-28|Has expired: No more public distfiles
sysutils/xloadface||2012-11-28|Has expired: No more public distfiles
shells/gscommander||2012-11-28|Has expired: Abandonware
security/saferpay||2012-11-28|Has expired: No more public distfiles
x11-wm/qvwm||2012-11-28|Has expired: No more public distfiles
astro/position||2012-11-28|Has expired: No more public distfiles
astro/tangogps||2012-11-28|Has expired: No more public distfiles
audio/volumecontrol||2012-11-28|Has expired: No more public distfiles
audio/wsoundprefs||2012-11-28|Has expired: Depends on the deprecated audio/wsoundserver and expired x11-toolkits/libdockapp
audio/wsoundserver||2012-11-28|Has expired: Depends on deprecated libdockapp
benchmarks/gsbench||2012-11-28|Has expired: No more public distfiles
benchmarks/xengine||2012-11-28|Has expired: No more public distfiles
biology/belvu||2012-11-28|Has expired: No more public distfiles
multimedia/kaffeine-mozilla||2012-11-28|Has expired: No more public distfiles
www/gnustep-ticker||2012-11-28|Has expired: Abandonware
net/tryst-examples||2012-11-28|Has expired: Abandonware
net/tryst||2012-11-28|Has expired: Abandonware
graphics/morpheus||2012-11-28|Has expired: Depends on the expired gtkglarea
devel/jakarta-commons-chain||2012-11-28|Has expired: Depends on the expired devel/portlet-api
math/p5-Math-LinearCombination||2012-11-28|Has expired: Depends on the expired p5-Class-Field
x11/padkey||2012-11-28|Has expired: No more public distfiles
japanese/gicq||2012-11-28|Has expired: No more public distfiles and development ceased
www/momspider||2012-11-28|Has expired: No more public distfiles
japanese/perl5||2012-11-28|Has expired: Recent perl supports correctly japanese, consider using them
sysutils/fuser||2012-11-28|Has expired: No more public distfiles
textproc/ascii2pdf||2012-11-28|Has expired: No more public distfiles
devel/p5-SPOPS||2012-11-28|Has expired: Depend on the expired p5-Class-Fields
textproc/lemmatizer||2012-11-28|Has expired: No more public distfiles
net/relay||2012-11-28|Has expired: No more public distfiles
x11-clocks/bmp-alarm||2012-11-28|Has expired: No more public distfiles
net-mgmt/nagios-check_ice||2012-11-28|Has expired: No more public distfiles
japanese/libicq||2012-11-28|Has expired: No more public distfiles and development ceased
graphics/tonicpoint-viewer||2012-11-28|Has expired: No more public distfiles
devel/safestr||2012-11-28|Has expired: No more public distfiles
java/jmp||2012-11-28|Has expired: Java 1.5 is EOLed
irc/tr-ircd||2012-11-28|Has expired: No more public distfiles
lang/imp-interpreter||2012-11-28|Has expired: No more public distfiles
games/xquarto||2012-11-28|Has expired: No more public distfiles
games/six||2012-11-28|Has expired: No more public distfiles
finance/gfp||2012-11-28|Has expired: No more public distfiles
games/44bsd-hunt||2012-11-28|Has expired: No more public distfiles
graphics/ale||2012-11-28|Has expired: No more public distfiles
german/digibux||2012-11-28|Has expired: No more public distfiles
java/eclipse-clay-core||2012-11-28|Has expired: No more public distfiles
games/xbloody||2012-11-28|Has expired: No more public distfiles
dns/sqldjbdns||2012-11-28|Has expired: No more public distfiles
ftp/mget||2012-11-28|Has expired: No more public distfiles
graphics/yap||2012-11-28|Has expired: No more public distfiles
games/demonquake||2012-11-28|Has expired: No more public distfiles
databases/php-sqlrelay||2012-11-28|Has expired: No more public distfiles
devel/fastdep||2012-11-28|Has expired: No more public distfiles
graphics/svgviewer||2012-11-28|Has expired: No more public distfiles
comms/garmin-utils||2012-11-28|Has expired: No more public distfiles
comms/snooper||2012-11-28|Has expired: No more public distfiles
graphics/xfig-devel|graphics/xfig|2012-11-28|Has expired: Stable version is more recent than devel version
irc/irchat-jp||2012-11-28|Has expired: No more public distfiles
games/xcogitate||2012-11-28|Has expired: No more public distfiles
emulators/gcube||2012-11-28|Has expired: No more public distfiles
games/stepbill||2012-11-28|Has expired: No more public distfiles
deskutils/ktagebuch||2012-11-28|Has expired: No more public distfiles
games/jetpack||2012-11-28|Has expired: No more public distfiles
games/tremor||2012-11-28|Has expired: No more public distfiles
graphics/jpeg2pdf||2012-11-28|Has expired: No more public distfiles
java/westhawksnmp||2012-11-28|Has expired: No more public distfiles
japanese/tcl76||2012-11-28|Has expired: No more public distfiles
math/stepulator||2012-11-28|Has expired: No more public distfiles
editors/jedit-devel|editors/jedit|2012-11-28|Has expired: Stable version is more recent than devel
www/trac-wikirename||2012-11-28|Has expired: Functionality of this plugin is included in the Trac core since 0.12
www/p5-Sledge||2012-11-28|Has expired: depends on mod_perl 1 which is gone
www/p5-Sledge-Plugin-CacheContent||2012-11-28|Has expired: depends on mod_perl 1 which is gone
www/p5-Sledge-Plugin-Download||2012-11-28|Has expired: depends on mod_perl 1 which is gone
www/p5-Sledge-Plugin-Dumper||2012-11-28|Has expired: depends on mod_perl 1 which is gone
www/p5-Sledge-Plugin-HTML2HDML||2012-11-28|Has expired: depends on mod_perl 1 which is gone
www/p5-Sledge-Plugin-Log||2012-11-28|Has expired: depends on mod_perl 1 which is gone
www/p5-Sledge-Plugin-NoCache||2012-11-28|Has expired: depends on mod_perl 1 which is gone
www/p5-Sledge-Plugin-SaveUpload||2012-11-28|Has expired: depends on mod_perl 1 which is gone
www/p5-Sledge-Plugin-ScratchPad||2012-11-28|Has expired: depends on mod_perl 1 which is gone
www/p5-Sledge-Plugin-SessionAutoCleanup||2012-11-28|Has expired: depends on mod_perl 1 which is gone
www/p5-Sledge-Plugin-XSLT||2012-11-28|Has expired: depends on mod_perl 1 which is gone
www/p5-Sledge-SessionManager-CookieStore||2012-11-28|Removed depends on mod_perl 1 which is gone
www/p5-Sledge-Template-Expr||2012-11-28|Removed depends on mod_perl 1 which is gone
mail/vchkuser|mail/qmail-spamcontrol|2012-11-28|Has expired: mail/qmail-spamcontrol replaces this port
chinese/pyDict||2012-11-28|Removed: Depends on the expired gtkglarea through py-gtk
x11-toolkits/py-gtk||2012-11-28|Has expired: Depends on the expired gtkglarea
devel/portlet-api||2012-11-28|Has expired: No more public distfiles
net/amqp08||2012-11-29|Has expired: No more public distfiles
games/kmquake2||2012-11-29|Has expired: No more public distfiles
www/jetspeed||2012-11-30|Has expired: Dead upstream
deskutils/abacus||2012-12-03|Has expired: Dead upstream
lang/tcl82||2012-12-03|No longer developed, no more consumers
x11-toolkits/tk82||2012-12-03|No longer developed, no more consumers
astro/prune|astro/gpsprune|2012-12-03|Project was renamed
net-p2p/limewire||2012-12-07|Has expired: Abandoned up stream
java/diablo-jre16|java/openjdk6-jre|2012-12-10|Has expired: Outdated, consider using openjdk6 or openjdk7
java/diablo-jdk16|java/openjdk6|2012-12-10|Has expired: Outdated, consider using openjdk6 or openjdk7
java/diablo-jre15|java/openjdk6-jre|2012-12-10|Has expired: Outdated, consider using openjdk6 or openjdk7
java/diablo-jdk15|java/openjdk6|2012-12-10|Has expired: Outdated, consider using openjdk6 or openjdk7
java/jdk15|java/openjdk6|2012-12-10|Has expired: EOLed upstream since October 2009
java/jdk16|java/openjdk6|2012-12-10|Has expired: Outdated, consider using openjdk6 or openjdk7
java/linux-sun-jre15|java/linux-sun-jre16|2012-12-10|Has expired: EOLed upstream since October 2009
java/linux-sun-jdk15|java/linux-sun-jdk16|2012-12-10|Has expired: EOLed upstream since October 2009
java/jdk15-doc|java/jdk16-doc|2012-12-10|Has expired: EOLed upstream since October 2009
science/py-openbabel||2012-12-11|Merged to science/openbabel
www/moodle2|www/moodle23|2012-12-11|Renamed
deskutils/horde-hermes|deskutils/horde3-hermes|2012-12-12|Rename of old horde apps
deskutils/horde-klutz|deskutils/horde3-klutz|2012-12-12|Rename of old horde apps
devel/horde-chora|devel/horde3-chora|2012-12-12|Rename of old horde apps
mail/horde-dimp|mail/horde3-dimp|2012-12-12|Rename of old horde apps
mail/horde-forwards|mail/horde3-forwards|2012-12-12|Rename of old horde apps
mail/horde-mimp|mail/horde3-mimp|2012-12-12|Rename of old horde apps
mail/horde-vacation|mail/horde3-vacation|2012-12-12|Rename of old horde apps
net-mgmt/horde-nic|net-mgmt/horde3-nic|2012-12-12|Rename of old horde apps
security/horde-jeta|security/horde3-jeta|2012-12-12|Rename of old horde apps
www/horde-meta|www/horde3-meta|2012-12-12|Rename of old horde apps
x11-toolkits/fltk-threads|x11-toolkits/fltk|2012-12-12|Threads are on by default
x11-fonts/gentium|x11-fonts/gentium-plus|2012-12-15|Track upstream name changes
devel/pear-Horde_DataTree||2012-12-16|Obsolete in horde5
deskutils/doodle||2012-12-17|Has expired: Broken for more than 6 months
www/horde4-ansel|www/horde-ansel|2012-12-18|Move horde4-* apps to horde-*
www/horde4-base|www/horde-base|2012-12-18|Move horde4-* apps to horde-*
www/horde4-passwd|www/horde-passwd|2012-12-18|Move horde4-* apps to horde-*
www/horde4-wicked|www/horde-wicked|2012-12-18|Move horde4-* apps to horde-*
deskutils/horde4-groupware|deskutils/horde-groupware|2012-12-18|Move horde4-* apps to horde-*
deskutils/horde4-kronolith|deskutils/horde-kronolith|2012-12-18|Move horde4-* apps to horde-*
deskutils/horde4-mnemo|deskutils/horde-mnemo|2012-12-18|Move horde4-* apps to horde-*
deskutils/horde4-nag|deskutils/horde-nag|2012-12-18|Move horde4-* apps to horde-*
devel/horde4-content|devel/horde-content|2012-12-18|Move horde4-* apps to horde-*
devel/horde4-timeobjects|devel/horde-timeobjects|2012-12-18|Move horde4-* apps to horde-*
devel/horde4-whups|devel/horde-whups|2012-12-18|Move horde4-* apps to horde-*
ftp/horde4-gollem|ftp/horde-gollem|2012-12-18|Move horde4-* apps to horde-*
mail/horde4-imp|mail/horde-imp|2012-12-18|Move horde4-* apps to horde-*
mail/horde4-ingo|mail/horde-ingo|2012-12-18|Move horde4-* apps to horde-*
mail/horde4-turba|mail/horde-turba|2012-12-18|Move horde4-* apps to horde-*
mail/horde4-webmail|mail/horde-webmail|2012-12-18|Move horde4-* apps to horde-*
textproc/hs-xml2html||2012-12-20|Removed: this package is obsolete
sysutils/makefs||2012-12-21|Has expired: Part of base in an earlier version for every supported FreeBSD version
textproc/docproj-jadetex|textproc/docproj|2013-01-03|Moved: Replace by textproc/docproj
ports-mgmt/portmanager||2013-01-06|Has expired: Does not support modern ports features such as MOVED, is lacking upstream and active contributions, and does not support pkgng. Consider using ports-mgmt/portmaster, ports-mgmt/portupgrade or pkgng
net-im/openfetion||2013-01-06|Has expired: Abandoned upstream
textproc/libpathan||2013-01-06|Has expired: Does not build and upstream has discontinued the project and advises that it has been replaced by textproc/xqilla
java/sun-wtk||2013-01-06|Has expired: no more public distfiles, merged with Java ME SDK 3.0 upstream
databases/hypertable||2013-01-06|Has expired: Broken for more than 6 months
graphics/autopano-sift||2013-01-06|Has expired: Disappeared from vendor site. No longer required by graphics/hugin
misc/airoflash||2013-01-06|Has expired: Broken for more than 6 months
x11-themes/kde-icons-krystaline||2013-01-06|Has expired: Broken for more than 6 months
x11-themes/kde-icons-amaranth||2013-01-06|Has expired: Broken for more than 6 months
x11-themes/kde-icons-realistic||2013-01-06|Has expired: Broken for more than 6 months
x11/Terminal|x11/xfce4-terminal|2013-01-06|Project was renamed
textproc/p5-ack|textproc/ack|2013-01-06|Not just a perl module
sysutils/syslog-ng-rc|sysutils/syslog-ng-devel|2013-01-08|No longer used by our upline, use syslog-ng-devel instead
www/openbravoerp||2013-01-12|Has expired: incompatible with ant for building
devel/lbpp||2013-01-13|Has expired: Dead upstream since 2001
devel/titano||2013-01-13|Has expired: Dead upstream since 2001
games/py-anki|games/anki|2013-01-16|Project was merged
mail/claws-mail-synce||2013-01-16|Has expired: No longer supported by Claws Mail team
databases/postgresql-plpython|databases/postgresql90-plpython|2013-01-20|This port was split out to several versioned ports
net-mgmt/nfdump-devel||2013-01-22|Has expired: use nfdump instead
devel/p4v||2013-01-22|No longer publishes FreeBSD version
multimedia/libdvdplay||2013-01-27|Has expired: No more public_distfiles
www/p5-Bundle-Sledge||2013-01-27|Removed
devel/p5-Class-Fields||2013-01-27|Has expired: considered obsolete by upstream
databases/ruby-kyotocabinet||2013-01-27|Has expired: Broken for more than 6 months
x11-themes/kde-icons-amaranth-althaea||2013-01-27|Has expired: Broken for more than 6 months
net/bpfstat||2013-01-27|Has expired: Merge in netstat on all supported version of FreeBSD
x11-toolkits/fltk11||2013-01-27|Has expired: new code should use /x11-toolkits/fltk
sysutils/salt|sysutils/py-salt|2013-01-27|Rename to consistency with other Python ports
sysutils/salt-cloud|sysutils/py-salt-cloud|2013-01-27|Rename to consistency with other Python ports
deskutils/py-dosage|deskutils/dosage|2013-01-28|Rename - it's a standalone application
textproc/clucene-contrib|textproc/clucene|2013-01-28|Integrated into textproc/clucene
textproc/clucene-contrib|textproc/clucene|2013-01-28|Integrated into textproc/clucene
lang/erlang14||2013-01-30|Not needed; no issues came up with R15
www/tomcat55||2013-01-31|Has expired: EOL and unsupported upstream
net/samba-pdbsql||2013-01-31|Depends from the obsoleted net/samba34
net/samba35||2013-01-31|Obsoleted by net/samba36
devel/llvm29|devel/llvm|2013-02-01|Obsolete and unmaintained
lang/llvm-gcc4|lang/dragonegg46|2013-02-01|Obsolete and unmaintained
net-mgmt/nagiosgrapher||2013-02-02|Has expired: Deprecated upstream. Please use net-mgmt/pnp instead
x11-fm/x-files||2013-02-02|Has expired: Project has been abandoned
devel/kdebindings4-perl-perlkde|devel/p5-perlkde|2013-02-03|Renamed
devel/kdebindings4-perl-perlqt|devel/p5-perlqt|2013-02-03|Renamed
devel/kdebindings4-python-krosspython|devel/py-krosspython|2013-02-03|Renamed
devel/kdebindings4-python-pykde4|devel/py-pykde4|2013-02-03|Renamed
devel/kdebindings4-python-pykdeuic4|devel/py-pykdeuic4|2013-02-03|Renamed
devel/kdebindings4-ruby-korundum|devel/ruby-korundum|2013-02-03|Renamed
devel/kdebindings4-ruby-krossruby|devel/ruby-krossruby|2013-02-03|Renamed
devel/kdebindings4-ruby-qtruby|devel/ruby-qtruby|2013-02-03|Renamed
devel/kdebindings4-smoke-smokegen|devel/smokegen|2013-02-03|Renamed
devel/kdebindings4-smoke-smokekde|devel/smokekde|2013-02-03|Renamed
devel/kdebindings4-smoke-smokeqt|devel/smokeqt|2013-02-03|Renamed
net/freeradius||2013-02-04|Has expired: no longer supported. Please use net/freeradius2 instead
net/freeradius-mysql||2013-02-04|Has expired: no longer supported. Please use net/freeradius2 instead
multimedia/despotify||2013-02-04|Has expired: API no longer supported
irc/zircon||2013-02-04|Has expired: Project has been abandoned
math/lensnns||2013-02-04|Has expired: Project has been abandoned
lang/perl5.8||2013-02-04|Has expired: no longer under development, use lang/perl5.16 or lang/perl5.14
lang/perl5.10||2013-02-04|Has expired: no longer under development, use lang/perl5.16 or lang/perl5.14
net-mgmt/argus||2013-02-05|Has expired: Using of this branch of argus is discouraged. Please migrate to net-mgmt/argus3
net-mgmt/argus-clients||2013-02-05|Has expired: Using of this branch of argus-clients is discouraged. Please migrate to net-mgmt/argus3-clients
net/libcmis03|net/libcmis|2013-02-05|libcmis has been updated to 0.3
x11-toolkits/fltk2||2013-02-05|Has expired: No more public distfiles for version 2
devel/kBuild-devel||2013-02-05|Not required anymore; use devel/kBuild instead
games/freebsd-carddeck-kde4||2013-02-05|Has expired: deck file format is obsolete
japanese/vflib||2013-02-06|Has expired: No more public distfiles
graphics/py-visual||2013-02-06|Has expired: Depends on the expired x11-toolkits/gtkglarea
math/gnuplot+||2013-02-06|Upstream says: This package is obsolete. The author does not recommend to use it
science/vis5d+||2013-02-06|No new release since 2001, depends on expired x11-toolkits/gtkglarea
lang/tcl-modules||2013-02-06|Modules are now part of the base Tcl distributions
lang/tcl84-thread||2013-02-06|Threads are now enabled by default
lang/tcl85-thread||2013-02-06|Threads are now enabled by default
lang/tcl86-thread||2013-02-06|Threads are now enabled by default
x11-toolkits/tk84-thread||2013-02-06|Threads are now enabled by default
x11-toolkits/tk85-thread||2013-02-06|Threads are now enabled by default
x11-toolkits/tk86-thread||2013-02-06|Threads are now enabled by default
x11-fm/fsv||2013-02-14|Depends on expired x11-toolkits/gtkglarea
x11-toolkits/gtkglarea||2013-02-14|Has expired: No more public distfiles
graphics/solang||2013-02-14|Has expired: Broken for more than 6 months
math/octave-devel||2013-02-14|Has expired: Broken for more than 6 months
net/spnetkit||2013-02-14|Has expired: Broken for more than 6 months
devel/py-flakes|devel/py-pyflakes|2013-02-18|Renamed to correct upstream name
net/samba4-devel|net/samba4|2013-02-18|Renamed to reflect maturity of upstream version
net/libnet-devel|net/libnet|2013-02-18|Renamed to stable branch
x11-fm/tkdesk||2013-02-19|Obsolete and unmaintained, doesn't run
textproc/libmspub|print/libmspub|2013-02-21|Duplicate of print/libmspub
x11-drivers/xf86-video-intel29||2013-02-21|No longer supported
emulators/bsnes|emulators/higan|2013-02-22|Renamed upstream
sysutils/fio|benchmarks/fio|2013-02-22|Moved to benchmarks category
japanese/MT|www/MT|2013-02-23|Remove, because it was merged into main www/MT
french/MT|www/MT|2013-02-23|Remove, because it was merged into main www/MT
german/MT|www/MT|2013-02-23|Remove, because it was merged into main www/MT
dns/p5-Net-DNS-ZoneFile||2013-02-25|Now bundled with dns/p5-Net-DNS
textproc/stardict2-rptts|textproc/stardict-rptts|2013-02-25|Renamed
audio/laudio|audio/linux-laudio|2013-02-27|Renamed (Linux binary port)
multimedia/qt4-phonon||2013-02-27|Has expired: Qt 4.x uses multimedia/phonon
multimedia/qt4-phonon-gst||2013-02-27|Has expired: Qt 4.x uses multimedia/phonon-gstreamer
math/eigen||2013-02-27|Has expired: development for 1.x series has ceased, use math/eigen3 instead
multimedia/ffmpeg-011||2013-03-01|Has expired: replaced with 1.0.x, use multimedia/ffmpeg1 instead
ftp/ftp-tls||2013-03-02|Has expired: No longer maintained upstream
ftp/ftpd-tls||2013-03-02|Has expired: No longer maintained upstream
lang/eperl||2013-03-03|Has expired: Unfixed upstream remote vulnerability and no activity since 1998
x11-wm/e17-module-language||2013-03-03|Has expired: Deprecated upstream
x11-wm/e17-module-xkbswitch||2013-03-03|Has expired: Merged into x11-wm/enlightenment
x11-wm/e17-module-e-tiling||2013-03-03|Has expired: Deprecated upstream
x11-wm/e17-module-quickaccess||2013-03-03|Has expired: Merged into x11-wm/enlightenment
x11-wm/e17-module-tiling||2013-03-03|Has expired: Merged into x11-wm/enlightenment
x11-wm/e17-module-drawer||2013-03-03|Has expired: Deprecated upstream
x11-wm/e17-module-calendar||2013-03-03|Has expired: Deprecated upstream
x11/oooqs||2013-03-03|Has expired: For old OOo versions; uses kde3; unmaintained upstream; see x11/oooqs2
www/xpi-customizegoogle||2013-03-03|Has expired: Add-on has been discontinued
games/kimboot||2013-03-03|Has expired: no longer works
net-im/imcom||2013-03-03|Has expired: No more upstream, no more public distfiles
security/lep||2013-03-03|Has expired: No more upstream, no more public distfiles
devel/cvsmapfs||2013-03-03|Has expired: No more upstream, no more public distfiles
devel/sid||2013-03-03|Has expired: No more upstream, no more public distfiles
net-mgmt/nrpep||2013-03-03|Has expired: No more upstream, no more public distfiles
devel/py-ez_xml||2013-03-03|Has expired: No more upstream, no more public distfiles
security/IMHear||2013-03-03|Has expired: No more upstream, no more public distfiles
comms/scud||2013-03-03|Has expired: No more upstream, no more public distfiles
devel/lexi||2013-03-03|Has expired: No more upstream, no more public distfiles
games/pentix||2013-03-03|Has expired: No more upstream, no more public distfiles
net/py-mp-random||2013-03-03|Has expired: No more upstream, no more public distfiles
sysutils/rcsedit||2013-03-03|Has expired: No more upstream, no more public distfiles
sysutils/bsdsar||2013-03-03|Has expired: No more upstream, no more public distfiles
sysutils/sarah||2013-03-03|Has expired: No more upstream, no more public distfiles
www/igal||2013-03-03|Has expired: No more upstream, no more public distfiles, consider using www/llgal
finance/tinyerp-server||2013-03-03|Has expired: No more upstream, no more public distfiles, consider using finance/openerp-server
ports-mgmt/portcheck||2013-03-03|Has expired: No more upstream, no more public distfiles
security/sslproxy||2013-03-03|Has expired: Abandoned upstream
x11-themes/e17-theme-darkness||2013-03-03|Has expired: No more public distfiles
x11-themes/e17-theme-cthulhain||2013-03-03|Has expired: Dead upstream since 2008
x11-servers/driglide||2013-03-03|Has expired: 3dfx is dead, fails to compile on recent versions of FreeBSD
mail/gmime||2013-03-03|Has expired: superseded with version 2.4
archivers/bsdar||2013-03-03|Has expired: part of the base system now
misc/instant-server||2013-03-04|Removed: Non-essential meta port
sysutils/sge60||2013-03-06|Has expired: Ancient and unsupported release
sysutils/sge61||2013-03-06|Has expired: Ancient and unsupported release
x11-themes/sapphire-themes||2013-03-06|Has expired: Broken for more than 6 months
misc/fep||2013-03-06|Has expired: Broken for more than 6 months
devel/gauche-gaunit||2013-03-06|Has expired: Broken for more than 6 months
games/tuxracer_golf||2013-03-06|Has expired: Broken for more than 6 months
net/bfilter||2013-03-06|Has expired: Broken for more than 6 months
graphics/fnlib||2013-03-06|Has expired: Broken for more than 6 months
print/gfontview||2013-03-06|Has expired: Broken for more than 6 months
print/hugelatex||2013-03-06|Has expired: Broken for more than 6 months
misc/gtktalog||2013-03-06|Has expired: Broken for more than 6 months
x11/wterm||2013-03-06|Has expired: Broken for more than 6 months
databases/xapian-bindings10||2013-03-06|Has expired: Broken for more than 6 months
databases/adstudio||2013-03-06|Has expired: Broken for more than 6 months
misc/splitvt||2013-03-06|Has expired: Broken for more than 6 months
sysutils/udesc_dump||2013-03-06|Has expired: Broken for more than 6 months
textproc/gxditview||2013-03-06|Has expired: Broken for more than 6 months
x11/powershell||2013-03-06|Has expired: Broken for more than 6 months
devel/ZendOptimizer|www/pecl-zendoptimizerplus|2013-03-07|Replaced with supported open-source release
net-im/jreen|net-im/libjreen|2013-03-07|Duplicate of net-im/libjreen
databases/ruby-dbdbd||2013-03-08|Dead project, no known users
japanese/scim-mozc||2013-03-09|Google had dropped SCIM support from Mozc
net-p2p/transmission25|net-p2p/transmission|2013-03-09|gtk version is now fine
net-p2p/transmission25-cli|net-p2p/transmission-cli|2013-03-09|gtk version is now fine
net-p2p/transmission25-daemon|net-p2p/transmission-daemon|2013-03-09|gtk version is now fine
net-p2p/transmission25-gtk2|net-p2p/transmission-gtk2|2013-03-09|gtk version is now fine
net-p2p/transmission25-qt4|net-p2p/transmission-qt4|2013-03-09|gtk version is now fine
www/transmission25-web|www/transmission-web|2013-03-09|gtk version is now fine
net-p2p/transmission-gtk2|net-p2p/transmission-gtk|2013-03-09|Now uses GTK 3
ftp/proma||2013-03-09|Has expired: Broken for more than 6 months
vietnamese/vnelvis||2013-03-09|Has expired: Broken for more than 6 months
devel/rubygem-ncursesw||2013-03-09|Has expired: Broken for more than 6 months
www/wyvern||2013-03-09|Has expired: Broken for more than 6 months
devel/xlslib||2013-03-09|Has expired: Broken for more than 6 months
mail/firetray||2013-03-09|Has expired: Broken for more than 6 months
vietnamese/vnterm||2013-03-09|Has expired: Broken for more than 6 months
graphics/vid||2013-03-09|Has expired: Broken for more than 6 months
games/kye-data||2013-03-12|Deleted: Merged with games/kye
misc/gopod||2013-03-13|Has expired: does not work with modern iPods anymore
misc/gtk-gopod||2013-03-13|Has expired: does not work with modern iPods anymore
emulators/vmware-tools5||2013-03-14|Has expired: No more supported upstream
emulators/vmware-tools6||2013-03-14|Has expired: No more supported upstream
emulators/vmware-tools4||2013-03-14|Has expired: No more supported upstream
emulators/vmware-guestd4||2013-03-14|Has expired: No more supported upstream
emulators/linux-vmware-toolbox6||2013-03-14|Has expired: No more supported upstream
emulators/vmware-guestd6||2013-03-14|Has expired: No more supported upstream
emulators/linux-vmware-toolbox4||2013-03-14|Has expired: No more supported upstream
emulators/linux-vmware-toolbox5||2013-03-14|Has expired: No more supported upstream
emulators/vmware-guestd5||2013-03-14|Has expired: No more supported upstream
net-mgmt/zabbix-agent|net-mgmt/zabbix2-agent|2013-03-15|Has expired: no longer supported by upstream
net-mgmt/zabbix-frontend|net-mgmt/zabbix2-frontend|2013-03-15|Has expired: no longer supported by upstream
net-mgmt/zabbix-proxy|net-mgmt/zabbix2-proxy|2013-03-15|Has expired: no longer supported by upstream
net-mgmt/zabbix-server|net-mgmt/zabbix2-server|2013-03-15|Has expired: no longer supported by upstream
dns/h2n||2013-03-17|Removed: legally questionable and obsolete
french/gibi||2013-03-18|Removed: IGNORE for more than 6 months
finance/pfpro||2013-03-18|Removed: upstream no longer exists
finance/p5-PFProAPI||2013-03-18|Removed: upstream no longer exists
finance/p5-Business-OnlinePayment-PayflowPro||2013-03-18|Removed: upstream no longer exists
www/nspluginwrapper-devel||2013-03-19|Removed: superseded by www/nspluginwrapper
french/eficas_doc||2013-03-19|Removed: eficas is now able to open the documentation through a web browser so the PDF files are no longer included
archivers/zpaq|archivers/paq|2013-03-20|Part of archivers/paq
editors/openoffice.org-vcltesttool||2013-03-21|Removed: no longer used for OpenOffice QA
editors/openoffice-3-devel|editors/openoffice-devel|2013-03-21|Renamed to match current version number
devel/geany-plugin-gdb||2013-03-21|Removed from geany plugins distribution
www/kompozer||2013-03-22|Has expired: Dead upstream
graphics/fpc-fpvectorial||2013-03-23|Removed from freepascal packages distribution
databases/akonadi-google|deskutils/kdepim4-runtime|2013-03-24|Merged into deskutils/kdepim4-runtime
www/pecl-zendoptimizerplus|www/pecl-zendopcache|2013-03-27|Renamed
print/kdeutils4-printer-applet|print/kde4-print-manager|2013-03-27|Superseded by print/kde4-print-manager
print/system-config-printer-kde|print/kde4-print-manager|2013-03-27|Superseded by print/kde4-print-manager
science/py-biolccc|science/pyteomics.biolccc|2013-03-28|Renamed upstream
math/hs-Agda-executable||2013-03-29|Removed: it has become part of math/hs-Agda
mail/thunderbird-esr|mail/thunderbird|2013-04-03|Removed: Mozilla stopped providing 2 versions of thunderbird
mail/thunderbird-esr-i18n|mail/thunderbird-i18n|2013-04-03|Removed: Mozilla stopped providing 2 versions of thunderbird
www/mod_security21|www/mod_security|2013-04-16|Removed: outdated and had a vulnerability, consider using a newer version
www/linux-flashplugin9||2013-04-16|Has expired: Vulnerable, Broken for more than 6 months
www/p5-Apache-GopherHandler||2013-04-16|Has expired: Depends on p5-Net-Gopher which is deprecated and expired
net/p5-Gopher-Server||2013-04-16|Has expired: Depends on p5-Net-Gopher which is deprecated and expired
net/p5-Net-Gopher||2013-04-16|Has expired: gone from CPAN
x11-drivers/xf86-video-radeonhd-devel||2013-04-16|Has expired: Unsupported devel version
devel/ros-image_common||2013-04-16|Has expired: Depends on devel/ros_common which is broken for more than 6 months
devel/ros-laser_pipeline||2013-04-16|Has expired: Depends on devel/ros_common which is broken for more than 6 months
databases/php52-rrdtool||2013-04-16|Has expired: PHP 5.2 series is strongly discouraged for new installations, migrate now
devel/ros-common||2013-04-16|Has expired: Broken for more than 6 months
devel/goffice04||2013-04-16|Removed: No users, blocking libgsf update
devel/goffice06||2013-04-16|Removed: No users, blocking libgsf update
devel/goffice1||2013-04-16|Removed: Only one port user which has no user itself. blocking libgsf update
devel/present||2013-04-16|Removed: No users, blocking libgsf update
audio/icecast|audio/icecast2|2013-04-18|Has expired: Unmaintained upstream since 2004. Use audio/icecast2 instead
net-im/gajim-devel|net-im/gajim|2013-04-18|Has expired: This port is outdated for two years, no distfile available. Please use net-im/gajim instead
dns/bind97||2013-04-20|Has expired: No longer supported by ISC, use Bind 9.8 or 9.9
dns/bind97-sdb||2013-04-20|Has expired: No longer supported by ISC, use Bind 9.8 or 9.9
sysutils/grub||2013-04-22|Unmaintained and broken
sysutils/kgrubeditor||2013-04-22|Depends on broken and removed grub port
games/grubinvaders||2013-04-22|Depends on broken and removed grub port
lang/tcl83||2013-04-23|Has expired: No longer supported
x11-toolkits/tk83||2013-04-23|Has expired: No longer supported
print/psutils-a4|print/psutils|2013-04-24|Merged into print/psutils
print/psutils-letter|print/psutils|2013-04-24|Merged into print/psutils
editors/tamago-emacs21||2013-04-24|Removed: obsolete
devel/py-extended_threading||2013-04-26|Has expired: checksum mismatch; domain disappeared
databases/mysql41-server||2013-04-26|Unsupported upstream since 2009-12-31
databases/mysql41-client||2013-04-26|Unsupported upstream since 2009-12-31
databases/mysql41-scripts||2013-04-26|Unsupported upstream since 2009-12-31
databases/p5-DBD-mysql41||2013-04-26|Depends on databases/mysql41-server, which was removed
security/gnupg-idea|security/gnupg1|2013-04-26|Modules now included in GnuPG 1.4.13
print/c2ps-letter|print/c2ps|2013-04-27|Merged into print/c2ps
print/c2ps-a4|print/c2ps|2013-04-27|Merged into print/c2ps
print/lprps-letter|print/lprps|2013-04-27|Merged into print/lprps
print/lprps-a4|print/lprps|2013-04-27|Merged into print/lprps
graphics/jpeg2ps-letter|graphics/jpeg2ps|2013-04-27|Merged into graphics/jpeg2ps
graphics/jpeg2ps-a4|graphics/jpeg2ps|2013-04-27|Merged into graphics/jpeg2ps
print/a2ps-letter|print/a2ps|2013-04-27|Merged into print/a2ps
print/a2ps-letterdj|print/a2ps|2013-04-27|Merged into print/a2ps
print/a2ps-a4|print/a2ps|2013-04-27|Merged into print/a2ps
print/html2ps-letter|print/html2ps|2013-04-28|Merged into print/html2ps
print/html2ps-a4|print/html2ps|2013-04-28|Merged into print/html2ps
devel/libusb||2013-04-30|Has expired: has been already included into base system
www/typo346||2013-04-30|Has expired: Obsolete stable release
www/ilias3||2013-04-30|Has expired: Obsolete stable release
net-p2p/moodriver||2013-04-30|Has expired: Not supported by upstream, master site is down
www/p5-Dancer-Plugin-DataFu||2013-04-30|Has expired: No more public distfiles
devel/p5-Oogly||2013-04-30|Has expired: No more public distfiles
mail/listmanager||2013-04-30|Has expired: No more upstream, no more public distfiles
net-mgmt/nettop||2013-04-30|Has expired: Dead upstream
devel/ruby-term-ansicolor|devel/rubygem-term-ansicolor|2013-04-30|Moved to Rubygems
www/mediawiki|www/mediawiki119|2013-05-01|Rename mediawiki to mediawiki119
www/squid31||2013-05-01|Has expired: No longer actively maintained upstream
converters/ruby-bsdconv|converters/rubygem-bsdconv|2013-05-01|Moved to Rubygems
editors/nxml-emacs21||2013-05-02|Removed: obsolete
textproc/ruby-libxml||2013-05-02|Has expired: Does not work with Ruby 1.9
japanese/navi2ch-emacs21|japanese/navi2ch|2013-05-02|Removed: obsolete
japanese/navi2ch-xemacs21-mule|japanese/navi2ch|2013-05-02|Removed: obsolete
devel/py-libgsf||2013-05-05|No longer supported by newer libgsf version
devel/libgsf-gnome||2013-05-05|No longer supported by newer libgsf version
textproc/ruby-sablot||2013-05-07|Has expired: Does not work with Ruby 1.9
japanese/jisx0213-fonts|japanese/font-jisx0213|2013-05-08|Renamed
x11-drivers/xf86-video-ati613||2013-05-10|Has expired: Old version, use xf86-video-ati instead
devel/u-boot|devel/uboot-mkimage|2013-05-11|Port does not build full uboot distribution, only mkimage
misc/py-xdelta3||2013-05-13|No longer actively maintained upstream
devel/py-celementtree||2013-05-16|Included into all supported python versions as xml.etree.cElementTree
textproc/p5-KinoSearch||2013-05-16|Replaced by textproc/p5-KinoSearch1
converters/R-cran-xtable||2013-05-17|Removed
science/py-obspy.db||2013-05-17|Removed: Use science/py-obspy instead
science/py-obspy.gse2||2013-05-17|Removed: Use science/py-obspy instead
science/py-obspy.imaging||2013-05-17|Removed: Use science/py-obspy instead
science/py-obspy.iris||2013-05-17|Removed: Use science/py-obspy instead
science/py-obspy.mseed||2013-05-17|Removed: Use science/py-obspy instead
science/py-obspy.signal||2013-05-17|Removed: Use science/py-obspy instead
science/py-obspy.taup||2013-05-17|Removed: Use science/py-obspy instead
science/py-obspy.wav||2013-05-17|Removed: Use science/py-obspy instead
science/py-obspy.xseed||2013-05-17|Removed: Use science/py-obspy instead
science/py-obspy-core|science/py-obspy|2013-05-17|Use science/py-obspy instead
mail/sendmail-ldap|mail/sendmail|2013-05-17|Removed: Use mail/sendmail instead
databases/innobackup|databases/xtrabackup|2013-05-18|Removed: Use databases/xtrabackup instead
audio/gogo-petit||2013-05-20|Has expired: No more public distfiles
x11-wm/transset-df|x11-wm/transset|2013-05-20|Project was renamed
print/yatex-xemacs||2013-05-21|Removed: obsolete
devel/php5-phing|devel/pear-phing|2013-05-21|Replaced by devel/pear-phing
emulators/hfsutils|sysutils/hfsutils|2013-05-23|Moved to a better category
devel/lfc|devel/lfcbase|2013-05-23|Rename to avoid package conflicts
sysutils/rsyslog5||2013-05-25|Removed: use sysutils/rsyslog7
sysutils/rsyslog5-dbi||2013-05-25|Removed: use sysutils/rsyslog7
sysutils/rsyslog5-gnutls||2013-05-25|Removed: use sysutils/rsyslog7
sysutils/rsyslog5-gssapi||2013-05-25|Removed: use sysutils/rsyslog7
sysutils/rsyslog5-mysql||2013-05-25|Removed: use sysutils/rsyslog7
sysutils/rsyslog5-pgsql||2013-05-25|Removed: use sysutils/rsyslog7
sysutils/rsyslog5-relp||2013-05-25|Removed: use sysutils/rsyslog7
sysutils/rsyslog5-rfc3195||2013-05-25|Removed: use sysutils/rsyslog7
sysutils/rsyslog5-snmp||2013-05-25|Removed: use sysutils/rsyslog7
accessibility/linux-atk||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
archivers/linux-ucl||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
archivers/linux-upx||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
audio/linux-alsa-lib||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
audio/linux-arts||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
audio/linux-esound||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
audio/linux-freealut||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
audio/linux-libaudiofile||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
audio/linux-libmad||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
audio/linux-libogg||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
audio/linux-libvorbis||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
audio/linux-mikmod||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
audio/linux-nas-libs||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
audio/linux-openal||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
audio/linux-sdl_mixer||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
devel/linux-allegro||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
devel/linux-libglade||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
devel/linux-libglade2||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
devel/linux-libsigc++20||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
devel/linux-sdl12||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
emulators/linux-libaio||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
emulators/linux_base-fc4||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
ftp/linux-curl||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
graphics/linux-cairo||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
graphics/linux-gdk-pixbuf||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
graphics/linux-imlib||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
graphics/linux-jpeg||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
graphics/linux-libGLU||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
graphics/linux-libmng||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
graphics/linux-png||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
graphics/linux-png10||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
graphics/linux-sdl_image||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
graphics/linux-tiff||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
graphics/linux-ungif||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
lang/linux-libg2c||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
multimedia/linux-libtheora||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
security/linux-openssl||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
sysutils/linux-procps||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
textproc/linux-aspell||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
textproc/linux-expat||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
textproc/linux-libxml||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
textproc/linux-libxml2||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
textproc/linux-scim-gtk||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
textproc/linux-scim-libs||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
textproc/linux-xerces-c2||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
x11/linux-xorg-libs||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
x11-fonts/linux-fontconfig||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
x11-toolkits/linux-gtk||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
x11-toolkits/linux-gtk2||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
x11-toolkits/linux-openmotif||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
x11-toolkits/linux-pango||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
x11-toolkits/linux-qt33||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life
irc/bitchx-devel|irc/bitchx|2013-05-31|Release finally cut
www/rubygem-selnium-webdriver|www/rubygem-selenium-webdriver|2013-06-01|Fix typo in port name
mail/p5-vpopmail||2013-06-03|Has expired: Broken for more than 6 months
mail/vodmr||2013-06-03|Has expired: depends on expired mail/p5-vpopmail
devel/libzrtp||2013-06-03|Has expired: No more public distfiles
mail/postfix26||2013-06-03|Has expired: No longer supported by upstream
devel/i386-rtems-gcc||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/mips-rtems-gcc||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/arm-rtems-gcc||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/sh-rtems-gcc||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/powerpc-rtems-gcc||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/sparc-rtems-gcc||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/mips-rtems-binutils||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/i386-rtems-binutils||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/sh-rtems-binutils||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/powerpc-rtems-binutils||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/sparc-rtems-binutils||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/arm-rtems-binutils||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/m68k-rtems-binutils||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/m68k-rtems-gcc||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/sh-rtems-gdb||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/m68k-rtems-gdb||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/i386-rtems-gdb||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/arm-rtems-gdb||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/sparc-rtems-gdb||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/mips-rtems-gdb||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
devel/powerpc-rtems-gdb||2013-06-03|Has expired: many issues; see https://www.rtems.org/bugzilla/show_bug.cgi?id=2099
databases/php-sqlite3||2013-06-03|Has expired: No upstream development and superseded by databases/php5-sqlite3 and databases/php53-sqlite3
databases/mysql50-server||2013-06-04|Unsupported upstream since 2012-01-09
databases/mysql50-client||2013-06-04|Unsupported upstream since 2012-01-09
databases/mysql50-scripts||2013-06-04|Unsupported upstream since 2012-01-09
databases/p5-DBD-mysql50||2013-06-04|Depends on databases/mysql50-server, which was removed
databases/postgresql83-client||2013-06-04|Has expired: Update to supported version
databases/postgresql83-contrib||2013-06-04|Has expired: Update to supported version
databases/postgresql83-docs||2013-06-04|Has expired: Update to supported version
databases/postgresql83-plperl||2013-06-04|Has expired: Update to supported version
databases/postgresql83-plpython||2013-06-04|Has expired: Update to supported version
databases/postgresql83-pltcl||2013-06-04|Has expired: Update to supported version
databases/postgresql83-server||2013-06-04|Has expired: Update to supported version
deskutils/msynctool-devel|deskutils/osynctool|2013-06-04|Development of msynctool ceased and project was renamed
www/hs-yesod-default||2013-06-04|Removed: This package is obsoleted since Yesod 1.2
www/hs-yesod-json||2013-06-04|Removed: This package is obsoleted since Yesod 1.2
security/fwtk||2013-06-04|Removed: No more public distfiles
net/samba34|net/samba36|2013-06-04|Removed: Unmaintained by upstream
devel/linux-js||2013-06-04|Has expired: Broken for more than 6 months
emulators/osmose||2013-06-04|Removed: depends on expired devel/linux-js
security/pam_authsrv||2013-06-04|Removed: depends on expired and removed security/fwtk
emulators/linux-xjoypad||2013-06-05|Removed: depend on expired devel/linux-js, consider using emulators/joytran instead
lang/elisp-manual||2013-06-05|Has expired: Broken for more than 6 months
sysutils/sge62||2013-06-05|Has expired: Ancient and unsupported release
x11-toolkits/ruby-wx||2013-06-07|Has expired: Does not work with Ruby 1.9
sysutils/userspace-rcu|sysutils/liburcu|2013-06-07|Renamed correctly according to upstream
mail/mixminion||2013-06-07|Has expired: This port requires python version, we haven't in the ports tree already
devel/gprbuild-aux|devel/gprbuild|2013-06-10|Has expired: Deprecated in favor of devel/gprbuild
devel/linuxthreads||2013-06-10|Has expired: Broken for more than 6 months
mail/claws-mail-gtkhtml2_viewer|mail/claws-mail-fancy|2013-06-11|Has expired: No longer maintained, please use mail/claws-mail-fancy instead
mail/claws-mail-cachesaver||2013-06-11|Has expired: No longer maintained by Claws Mail team
deskutils/contacts||2013-06-13|Has expired: upstream project discontinued for years, upstream sources are gone
www/libxul19|www/libxul|2013-06-15|Has been vulnerable for a long time, unsupported upstream
chinese/cxterm||2013-06-17|Has expired: does not compile
games/rtcw|games/linux-rtcw|2013-06-18|Renamed (Linux binary port)
multimedia/p5-Video-Info||2013-06-19|Has expired: Broken for more than 6 months
net-p2p/p5-pdonkey||2013-06-19|Removed: depends on expired multimedia/p5-Video-Info
lang/boo||2013-06-19|Has expired: Broken for more than 6 months
math/petsc-mpich||2013-06-19|Has expired: Broken for more than 6 months
databases/py-MySQLdb41||2013-06-19|Depends on databases/mysql41-client, which was removed
databases/py-MySQLdb50||2013-06-19|Depends on databases/mysql50-client, which was removed
devel/bugzilla|devel/bugzilla40|2013-06-20|Renamed
emulators/fceu-server|emulators/fceux|2013-06-21|Has expired: Replaced by emulators/fceux
graphics/py-graphillion|math/py-graphillion|2013-06-22|Correct category assignment
net-im/mikutter003||2013-06-23|Obsolete: Use net-im/mikutter instead of this
www/rubygem-addressable22||2013-06-23|Removed
textproc/freegrep||2013-06-27|Has expired: included in base
www/siteatschool||2013-06-30|Has expired: Unmaintained upstream
textproc/romdict||2013-06-30|Has expired: Upstream the project seems dead for years
www/dillo-i18n||2013-06-30|Has expired: dillo1 is no longer actively maintained. Please consider using www/dillo2 which has full UTF-8 support
www/dillo||2013-06-30|Has expired: dillo1 is no longer actively maintained. Please consider using www/dillo2 instead
comms/qfaxreader||2013-06-30|Has expired: No activity upstream since 2006; uses Qt 3.x
net/openldap23-sasl-client||2013-07-01|Has expired: Unmaintained by upstream
net/openldap23-server||2013-07-01|Has expired: Unmaintained by upstream
net/openldap23-client||2013-07-01|Has expired: Unmaintained by upstream
www/py-django13||2013-07-01|Has expired: Unsupported version
devel/libtifiles|devel/libtifiles2|2013-07-01|Has expired: Superseded by devel/libtifiles2
comms/libticables|comms/libticables2|2013-07-01|Has expired: Superseded by comms/libticables2
devel/libticalcs|comms/libticalcs2|2013-07-01|Has expired: Superseded by comms/libticalcs2
emulators/tiemu2|emulators/tiemu3|2013-07-01|Has expired: Superseded by emulators/tiemu3
graphics/linux_dri|graphics/linux-f10-dri|2013-07-03|Superseded by graphics/linux-f10-dri
graphics/linux-dri74|graphics/linux-f10-dri|2013-07-03|Superseded by graphics/linux-f10-dri
games/gnomememoryblocks||2013-07-04|Has expired: Unsupported upstream
devel/py-reddit||2013-07-07|Has been removed from PyPI, Use www/py-praw
games/speakinghangman||2013-07-07|Has expired: No more public distfiles
security/pinentry-qt||2013-07-09|Removed: Qt 3.x ports have expired
games/nethack34-qt|games/nethack34-gnome|2013-07-09|Uses unsupported Qt version
audio/gdam||2013-07-10|Has expired: Broken for a while
devel/gnome-vfs1||2013-07-10|Has expired: No more depend on, No more supported upstream
textproc/ua-ispell|ukrainian/ispell|2013-07-10|Removed because it has been moved to ukrainian/ispell 12 years ago
security/openvpn20|security/openvpn|2013-07-11|Has expired: Superseded by security/openvpn
databases/embedded_innodb||2013-07-11|Has expired: The Embedded InnoDB project was terminated a few years ago
print/lyx16|print/lyx|2013-07-11|Has expired: Unmaintained upstream, upgrading to the 2.x series is advised
security/py-crack|security/py-cracklib|2013-07-11|Has expired: Superseded by security/py-cracklib
x11-toolkits/linux-f10-qt33||2013-07-12|Removed
net/urtwn-firmware-kmod||2013-07-12|Removed, part of base as of r253139
benchmarks/polygraph31||2013-07-13|Has expired: Broken since March 2010
net/avahi-qt3||2013-07-13|Depends on the expired Qt 3.x port
www/xpi-gwt-dev-plugin||2013-07-15|Has expired: Requires an ancient version of Firefox to build
security/pyobfsproxy|security/obfsproxy|2013-07-15|Rename
devel/kdevelop-custom-buildsystem||2013-07-17|Has expired: part of devel/kdevelop-kde4 now
ftp/p5-curl|www/p5-WWW-Curl|2013-07-17|Duplicate
editors/code-browser||2013-07-18|Removed
lang/copper||2013-07-18|Removed
x11-themes/linux-gtk-bluecurve-theme||2013-07-18|Removed, requires Linux FC3
misc/rabbit|misc/rubygem-rabbit|2013-07-24|Moved to Rubygems
sysutils/rsyslog6-devel-pgsql|sysutils/rsyslog7|2013-07-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-devel-gnutls|sysutils/rsyslog7|2013-07-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-devel-snmp|sysutils/rsyslog7|2013-07-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-devel-rfc3195|sysutils/rsyslog7|2013-07-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-devel-mysql|sysutils/rsyslog7|2013-07-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-devel-relp|sysutils/rsyslog7|2013-07-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-devel-dbi|sysutils/rsyslog7|2013-07-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-devel-gssapi|sysutils/rsyslog7|2013-07-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-devel|sysutils/rsyslog7|2013-07-25|Has expired: Use sysutils/rsyslog7
graphics/allegrogl||2013-07-26|Now part of devel/allegro
accessibility/kdeaccessibility||2013-07-26|Has expired: Depends on Qt 3.x
arabic/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
archivers/kbackup||2013-07-26|Has expired: Depends on Qt 3.x
archivers/kio_p7zip||2013-07-26|Has expired: Depends on Qt 3.x
astro/celestia-kde||2013-07-26|Has expired: Depends on Qt 3.x
astro/orsa||2013-07-26|Has expired: Depends on Qt 3.x
audio/amarok||2013-07-26|Has expired: Depends on Qt 3.x
audio/amarok-fs||2013-07-26|Has expired: Depends on Qt 3.x
audio/arts||2013-07-26|Has expired: Depends on Qt 3.x
audio/cheesetracker||2013-07-26|Has expired: Depends on Qt 3.x
audio/cynthiune||2013-07-26|Has expired: Depends on Qt 3.x
audio/ermixer||2013-07-26|Has expired: Depends on Qt 3.x
audio/k3bmonkeyaudioplugin||2013-07-26|Has expired: Depends on Qt 3.x
audio/kid3||2013-07-26|Has expired: Depends on Qt 3.x
audio/kirocker||2013-07-26|Has expired: Depends on Qt 3.x
audio/kmp||2013-07-26|Has expired: Depends on Qt 3.x
audio/lplayer||2013-07-26|Has expired: Depends on Qt 3.x
audio/madman||2013-07-26|Has expired: Depends on Qt 3.x
audio/mpeglib_artsplug||2013-07-26|Has expired: Depends on Qt 3.x
audio/prokyon3||2013-07-26|Has expired: Depends on Qt 3.x
audio/xmms-kde||2013-07-26|Has expired: Depends on Qt 3.x
audio/yammi||2013-07-26|Has expired: Depends on Qt 3.x
biology/xdrawchem||2013-07-26|Has expired: Depends on Qt 3.x
cad/opencascade-tutorial||2013-07-26|Has expired: Depends on Qt 3.x
cad/vipec||2013-07-26|Has expired: Depends on Qt 3.x
chinese/kde3-i18n-zh_CN||2013-07-26|Has expired: Depends on Qt 3.x
chinese/kde3-i18n-zh_TW||2013-07-26|Has expired: Depends on Qt 3.x
comms/kallers||2013-07-26|Has expired: Depends on Qt 3.x
comms/kmobiletools||2013-07-26|Has expired: Depends on Qt 3.x
comms/kpsk||2013-07-26|Has expired: Depends on Qt 3.x
comms/ktrack||2013-07-26|Has expired: Depends on Qt 3.x
converters/ktextdecode||2013-07-26|Has expired: Depends on Qt 3.x
databases/kmysqladmin||2013-07-26|Has expired: Depends on Qt 3.x
databases/knoda||2013-07-26|Has expired: Depends on Qt 3.x
databases/ksqlanalyzer||2013-07-26|Has expired: Depends on Qt 3.x
databases/ksqlshell||2013-07-26|Has expired: Depends on Qt 3.x
databases/mysql-navigator||2013-07-26|Has expired: Depends on Qt 3.x
databases/qt-mysql-plugin||2013-07-26|Has expired: Depends on Qt 3.x
databases/qt-odbc-plugin||2013-07-26|Has expired: Depends on Qt 3.x
databases/qt-pgsql-plugin||2013-07-26|Has expired: Depends on Qt 3.x
databases/qt-sqlite-plugin||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/bookreader||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/dragstack||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/karamba||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/katapult||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/kbirthday||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/kblticker||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/kchm||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/kchmviewer||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/kdepim3||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/kdissert||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/kickpim||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/klipoquery||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/kluje||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/kmatrix3d||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/knowit||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/kompose||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/kooldock||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/krefty||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/krss||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/ksmoothdock||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/metabar||2013-07-26|Has expired: Depends on Qt 3.x
deskutils/snotes||2013-07-26|Has expired: Depends on Qt 3.x
devel/bouml||2013-07-26|Has expired: Depends on Qt 3.x
devel/crossvc||2013-07-26|Has expired: Depends on Qt 3.x
devel/dbus-qt3||2013-07-26|Has expired: Depends on Qt 3.x
devel/esvn||2013-07-26|Has expired: Depends on Qt 3.x
devel/kdesdk3||2013-07-26|Has expired: Depends on Qt 3.x
devel/kdevelop||2013-07-26|Has expired: Depends on Qt 3.x
devel/kodos||2013-07-26|Has expired: Depends on Qt 3.x
devel/kprof||2013-07-26|Has expired: Depends on Qt 3.x
devel/kscope||2013-07-26|Has expired: Depends on Qt 3.x
devel/pikdev||2013-07-26|Has expired: Depends on Qt 3.x
devel/qsa||2013-07-26|Has expired: Depends on Qt 3.x
devel/qssl||2013-07-26|Has expired: Depends on Qt 3.x
devel/subcommander||2013-07-26|Has expired: Depends on Qt 3.x
editors/f4l||2013-07-26|Has expired: Depends on Qt 3.x
editors/kate-plugins||2013-07-26|Has expired: Depends on Qt 3.x
editors/kile||2013-07-26|Has expired: Depends on Qt 3.x
editors/klat||2013-07-26|Has expired: Depends on Qt 3.x
editors/kxmleditor||2013-07-26|Has expired: Depends on Qt 3.x
editors/rospell||2013-07-26|Has expired: Depends on Qt 3.x
finance/eqonomize-kde3||2013-07-26|Has expired: Depends on Qt 3.x
finance/kexchange||2013-07-26|Has expired: Depends on Qt 3.x
finance/khacc||2013-07-26|Has expired: Depends on Qt 3.x
finance/kmymoney2||2013-07-26|Has expired: Depends on Qt 3.x
finance/qtstalker||2013-07-26|Has expired: Depends on Qt 3.x
french/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
ftp/kasablanca||2013-07-26|Has expired: Depends on Qt 3.x
ftp/kbear||2013-07-26|Has expired: Depends on Qt 3.x
ftp/kftpgrabber||2013-07-26|Has expired: Depends on Qt 3.x
ftp/kpum||2013-07-26|Has expired: Depends on Qt 3.x
games/atlantikdesigner||2013-07-26|Has expired: Depends on Qt 3.x
games/blackjack||2013-07-26|Has expired: Depends on Qt 3.x
games/easysok||2013-07-26|Has expired: Depends on Qt 3.x
games/ggz-kde-client||2013-07-26|Has expired: Depends on Qt 3.x
games/kamikaze||2013-07-26|Has expired: Depends on Qt 3.x
games/kbilliards||2013-07-26|Has expired: Depends on Qt 3.x
games/kdegames3||2013-07-26|Has expired: Depends on Qt 3.x
games/kfreerings||2013-07-26|Has expired: Depends on Qt 3.x
games/kmastermind||2013-07-26|Has expired: Depends on Qt 3.x
games/knights||2013-07-26|Has expired: Depends on Qt 3.x
games/kpicframer||2013-07-26|Has expired: Depends on Qt 3.x
games/kpictorial||2013-07-26|Has expired: Depends on Qt 3.x
games/kpuzzle||2013-07-26|Has expired: Depends on Qt 3.x
games/ktritoc||2013-07-26|Has expired: Depends on Qt 3.x
games/kwappen||2013-07-26|Has expired: Depends on Qt 3.x
games/pinedit||2013-07-26|Has expired: Depends on Qt 3.x
games/q15||2013-07-26|Has expired: Depends on Qt 3.x
games/qnetchess||2013-07-26|Has expired: Depends on Qt 3.x
games/spacehulk||2013-07-26|Has expired: Depends on Qt 3.x
games/stroq||2013-07-26|Has expired: Depends on Qt 3.x
games/taxipilot||2013-07-26|Has expired: Depends on Qt 3.x
german/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
german/kheisereg||2013-07-26|Has expired: Depends on Qt 3.x
german/ksteak||2013-07-26|Has expired: Depends on Qt 3.x
graphics/albumshaper||2013-07-26|Has expired: Depends on Qt 3.x
graphics/amanith||2013-07-26|Has expired: Depends on Qt 3.x
graphics/digikam||2013-07-26|Has expired: Depends on Qt 3.x
graphics/digikam-doc||2013-07-26|Has expired: Depends on Qt 3.x
graphics/divxcalc||2013-07-26|Has expired: Depends on Qt 3.x
graphics/ecg2png||2013-07-26|Has expired: Depends on Qt 3.x
graphics/flip||2013-07-26|Has expired: Depends on Qt 3.x
graphics/fractorama||2013-07-26|Has expired: Depends on Qt 3.x
graphics/gwenview||2013-07-26|Has expired: Depends on Qt 3.x
graphics/imgseek||2013-07-26|Has expired: Depends on Qt 3.x
graphics/kalbum||2013-07-26|Has expired: Depends on Qt 3.x
graphics/kamera||2013-07-26|Has expired: Depends on Qt 3.x
graphics/kbarcode||2013-07-26|Has expired: Depends on Qt 3.x
graphics/kdegraphics3||2013-07-26|Has expired: Depends on Qt 3.x
graphics/kipi-plugins||2013-07-26|Has expired: Depends on Qt 3.x
graphics/kisomandel||2013-07-26|Has expired: Depends on Qt 3.x
graphics/kooka||2013-07-26|Has expired: Depends on Qt 3.x
graphics/kradview||2013-07-26|Has expired: Depends on Qt 3.x
graphics/kuickshow||2013-07-26|Has expired: Depends on Qt 3.x
graphics/landscape||2013-07-26|Has expired: Depends on Qt 3.x
graphics/libkdcraw||2013-07-26|Has expired: Depends on Qt 3.x
graphics/libkexif||2013-07-26|Has expired: Depends on Qt 3.x
graphics/libkexiv2||2013-07-26|Has expired: Depends on Qt 3.x
graphics/libkipi||2013-07-26|Has expired: Depends on Qt 3.x
graphics/libqglviewer||2013-07-26|Has expired: Depends on Qt 3.x
graphics/libx3dtk||2013-07-26|Has expired: Depends on Qt 3.x
graphics/potracegui||2013-07-26|Has expired: Depends on Qt 3.x
graphics/py-amanith||2013-07-26|Has expired: Depends on Qt 3.x
graphics/showimg||2013-07-26|Has expired: Depends on Qt 3.x
graphics/xenomorph||2013-07-26|Has expired: Depends on Qt 3.x
hebrew/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
hungarian/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
irc/eggcreator||2013-07-26|Has expired: Depends on Qt 3.x
irc/kmyirc||2013-07-26|Has expired: Depends on Qt 3.x
irc/konversation||2013-07-26|Has expired: Depends on Qt 3.x
irc/kwirc||2013-07-26|Has expired: Depends on Qt 3.x
japanese/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
korean/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
lang/gambas||2013-07-26|Has expired: Depends on Qt 3.x
lang/klogoturtle||2013-07-26|Has expired: Depends on Qt 3.x
mail/kcheckgmail||2013-07-26|Has expired: Depends on Qt 3.x
math/digitizer||2013-07-26|Has expired: Depends on Qt 3.x
math/fung-calc||2013-07-26|Has expired: Depends on Qt 3.x
math/koctave||2013-07-26|Has expired: Depends on Qt 3.x
math/kseg||2013-07-26|Has expired: Depends on Qt 3.x
math/pgcalc||2013-07-26|Has expired: Depends on Qt 3.x
math/qwtplot3d||2013-07-26|Has expired: Depends on Qt 3.x
math/rkward||2013-07-26|Has expired: Depends on Qt 3.x
math/xgfe||2013-07-26|Has expired: Depends on Qt 3.x
misc/gwenview-i18n||2013-07-26|Has expired: Depends on Qt 3.x
misc/k3b-i18n||2013-07-26|Has expired: Depends on Qt 3.x
misc/kaddressbook-plugins||2013-07-26|Has expired: Depends on Qt 3.x
misc/katalog||2013-07-26|Has expired: Depends on Qt 3.x
misc/kbfx||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-af||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-az||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-be||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-bg||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-bn||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-br||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-bs||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-ca||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-cs||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-csb||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-cy||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-da||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-el||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-en_GB||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-eo||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-es||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-et||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-eu||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-fa||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-fi||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-fy||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-ga||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-gl||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-hi||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-hr||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-is||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-it||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-kk||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-km||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-lt||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-lv||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-mk||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-mn||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-ms||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-nb||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-nds||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-nl||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-nn||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-pa||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-ro||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-rw||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-se||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-sk||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-sl||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-sr||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-sr_Latn||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-ss||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-sv||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-ta||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-te||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-tg||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-th||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-tr||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-uz||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-ven||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-wa||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-xh||2013-07-26|Has expired: Depends on Qt 3.x
misc/kde3-i18n-zu||2013-07-26|Has expired: Depends on Qt 3.x
misc/kdeaddons3||2013-07-26|Has expired: Depends on Qt 3.x
misc/kdeedu3||2013-07-26|Has expired: Depends on Qt 3.x
misc/kdehier||2013-07-26|Has expired: Depends on Qt 3.x
misc/kdeutils3||2013-07-26|Has expired: Depends on Qt 3.x
misc/kfile-plugins||2013-07-26|Has expired: Depends on Qt 3.x
misc/kicker-applets||2013-07-26|Has expired: Depends on Qt 3.x
misc/knewsticker-scripts||2013-07-26|Has expired: Depends on Qt 3.x
misc/konq-plugins||2013-07-26|Has expired: Depends on Qt 3.x
misc/krecipes||2013-07-26|Has expired: Depends on Qt 3.x
misc/ksig||2013-07-26|Has expired: Depends on Qt 3.x
misc/kwatch||2013-07-26|Has expired: Depends on Qt 3.x
misc/renamedlgplugins||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/bmp-extra-plugins||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/dvdauthorwizard||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/grpplaylist||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/k9copy||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/kdemultimedia3||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/kmenc15||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/kmplayer||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/konverter||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/kplayer||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/ksubeditor||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/mandvd||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/noatun-plugins||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/qdvdauthor||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/subtitlecomposer||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/transkode||2013-07-26|Has expired: Depends on Qt 3.x
multimedia/xine_artsplugin||2013-07-26|Has expired: Depends on Qt 3.x
net/cphone||2013-07-26|Has expired: Depends on Qt 3.x
net/kdenetwork3||2013-07-26|Has expired: Depends on Qt 3.x
net/kiax||2013-07-26|Has expired: Depends on Qt 3.x
net/knemo||2013-07-26|Has expired: Depends on Qt 3.x
net/kphone||2013-07-26|Has expired: Depends on Qt 3.x
net/krdesktop||2013-07-26|Has expired: Depends on Qt 3.x
net/lanbrowsing||2013-07-26|Has expired: Depends on Qt 3.x
net/pppload||2013-07-26|Has expired: Depends on Qt 3.x
net/smb4k||2013-07-26|Has expired: Depends on Qt 3.x
net/twinkle||2013-07-26|Has expired: Depends on Qt 3.x
net-im/eva||2013-07-26|Has expired: Depends on Qt 3.x
net-im/kmerlin||2013-07-26|Has expired: Depends on Qt 3.x
net-im/kmess||2013-07-26|Has expired: Depends on Qt 3.x
net-im/konverse||2013-07-26|Has expired: Depends on Qt 3.x
net-im/kopete||2013-07-26|Has expired: Depends on Qt 3.x
net-im/kpopup||2013-07-26|Has expired: Depends on Qt 3.x
net-im/sim-im||2013-07-26|Has expired: Depends on Qt 3.x
net-im/sim-im-devel||2013-07-26|Has expired: Depends on Qt 3.x
net-im/trix||2013-07-26|Has expired: Depends on Qt 3.x
net-mgmt/tork||2013-07-26|Has expired: Depends on Qt 3.x
net-p2p/kmldonkey||2013-07-26|Has expired: Depends on Qt 3.x
net-p2p/ktorrent2||2013-07-26|Has expired: Depends on Qt 3.x
net-p2p/qtella||2013-07-26|Has expired: Depends on Qt 3.x
net-p2p/qtorrent||2013-07-26|Has expired: Depends on Qt 3.x
news/klibido||2013-07-26|Has expired: Depends on Qt 3.x
polish/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
ports-mgmt/kports||2013-07-26|Has expired: Depends on Qt 3.x
ports-mgmt/qtpkg||2013-07-26|Has expired: Depends on Qt 3.x
portuguese/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
portuguese/kde3-i18n-pt_BR||2013-07-26|Has expired: Depends on Qt 3.x
print/cjk-lyx||2013-07-26|Has expired: Depends on Qt 3.x
print/kcdlabel||2013-07-26|Has expired: Depends on Qt 3.x
print/mapagi||2013-07-26|Has expired: Depends on Qt 3.x
russian/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
russian/ksocrat||2013-07-26|Has expired: Depends on Qt 3.x
science/gsystem||2013-07-26|Has expired: Depends on Qt 3.x
science/kmovisto||2013-07-26|Has expired: Depends on Qt 3.x
science/kst||2013-07-26|Has expired: Depends on Qt 3.x
security/kgpg||2013-07-26|Has expired: Depends on Qt 3.x
security/klamav||2013-07-26|Has expired: Depends on Qt 3.x
security/kopete-otr||2013-07-26|Has expired: Depends on Qt 3.x
security/kovpn||2013-07-26|Has expired: Depends on Qt 3.x
security/kssh||2013-07-26|Has expired: Depends on Qt 3.x
security/qca-tls||2013-07-26|Has expired: Depends on Qt 3.x
security/qtfw||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/filelight||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/k3b||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/kcpuload||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/kdeadmin3||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/keep||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/kgtk||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/kkbswitch||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/kkeyled||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/klaptopdaemon||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/kleansweep||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/klineakconfig||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/kmilo||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/knutclient||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/komparator||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/krename||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/kshutdown||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/ksynaptics||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/lineak-kdeplugins||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/luma||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/pwg||2013-07-26|Has expired: Depends on Qt 3.x
sysutils/spassgen||2013-07-26|Has expired: Depends on Qt 3.x
textproc/kbedic||2013-07-26|Has expired: Depends on Qt 3.x
textproc/skim||2013-07-26|Has expired: Depends on Qt 3.x
textproc/uim-kde||2013-07-26|Has expired: Depends on Qt 3.x
textproc/uim-qt||2013-07-26|Has expired: Depends on Qt 3.x
ukrainian/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
vietnamese/kde3-i18n||2013-07-26|Has expired: Depends on Qt 3.x
www/kdewebdev||2013-07-26|Has expired: Depends on Qt 3.x
www/khtml2png||2013-07-26|Has expired: Depends on Qt 3.x
x11/kde-lite||2013-07-26|Has expired: Depends on Qt 3.x
x11/kde3||2013-07-26|Has expired: Depends on Qt 3.x
x11/kdebase3||2013-07-26|Has expired: Depends on Qt 3.x
x11/kdelibs3||2013-07-26|Has expired: Depends on Qt 3.x
x11/kdelibs3-nocups||2013-07-26|Has expired: Depends on Qt 3.x
x11/oooqs2||2013-07-26|Has expired: Depends on Qt 3.x
x11/rsibreak||2013-07-26|Has expired: Depends on Qt 3.x
x11/xscreensaver-kde||2013-07-26|Has expired: Depends on Qt 3.x
x11/yakuake||2013-07-26|Has expired: Depends on Qt 3.x
x11-clocks/kdetoys3||2013-07-26|Has expired: Depends on Qt 3.x
x11-fm/dolphin||2013-07-26|Has expired: Depends on Qt 3.x
x11-fm/krusader||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/baghira||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/kde-style-comix||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/kde-style-lipstik||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/kde-style-polyester||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/kde-style-tiblit||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/kde-windeco-activeheart||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/kde-windeco-crystal||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/kde-windeco-knifty||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/kde-windeco-neos||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/kde-windeco-smoothblend||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/kdeartwork3||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/kdmtheme||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/moodin||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/phase||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/polymer||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/qinx||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/qnxstyle||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/qt-bluecurve-theme||2013-07-26|Has expired: Depends on Qt 3.x
x11-themes/qtcurve-kde3||2013-07-26|Has expired: Depends on Qt 3.x
x11-toolkits/py-qt||2013-07-26|Has expired: Depends on Qt 3.x
x11-toolkits/qscintilla||2013-07-26|Has expired: Depends on Qt 3.x
x11-toolkits/qt33||2013-07-26|Has expired: No upstream activity since 2008; unmaintained
x11-toolkits/qwt4||2013-07-26|Has expired: Depends on Qt 3.x
x11-wm/bbconf||2013-07-26|Has expired: Depends on Qt 3.x
x11-wm/kompmgr||2013-07-26|Has expired: Depends on Qt 3.x
audio/artswrapper||2013-07-27|Depend on the expired audio/arts
net/ns2|net/ns|2013-07-29|Duplicate ports merged
x11-toolkits/libbonobouimm||2013-07-31|Not supported upstream anymore
devel/libbonobomm||2013-07-31|Not supported upstream anymore
devel/gio-fam-backend|devel/glib20|2013-07-31|Obsoleted by new functionality in glib20
mail/qmrtg||2013-08-02|Has expired: lacks an upstream source
www/mediawiki118||2013-08-02|Has expired: Unmaintained upstream
sysutils/googlog||2013-08-02|Has expired: no upstream project
www/mod_macro24||2013-08-03|Has expired: part of Apache 2.4.6 and newer
games/kaid||2013-08-07|Has expired: Does not fetch
lang/q||2013-08-11|Has expired: Q-Lang is no longer supported. See lang/pure instead
audio/q-audio||2013-08-11|Has expired: Q-Lang is no longer supported. See lang/pure instead
graphics/q-graph||2013-08-11|Has expired: Q-Lang is no longer supported. See lang/pure instead
devel/prettygo|devel/go-pretty|2013-08-17|Project was renamed
www/moodle22||2013-08-20|Has expired: Unmaintained upstream
www/w3m-m17n|www/w3m|2013-08-22|Unified to www/w3m
www/w3m-m17n-img|www/w3m-img|2013-08-22|Unified to www/w3m-img
security/sfs||2013-08-23|Has expired: Broken on FreeBSD 8 and newer
mail/p5-Mail-CClient||2013-08-26|Has expired: Broken for more than 6 months
net/slbd||2013-08-26|Has expired: Broken on FreeBSD 8 and newer
comms/hso-kmod||2013-08-26|Has expired: Broken on FreeBSD 8 and newer
lang/ldc-devel||2013-08-27|Has expired: Broken for more than 6 months
www/mod_smooth_streaming||2013-08-27|Has expired: Broken for more than 6 months
www/p5-Apache2-Scoreboard||2013-08-27|Has expired: Broken for more than 6 months
multimedia/mp4split||2013-08-27|Has expired: Broken for more than 6 months
net-mgmt/noc||2013-08-27|Has expired: Broken for more than 6 months
sysutils/empower||2013-08-27|Has expired: Broken for more than 6 months
emulators/xgngeo||2013-08-27|Has expired: Broken for more than 6 months
graphics/geglmm||2013-08-27|Has expired: Broken for more than 6 months
sysutils/libumberlog||2013-08-27|Has expired: Broken for more than 6 months
net-p2p/nicotine-plus||2013-08-27|Has expired: Broken for more than 6 months
palm/barry||2013-08-27|Has expired: Broken for more than 6 months
x11-themes/kde-icons-noia-warm||2013-08-27|Has expired: Broken for more than 6 months
news/lottanzb||2013-08-27|Has expired: Broken for more than 6 months
textproc/xaira||2013-08-27|Has expired: Broken for more than 6 months
graphics/f90gl||2013-08-27|Has expired: Broken for more than 6 months
multimedia/linux-gspca-kmod||2013-08-27|Has expired: Broken for more than 6 months
x11/cl-clx-sbcl||2013-08-27|Has expired: Broken for more than 6 months
math/dislin||2013-08-27|Has expired: Broken for more than 6 months
irc/smuxi||2013-08-27|Has expired: Broken for more than 6 months
java/icedtea6-stubs||2013-08-27|Has expired: Broken for more than 6 months
math/octave-forge-es||2013-08-27|Has expired: Broken for more than 6 months
math/octave-forge-java||2013-08-27|Has expired: Broken for more than 6 months
net/gatekeeper||2013-08-28|Has expired: Vulnerable for than 2 month
audio/mp3towav-bundle||2013-08-28|Does not build with recent GNUstep
biology/adun||2013-08-28|Does not build with recent GNUstep
databases/gdl2||2013-08-28|Does not build with recent GNUstep
databases/mylibrary||2013-08-28|Does not build with recent GNUstep
deskutils/mywiki||2013-08-28|Does not build with recent GNUstep
deskutils/toolbox||2013-08-28|Does not build with recent GNUstep
devel/objcunit||2013-08-28|Does not build with recent GNUstep
devel/objectivelib||2013-08-28|Does not build with recent GNUstep
devel/projectmanager||2013-08-28|Does not build with recent GNUstep
editors/codeeditor||2013-08-28|Does not build with recent GNUstep
games/gridlock||2013-08-28|Does not build with recent GNUstep
irc/talksoup||2013-08-28|Does not build with recent GNUstep
math/matharray||2013-08-28|Does not build with recent GNUstep
net/netclasses||2013-08-28|Does not build with recent GNUstep
sysutils/burn||2013-08-28|Does not build with recent GNUstep
www/webserver||2013-08-28|Does not build with recent GNUstep
www/webservices||2013-08-28|Does not build with recent GNUstep
x11-toolkits/gnustep-art||2013-08-28|Does not build with recent GNUstep
x11-toolkits/gnustep-cairo|x11-toolkits/gnustep-back|2013-08-28|Removed deprecated back ends
x11-toolkits/gnustep-xdps||2013-08-28|Does not build with recent GNUstep
x11-toolkits/gtoolkit||2013-08-28|Does not build with recent GNUstep
x11-toolkits/renaissance||2013-08-28|Does not build with recent GNUstep
mail/pear-Horde_Imsp|databases/pear-Horde_Imsp|2013-08-28|Duplicate
devel/g2c||2013-08-29|Has expired: Not supported upstream anymore
devel/bugzilla3|devel/bugzilla42|2013-08-30|EOL: Please update to a supported version
german/bugzilla3|german/bugzilla42|2013-08-30|EOL: Please update to a supported version
japanese/bugzilla3|japanese/bugzilla42|2013-08-30|EOL: Please update to a supported version
russian/bugzilla3|russian/bugzilla42|2013-08-30|EOL: Please update to a supported version
net-im/licq-console||2013-08-30|No longer maintained upstream
databases/py-migrate|databases/py-sqlalchemy-migrate|2013-09-01|Rename to reflect official project name
lang/gdc||2013-09-01|Has expired: Broken for more than 6 months
net-im/cli-msn||2013-09-01|Has expired: MSN Messenger service terminated 30 APR 2013
x11-toolkits/wxd||2013-09-01|Has expired: Depends on deprecated lang/gdc
security/openvpn22||2013-09-01|Has expired: Please migrate to a newer OpenVPN version
devel/dsss||2013-09-01|Has expired: Depends on expired lang/gdc
graphics/qcamview||2013-09-01|Has expired: Broken on FreeBSD 8 and newer
www/cacheboy15-devel||2013-09-01|Has expired: Broken on FreeBSD 8 and newer
graphics/spcaview||2013-09-01|Has expired: Broken on FreeBSD 8 and newer
comms/uticom||2013-09-01|Has expired: Broken on FreeBSD 8 and newer
net/ipex||2013-09-01|Has expired: Broken on FreeBSD 8 and newer
graphics/phpsview||2013-09-01|Has expired: Broken on FreeBSD 8 and newer
misc/usbrh||2013-09-01|Has expired: Broken on FreeBSD 8 and newer
net/atmsupport||2013-09-01|Has expired: Broken on FreeBSD 8 and newer
comms/ib-kmod||2013-09-01|Has expired: Broken on FreeBSD 8 and newer
www/helixplugin||2013-09-01|Has expired: Does not work with newer libxul
deskutils/chmsee||2013-09-01|Has expired: Does not work with newer libxul
www/moonshine||2013-09-01|Has expired: Does not work with newer libxul
x11/ggiterm||2013-09-01|Has expired: Unmaintained and broken
graphics/libggigcp||2013-09-01|Has expired: Unmaintained
graphics/libggimisc||2013-09-01|Has expired: Unmaintained
graphics/libggiwmh||2013-09-01|Has expired: Unmaintained
devel/libgiigic||2013-09-01|Has expired: Unmaintained
games/koth||2013-09-01|Has expired: Unmaintained
www/p5-Catalyst-Plugin-Unicode-Encoding||2013-09-04|Has expired: This module now part of core Catalyst distribution
databases/phpmyadmin35|databases/phpmyadmin|2013-09-04|Has expired: Has unresolved security problems: http://www.phpmyadmin.net/home_page/security/PMASA-2013-10.php
devel/avr-gcc-3||2013-09-04|Maintaining a GCC 3.x for AVR is no longer useful
math/libmath++||2013-09-05|Upstream disappeared and distfile is no longer available
japanese/dvi2dvi||2013-09-05|Obsolete
japanese/texfamily||2013-09-05|Obsolete
japanese/texfamily-vfn2a||2013-09-05|Obsolete
devel/py-astng|devel/py-astroid|2013-09-06|Project was renamed
misc/kde4-l10n-csb||2013-09-10|No longer part of KDE4
misc/kde4-l10n-eo||2013-09-10|No longer part of KDE4
misc/kde4-l10n-fy||2013-09-10|No longer part of KDE4
misc/kde4-l10n-gu||2013-09-10|No longer part of KDE4
misc/kde4-l10n-kn||2013-09-10|No longer part of KDE4
misc/kde4-l10n-mai||2013-09-10|No longer part of KDE4
misc/kde4-l10n-mk||2013-09-10|No longer part of KDE4
misc/kde4-l10n-ml||2013-09-10|No longer part of KDE4
devel/deputy||2013-09-13|Obsolete
textproc/liblinebreak|textproc/libunibreak|2013-09-14|Project was superseded by libunibreak
sysutils/daemontools53|sysutils/daemontools|2013-09-16|sysutils/daemontools is more recent
audio/ices0|audio/ices|2013-09-16|Unsupported version, consider using audio/ices
irc/xchat1|irc/xchat|2013-09-16|Unsupported upstream, consider using irc/xchat
japanese/xchat|irc/xchat|2013-09-16|Unsupported upstream, consider using irc/xchat
www/autoindex|www/autoindex2|2013-09-16|Does not work with any of the supported PHP versions
textproc/rotix||2013-09-20|Has expired: no longer maintained upstream
devel/ptlib26|devel/ptlib|2013-09-20|Removed old version, update to new version and moved port
net/opal3|net/opal|2013-09-20|Removed old version, update to new version and moved port
net/ekiga|net-im/ekiga|2013-09-20|Removed old version, update to new version and moved port
net/ekiga3|net-im/ekiga|2013-09-20|Removed old version, update to new version and moved port
devel/py-elementtree||2013-09-23|ElementTree is a part of standard library since Python 2.5
textproc/fileshuffle||2013-09-23|Has expired: Does not work, use gshuf from sysutils/coreutils instead
www/py-Products.kupu||2013-09-23|This port is not required since Plone 4.3
www/py-plone.app.kss||2013-09-23|This port is not required since Plone 4.3
devel/py-archetypes.kss||2013-09-23|This port is not required since Plone 4.3
devel/py-kss-core||2013-09-23|This port is not required since Plone 4.3
x11/libXtrans||2013-09-26|Has expired: Project is obsoleted, use x11/xtrans instead
sysutils/libpcbsd||2013-09-26|Obsolete: Use sysutils/pcbsd-utils-qt4 instead
sysutils/pbreg||2013-09-26|Obsolete: Use sysutils/pcbsd-utils instead
ports-mgmt/pbi-manager||2013-09-26|Obsolete: Use sysutils/pcbsd-utils instead
net/pcbsd-netmanager||2013-09-26|Obsolete: Use sysutils/pcbsd-utils-qt4 instead
archivers/ruby-bz2||2013-10-01|Has expired: Does not work with Ruby 1.9
sysutils/puppet26|sysutils/puppet27|2013-10-01|Has expired: End of Life from April 2013. Upgrade to 2.7 or 3.x
www/varnish2|www/varnish|2013-10-01|Has expired: No update since January 2011. Upgrade to Varnish 3
databases/dbh10|databases/dbh|2013-10-02|Outdated, not depended on, consider using databases/dbh
audio/tracker||2013-10-02|No public distfiles available anymore
chinese/joe2|chinese/joe|2013-10-02|Consider using chinese/joe
sysutils/rdiff-backup10|sysutils/rdiff-backup|2013-10-02|Outdated, consider using a newer version
java/jboss2|java/jboss72|2013-10-02|EOL upstream, consider using a newer version
ftp/ncftp2|ftp/ncftp3|2013-10-02|Outdated, consider using a newer version
irc/keitairc|irc/keitairc2|2013-10-02|Outdated, consider using a newer version
java/netbeans55|java/netbeans|2013-10-02|Outdated, consider using a newer version
java/netbeans61|java/netbeans|2013-10-02|Outdated, consider using a newer version
devel/py-importlib||2013-10-02|Expired: Python 2.6 port will reach it's EoL upstream soon
graphics/gkrellkam|graphics/gkrellkam2|2013-10-02|Outdated, consider using a newer version
mail/gkrellmmailwatch|mail/gkrellmmailwatch2|2013-10-02|Outdated, consider using a newer version
databases/memcached12|databases/memcached|2013-10-02|Unsupported upstream, consider using a newer version
www/py-beautifulsoup30||2013-10-03|Outdated, consider using a newer version
comms/umcs784||2013-10-03|Outdated, included in base system as umcs(4)
graphics/libwpg01|graphics/libwpg|2013-10-04|Outdated, consider using a new version
textproc/libwpd08|textproc/libwpd|2013-10-04|Outdated, consider using a new version
net-mgmt/nrpe2|net-mgmt/nrpe|2013-10-04|Reflect the real portname
cad/gwave||2013-10-05|Depends on guile-gtk which is EOLed
x11-toolkits/guile-gtk||2013-10-05|EOLed upstream for very long
textproc/gxmlviewer||2013-10-05|Depends on EOLed gnome1
comms/mlan|comms/mlan3|2013-10-05|Project is obsoleted by newer API
graphics/gnomeiconedit||2013-10-05|Depends on EOLed gnome1
games/bombermaze||2013-10-05|Depends on EOLed gnome1
games/glife||2013-10-05|Depends on EOLed gnome1
emulators/visualos||2013-10-05|Depends on EOLed gnome1
editors/xmleditor||2013-10-05|Depends on EOLed gnome1
games/gnmm||2013-10-05|Depends on EOLed gnome1
games/gnomermind||2013-10-05|Depends on EOLed gnome1
comms/ghfaxviewer||2013-10-05|Depends on EOLed gnome1
devel/pharmacy||2013-10-05|Depends on EOLed gnome1
emulators/gsnes9x||2013-10-05|Depends on EOLed gnome1
graphics/electriceyes||2013-10-05|Depends on EOLed gnome1
graphics/frontline||2013-10-05|Depends on EOLed gnome1
mail/mmc||2013-10-05|Depends on EOLed gnome1
misc/misterproper||2013-10-05|Depends on EOLed gnome1
multimedia/gsubedit||2013-10-05|Depends on EOLed gnome1
net/gnome-vnc||2013-10-05|Depends on EOLed gnome1
news/grn||2013-10-05|Depends on EOLed gnome1
security/fpm||2013-10-05|Depends on EOLed gnome1
sysutils/xsu||2013-10-05|Depends on EOLed gnome1
security/fwbuilder-devel||2013-10-05|Appears not to be actively developed anymore
devel/libglade||2013-10-07|Component of the obsolete gnome1
databases/gnome-db||2013-10-07|Component of the obsolete gnome1
databases/libgda||2013-10-07|Component of the obsolete gnome1
devel/gconf||2013-10-07|Component of the obsolete gnome1
devel/bonobo||2013-10-07|Component of the obsolete gnome1
devel/oaf||2013-10-07|Component of the obsolete gnome1
print/gnome-print||2013-10-07|Component of the obsolete gnome1
mail/mavbiff||2013-10-07|Obsoleted
finance/gnofin||2013-10-07|Depends on EOLed gnome1
x11-toolkits/easygtk||2013-10-07|Depends on EOLed gnome1
graphics/gnomecanvas||2013-10-07|Component of the obsolete gnome1
www/p5-HTTP-GHTTP||2013-10-07|Depends on EOLed gnome1 libraries
www/libghttp||2013-10-07|Component of the obsolete gnome1
deskutils/gworkspace-clipbook||2013-10-07|Replaced by tabbed shelf in GWorkspace
audio/yamt||2013-10-07|Depends on EOLed gnome1 libraries
astro/nova||2013-10-07|Development ceased 8 years ago, depends on some gnome1 libraries
textproc/libxml++||2013-10-07|Component of the obsolete gnome1
devel/linux-f10-libglade|devel/linux-f10-libglade2|2013-10-07|Unused
textproc/linux-f10-libxml|textproc/linux-f10-libxml2|2013-10-07|Unused
www/moodle23||2013-10-08|Has expired: Unmaintained upstream
sysutils/easypbi||2013-10-08|Obsolete: Use sysutils/pcbsd-utils-qt4 instead
devel/valgrind-snapshot|devel/valgrind-devel|2013-10-09|Rename to -devel to follow port naming conventions
devel/p5-doxygenfilter|devel/p5-Doxygen-Filter-Perl|2013-10-09|Project has been taken over by new developer and renamed
audio/ruby-vorbisfile||2013-10-11|Has expired: Does not work with Ruby 1.9
audio/ruby-xmms||2013-10-11|Has expired: Does not work with Ruby 1.9
databases/ruby-interbase||2013-10-11|Has expired: Does not work with Ruby 1.9
databases/ruby-bdb1||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/ruby-fam||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/ruby-rcov||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/ruby-rudl||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/ruby-gemfinder||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/ruby-sysvipc||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/rubygem-sdl||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/rubygem-ncurses||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/rubygem-parsetree||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/ruby-sexp||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/rubygem-getopt-declare||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/ruby-slang||2013-10-11|Has expired: Does not work with Ruby 1.9
japanese/ruby-slang||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/ruby-gettext||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/ruby-jttui||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/ruby-mmap||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/ruby-racc||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/rubygem-rparsec||2013-10-11|Has expired: Does not work with Ruby 1.9
devel/rubygem-zoom||2013-10-11|Has expired: Does not work with Ruby 1.9
games/ruby-exmars||2013-10-11|Has expired: Does not work with Ruby 1.9
graphics/ruby-pgplot||2013-10-11|Has expired: Does not work with Ruby 1.9
graphics/rubygem-turing||2013-10-11|Has expired: Does not work with Ruby 1.9
japanese/ruby-chasen||2013-10-11|Has expired: Does not work with Ruby 1.9
japanese/ruby-gyokuro||2013-10-11|Has expired: Does not work with Ruby 1.9
japanese/ruby-rdic||2013-10-11|Has expired
lang/ruby-mode.el||2013-10-11|Has expired: Does not work with Ruby 1.9
misc/rubygem-ohcount||2013-10-11|Has expired: Does not work with Ruby 1.9
net-im/rubygem-xmpp4r||2013-10-11|Has expired: Does not work with Ruby 1.9
security/ruby-acl||2013-10-11|Has expired: Does not work with Ruby 1.9
textproc/ruby-xslt||2013-10-11|Has expired: Does not work with Ruby 1.9
textproc/ruby-erbscan||2013-10-11|Has expired: Does not work with Ruby 1.9
textproc/ruby-mwdom||2013-10-11|Has expired: Does not work with Ruby 1.9
textproc/ruby-xmlscan-old||2013-10-11|Has expired: Does not work with Ruby 1.9
textproc/rubygem-formosa||2013-10-11|Has expired: Does not work with Ruby 1.9
textproc/rubygem-htmltools||2013-10-11|Has expired: Does not work with Ruby 1.9
www/ruby-cruisecontrolrb||2013-10-11|Has expired: Does not work with Ruby 1.9
www/rubygem-rubyfulsoup||2013-10-11|Has expired: Does not work with Ruby 1.9
x11/ruby-gtktrayicon||2013-10-11|Has expired: Does not work with Ruby 1.9
net/ngrep-lib||2013-10-11|Obsoleted
www/node04||2013-10-11|Has expired: Unsupported upstream, not compatible with current
www/node06||2013-10-11|Has expired: Unsupported upstream, not compatible with current
math/matrices||2013-10-12|Has expired: Unmaintained upstream
games/nethack33-gnome|games/nethack33|2013-10-13|Has expired: Uses deprecated gnome 1.x libraries
games/nethack34-gnome|games/nethack34|2013-10-13|Has expired: Uses deprecated gnome 1.x libraries
emulators/linux-ePSXe||2013-10-13|Removed, uses Linux GTK1 libraries
emulators/linux-peops-spu||2013-10-13|Removed, uses Linux GTK1 libraries
math/linux-relview||2013-10-13|Removed, uses Linux GTK1 libraries
science/ovt||2013-10-14|Depends on the EOLed vtk4
math/vtk-data||2013-10-14|Deprecated consider using vtk5
math/vtk-examples||2013-10-14|Deprecated consider using vtk5
math/vtk-headers||2013-10-14|Deprecated consider using vtk5
math/vtk-java||2013-10-14|Deprecated consider using vtk5
math/vtk-python||2013-10-14|Deprecated consider using vtk5
math/vtk-tcl||2013-10-14|Deprecated consider using vtk5
science/mayavi||2013-10-14|Depends on the EOLed vtk4
www/httpgrabber||2013-10-14|Depended on net/ngrep-lib
security/stem|security/py-stem|2013-10-14|This is a Python library
sysutils/gupsc||2013-10-15|Depends on the obsolete gnome1
net/diradmin||2013-10-15|Depends on the obsolete gnome1
devel/hypersrc||2013-10-15|Depends on the obsolete gnome1
x11-themes/gnome-look||2013-10-15|Component of the obsolete gnome1
x11-themes/thinice||2013-10-15|Component of the obsolete gnome1
x11-themes/gtk-engines||2013-10-15|Component of the obsolete gnome1
x11-themes/gtk-engines-collection||2013-10-15|Component of the obsolete gnome1
devel/getxml||2013-10-15|Depends on EOLed libxml1
textproc/xls2xml||2013-10-15|Depends on EOLed libxml1
textproc/cole||2013-10-15|Upstream has disappeared
www/rubygem-staticmatic||2013-10-15|Has expired: No longer maintained upstream
www/ruby-nora||2013-10-15|Has expired: Does not work with Ruby 1.9
www/aswiki||2013-10-15|Removed
textproc/ruby-amrita||2013-10-15|Has expired: Does not work with Ruby 1.9
security/flowtag||2013-10-15|Has expired: Does not work with Ruby 1.9
lang/ruby-lua4||2013-10-15|Has expired: Does not work with Ruby 1.9
dns/dnsdoctor||2013-10-15|Has expired: Does not work with Ruby 1.9
devel/py-psyco||2013-10-15|Has expired: only builds with lang/python26
x11-toolkits/ruby-tk||2013-10-15|Has expired: Does not work with Ruby 1.9
emulators/dolphin-emu-devel|emulators/dolphin-emu|2013-10-16|Has reached stable quality
audio/akode||2013-10-17|Removed: Dependency of KDE 3.x
audio/akode-plugins-ffmpeg||2013-10-17|Removed: Dependency of KDE 3.x
audio/akode-plugins-jack||2013-10-17|Removed: Dependency of KDE 3.x
audio/akode-plugins-mpc||2013-10-17|Removed: Dependency of KDE 3.x
audio/akode-plugins-mpeg||2013-10-17|Removed: Dependency of KDE 3.x
audio/akode-plugins-oss||2013-10-17|Removed: Dependency of KDE 3.x
audio/akode-plugins-pulseaudio||2013-10-17|Removed: Dependency of KDE 3.x
audio/akode-plugins-resampler||2013-10-17|Removed: Dependency of KDE 3.x
audio/akode-plugins-xiph||2013-10-17|Removed: Dependency of KDE 3.x
german/bugzilla|german/bugzilla40|2013-10-17|Reflect PORTNAME
japanese/bugzilla|japanese/bugzilla40|2013-10-17|Reflect PORTNAME
russian/bugzilla|russian/bugzilla40|2013-10-17|Reflect PORTNAME
x11/silo||2013-10-18|Has expired: Upstream has disappeared
devel/pear-PHPUnit|devel/pear-PHPUnit3|2013-10-18|Removed, EOLed upstream
devel/pear-PHPUnit2|devel/pear-PHPUnit3|2013-10-18|Removed, EOLed upstream
multimedia/ffmpeg2|multimedia/ffmpeg|2013-10-19|Use multimedia/ffmpeg instead
mail/qmailadmin-devel|mail/qmailadmin|2013-10-19|Use mail/qmailadmin instead
korean/php_doc||2013-10-19|Manual in this language was removed
graphics/linux-panorama-tools||2013-10-21|Depends on EOLed linux-f10-png10
graphics/linux-f10-png10||2013-10-21|Removed, EOLed upstream
net/p5-SOAP-Lite-060|net/p5-SOAP-Lite|2013-10-21|Obsoleted
devel/rubygem-ruby-debug-base||2013-10-21|Has expired: Does not work with Ruby 1.9
devel/rubygem-linecache||2013-10-21|Has expired: Does not work with Ruby 1.9
devel/rubygem-rascut||2013-10-21|Has expired: Does not work with Ruby 1.9
devel/rubygem-ruby-debug-ide||2013-10-21|Has expired: Does not work with Ruby 1.9
devel/rubygem-ruby-debug||2013-10-21|Has expired: Does not work with Ruby 1.9
japanese/gorua||2013-10-21|Has expired: Does not work with Ruby 1.9
x11-toolkits/ruby-gtk||2013-10-21|Has expired: Does not work with Ruby 1.9
astro/boinc-setiathome-enhanced|astro/boinc-setiathome-v7|2013-10-21|Removed: Project is switching, use astro/boinc-setiathome-v7 instead; broken on 10.0
multimedia/ffmpeg-devel|multimedia/ffmpeg|2013-10-21|Use multimedia/ffmpeg instead
lang/ruby18|lang/ruby19|2013-10-22|Has expired: Please use lang/ruby19
www/rubygem-mongrel_cluster||2013-10-22|Has expired: Does not work with Ruby 1.9
www/rubygem-mongrel||2013-10-22|Removed
www/rubygem-rails-app-installer||2013-10-22|Has expired: Does not work with Ruby 1.9
www/typo||2013-10-22|Has expired: Does not work with Ruby 1.9
graphics/ruby-opengl||2013-10-25|Has expired: Does not work with Ruby 1.9
multimedia/ffmpeg1|multimedia/ffmpeg|2013-10-27|Use multimedia/ffmpeg instead
devel/rubygem-yajl-ruby077||2013-10-29|Removed
lang/lua4||2013-10-31|EOLed upstream
lang/tolua4||2013-10-31|EOLed upstream
net-im/amsn||2013-10-31|Has expired: Primary MSN Messenger service terminated 30 APR 2013
net-im/jabber-pymsn||2013-10-31|Has expired: Primary MSN Messenger service terminated 30 APR 2013
net-im/msn-proxy||2013-10-31|Has expired: Primary MSN Messenger service terminated 30 APR 2013
net-im/p5-Net-MSN||2013-10-31|Has expired: Primary MSN Messenger service terminated 30 APR 2013
net-im/p5-POE-Component-Client-MSN||2013-10-31|Has expired: Primary MSN Messenger service terminated 30 APR 2013
net-im/pidgin-msn-pecan||2013-10-31|Has expired: Primary MSN Messenger service terminated 30 APR 2013
net-im/py-msnp||2013-10-31|Has expired: Primary MSN Messenger service terminated 30 APR 2013
net-im/pymsn||2013-10-31|Has expired: Primary MSN Messenger service terminated 30 APR 2013
net-im/tmsnc||2013-10-31|Has expired: Primary MSN Messenger service terminated 30 APR 2013
mail/squirrelmail-postfixadmin-plugin|mail/postfixadmin|2013-11-01|Has expired: Now distributed with postfixadmin
lang/dragonegg46||2013-11-03|Has expired: Upgrade to dragonegg46-33 or dragonegg47-33
sysutils/mktool||2013-11-03|Has expired
databases/ruby-memcache||2013-11-03|Has expired: Development has been abandoned upstream
deskutils/blogtk||2013-11-03|Has expired: This is dead upstream and is no longer being maintained
devel/ruby-io-reactor||2013-11-03|Has expired: Does not work with Ruby 1.9
textproc/jakarta-poi|textproc/apache-poi|2013-11-04|Replaced with apache-poi
net-im/qutim||2013-11-05|Has expired: Old version, a new one needs to be ported from scratch
textproc/gtkdiff||2013-11-05|Has expired: Gnome1 EOLed by upstream for a while
net-p2p/libtorrent-rasterbar-16|net-p2p/libtorrent-rasterbar|2013-11-06|Moved to net-p2p/libtorrent-rasterbar since it's a stable version
net-p2p/libtorrent-rasterbar-16-python|net-p2p/libtorrent-rasterbar-python|2013-11-06|Moved to net-p2p/libtorrent-rasterbar-python since it's a stable version
devel/ORBit||2013-11-07|Has expired: EOLed upstream for very long
x11/gnome-libs||2013-11-07|Has expired: EOLed upstream for very long
textproc/stardict2||2013-11-07|Has expired: Newer version available in ports: textproc/stardict3
devel/pure-stlvec|devel/pure-stllib|2013-11-07|Removed: Use devel/pure-stllib instead
textproc/lexxia||2013-11-07|Removed no public distfile available anymore
textproc/docproj-nojadetex||2013-11-07|Removed
textproc/p5-XML-Hadler-HTMLWriter|textproc/p5-XML-Handler-HTMLWriter|2013-11-07|Removed
games/frozenbubble|games/frozen-bubble|2013-11-08|Renamed to match upstream naming
biology/dotter|biology/seqtools|2013-11-10|Replaced with biology/seqtools
games/nil||2013-11-11|Removed: long unmaintained, fails to build
games/windstille||2013-11-12|Has expired: Unplayable, development ceased
games/intensityengine||2013-11-12|Has expired: Unplayable, main server down, development ceased
games/tmw|games/manaplus|2013-11-12|Replaced with games/manaplus
graphics/mesagl||2013-11-14|Old unmaintained version. Use graphics/libosmesa instead
editors/xxe||2013-11-15|Has expired: XXE becomes unfetchable every 3-4 months as distfile is replaced with new version. This high-maintenance port requires a maintainer to avoid removal
editors/xml2rfc-xxe||2013-11-15|Has expired: Depends on editors/xxe, which is due to be removed due to lack of maintainer
devel/perltidy|devel/p5-Perl-Tidy|2013-11-15|Renamed to match upstream naming
net/p5-Script-isAperlScript|devel/p5-Script-isAperlScript|2013-11-15|Duplicate
math/vtk|math/vtk5|2013-11-17|Removed, EOLed
net-im/decibel||2013-11-17|Has expired: Deprecated and unsupported upstream for many years, not used by anything
databases/postgresql-libpq++||2013-11-17|Has expired: Not maintained upstream for 10+ years
audio/gqmpeg-devel||2013-11-17|Removed, no active development for more than 8 years
graphics/gqview-devel||2013-11-17|Removed, no active development for more than 8 years
textproc/stardict2-dictd_mova|textproc/stardict-dictd_mova|2013-11-17|Renamed
textproc/stardict2-quick|textproc/stardict-quick|2013-11-17|Renamed
security/ksecrets||2013-11-17|Defunct
x11-toolkits/libgnomeuimm|x11-toolkits/libgnomeuimm26|2013-11-18|Older version; has no consumers in the ports tree
devel/libglademm|devel/libglademm24|2013-11-18|Older version; has no consumers in the ports tree
graphics/libgnomecanvasmm|graphics/libgnomecanvasmm26|2013-11-18|Older version; has no consumers in the ports tree
x11/libgnomemm|x11/libgnomemm26|2013-11-18|Older version; has no consumers in the ports tree
devel/gconfmm|devel/gconfmm26|2013-11-18|Older version; has no consumers in the ports tree
sysutils/dircomp||2013-11-18|Removed: unmaintained and depends on expired devel/libXGP
sysutils/iextract||2013-11-18|Removed: unmaintained and depends on expired devel/libYGP
devel/libXGP||2013-11-18|Has expired: Broken for more than 6 months
deskutils/google-gadgets||2013-11-18|Has expired: Broken for more than 6 months
palm/synce-trayicon||2013-11-18|Has expired: Broken for more than 6 months
security/linux-pam-docs||2013-11-18|Has expired: Broken for more than 6 months
net-p2p/mooseekd||2013-11-18|Has expired: Broken for more than 6 months
textproc/p5-Lucene||2013-11-18|Has expired: Broken for more than 6 months
net-mgmt/zenpack-dellmonitor||2013-11-18|Has expired: Broken for more than 6 months
x11-wm/fbpager||2013-11-18|Has expired: Broken for more than 6 months
net/hf6to4||2013-11-18|Has expired: Broken for more than 6 months
x11-themes/kde-icons-exquisite||2013-11-18|Has expired: Broken for more than 6 months
x11-themes/kde-icons-marbles-translucent||2013-11-18|Has expired: Broken for more than 6 months
security/dissembler||2013-11-18|Has expired: Broken for more than 6 months, upstream disappeared
net-mgmt/zenpack-apachemonitor||2013-11-18|Has expired: Broken for more than 6 months
textproc/rst.el||2013-11-18|Has expired: Broken for more than 6 months
net-mgmt/zenpack-ntpmonitor||2013-11-18|Has expired: Broken for more than 6 months
x11-themes/kde-icons-steel||2013-11-18|Has expired: Broken for more than 6 months
databases/drizzle||2013-11-18|Has expired: Broken for more than 6 months
devel/p5-File-Lock||2013-11-18|Has expired: Broken for more than 6 months
devel/valide||2013-11-18|Has expired: Broken for more than 6 months
databases/gomysql||2013-11-18|Has expired: Broken for more than 6 months
databases/p5-DBZ_File||2013-11-18|Has expired: Broken for more than 6 months
devel/monodevelop-vala||2013-11-18|Has expired: Broken for more than 6 months
devel/gonzui||2013-11-18|Has expired: Broken for more than 6 months
devel/monodevelop-java||2013-11-18|Has expired: Broken for more than 6 months
lang/objc||2013-11-18|Has expired: Broken for more than 6 months
devel/klee||2013-11-18|Has expired: Broken for more than 6 months
devel/simulavr||2013-11-18|Has expired: Broken for more than 6 months
japanese/mobileimap||2013-11-18|Has expired: Broken for more than 6 months
devel/libYGP||2013-11-18|Has expired: Broken for more than 6 months
devel/monodevelop-python||2013-11-18|Has expired: Broken for more than 6 months
devel/lua50-app||2013-11-18|Removed, lua50 is EOLed
devel/lua50-dfui||2013-11-18|Removed, lua50 is EOLed
devel/lua50-filename||2013-11-18|Removed, lua50 is EOLed
devel/lua50-gettext||2013-11-18|Removed, lua50 is EOLed
devel/lua50-posix||2013-11-18|Removed, lua50 is EOLed
devel/lua50-pty||2013-11-18|Removed, lua50 is EOLed
lang/tolua++50||2013-11-18|Removed, lua50 is EOLed
lang/tolua50||2013-11-18|Removed, lua50 is EOLed
net/lua50-luasocket||2013-11-18|Removed, lua50 is EOLed
devel/lua50-compat51||2013-11-18|Removed, lua50 is EOLed
lang/lua50|lang/lua|2013-11-18|Removed, lua50 is EOLed
security/squidclamav|www/squidclamav|2013-11-18|Has expired: Obsolete and broken with clang, use www/squidclamav instead
devel/rubygem-ripper||2013-11-20|Removed: it is only for Ruby 1.8 which is removed already
editors/mode-info||2013-11-20|Has expired: Misbuilding since 2004, not maintained since 2008
devel/netbsd-pkgsrc-mk-files||2013-11-20|Has expired: Imported for devel/mk-configure but no longer required
net/ptpd|net/ptpd2|2013-11-20|Protocol and software no longer supported
audio/gstreamer1-plugins-celt||2013-11-20|Removed, audio/gstreamer1-plugins-opus can be used as replacement
math/p5-MatrixReal|math/p5-Math-MatrixReal|2013-11-22|Rename to match upstream naming
lang/gcc42|lang/gcc|2013-11-23|Superseded by GCC 4.6 or later
devel/p5-IO||2013-11-23|Removed: newer versions are included in all supported Perl releases
www/mod_wsgi|www/mod_wsgi2|2013-11-24|Rename to match version
net/ftelnetd||2013-11-25|Has expired: Unfetchable due to parked MASTER_SITES
games/BillardGL||2013-11-25|Has expired: Unplayable, development ceased
sysutils/rsyslog6-pgsql||2013-11-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-relp||2013-11-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-gnutls||2013-11-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-rfc3195||2013-11-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-gssapi||2013-11-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6||2013-11-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-snmp||2013-11-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-mysql||2013-11-25|Has expired: Use sysutils/rsyslog7
sysutils/rsyslog6-dbi||2013-11-25|Has expired: Use sysutils/rsyslog7
www/trac-gitplugin||2013-11-25|Removed: this plugin has been included in the Trac 1.0 distribution
audio/mpc|audio/musicpc|2013-11-26|Renamed to avoid conflict with math/mpc
deskutils/q4wine|emulators/q4wine|2013-11-26|Move to better category
devel/p5-MooseX-ChainedAccessors||2013-11-27|Has expired: Marked as depreciated upstream
devel/py-distribute|devel/py-setuptools|2013-11-27|Replaced with setuptools
devel/zmq-devel|net/libzmq3|2013-11-28|Rename according to upstream and move to more suitable category
devel/czmq|net/czmq|2013-11-29|Move to a more suitable category and with other libzmq ports
lang/ruby-reference||2013-11-29|Removed: does not contain up-to-date ruby reference, upstream has disappeared
audio/gnump3d||2013-11-30|Has expired: Development has been abandoned upstream
audio/rubygem-ogginfo|audio/rubygem-ruby-ogginfo|2013-11-30|Rename to match upstream naming
x11-fm/xnc||2013-12-01|Has expired: Latest release from 2005, upstream disappeared, does not build
audio/liteamp||2013-12-01|Has expired: Dead upstream since 2004, does not build with clang
net-im/tapioca-qt||2013-12-01|Has expired: Unmaintained upstream since 2007, not used by anything
net-im/telepathy-qt|net-im/telepathy-qt4|2013-12-01|Has expired: Unmaintained upstream since 2007, use net-im/telepathy-qt4
x11-toolkits/linux-f10-gtk||2013-12-01|Has expired: GTK1 is deprecated
net-im/linux-ymessenger||2013-12-01|Has expired: Depends on deprecated Linux GTK1
emulators/linux-pete-mesagpu||2013-12-01|Has expired: Depends on deprecated Linux GTK1
emulators/linux-pete-xgl2gpu||2013-12-01|Has expired: Depends on deprecated Linux GTK1
emulators/linux-peops-softgpu||2013-12-01|Has expired: Depends on deprecated Linux GTK1
finance/eqonomize-kde4||2013-12-01|Has expired: No upstream releases since 2008, does not build on FreeBSD 10 and 11
comms/uhso-kmod||2013-12-01|Has expired: included in base system on all supported releases
deskutils/ecru||2013-12-01|Has expired: No longer maintained upstream
editors/gphpedit||2013-12-01|Has expired: No longer maintained upstream
irc/inspircd12|irc/inspircd|2013-12-01|Has expired: No upstream support; known vulnerable. Please use irc/inspircd
graphics/py-clutter||2013-12-01|Has expired: Broken for more than 6 months
graphics/py-clutter-gtk||2013-12-01|Has expired: depends on expired graphics/py-clutter
devel/zmq|net/libzmq2|2013-12-05|Rename according to upstream and move to more suitable category
devel/rubygem-ruby-statsd|devel/rubygem-statsd|2013-12-05|Rename to match upstream naming
x11-themes/lila-xfwm4||2013-12-05|Has expired: Upstream development dead
science/omnetpp||2013-12-05|Has expired: depends on expired textproc/libxml
textproc/libxml||2013-12-05|Has expired: No release since 2002, no support from upstream
deskutils/taskjuggler|deskutils/rubygem-taskjuggler|2013-12-05|Rename to match our rubygems naming
www/clickheat||2013-12-07|Has expired: No more activity since 2011
security/rarcrack||2013-12-08|Has expired: Not active since several years
java/subversion-java|java/java-subversion|2013-12-08|Rename to reflect subversion child port naming scheme
games/flare|games/flare-game|2013-12-10|Flare port was split into engine and game counterparts, as upstream did
audio/liteamp||2013-12-15|Has expired: Dead upstream since 2004, does not build with clang
security/opieprint||2013-12-15|Has expired: No more active upstream
security/bubblegum||2013-12-15|Has expired: No more active upstream
security/snortsms||2013-12-15|Has expired: Not active since several years
sysutils/hammerhead||2013-12-15|Has expired: Development no more active
net-p2p/libtorrent-rasterbar-15-python||2013-12-15|Has expired: Unusable, development ceased
graphics/openexr_ctl||2013-12-15|Has expired: Now distributed with ampasCTL-1.5
net-p2p/libtorrent-rasterbar-15||2013-12-16|Has expired: Unusable, development ceased
x11-fonts/ppantsfonts||2013-12-20|Has expired: Broken for more than 6 months
x11-toolkits/gtksourceview-sharp||2013-12-20|Has expired: Depends on expired devel/mono-tools
devel/mono-tools||2013-12-20|Has expired: Broken for more than 6 months
textproc/p5-XML-SAXDriver-Sablotron||2013-12-20|Has expired: Depends on expired textproc/p5-XML-Sablotron
textproc/p5-XML-Sablotron||2013-12-20|Has expired: Broken for more than 6 months
net/freeswitch-core||2013-12-20|Has expired: Broken for more than 6 months
misc/freeswitch-pizzademo||2013-12-20|Has expired: Depends on expired net/freeswitch-core
misc/freeswitch-scripts||2013-12-20|Has expired: Depends on expired net/freeswitch-core
www/p5-HTML-Webmake||2013-12-20|Has expired: Depends on expired textproc/p5-XML-Sablotron
games/blue|games/bluemoon|2013-12-21|Rename to match upstream naming
devel/ruby-cvs||2013-12-22|Has expired: Broken for more than 6 months
devel/hs-reactive||2013-12-22|Has expired: Broken for more than 6 months
databases/rubygem-delayed_job_data_mapper||2013-12-22|Has expired: Broken for more than 6 months
graphics/xmagv||2013-12-22|Has expired: Broken for more than 6 months
lang/slib-gauche||2013-12-22|Has expired: Broken for more than 6 months
graphics/f-spot||2013-12-22|Has expired: Broken for more than 6 months
sysutils/linux-megamgr||2013-12-22|Has expired: Broken for more than 6 months
games/linux-savage-samuraiwars||2013-12-22|Has expired: Broken for more than 6 months
devel/hs-DeepArrow||2013-12-22|Has expired: Broken for more than 6 months
converters/py-svglib||2013-12-22|Has expired: Broken for more than 6 months
converters/p5-Unicode-Lite||2013-12-22|Has expired: Broken for more than 6 months
mail/squirrelmail-calendar_sql_backend-plugin||2013-12-22|Has expired: Broken for more than 6 months
finance/quantlib||2013-12-22|Has expired: Broken for more than 6 months
games/xkobo||2013-12-22|Has expired: Broken for more than 6 months
games/quake3-rq3||2013-12-22|Has expired: Broken for more than 6 months
math/fbm||2013-12-22|Has expired: No new release since 2004, new supported upstream
deskutils/libopensync-plugin-python-devel||2013-12-22|Has expired: Broken for more than 6 months
deskutils/libopensync-plugin-synce-devel||2013-12-22|Removed, unmaintained, depends on deskutils/libopensync-plugin-python-devel
net-im/libmsn||2013-12-22|Has expired: Primary MSN Messenger service terminated 30 APR 2013
lang/clang||2013-12-22|Has expired: Migrate to lang/clang32 or newer
math/freemat-mpi||2013-12-23|Obsolete since FreeMat 3.0
devel/py-pmock||2013-12-27|Does not work with python 2.6 and beyond
devel/ncurses-devel|devel/ncurses|2013-12-28|Regular ncurses ports is more recent
databases/mird||2013-12-28|Has expired: No longer maintained upstream
security/dazuko||2013-12-31|Has expired: Currently, the project has not an active development and maintainer
mail/p5-Mail-SPF-Query||2013-12-31|Has expired: Use mail/p5-Mail-SPF instead
x11-fonts/etlfonts||2013-12-31|Has expired: master site gone
net/gateway6||2013-12-31|Has expired: Unsupported upstream, consider using net/gogoc
misc/bibletime-devel|misc/bibletime|2013-12-31|Has expired: use misc/bibletime
multimedia/linux-ov511-kmod||2013-12-31|Removed: broken and only for FreeBSD 6.x and 7.x
net-mgmt/unifi|net-mgmt/unifi3|2014-01-01|Rename to unifi3; unifi2 is coming to ports tree as well
net/pypvm||2014-01-01|Has expired: Dead upstream and suspected that there are no users of port
www/mawstats||2014-01-01|Has expired: Upstream development dead, use www/[j]awstats instead
devel/p5-Dialog|devel/p5-UI-Dialog|2014-01-01|Has expired
textproc/referrercop||2014-01-01|Has expired: distfile unfetchable
www/notftp||2014-01-01|Has expired: distfile unfetchable
www/mod_lisp2||2014-01-01|Has expired: distfile unfetchable
irc/xchat-gnome||2014-01-02|Has expired: broken and no release since 2009
sysutils/rubygem-rubyimpi|sysutils/rubygem-rubyipmi|2014-01-02|Renamed
www/codeigniter17|www/codeigniter|2014-01-04|Unsupported upstream, consider using newer version
net-im/xfce4-messenger-plugin||2014-01-04|Has expired: Deprecated and no update for 7 years
multimedia/xfce4-media|multimedia/xfce4-parole|2014-01-04|Has expired: Upstream development dead, use multimedia/xfce4-parole instead
devel/py-gevent-zeromq|devel/py-pyzmq|2014-01-06|Has expired: devel/py-pyzmq has gevent support built in
net/erlyvideo||2014-01-06|Has expired: Development of erlyvideo is abandoned upstream. Use flussonic instead
devel/qt4-declarative|x11-toolkits/qt4-declarative|2014-01-06|Moved to unify with Qt 5
devel/qt4-qtestlib|devel/qt4-testlib|2014-01-06|Renamed to unify with Qt 5
-textproc/qt4-clucene|textproc/clucene-qt4|2014-01-06|Renamed to unify with Qt 5
-www/qt4-webkit|www/webkit-qt4|2014-01-06|Renamed to unify with Qt 5
x11/qt4-opengl|graphics/qt4-opengl|2014-01-06|Moved to unify with Qt 5
graphics/wings-devel|graphics/wings|2014-01-07|Obsoleted by the main port
devel/llvm|devel/llvm32|2014-01-08|Has expired: Migrate to devel/llvm32 or newer
devel/reflex|textproc/reflex|2014-01-08|Duplicate
devel/hs-hat||2014-01-09|Upstream has vanished
devel/hs-hdoc||2014-01-09|Removed
devel/hs-idoc||2014-01-09|Removed
x11-toolkits/hs-frantk||2014-01-09|Outdated and bitrotted
devel/lua-filename||2014-01-10|Abandonware
archivers/xz||2014-01-12|Included in base system on all supported releases
lang/python26|lang/python27|2014-01-13|Python 2.6 is now end-of-life, please migrate to lang/python27
sysutils/lavaps||2014-01-14|Abandonware, segfaults
www/mod_authnz_external|www/mod_authnz_external22|2014-01-14|Port was renamed to reflect the supported Apache version
games/deng|games/doomsday|2014-01-16|Renamed to follow upstream naming
misc/sword17|misc/sword|2014-01-16|Has expired: use misc/sword
databases/postgis||2014-01-17|Has expired: EOLed upstream
textproc/redland-bindings-python||2014-01-19|Use textproc/redland-bindings directly instead
emulators/seabios-devel||2014-01-19|Has expired: Outdated, no longer needed, broken on 10+
cad/salome||2014-01-24|Has expired: depends on expired cad/salome-kernel
cad/salome-netgenplugin||2014-01-24|Has expired: depends on expired cad/salome-kernel
cad/salome-jobmanager||2014-01-24|Has expired: depends on expired cad/salome-kernel
cad/salome-visu||2014-01-24|Has expired: depends on expired cad/salome-kernel
cad/salome-kernel||2014-01-24|Has expired: does not configure
cad/salome-multipr||2014-01-24|Has expired: depends on expired cad/salome-kernel
cad/salome-smesh||2014-01-24|Has expired: depends on expired cad/salome-kernel
cad/salome-gui||2014-01-24|Has expired: depends on expired cad/salome-kernel
cad/salome-yacs||2014-01-24|Has expired: depends on expired cad/salome-kernel
cad/salome-med||2014-01-24|Has expired: depends on expired cad/salome-kernel
cad/salome-light||2014-01-24|Has expired: depends on expired cad/salome-kernel
cad/salome-randomizer||2014-01-24|Has expired: depends on expired cad/salome-kernel
cad/salome-sierpinsky||2014-01-24|Has expired: depends on expired cad/salome-kernel
cad/salome-geom||2014-01-24|Has expired: depends on expired cad/salome-kernel
devel/combat||2014-01-24|Has expired: depends on expired devel/mico
net-mgmt/nagios-devel|net-mgmt/nagios|2014-01-25|Master site gone, outdated
math/octave-forge-image-acquisition||2014-01-27|Depends on multimedia/libv4l which no longer has necessary headers
lang/racket-textual|lang/racket-minimal|2014-01-27|Renamed upstream
mail/pop-before-smtp||2014-01-27|Removed
graphics/glfw-devel||2014-01-28|Removed
devel/py-ua-parser|devel/py-ua_parser|2014-01-28|Reflect module name
french/ispell|french/aspell|2014-01-29|Removed, consider using aspell instead
german/ispell|german/aspell|2014-01-29|Removed, consider using aspell instead
german/ispell-alt|german/aspell|2014-01-29|Removed, consider using aspell instead
german/ispell-neu|german/aspell|2014-01-29|Removed, consider using aspell instead
hungarian/ispell|hungarian/aspell|2014-01-29|Removed, consider using aspell instead
polish/ispell|polish/aspell|2014-01-29|Removed, consider using aspell instead
portuguese/ispell-pt_BR|portuguese/aspell-pt_BR|2014-01-29|Removed, consider using aspell instead
russian/rus-ispell|russian/aspell|2014-01-29|Removed, consider using aspell instead
textproc/british-ispell|textproc/en-aspell|2014-01-29|Removed, consider using aspell instead
textproc/es-ispell|textproc/es-aspell|2014-01-29|Removed, consider using aspell instead
textproc/ispell|textproc/aspell-ispell|2014-01-29|Removed, consider using aspell instead
textproc/it-ispell|textproc/it-aspell|2014-01-29|Removed, consider using aspell instead
textproc/nl-ispell|textproc/nl-aspell|2014-01-29|Removed, consider using aspell instead
textproc/sk-ispell|textproc/sk-aspell|2014-01-29|Removed, consider using aspell instead
ukrainian/ispell|ukrainian/aspell|2014-01-29|Removed, consider using aspell instead
databases/p5-DBD-mysql52|databases/p5-DBD-mysql|2014-01-29|Depends on expired MySQL version
audio/gsi||2014-01-30|Removed, abandonware
multimedia/kino||2014-01-31|Has expired: Not developed since 2009, declared dead 05.08.2013 on there website
x11-drivers/xf86-video-imstt||2014-01-31|Has expired: Broken, unsupported and unmaintained upstream
x11-drivers/xf86-video-via||2014-01-31|Has expired: Broken, not supported upstream
multimedia/vdr-plugin-softdevice||2014-01-31|Has expired: Broken after ffmpeg update (not sure it ever worked)
sysutils/mbmon|sysutils/xmbmon|2014-01-31|Has expired: Use sysutils/xmbmon instead. This port will be removed soon
dns/bind96||2014-01-31|Has expired: EOL in January 2014, consider moving to Bind 9.8 or 9.9
x11-drivers/xf86-video-nouveau||2014-01-31|Has expired: missing kernel support; use official NVidia driver
cad/mars||2014-01-31|Removed, abandonware, no releases in the past 20 years
polish/gimp-help||2014-02-01|Removed, excluded from gimp-help-2.8.1 release
multimedia/xbmc-pvr||2014-02-03|Has expired: multimedia/xbmc and multimedia/xbmc-addon-pvr are newer
misc/libmcal||2014-02-03|Has expired: No more used and development discontinued
textproc/py-4suite||2014-02-03|Has expired: only builds with Python up to version 2.4
multimedia/xbmc-addon-xvdr||2014-02-03|Has expired: Depends on expired multimedia/xbmc-pvr
deskutils/gmcal||2014-02-03|Has expired: Depends on expired misc/libmcal
deskutils/mcal||2014-02-03|Has expired: Depends on expired misc/libmcal
sysutils/relpath||2014-02-03|Has expired: unfetchable distfiles
sysutils/decomment||2014-02-03|Has expired: unfetchable distfiles
multimedia/openmovieeditor||2014-02-03|Has expired: segfaults, upstream development ceased
french/gfaim||2014-02-04|Abandonware
math/matlab-R2012a-installer|math/matlab-installer|2014-02-04|Now it can handle any Matlab version
games/deal||2014-02-05|Abandonware
japanese/grep|textproc/gnugrep|2014-02-06|Official version properly support multi-byte, consider using textproc/gnugrep
www/comclear||2014-02-06|Netscape doesn't exist anymore
editors/openoffice-3|editors/openoffice-4|2014-02-07|OpenOffice 3 is not supported anymore
mail/muttzilla||2014-02-07|Netscape doesn't exist anymore
www/nscache||2014-02-07|Netscape doesn't exist anymore
audio/bebocd||2014-02-08|Has expired: abandoned by mainstream
www/runsomebrowser|www/webbrowser|2014-02-09|Name changed
irc/trickyirc||2014-02-10|Abandonware, segfaults, no releases in 15 years
databases/p5-DBD-mysql55|databases/p5-DBD-mysql|2014-02-12|If you need a different default MYSQL version, use DEFAULT_VERSIONS
databases/p5-DBD-mysql56|databases/p5-DBD-mysql|2014-02-12|If you need a different default MYSQL version, use DEFAULT_VERSIONS
textproc/p5-ElasticSearch|textproc/p5-ElasticSearch-legacy|2014-02-12|This version is deprecated in favor of the official client
x11-fonts/cosmic-sans-neue-mono|x11-fonts/fantasque-sans-mono|2014-02-13|Renamed upstream
mail/zmailer||2014-02-13|Broken since at least last August
lang/gcc34|lang/gcc|2014-02-13|Superseded by GCC 4.6 or later
lang/perl5.12|lang/perl5.16|2014-02-14|Has expired: no longer under development, use lang/perl5.18 or lang/perl5.16
devel/adabooch-doc-html||2014-02-15|Obsolete; adabooch now has DOCS option
x11-toolkits/sakura|x11/sakura|2014-02-16|Moved to a better category
misc/kde4-shared-mime-info||2014-02-18|Removed: this port is not needed anymore
deskutils/kdepim44-runtime||2014-02-18|Removed: conflicts with new kdepimlibs
deskutils/kdepim44||2014-02-18|Removed: depends on deskutils/kdepim44-runtime
misc/kde-xdg-env||2014-02-18|Removed, remnant of KDE 3
lang/g95||2014-02-18|Removed, uses an old version of GCC which can't be built anymore
games/py-ski|games/ski|2014-02-18|Rename to match upstream naming
textproc/docbook-241|textproc/docbook-sgml|2014-02-19|Merged into textproc/docbook-sgml
textproc/docbook-300|textproc/docbook-sgml|2014-02-19|Merged into textproc/docbook-sgml
textproc/docbook-310|textproc/docbook-sgml|2014-02-19|Merged into textproc/docbook-sgml
textproc/docbook-400|textproc/docbook-sgml|2014-02-19|Merged into textproc/docbook-sgml
textproc/docbook-410|textproc/docbook-sgml|2014-02-19|Merged into textproc/docbook-sgml
textproc/docbook-420|textproc/docbook-sgml|2014-02-19|Merged into textproc/docbook-sgml
textproc/docbook-430|textproc/docbook-sgml|2014-02-19|Merged into textproc/docbook-sgml
textproc/docbook-440|textproc/docbook-sgml|2014-02-19|Merged into textproc/docbook-sgml
textproc/docbook-450|textproc/docbook-sgml|2014-02-19|Merged into textproc/docbook-sgml
textproc/docbook-xml-430|textproc/docbook-xml|2014-02-19|Merged into textproc/docbook-xml
textproc/docbook-xml-440|textproc/docbook-xml|2014-02-19|Merged into textproc/docbook-xml
textproc/docbook-xml-450|textproc/docbook-xml|2014-02-19|Merged into textproc/docbook-xml
textproc/docbook-500|textproc/docbook-xml|2014-02-19|Merged into textproc/docbook-xml
textproc/docbook-sk|textproc/docbook-xml|2014-02-19|Merged into textproc/docbook-xml
emulators/ski||2014-02-19|Removed, does not exist on HP's site anymore
sysutils/liblogging|devel/liblogging|2014-02-20|Already exists as devel/liblogging
devel/bzr-grep||2014-02-24|Has expired: Broken for more than 4 months
multimedia/youtube-viewer||2014-02-24|Has expired: Development ceased for 2.5 branch, conflict with gtk-youtube-viewer
x11-toolkits/flvw||2014-02-24|Abandonware
textproc/p5-XML-Xerces||2014-02-24|Depends on a non supported version of xerces-c
x11-toolkits/fl_editor||2014-02-24|Abandonware, buggy rendering, and not stage friendly
x11-toolkits/gtkunique|x11-toolkits/unique|2014-02-24|Superseded by x11-toolkits/unique
japanese/ruby-man||2014-02-25|Has expired: Documents EOLd version of Ruby and unmaintained
lang/ruby-programmingruby||2014-02-25|Has expired: Documents EOLd version of Ruby and unmaintained
lang/ruby-man||2014-02-25|Has expired: Documents EOLd version of Ruby and unmaintained
lang/ruby-usersguide||2014-02-25|Has expired: Documents EOLd version of Ruby and unmaintained
graphics/wmgrabimage||2014-02-25|Has expired: No more public distfiles
www/trac-hierwiki||2014-02-27|Has expired: Runtime is broken, doesn't support Trac>0.11
www/openvrml||2014-02-27|Has expired: Broken for more than 6 months
science/peekabot||2014-02-27|Has expired: Broken for more than 6 months
misc/xbiso||2014-02-27|Has expired: Broken for more than 6 months
net/hornetq||2014-02-27|Has expired: Broken for more than 6 months
sysutils/slmon||2014-02-27|Has expired: Broken for more than 6 months
www/trac-revtree||2014-02-27|Has expired: Broken for more than 6 months
security/crack||2014-02-27|Has expired: Broken for more than 6 months
sysutils/graphicboot||2014-02-27|Has expired: Broken for more than 6 months, upstream disappeared
graphics/kgraphviewer||2014-02-27|Has expired: Broken for more than 6 months
sysutils/ckl||2014-02-27|Has expired: Broken for more than 6 months
japanese/trac||2014-02-27|Has expired: Broken for more than 6 months
lang/opa||2014-02-27|Has expired: Broken for more than 6 months
sysutils/mmore||2014-02-27|Has expired: Broken for more than 6 months
www/trac-announcer||2014-02-27|Has expired: Broken for more than 6 months
lang/expect-devel||2014-02-28|No longer relevant. Use lang/expect instead
x11-drivers/xf86-video-radeonhd|x11-drivers/xf86-video-ati|2014-02-28|Has expired: Abandoned upstream since 2010
net/asterisk10||2014-02-28|Has expired: asterisk 10 reached EOL on 2013-12-15
textproc/py-lucene||2014-02-28|Has expired: Broken for more than 6 months
lang/gcc44|lang/gcc|2014-02-28|Superseded by GCC 4.6 or later
archivers/php52-bz2||2014-03-01|PHP 5.2 is end-of-life
archivers/php52-zip||2014-03-01|PHP 5.2 is end-of-life
archivers/php52-zlib||2014-03-01|PHP 5.2 is end-of-life
converters/php52-iconv||2014-03-01|PHP 5.2 is end-of-life
converters/php52-mbstring||2014-03-01|PHP 5.2 is end-of-life
converters/php52-recode||2014-03-01|PHP 5.2 is end-of-life
databases/php52-dba||2014-03-01|PHP 5.2 is end-of-life
databases/php52-dbase||2014-03-01|PHP 5.2 is end-of-life
databases/php52-interbase||2014-03-01|PHP 5.2 is end-of-life
databases/php52-mssql||2014-03-01|PHP 5.2 is end-of-life
databases/php52-mysql||2014-03-01|PHP 5.2 is end-of-life
databases/php52-mysqli||2014-03-01|PHP 5.2 is end-of-life
databases/php52-oci8||2014-03-01|PHP 5.2 is end-of-life
databases/php52-odbc||2014-03-01|PHP 5.2 is end-of-life
databases/php52-pdo||2014-03-01|PHP 5.2 is end-of-life
databases/php52-pdo_dblib||2014-03-01|PHP 5.2 is end-of-life
databases/php52-pdo_firebird||2014-03-01|PHP 5.2 is end-of-life
databases/php52-pdo_mysql||2014-03-01|PHP 5.2 is end-of-life
databases/php52-pdo_oci||2014-03-01|PHP 5.2 is end-of-life
databases/php52-pdo_odbc||2014-03-01|PHP 5.2 is end-of-life
databases/php52-pdo_pgsql||2014-03-01|PHP 5.2 is end-of-life
databases/php52-pdo_sqlite||2014-03-01|PHP 5.2 is end-of-life
databases/php52-pgsql||2014-03-01|PHP 5.2 is end-of-life
databases/php52-sqlite||2014-03-01|PHP 5.2 is end-of-life
databases/php52-sybase_ct||2014-03-01|PHP 5.2 is end-of-life
devel/php52-gettext||2014-03-01|PHP 5.2 is end-of-life
devel/php52-json||2014-03-01|PHP 5.2 is end-of-life
devel/php52-ncurses||2014-03-01|PHP 5.2 is end-of-life
devel/php52-pcntl||2014-03-01|PHP 5.2 is end-of-life
devel/php52-pcre||2014-03-01|PHP 5.2 is end-of-life
devel/php52-readline||2014-03-01|PHP 5.2 is end-of-life
devel/php52-shmop||2014-03-01|PHP 5.2 is end-of-life
devel/php52-spl||2014-03-01|PHP 5.2 is end-of-life
devel/php52-sysvmsg||2014-03-01|PHP 5.2 is end-of-life
devel/php52-sysvsem||2014-03-01|PHP 5.2 is end-of-life
devel/php52-sysvshm||2014-03-01|PHP 5.2 is end-of-life
devel/php52-tokenizer||2014-03-01|PHP 5.2 is end-of-life
ftp/php52-curl||2014-03-01|PHP 5.2 is end-of-life
ftp/php52-ftp||2014-03-01|PHP 5.2 is end-of-life
graphics/php52-exif||2014-03-01|PHP 5.2 is end-of-life
graphics/php52-gd||2014-03-01|PHP 5.2 is end-of-life
graphics/php52-ming||2014-03-01|PHP 5.2 is end-of-life
lang/php52||2014-03-01|PHP 5.2 is end-of-life
lang/php52||2014-03-01|PHP 5.2 is end-of-life.ext
lang/php52-extensions||2014-03-01|PHP 5.2 is end-of-life
mail/php52-imap||2014-03-01|PHP 5.2 is end-of-life
math/php52-bcmath||2014-03-01|PHP 5.2 is end-of-life
math/php52-gmp||2014-03-01|PHP 5.2 is end-of-life
misc/php52-calendar||2014-03-01|PHP 5.2 is end-of-life
net/php52-ldap||2014-03-01|PHP 5.2 is end-of-life
net/php52-soap||2014-03-01|PHP 5.2 is end-of-life
net/php52-sockets||2014-03-01|PHP 5.2 is end-of-life
net/php52-xmlrpc||2014-03-01|PHP 5.2 is end-of-life
net-mgmt/php52-snmp||2014-03-01|PHP 5.2 is end-of-life
security/php52-filter||2014-03-01|PHP 5.2 is end-of-life
security/php52-hash||2014-03-01|PHP 5.2 is end-of-life
security/php52-mcrypt||2014-03-01|PHP 5.2 is end-of-life
security/php52-mhash||2014-03-01|PHP 5.2 is end-of-life
security/php52-openssl||2014-03-01|PHP 5.2 is end-of-life
sysutils/pecl-fileinfo||2014-03-01|PHP 5.2 is end-of-life
sysutils/php52-posix||2014-03-01|PHP 5.2 is end-of-life
textproc/php52-ctype||2014-03-01|PHP 5.2 is end-of-life
textproc/php52-dom||2014-03-01|PHP 5.2 is end-of-life
textproc/php52-pspell||2014-03-01|PHP 5.2 is end-of-life
textproc/php52-simplexml||2014-03-01|PHP 5.2 is end-of-life
textproc/php52-wddx||2014-03-01|PHP 5.2 is end-of-life
textproc/php52-xml||2014-03-01|PHP 5.2 is end-of-life
textproc/php52-xmlreader||2014-03-01|PHP 5.2 is end-of-life
textproc/php52-xmlwriter||2014-03-01|PHP 5.2 is end-of-life
textproc/php52-xsl||2014-03-01|PHP 5.2 is end-of-life
www/php52-session||2014-03-01|PHP 5.2 is end-of-life
www/php52-tidy||2014-03-01|PHP 5.2 is end-of-life
lang/clang31||2014-03-01|Has expired: No remaining dependencies
devel/llvm31||2014-03-01|Has expired: No remaining dependencies (except clang31)
shells/bash-devel|shells/bash|2014-03-03|Maintainer reset, main port now properly maintained
shells/bash-static-devel|shells/bash-static|2014-03-03|Maintainer reset, main port now properly maintained
x11/mgapdesk||2014-03-03|Has expired: Needs an old (pre-7.2) XFree86/X.Org header file to build
security/kwallet|security/kwalletmanager|2014-03-04|Renamed to match upstream naming
databases/mysqlard||2014-03-06|Has expired: Abandonware
print/acrobatviewer||2014-03-06|Has expired: Abandoned, outdated (no updates since 1999)
multimedia/castpodder||2014-03-06|Has expired: Depends on deprecated multimedia/beep-media-player
audio/bmp-modplug|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/bmp-fc|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/bmp-rootvis|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
deskutils/bmp-docklet|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/bmp-festalon|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/bmp-faad|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/bmp-flac|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/bmp-wma|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
multimedia/py-pybmp|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/bmp-mac|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/bmp-songchange|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/bmp-htmlplaylist|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/bmp-crossfade|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/bmp-scrobbler|multimedia/audacious|2014-03-06|Has expired: Abandonware, please consider using multimedia/audacious instead
shells/wapsh||2014-03-06|Broken and abandonware
shells/zoidberg||2014-03-06|Broken and abandonware
x11-toolkits/py31-tkinter|x11-toolkits/py-tkinter|2014-03-06|Has expired: Depends on expiring lang/python31
misc/logsurfer+|misc/logsurfer|2014-03-07|Renamed upstream
net-p2p/i2p|security/i2p|2014-03-07|Category change
deskutils/phprojekt||2014-03-08|Has expired: No more public distfiles
deskutils/libopensync-plugin-synce-legacy||2014-03-08|Has expired: No more public distfiles
dns/skadns||2014-03-08|Has expired: No more public distfiles
sysutils/gkrellmwho2||2014-03-08|Has expired: No more public distfiles
audio/xmms-musepack||2014-03-08|Has expired: No more public distfiles
devel/cvsstat||2014-03-08|Has expired: No more public distfiles
graphics/enfle||2014-03-08|Has expired: No more public distfiles
audio/oggsplit||2014-03-08|Has expired: No more public distfiles
devel/picasm||2014-03-08|Has expired: No more public distfiles
databases/mysql-udf-preg||2014-03-08|Has expired: No more public distfiles
net/mars_nwe||2014-03-08|Has expired: No more public distfiles
audio/fmio||2014-03-08|Has expired: No more public distfiles
audio/libmtp|multimedia/libmtp|2014-03-09|Moved from audio to multimedia
mail/p5-Mail-SpamAssassin-Alt|mail/p5-Mail-SpamAssassin|2014-03-09|Retired; please use mail/p5-Mail-SpamAssassin
mail/fetchyahoo||2014-03-10|Has expired: Yahoo classic mail interface is discontinued, so this port is permanently broken
audio/p5-Audio-Beep||2014-03-10|Has expired: Depends on expiring audio/beep
multimedia/beep-media-player|multimedia/audacious|2014-03-10|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/jumpgis-postgis||2014-03-10|Has expired: Depends on expiring graphics/jumpgis
graphics/jumpgis||2014-03-10|Has expired: No more public distfiles
mail/xfmail||2014-03-10|Has expired: No more public distfiles
net/freenx||2014-03-10|Has expired: Depends on expiring net/nxserver
deskutils/libopensync-plugin-synce||2014-03-10|Has expired: No more public distfiles
irc/irchat-pj-xemacs21-mule||2014-03-10|Has expired: No more public distfiles
irc/pure-xemacs21-mule||2014-03-10|Has expired: No more public distfiles
lang/dice||2014-03-10|Has expired: No more public distfiles
irc/dcc||2014-03-10|Has expired: No more public distfiles
sysutils/backupme||2014-03-10|Has expired: No more public distfiles
net/freeswitch-curl-devel||2014-03-10|Has expired: No more public distfiles
misc/freeswitch-pizzademo-devel||2014-03-10|Has expired: No more public distfiles
emulators/cygne-sdl||2014-03-10|Has expired: No more public distfiles
mail/newmail||2014-03-10|Has expired: No more public distfiles
x11-toolkits/xscoop||2014-03-10|Has expired: No more public distfiles
security/didentd||2014-03-10|Has expired: No more public distfiles
net/freeswitch-sbc-devel||2014-03-10|Has expired: No more public distfiles
multimedia/gxanim||2014-03-10|Has expired: No more public distfiles
www/nd||2014-03-10|Has expired: No more public distfiles
lang/fbbi||2014-03-10|Has expired: No more public distfiles
textproc/csv2xml||2014-03-10|Has expired: No more public distfiles
www/trac-calendar||2014-03-10|Has expired: No more public distfiles
misc/stan||2014-03-10|Has expired: No more public distfiles
japanese/gtkicq||2014-03-10|Has expired: No more public distfiles
net/nc6||2014-03-10|Has expired: No more public distfiles
net/jpcap||2014-03-10|Has expired: No more public distfiles
games/quake-extras||2014-03-10|Has expired: No more public distfiles
net/asfrecorder||2014-03-10|Has expired: No more public distfiles
sysutils/pyrenamer||2014-03-10|Has expired: No more public distfiles
palm/synce-sync-engine||2014-03-10|Has expired: No more public distfiles
www/linux-mplayer-plugin||2014-03-10|Has expired: No more public distfiles
net-mgmt/airport||2014-03-10|Has expired: No more public distfiles
textproc/manued.el||2014-03-10|Has expired: No more public distfiles
sysutils/jailer||2014-03-10|Has expired: No more public distfiles
sysutils/blimitd||2014-03-10|Has expired: No more public distfiles
print/abntex||2014-03-10|Has expired: No more public distfiles
sysutils/monkeytail||2014-03-10|Has expired: No more public distfiles
dns/dns_mre||2014-03-10|Has expired: No more public distfiles
japanese/libjcode||2014-03-10|Has expired: No more public distfiles
net/freeswitch-vanilla-devel||2014-03-10|Has expired: No more public distfiles
sysutils/hdup||2014-03-10|Has expired: No more public distfiles
x11/settitle||2014-03-10|Has expired: No more public distfiles
sysutils/anteater||2014-03-10|Has expired: No more public distfiles
www/trac-pendingticket||2014-03-10|Has expired: No more public distfiles
www/admuser||2014-03-10|Has expired: No more public distfiles
x11-themes/gnome-icons-snowish||2014-03-10|Has expired: No more public distfiles
www/metacafe_dl||2014-03-10|Has expired: No more public distfiles
irc/irchat-pj-emacs21||2014-03-10|Has expired: No more public distfiles
www/horde3-wicked||2014-03-10|Has expired: No more public distfiles
java/drexelsnmp||2014-03-10|Has expired: No more public distfiles
mail/sigit||2014-03-10|Has expired: No more public distfiles
misc/freeswitch-scripts-devel||2014-03-10|Has expired: No more public distfiles
www/vtiger-customerportal||2014-03-10|Has expired: No more public distfiles
irc/pure-emacs21||2014-03-10|Has expired: No more public distfiles
www/extsm||2014-03-10|Has expired: No more public distfiles
misc/cwish||2014-03-10|Has expired: No more public distfiles
www/phpscheduleit||2014-03-10|Has expired: No more public distfiles
palm/synce-serial||2014-03-10|Has expired: No more public distfiles
palm/synce-vdccm||2014-03-10|Has expired: No more public distfiles
net/freeswitch-insideout-devel||2014-03-10|Has expired: No more public distfiles
sysutils/fusefs-fur||2014-03-10|Has expired: No more public distfiles
mail/clamfilter||2014-03-10|Has expired: No more public distfiles
textproc/cost||2014-03-10|Has expired: No more public distfiles
palm/synce-gvfs||2014-03-10|Has expired: No more public distfiles
net/nxserver||2014-03-10|Has expired: No more public distfiles
sysutils/throttle||2014-03-10|Has expired: No more public distfiles
japanese/aterm||2014-03-10|Has expired: No more public distfiles
mail/teapop||2014-03-10|Has expired: No more public distfiles
www/eldav.el||2014-03-10|Has expired: No more public distfiles
graphics/gsnapshot||2014-03-10|Has expired: No more public distfiles
japanese/zangband||2014-03-10|Has expired: No more public distfiles
audio/xmms-wma||2014-03-10|Has expired: No more public distfiles
misc/projectionlib||2014-03-10|Has expired: No more public distfiles
multimedia/smile||2014-03-10|Has expired: No more public distfiles
x11-fm/dfm||2014-03-10|Has expired: No more public distfiles
security/xyssl|security/polarssl|2014-03-10|Has expired: No more public distfiles
japanese/p5-Mail-SpamAssassin|japanese/spamassassin|2014-03-10|Moved to japanese/spamassassin
mail/p5-Mail-SpamAssassin|mail/spamassassin|2014-03-10|Moved to mail/spamassassin
databases/pear-MDB2_Driver_sqlite||2014-03-12|Unmaintained upstream
net/pppd23||2014-03-14|Has expired: Depends on PPPDISC
net/ipa_ip6fw||2014-03-14|Has expired: Depends on IPv6 ipfw firewall
palm/synce-hal||2014-03-14|Has expired: Requires pppd
net/pppoa||2014-03-14|Has expired: Broken on FreeBSD 8.x and later since June 2009
multimedia/linux-huludesktop||2014-03-14|Removed
multimedia/linux_v4l2wrapper-kmod||2014-03-16|Has expired: Included now in all supported FreeBSD versions
devel/sgl||2014-03-16|Has expired: never progressed beyond incomplete graduate project; library was never properly built and not worth fixing
palm/jpilot-db||2014-03-16|Has expired
databases/ludia||2014-03-18|Has expired: Broken since June 2013
lang/schemetoc||2014-03-18|Has expired: Broken since July 2013
sysutils/cfengine-devel||2014-03-19|Has expired: Broken since June 2013
sysutils/py-salt-cloud|sysutils/py-salt|2014-03-19|Removed:py-salt-cloud is now part of py-salt
devel/py-pyzmq|net/py-pyzmq|2014-03-22|Move to a more suitable category with other ZeroMQ ports
audio/p5-Xmms|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-a52dec|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-audiofile|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-cdread|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-crossfade|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-crystality|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-defx|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-efxmms|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-eq|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-fc|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-fxt|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-infopipe|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-jack|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-liveice|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-mac|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-mad|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-midi|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-modplug|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-mp3cue|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-osssurround|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-quix3dn|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-sid|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-sndfile|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-tfmx|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
chinese/xmms|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-blursk|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-dancingparticles|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-dflowers|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-dscope|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-dspectogram|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-dspectral|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-finespectrum|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-fishmatic|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-gdancer|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-iris|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-jess|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-nebulus|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-paranormal|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-scivi|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-vumeter|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
graphics/xmms-waterfall|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
multimedia/gxmms|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
multimedia/xmms-status-plugin|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
russian/xmms|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
x11-themes/xmms-bluecurve-theme|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
x11-themes/xmms-eq-skins|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
x11-themes/xmms-vumeter-skins|multimedia/audacious|2014-03-23|Has expired: Abandonware, please consider using multimedia/audacious instead
mail/mahogany||2014-03-24|Broken with all support compilers
x11-toolkits/py-wxPython26|x11-toolkits/py-wxPython28|2014-03-24|wxPython26 is EOLed
x11-toolkits/py-wxPython26-common|x11-toolkits/py-wxPython28-common|2014-03-24|wxPython26 is EOLed
x11-toolkits/py-wxPython26-unicode|x11-toolkits/py-wxPython28-unicode|2014-03-24|wxPython26 is EOLed
x11-toolkits/wxgtk26|x11-toolkits/wxgtk28|2014-03-24|wxGTK 2.6 is EOLed
x11-toolkits/wxgtk26-common|x11-toolkits/wxgtk28-common|2014-03-24|wxGTK 2.6 is EOLed
x11-toolkits/wxgtk26-contrib|x11-toolkits/wxgtk28-contrib|2014-03-24|wxGTK 2.6 is EOLed
x11-toolkits/wxgtk26-contrib-common|x11-toolkits/wxgtk28-contrib-common|2014-03-24|wxGTK 2.6 is EOLed
x11-toolkits/wxgtk26-docs||2014-03-24|wxGTK 2.6 is EOLed
x11-toolkits/wxgtk26-unicode|x11-toolkits/wxgtk28-unicode|2014-03-24|wxGTK 2.6 is EOLed
x11-toolkits/wxgtk26-unicode-contrib|x11-toolkits/wxgtk28-unicode-contrib|2014-03-24|wxGTK 2.6 is EOLed
x11-toolkits/wxgtk29|x11-toolkits/wxgtk30|2014-03-24|wxGTK 2.9 was a development version superseded by the 3.0 release
accessibility/ruby-atk||2014-03-24|Has expired: Use rubygem-atk instead
devel/ruby-gio2||2014-03-24|Has expired: Use rubygem-gio2 instead
devel/ruby-glib2||2014-03-24|Has expired: Use rubygem-glib2 instead
graphics/ruby-cairo||2014-03-24|Has expired: Use rubygem-cairo instead
graphics/ruby-gdk_pixbuf2||2014-03-24|Has expired: Use rubygem-gdk_pixbuf2 instead
graphics/ruby-rsvg2||2014-03-24|Has expired: Use rubygem-rsvg2 instead
x11-toolkits/ruby-goocanvas||2014-03-24|Has expired: No longer included upstream
x11-toolkits/ruby-gstreamer||2014-03-24|Has expired: Use rubygem-gstreamer instead
x11-toolkits/ruby-gtk2||2014-03-24|Has expired: Use rubygem-gtk2 instead
x11-toolkits/ruby-gtksourceview2||2014-03-24|Has expired: Use rubygem-gtksourceview2 instead
x11-toolkits/ruby-pango||2014-03-24|Has expired: Use rubygem-pango instead
x11-toolkits/ruby-poppler||2014-03-24|Has expired: Use rubygem-poppler instead
x11-toolkits/ruby-vte||2014-03-24|Has expired: Use rubygem-vte instead
x11/ruby-gnome2||2014-03-24|Has expired: Use rubygem-gnome2 instead
deskutils/lxshortcut||2014-03-24|Has expired: Now distributed with x11/libfm-1.2.0
databases/p5-Ima-DBI-Contextual||2014-03-24|Has expired: deprecated by upstream
databases/p5-Class-DBI-Lite||2014-03-24|Has expired: deprecated by upstream
net/AquaGatekeeper||2014-03-24|Has expired: Binary port of software abandoned by the vendor
games/xflame||2014-03-24|Has expired: No more public distfiles
games/p5-Algorithm-Pair-Best|games/p5-Algorithm-Pair-Best2|2014-03-24|Has expired: Use games/p5-Algorithm-Pair-Best2 instead
x11-wm/hackedbox||2014-03-24|Has expired: Abandonware
emulators/hfs|sysutils/hfsutils|2014-03-24|Has expired: No upstream, no public distfiles; consider using 'sysutils/hfsutils'
games/fuhquake||2014-03-24|Has expired: Upstream disappeared; no more public distfiles; unmaintained
games/xarchon||2014-03-25|Has expired: Unusable, development ceased, not works with stage
lang/libstdc++_stldoc_3.4.0||2014-03-25|STL 3.4 is not supported for long
games/linux-warsow||2014-03-26|Has expired: outdated, broken
audio/pysol-sound-server|games/pysolfc|2014-03-28|Has expired: Broken, abandonware, use pysolfc
games/pysol-cardsets|games/pysolfc|2014-03-28|Has expired: Broken, abandonware, use pysolfc
games/pysol-music|games/pysolfc|2014-03-28|Has expired: Broken, abandonware, use pysolfc
games/pysol|games/pysolfc|2014-03-28|Has expired: Broken, abandonware, use pysolfc
devel/ros_tutorials||2014-03-28|Has expired: Depends on expiring devel/ros_comm
math/ros-geometry||2014-03-28|Has expired: Depends on expiring devel/ros_comm
devel/ros-nxt||2014-03-28|Has expired: Depends on expiring devel/ros_comm
devel/ros-rx||2014-03-28|Has expired: Depends on expiring devel/ros_comm
devel/R-cran-vcd||2014-03-28|Has expired: New port without proper maintainer
devel/ros-documentation||2014-03-28|Has expired: Depends on expiring devel/ros_comm
devel/ros-common_msgs||2014-03-28|Has expired: Depends on expiring devel/ros_comm
devel/ros_comm||2014-03-28|Has expired: Broken for more than 6 months
devel/cross-gdb||2014-03-28|Has expired: No more public distfiles, unstaged
x11-wm/fvwm2-i18n|x11-wm/fvwm2|2014-03-28|Does not differ from main fvwm2 port
games/linux-spheresofchaos-demo||2014-03-28|Has expired: No more public distfiles
chinese/php5-cconv|chinese/php-cconv|2014-03-30|Rename to php-
emulators/gxmame||2014-03-30|Has expired: Depends on deprecated emulators/xmame
emulators/pyxmame||2014-03-30|Has expired: Depends on deprecated emulators/xmame
emulators/xmess||2014-03-30|Has expired: No more public distfiles
benchmarks/xdd||2014-03-30|Has expired: No more public distfiles
chinese/srecite||2014-03-30|Has expired: No more public distfiles
games/hlstats||2014-03-30|Has expired: No more public distfiles
audio/teamspeak_server||2014-03-30|Has expired: No more public distfiles
games/utserver||2014-03-30|Has expired: No more public distfiles
databases/p5-hp200lx-db||2014-03-30|Has expired: No more public distfiles
audio/teamspeak_client||2014-03-30|Has expired: No more public distfiles
german/vtiger||2014-03-30|Has expired: Depends on expiring www/vtiger
www/gallery||2014-03-30|Has expired: No more public distfiles
www/vtiger||2014-03-30|Has expired: No more public distfiles
net/linux-nx-client||2014-03-30|Has expired: No more public distfiles
emulators/extract-xiso||2014-03-30|Has expired: No more public distfiles
www/trac-wantedpages||2014-03-30|Has expired: No more public distfiles
www/trac-codetags||2014-03-30|Has expired: No more public distfiles
www/trac-addcomment||2014-03-30|Has expired: No more public distfiles
www/trac-nav||2014-03-30|Has expired: No more public distfiles
www/trac-pagetopdf||2014-03-30|Has expired: No more public distfiles
sysutils/logmon||2014-03-30|Has expired: No more public distfiles
www/trac-simpleticket||2014-03-30|Has expired: No more public distfiles
www/trac-wikinegotiator||2014-03-30|Has expired: No more public distfiles
www/trac-pagelist||2014-03-30|Has expired: No more public distfiles
www/trac-remind||2014-03-30|Has expired: No more public distfiles
www/trac-macropost||2014-03-30|Has expired: No more public distfiles
lang/rscheme||2014-03-30|Has expired: No more public distfiles
emulators/xmame||2014-03-30|Has expired: No more public distfiles
devel/hyena||2014-04-01|Has expired: Broken for more than 6 months
print/pdfmod||2014-04-01|Has expired: Depends on expired devel/hyena, unstaged, uses old standards
security/gnutls-devel||2014-04-01|Has expired: Stale, broken and vulnerable
sysutils/epylog||2014-04-01|Has expired: distfiles no longer fetchable
japanese/Wnn6||2014-04-01|Has expired: Unmaintained, interactive and restricted
japanese/srd-fpw||2014-04-01|Has expired: Unmaintained, interactive and restricted
japanese/mypaedia-fpw||2014-04-01|Has expired: Unmaintained, interactive and restricted
news/dnews||2014-04-01|Has expired: Unmaintained, interactive and restricted
devel/adasdl|devel/sdl_gnat|2014-04-01|Has expired: Ancient, does not build on amd64; use devel/sdl_gnat instead
lang/gnat|lang/gcc-aux|2014-04-01|Has expired: The Ada framework is based on lang/gcc-aux, use it instead
textproc/p5-Elasticsearch|textproc/p5-Search-Elasticsearch|2014-04-02|Renamed upstream
net/kdnssd|net/zeroconf-ioslave|2014-04-03|Renamed to match upstream naming
www/aolserver||2014-04-03|Has expired: abandonware, messing up on clusters
www/openacs-dotlrn||2014-04-03|Has expired: Depends on expiring www/aolserver
www/openacs||2014-04-03|Has expired: Depends on expiring www/aolserver
security/aolserver-nsmcrypt||2014-04-03|Has expired: abandonware, messing up on clusters
www/aolserver-xotcl||2014-04-03|Has expired: abandonware, messing up on clusters
graphics/aolserver-nsgd||2014-04-03|Has expired: abandonware, messing up on clusters
security/aolserver-nsencrypt||2014-04-03|Has expired: abandonware, messing up on clusters
security/aolserver-nsmhash||2014-04-03|Has expired: abandonware, messing up on clusters
archivers/aolserver-nszlib||2014-04-03|Has expired: abandonware, messing up on clusters
security/aolserver-nsopenssl||2014-04-03|Has expired: abandonware, messing up on clusters
databases/aolserver-nspostgres||2014-04-03|Has expired: abandonware, messing up on clusters
databases/aolserver-nsmysql||2014-04-03|Has expired: abandonware, messing up on clusters
security/aolserver-nssha1||2014-04-03|Has expired: abandonware, messing up on clusters
www/webobjects||2014-04-04|Has expired: Unmaintained, interactive and restricted
devel/p5-Devel-LeakTrace-Fast||2014-04-04|Has expired: Broken for more than 6 months
www/privoxy+ipv6|www/privoxy|2014-04-06|Has expired: www/privoxy natively supports IPv6
games/f1lt||2014-04-06|Trademark violation: http://www.formula1.com/trademarkguidelines.html
graphics/pyggel|graphics/py-pyggel|2014-04-07|Rename to consistency with other Python ports
japanese/p5-manual||2014-04-08|Outdated manuals
graphics/openclipart||2014-04-08|Outdated, has no real meaning as a port
audio/py-xmms||2014-04-08|Has expired: Abandonware, please consider using multimedia/audacious instead
archivers/ruby-libarchive|archivers/rubygem-libarchive|2014-04-08|Use the rubygem version instead
java/j2sdkee13||2014-04-10|EOLed long ago
astro/glunarclock||2014-04-11|gnome-panel will be updated to the 3.x version which is not compatible with 2.x
databases/libgda2||2014-04-11|Ancient version, consider using newer versions
databases/libgda2-reference||2014-04-11|Ancient version, consider using newer versions
databases/libgda3||2014-04-11|Ancient version, consider using newer versions
databases/libgda3-reference||2014-04-11|Ancient version, consider using newer versions
databases/libgda3-firebird||2014-04-11|Ancient version, consider using newer versions
databases/libgda3-freetds||2014-04-11|Ancient version, consider using newer versions
databases/libgda3-ldap||2014-04-11|Ancient version, consider using newer versions
databases/libgda3-mdb||2014-04-11|Ancient version, consider using newer versions
databases/libgda3-mysql||2014-04-11|Ancient version, consider using newer versions
databases/libgda3-odbc||2014-04-11|Ancient version, consider using newer versions
databases/libgda3-odbc||2014-04-11|Ancient version, consider using newer versions
databases/libgda3-postgresql||2014-04-11|Ancient version, consider using newer versions
databases/libgnomedb||2014-04-11|Superseded by libgda starting from version 4
databases/libgnomedb-reference||2014-04-11|Superseded by libgda starting from version 4
databases/mergeant||2014-04-11|Superseded by libgda starting from version 4
deskutils/evolution-jescs||2014-04-11|Doesn't work with newer version of evolution
deskutils/nautilus-locked-folder||2014-04-11|Has expired: nautilus will be updated to the 3.x version which is not compatible with 2.x
www/screem||2014-04-11|Has expired: gnome-menus 2.x will be updated in the GNOME 3 import
deskutils/nautilus-open-terminal||2014-04-11|Has expired: nautilus will be updated to the 3.x version which is not compatible with 2.x
sysutils/eiciel||2014-04-11|Has expired: nautilus will be updated to the 3.x version which is not compatible with 2.x
sysutils/nautilus-cd-burner||2014-04-11|Has expired: nautilus will be updated to the 3.x version which is not compatible with 2.x
x11-fm/py-nautilus||2014-04-11|Has expired: nautilus will be updated to the 3.x version which is not compatible with 2.x
sysutils/sensors-applet||2014-04-11|Has expired: gnome-panel 2.x will be updated in the GNOME 3 import
net/link-monitor-applet||2014-04-11|Has expired: gnome-panel 2.x will be updated in the GNOME 3 import
net/netspeed_applet||2014-04-11|Has expired: gnome-panel 2.x will be updated in the GNOME 3 import
net/remmina-applet||2014-04-11|Has expired: gnome-panel 2.x will be updated in the GNOME 3 import
misc/uf-view||2014-04-11|Has expired: gnome-desktop 2.x will be updated in the GNOME 3 import
textproc/uim-gnome||2014-04-11|Has expired: gnome-panel 2.x will be updated in the GNOME 3 import
audio/istream||2014-04-11|Has expired: gnome-panel will be updated to the 3.x version which is not compatible with 2.x
mail/contact-lookup-applet||2014-04-11|Has expired: gnome-panel will be updated to the 3.x version which is not compatible with 2.x
security/tuntun||2014-04-11|Has expired: gnome-panel 2.x will be updated in the GNOME 3 import
misc/quick-lounge-applet||2014-04-11|Has expired: gnome-panel 2.x will be updated in the GNOME 3 import
sysutils/bubblemon2||2014-04-11|Has expired: gnome-panel 2.x will be updated in the GNOME 3 import
lang/tcltutor||2014-04-11|Removed, depends on expired ports, unstaged, abandonware
palm/gnome-pilot||2014-04-11|Has expired: gnome-panel 2.x will be updated in the GNOME 3 import
palm/gnome-pilot-conduits||2014-04-11|Removed (depends on gnome-pilot)
www/p5-CGI-modules||2014-04-11|Has expired: No more public distfiles
www/p5-WWW-Link||2014-04-11|Has expired: Depends on expired www/p5-CGI-modules
www/sbox-dtc||2014-04-11|Has expired: No more public distfiles
sysutils/dtc||2014-04-11|Has expired: Depends on expired www/sbox-dtc
textproc/glimpse||2014-04-11|Has expired: No more public distfiles
ftp/ftplocate||2014-04-11|Has expired: Depends on expired textproc/glimpse
misc/tkman||2014-04-11|Has expired: Depends on expired textproc/glimpse
net/pcnfsd||2014-04-11|Has expired: Unmaintained since 1997
cad/chipmunk||2014-04-11|Has expired: Unmaintained since 1999
graphics/comix||2014-04-11|Has expired: Insists on installing in /usr/local, and uses nautilus2 which is deprecated
www/mambo||2014-04-11|Has expired: Broken for more than 6 months
devel/lua-rds-parser||2014-04-11|Has expired: Broken for more than 6 months
japanese/exmh2||2014-04-11|Has expired: Unmaintained since 1999
net/freewais-sf||2014-04-11|Has expired: Unmaintained since 1999
editors/elvis||2014-04-11|Has expired: Unmaintained since 1999
japanese/sed||2014-04-11|Has expired: Unmaintained since 1999
x11-fm/xfm||2014-04-11|Has expired: Unmaintained since 1999
print/rtf2latex||2014-04-11|Has expired: Unmaintained since 1999
graphics/fbm||2014-04-11|Has expired: Unmaintained since 1999
devel/p5-Penguin-Easy||2014-04-11|Has expired: Unmaintained since 2000
emulators/prodosemu||2014-04-11|Has expired: Unmaintained since 2000
security/gtkportscan||2014-04-11|Has expired: Unmaintained since 2000
graphics/xmfract||2014-04-11|Has expired: Unmaintained since 2000
databases/xmbase-grok||2014-04-11|Has expired: Unmaintained since 2000
emulators/svr4_base||2014-04-11|Has expired: Unmaintained since 2000
math/freefem||2014-04-11|Has expired: Unmaintained since 2000
graphics/tiff2png||2014-04-11|Has expired: Unmaintained since 2000
math/wingz||2014-04-11|Has expired: Unmaintained since 2000
lang/STk||2014-04-11|Has expired: Unmaintained since 2000
graphics/kdc2tiff||2014-04-11|Has expired: Unmaintained since 2000
math/xlispstat||2014-04-11|Has expired: Unmaintained since 2000
databases/typhoon||2014-04-11|Has expired: Unmaintained since 2000
graphics/dc20ctrl||2014-04-11|Has expired: Unmaintained since 2000
www/fhttpd||2014-04-11|Has expired: Unmaintained since 2000
graphics/xmorph||2014-04-11|Has expired: Unmaintained since 2000
editors/axe||2014-04-11|Has expired: Unmaintained since 2000
www/cgic||2014-04-11|Has expired: Unmaintained since 2000
devel/orbitcpp||2014-04-11|Unused anymore, not libc++ friendly
graphics/sodipodi|graphics/inkscape|2014-04-11|Sodipodi did not survive the Inkscape fork
devel/g-wrap||2014-04-11|Unused, not stage friendly
net/pvm++||2014-04-13|Has expired: Unmaintained since 2001
devel/ixlib||2014-04-13|Has expired: Unmaintained since 2001
mail/althea||2014-04-13|Has expired: Unmaintained since 2001
graphics/claraocr||2014-04-13|Has expired: Unmaintained since 2001
graphics/qvplay||2014-04-13|Has expired: Unmaintained since 2001
print/guitartex||2014-04-13|Has expired: Unmaintained since 2001
graphics/opendis||2014-04-13|Has expired: Unmaintained since 2001
net/gnome-mud||2014-04-13|Has expired: Unmaintained since 2001
graphics/maverik||2014-04-13|Has expired: Unmaintained since 2001
biology/rasmol||2014-04-13|Has expired: Unmaintained since 2001
mail/mail2procmailrc||2014-04-13|Has expired: Unmaintained since 2001
science/felt||2014-04-13|Has expired: Unmaintained since 2001
textproc/pardiff||2014-04-13|Has expired: Unmaintained since 2001
lang/klone||2014-04-13|Has expired: Unmaintained since 2001
net/rmsg||2014-04-13|Has expired: Unmaintained since 2001
net/sharity-light||2014-04-13|Has expired: Unmaintained since 2001
biology/genpak||2014-04-13|Has expired: Unmaintained since 2001
net/forg||2014-04-13|Has expired: Unmaintained since 2001
misc/txt2regex||2014-04-13|Has expired: Unmaintained since 2001
textproc/ipdf||2014-04-13|Has expired: Unmaintained since 2001
graphics/plotmtv||2014-04-13|Has expired: Unmaintained since 2001
devel/happydoc||2014-04-13|Has expired: Unmaintained since 2001
print/cpp2latex||2014-04-13|Has expired: Unmaintained since 2001
graphics/svg2swf||2014-04-13|Has expired: Unmaintained since 2001
devel/flick||2014-04-13|Has expired: Unmaintained since 2001
mail/smail||2014-04-13|Has expired: Unmaintained since 2001
net/net-http||2014-04-13|Has expired: Unmaintained since 2001
graphics/camediaplay||2014-04-13|Has expired: Unmaintained since 2001
math/umatrix||2014-04-13|Has expired: Unmaintained since 2001
lang/f77||2014-04-13|Has expired: Unmaintained since 2001
security/labrea||2014-04-14|Has expired: Unmaintained since 2003
lang/dmd|lang/dmd1|2014-04-14|Upline no longer supports dmd 1.X, it is now the secondary dmd port
www/mod_python3|www/mod_python33|2014-04-15|Port moved to reflect PKGNAMESUFFIX
lang/dragonegg-devel46||2014-04-16|C++ library incompatibilities, unmaintained upstream
ports-mgmt/pkgsearch||2014-04-18|Has expired: Upstream disappeared
science/flounder||2014-04-18|Has expired: Unmaintained since 2002
security/nbaudit||2014-04-18|Has expired: Unmaintained since 2002
security/saint||2014-04-18|Has expired: Unmaintained since 2002
graphics/gozer||2014-04-18|Has expired: Unmaintained since 2002
misc/pdfmap||2014-04-18|Has expired: Unmaintained since 2002
devel/showgrammar||2014-04-18|Has expired: Unmaintained since 2002
biology/libgenome||2014-04-18|Has expired: Unmaintained since 2002
deskutils/narval||2014-04-18|Has expired: Unmaintained since 2002
devel/fampp||2014-04-18|Has expired: Unmaintained since 2002
net-p2p/py-fngrab||2014-04-18|Has expired: Unmaintained since 2002
misc/wmfirew||2014-04-18|Has expired: Unmaintained since 2002
x11-wm/e16utils||2014-04-18|Has expired: Unmaintained since 2002
misc/salias||2014-04-18|Has expired: Unmaintained since 2002
print/latex2slides||2014-04-18|Has expired: Unmaintained since 2002
lang/sxm||2014-04-18|Has expired: Unmaintained since 2002
textproc/pybook||2014-04-18|Has expired: Unmaintained since 2002
mail/mailcrypt||2014-04-18|Has expired: Unmaintained since 2002
japanese/elvis||2014-04-18|Has expired: Unmaintained since 2002
devel/prototype||2014-04-18|Has expired: Unmaintained since 2002
print/wprint||2014-04-18|Has expired: Unmaintained since 2002
science/euler||2014-04-18|Has expired: Unmaintained since 2002
multimedia/gopchop||2014-04-18|Has expired: Unmaintained since 2002
science/gdis||2014-04-18|Has expired: Unmaintained since 2002
net/googolplex||2014-04-18|Has expired: Unmaintained since 2002
lang/logo||2014-04-18|Has expired: Unmaintained since 2002
textproc/roap||2014-04-18|Has expired: Unmaintained since 2002
x11-wm/afterstep-i18n||2014-04-18|Has expired: Unmaintained since 2002
games/yamsweeper||2014-04-18|Has expired: Unmaintained since 2002
net-mgmt/echolot||2014-04-18|Has expired: Unmaintained since 2002
security/pam_smb||2014-04-18|Has expired: Unmaintained since 2002
devel/lua-redis-parser||2014-04-18|Has expired: Broken for more than 6 months
biology/finchtv||2014-04-18|Has expired: Broken for more than 6 months
net-im/ari-yahoo||2014-04-18|Has expired: Broken for more than 1 year (http://www.icculus.org/ari-yahoo/)
www/sams||2014-04-21|Depends on PHP 4 which was removed two years ago
x11-toolkits/vdkbuilder||2014-04-22|Abandonware, not stage friendly
emulators/mupen64-sdlinput|emulators/mupen64plus-input-sdl|2014-04-24|Has expired: Use mupen64plus instead
emulators/mupen64-sdlaudio|emulators/mupen64plus-audio-sdl|2014-04-24|Has expired: Use mupen64plus instead
emulators/mupen64-tr64||2014-04-24|Has expired: Use mupen64plus instead
emulators/mupen64-gln64||2014-04-24|Has expired: Use mupen64plus instead
emulators/mupen64-sound||2014-04-24|Has expired: Use mupen64plus instead
emulators/mupen64-rsp||2014-04-24|Has expired: Use mupen64plus instead
emulators/mupen64-input||2014-04-24|Has expired: Use mupen64plus instead
emulators/mupen64-glide|emulators/mupen64plus-video-glide64|2014-04-24|Has expired: Use mupen64plus instead
emulators/mupen64|emulators/mupen64plus|2014-04-24|Has expired: Use mupen64plus instead
emulators/mupen64-softgfx||2014-04-24|Has expired: Use mupen64plus instead
emulators/mupen64-dummyaudio||2014-04-24|Has expired: Use mupen64plus instead
emulators/mupen64-base|emulators/mupen64plus-core|2014-04-24|Has expired: Use mupen64plus instead
x11/emu||2014-04-24|Has expired: Broken, not staged
lang/ruby-doc-stdlib||2014-04-24|Has expired: Upstream rerolls frequently, online docs work well
emulators/mupen64-rice|emulators/mupen64plus-video-rice|2014-04-24|Removed, part of removed mupen64
devel/otrs|www/otrs|2014-04-28|OTRS is actually web based ticket system and it has nothing with development
audio/cantus_3||2014-04-28|Broken for a while, does not build with modern compilers
multimedia/xfce4-xmms-plugin||2014-04-28|Has expired: Abandonware, and can't select another player instead XMMS
multimedia/xmms-weasel||2014-04-28|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/xmms-sexyspc||2014-04-28|Has expired: Abandonware, please consider using multimedia/audacious instead
audio/libmusicbrainz4|audio/libmusicbrainz5|2014-04-28|Has expired: Please use audio/libmusicbrainz5 instead
cad/kicad-library||2014-05-02|kicad-library is no more distributed separately
science/netcdf-ftn|science/netcdf-fortran|2014-05-03|Use science/netcdf-fortran instead
science/netcdf3-ftn|science/netcdf-fortran|2014-05-03|Use science/netcdf-fortran instead
science/netcdf4|science/netcdf|2014-05-03|Use science/netcdf instead
x11-toolkits/gigi||2014-05-04|Has expired: Does not compile on 10 or higher
net/asterisk-oh323||2014-05-04|Has expired: Depends on broken and unsupported asterisk14
net/asterisk14||2014-05-04|Has expired: Broken and unsupported
net/asterisk14-addons||2014-05-04|Has expired: Depends on broken and unsupported asterisk14
ports-mgmt/pkg_install||2014-05-04|Has expired: Replaced by ports-mgmt/pkg
x11-drivers/xf86-input-magictouch||2014-05-04|Has expired: Does not compile
x11-drivers/xf86-video-cyrix||2014-05-04|Has expired: requires pciVideoPtr typedef
x11-drivers/xf86-video-sis-intel||2014-05-04|Has expired: requires pciVideoPtr typedef
net/py-spreadmodule||2014-05-04|Has expired: Depends on expired net/spread
net/p5-Spread-Message||2014-05-04|Has expired: Depends on expired net/spread
net/p5-POE-Component-Spread||2014-05-04|Has expired: Depends on expired net/spread
net/p5-Spread-Session||2014-05-04|Has expired: Depends on expired net/spread
lang/ml-pnet||2014-05-04|Has expired: Alpha-quality abandonware - Decommissioned Dec 2012 - Use mono
lang/treecc||2014-05-04|Has expired: PNET dependency decommissioned Dec 2012
lang/pnetlib||2014-05-04|Has expired: Alpha-quality abandonware - Decommissioned Dec 2012 - Use mono
lang/pnet-base||2014-05-04|Has expired: Alpha-quality abandonware - Decommissioned Dec 2012 - Use mono
benchmarks/pnetmark||2014-05-04|Has expired: PNET dependency decommissioned Dec 2012
lang/pnet||2014-05-04|Has expired: Alpha-quality abandonware - Decommissioned Dec 2012 - Use mono
x11-wm/stumpwm||2014-05-04|Has expired: Broken for more than 4 months
sysutils/cpupowerd||2014-05-04|Has expired: Not maintained from upstream anymore and only supports ancient AMD K8
net/pchar||2014-05-04|Has expired: Obsolete, abandoned
x11-fonts/texcm-ttf||2014-05-04|Has expired: Should be replaced by x11-fonts/stix-fonts
devel/buildapp||2014-05-05|Has expired: Broken for more than 6 months
converters/konwert||2014-05-05|Broken with modern compilers, not staged, no upstream
graphics/gimp-gap||2014-05-05|Broken with gimp 2.8, no release in 5 years
games/gnome-games-extra-data||2014-05-05|Not used in GNOME 3
audio/libshout2|audio/libshout|2014-05-05|Use audio/libshout instead
devel/bsdlibdwarf||2014-05-06|Has expired: Outdated, included in all supported versions of FreeBSD
security/yassl|security/cyassl|2014-05-06|Moved to match upstream name
lang/open-cobol|lang/gnu-cobol|2014-05-07|Moved to match upstream name change
sysutils/lire||2014-05-11|Project is dead
net/ipfw-graph||2014-05-11|Project is dead
java/linux-sun-jre16||2014-05-11|Has expired: Unsupported and known for multiple security vulnerabilities
java/linux-sun-jdk16||2014-05-11|Has expired: Unsupported and known for multiple security vulnerabilities
ports-mgmt/pver||2014-05-11|Has expired: does not support pkgng
databases/firebird20-client|databases/firebird25-client|2014-05-11|Firebird 2.0 is EOLed
databases/firebird20-server|databases/firebird25-server|2014-05-11|Firebird 2.0 is EOLed
editors/ved||2014-05-15|Has expired: Depends on deprecated smake
japanese/chasen||2014-05-15|Has expired: Unmaintained since 2001
www/openx|www/revive-adserver|2014-05-15|Upstream obsolete, forked
security/clamav-devel||2014-05-16|Retire, older than security/clamav
devel/msp430-gcc3||2014-05-18|Version obsolete, use devel/msp430-gcc
graphics/GraphicsMagick12|graphics/GraphicsMagick13|2014-05-20|Has expired: Unmaintained upstream, no ports depending on it. Use graphics/GraphicsMagick13 instead
net-im/tkabber-devel|net-im/tkabber|2014-05-23|Has expired: Unfetchable, outdated by net-im/tkabber
devel/libglade-java||2014-05-26|Has expired: Unmaintained, outdated, not depended on
lang/lua|lang/lua51|2014-05-26|Rename to allow multiple version of lua to coexist
math/py-graphtool||2014-05-27|Has expired: Broken for more than 6 months
devel/clint||2014-05-27|Has expired: Broken for more than 6 months
x11-toolkits/libgtk-java||2014-05-27|Has expired: Unmaintained, outdated, not depended on
graphics/cairo-java||2014-05-27|Has expired: Unmaintained, outdated, not depended on
devel/libgconf-java||2014-05-27|Has expired: Unmaintained, outdated, not depended on
x11/libgnome-java||2014-05-27|Has expired: Unmaintained, outdated, not depended on
security/calife-devel||2014-05-28|Replaced by security/calife
sysutils/synergy-devel||2014-05-30|Replaced by sysutils/synergy
net-im/vicq||2014-05-30|Has expired: Unmaintained, outdated, not depended on
net-im/mercury||2014-05-31|Has expired: MSN is dying and the domain mercury.im is down
german/bsdgroup-firefox-searchplugin||2014-05-31|Has expired: bsdgroup.de no longer seems to exist
german/bsdforen-firefox-searchplugin||2014-05-31|Has expired: No longer works after forum software update
lang/ocaml-doc||2014-06-01|Has expired: Documentation is now included in lang/ocaml
lang/ocaml-examples||2014-06-01|Has expired: Outdated and discontinued; new examples are in lang/ocaml
lang/gnat-aux|lang/gcc-aux|2014-06-01|Has expired: superseded by gcc4.9-based lang/gcc-aux, use it instead
lang/python31|lang/python33|2014-06-01|Has expired: Python 3.1 will be end-of-life soon, please migrate to lang/python33
net/cvsup-mirror||2014-06-01|Removed: www, doc, gnats, ports repo gone; src repo deprecated
multimedia/shell-fm||2014-06-02|Has expired: Unusable, subscription radio streaming service will come to an end
security/py-posix1e|security/py-pylibacl|2014-06-03|Duplicate of security/py-pylibacl
www/mediawiki120||2014-06-08|Has expired: Not maintained upstream
x11-drivers/input-wacom|x11-drivers/xf86-input-wacom|2014-06-11|Following the usual naming of X.Org input drivers
editors/libreoffice-ca_XV|editors/libreoffice-ca_valencia|2014-06-11|Port has been renamed
editors/libreoffice-ku||2014-06-11|Not provided anymore since LibreOffice 4.2
editors/libreoffice-sh||2014-06-11|Not provided anymore since LibreOffice 4.2
net/callweaver||2014-06-12|Project is dead
net-im/openfire-devel||2014-06-13|Removed
databases/py-cmemcache||2014-06-15|Has expired: Deprecated upstream
games/mangos||2014-06-15|Has expired: Broken for more than 6 months
lang/clojure-contrib||2014-06-15|Has expired: monolithic contrib library is obsolete
devel/bzapi||2014-06-15|Has expired: Bugzilla has a native REST API, see https://wiki.mozilla.org/BMO/REST
graphics/GraphicsMagick13|graphics/GraphicsMagick|2014-06-17|Removed, duplicate of unversioned GraphicsMagick port
textproc/m17n-contrib|devel/m17n-db|2014-06-18|m17n-contrib was incorporated into m17n-db
www/xpi-deepestsender||2014-06-18|Upstream disappeared, not working with modern Mozilla applications
devel/tortoisehg2|devel/tortoisehg|2014-06-20|Port has been renamed
german/bugzilla40|german/bugzilla44|2014-06-21|Removed, localized version of expired devel/bugzilla40
german/bugzilla42|german/bugzilla44|2014-06-21|Removed, localized version of expired devel/bugzilla42
japanese/bugzilla40|japanese/bugzilla44|2014-06-21|Removed, localized version of expired devel/bugzilla40
japanese/bugzilla42|japanese/bugzilla44|2014-06-21|Removed, localized version of expired devel/bugzilla42
russian/bugzilla40|russian/bugzilla44|2014-06-21|Removed, localized version of expired devel/bugzilla40
russian/bugzilla42|russian/bugzilla44|2014-06-21|Removed, localized version of expired devel/bugzilla42
mail/sastatd|sysutils/p5-Tail-Stat|2014-06-21|Has expired: Superseded by sysutils/p5-Tail-Stat
www/mod_ruby||2014-06-21|Has expired: Only for threadless Ruby
textproc/eruby|www/rubygem-erubis|2014-06-21|Has expired: Only for threadless ruby, use ruby-gem erubis instead
mail/p5-FuzzyOcr|mail/p5-FuzzyOcr-devel|2014-06-21|Has expired: Unmaintained upstream, no ports depending on it. Use mail/p5-FuzzyOcr-devel instead
devel/bugzilla40|devel/bugzilla44|2014-06-21|Has expired
devel/bugzilla42|devel/bugzilla44|2014-06-21|Has expired
sysutils/sysupdate||2014-06-21|Removed, no longer needed/relevant with FreeBSD in SVN
www/phpbb-devel|www/phpbb3|2014-06-22|Has expired: Use www/phpbb3 instead
math/polymake||2014-06-22|Has expired: Does not build with any supported version of Perl
www/phpsysinfo-dev|www/phpsysinfo|2014-06-22|Has expired: Use www/phpsysinfo instead
print/pkg-texinfo|print/texinfo-minimal|2014-06-24|Has been renamed
sysutils/pc-sysinstall|sysutils/pcbsd-utils|2014-06-24|Removed: pc-sysinstall is included in sysutils/pcbsd-utils
print/texinfo-minimal|print/texinfo-lite|2014-06-24|Has been renamed
devel/gmake-minimal|devel/gmake-lite|2014-06-24|Has been renamed
converters/mule-ucs||2014-06-27|Removed: dependent on editors/emacs21
devel/elib-emacs21||2014-06-27|Removed: dependent on editors/emacs21
editors/apel-emacs21||2014-06-27|Removed: dependent on editors/emacs21
editors/apel-emacs22||2014-06-27|Removed: dependent on editors/emacs22
editors/emacs21||2014-06-27|Removed: unmaintained upstream
editors/emacs22||2014-06-27|Removed: unmaintained upstream
editors/flim-emacs21||2014-06-27|Removed: dependent on editors/emacs21
editors/flim-emacs22||2014-06-27|Removed: dependent on editors/emacs22
editors/semi-emacs21||2014-06-27|Removed: dependent on editors/emacs21
editors/semi-emacs22||2014-06-27|Removed: dependent on editors/emacs22
irc/riece-emacs21||2014-06-27|Removed: dependent on editors/emacs21
japanese/emacs-emcws||2014-06-27|Removed: dependent on editors/emacs21
japanese/lookup-emacs21||2014-06-27|Removed: dependent on editors/emacs21
japanese/migemo-emacs21||2014-06-27|Removed: dependent on editors/emacs21
japanese/migemo-emacs22||2014-06-27|Removed: dependent on editors/emacs22
mail/c-sig-emacs21||2014-06-27|Removed: dependent on editors/emacs21
mail/wanderlust-emacs21||2014-06-27|Removed: dependent on editors/emacs21
mail/wanderlust-emacs22||2014-06-27|Removed: dependent on editors/emacs22
math/emacs-calc||2014-06-27|Removed: dependent on editors/emacs21
textproc/uim-el-emacs21||2014-06-27|Removed: dependent on editors/emacs21
textproc/uim-el-emacs22||2014-06-27|Removed: dependent on editors/emacs22
textproc/yaml-mode.el-emacs21||2014-06-27|Removed: dependent on editors/emacs21
www/emacs-w3m-emacs21||2014-06-27|Removed: dependent on editors/emacs21
www/emacs-w3m-emacs22||2014-06-27|Removed: dependent on editors/emacs22
devel/ode-devel|devel/ode|2014-06-27|Has expired: Outdated by devel/ode
java/eclipse-devel|java/eclipse|2014-06-29|Concentrate maintenance effort on newer java/eclipse
textproc/ruby-hikidoc|textproc/rubygem-hikidoc|2014-06-29|Use textproc/rubygem-hikidoc instead
textproc/metaf2xml|science/metaf2xml|2014-06-30|Moved to a more appropriate category on maintainer request
www/trac-TracDuplicates||2014-06-30|Has expired: Broken for more than 5 months
mail/hotwayd||2014-06-30|Has expired: Protocol changed, software unusable
mail/ilohamail-devel||2014-06-30|Has expired: Upstream disappeared
games/tyrquake||2014-06-30|Has expired: Broken for more than 5 months
net/gkrellmqst||2014-06-30|Has expired: GKrellM 1.X is no longer being developed, consider using 2.X
security/p5-Jifty-Plugin-OpenID||2014-06-30|Has expired: Broken for more than 5 months
games/sumwars||2014-06-30|Has expired: Broken for more than 5 months
audio/ruby-esound||2014-06-30|Has expired: Broken for more than 5 months
x11-toolkits/py-pyqwt||2014-06-30|Has expired: Broken for more than 5 months
net-im/ysm||2014-06-30|Has expired: Broken for more than 5 months
net/p5-Jifty-Plugin-Authentication-Ldap||2014-06-30|Has expired: Broken for more than 5 months
net-p2p/bittyrant||2014-06-30|Has expired: Broken for more than 5 months
sysutils/gkrellm||2014-06-30|Has expired: GKrellM 1.X is no longer being developed, consider using 2.X
audio/gkrellmms||2014-06-30|Has expired: GKrellM 1.X is no longer being developed, consider using 2.X
audio/gkrellmvolume||2014-06-30|Has expired: GKrellM 1.X is no longer being developed, consider using 2.X
misc/gkrellmlaunch||2014-06-30|Has expired: GKrellM 1.X is no longer being developed, consider using 2.X
misc/gkrellmfmonitor||2014-06-30|Has expired: GKrellM 1.X is no longer being developed, consider using 2.X
misc/gkrellshoot||2014-06-30|Has expired: GKrellM 1.X is no longer being developed, consider using 2.X
polish/sms2||2014-06-30|Has expired: sms2 is no longer being developed, consider using alternative software
x11-toolkits/py-wmdockapps||2014-06-30|Has expired: Crufty and nothing depends on this
audio/tagger||2014-06-30|Has expired: Ancient, unmaintained
www/mod_wsgi2|www/mod_wsgi3|2014-06-30|Has expired: No longer supported, please use www/mod_wsgi3 instead
security/botan|security/botan110|2014-06-30|Has expired: Botan 1.8 have known bugs and is no longer supported upstream, migrate to security/botan110
deskutils/checkrdf||2014-06-30|Removed: Abandonware, please consider using other software
graphics/k3d||2014-06-30|Has expired: Broken for more than 5 months
mail/cyrus-imapd2|mail/cyrus-imapd24|2014-06-30|Has expired: Cyrus IMAPd 2.1.X have been deprecated, consider using 2.4.X
mail/cyrus-imapd22|mail/cyrus-imapd24|2014-06-30|Has expired: No further releases of 2.2.X are planned, consider using 2.4.X
editors/xemacs||2014-06-30|Removed: unmaintained upstream
editors/xemacs-devel||2014-06-30|Removed: unmaintained upstream
chinese/xemacs||2014-06-30|Removed: unmaintained upstream
editors/flim-xemacs21-mule||2014-06-30|Removed: depend on editors/xemacs
editors/semi-xemacs21-mule||2014-06-30|Removed: depend on editors/xemacs
editors/xemacs-devel-mule||2014-06-30|Removed: depend on editors/xemacs-devel
editors/xemacs-mule-packages||2014-06-30|Removed: depend on editors/xemacs
editors/xemacs-packages||2014-06-30|Removed: depend on editors/xemacs
editors/xemacs21-mule||2014-06-30|Removed: depend on editors/xemacs
japanese/migemo-xemacs-devel-mule||2014-06-30|Removed: depend on editors/xemacs-devel
japanese/xemacs21-canna||2014-06-30|Removed: depend on editors/xemacs
mail/emh-xemacs21-mule||2014-06-30|Removed: depend on editors/xemacs
mail/wanderlust-xemacs21-mule||2014-06-30|Removed: depend on editors/xemacs
textproc/dictem-xemacs21-mule||2014-06-30|Removed: depend on editors/xemacs
textproc/uim-el-xemacs21-mule||2014-06-30|Removed: depend on editors/xemacs
www/emacs-w3m-xemacs21-mule||2014-06-30|Removed: depend on editors/xemacs
security/sudosh3||2014-07-01|Has expired: Funcition replaced by sudo -s
security/sudosh||2014-07-01|Has expired: Funcition replaced by sudo -s
security/sudosh2||2014-07-01|Has expired: Funcition replaced by sudo -s
lang/pike76|lang/pike78|2014-07-01|Has expired: Outdated: Users should switch to lang/pike78
editors/gummi||2014-07-01|Has expired: Builds fine but the program itself is unusable
archivers/rpm|archivers/rpm4|2014-07-03|rpm3 is long EOLed, rpm4 is the default rpm archivers for most of linux distributions
x11-clocks/wmitime||2014-07-04|Has expired
x11/xorg-edit||2014-07-04|Has expired: Depends on older version of wxGTK
net/ttbudget||2014-07-06|Has expired: does not build, mastersite disapperead, not staged
sysutil/psgconf||2014-07-06|Removed: abandonware
print/texinfo-lite|print/indexinfo|2014-07-06|Replaced by indexinfo to handle info page index
audio/linnya||2014-07-07|Deprecated upstream
databases/slony1|databases/slony1v2|2014-07-07|Unsupported: consider using slony1 v2 instead
lang/see-devel|lang/see|2014-07-07|lang/see is up to date no need for see-devel
net-p2p/libtorrent-devel||2014-07-07|libtorrent port has newer version, use that instead
net-p2p/rtorrent-devel||2014-07-07|rtorrent port has newer version, use that instead
net-im/qxmpp-leechcraft|net-im/qxmpp|2014-07-09|Removed:qxmpp-leechcraft is now merged into qxmpp
textproc/stardict-BritannicaConcise||2014-07-10|Removed due to possible copyright infringement
textproc/stardict-MerrianWebster||2014-07-10|Removed due to possible copyright infringement
textproc/stardict-OxfordCollocation||2014-07-10|Removed due to possible copyright infringement
textproc/stardict-longman||2014-07-10|Removed due to possible copyright infringement
textproc/stardict-oald||2014-07-10|Removed due to possible copyright infringement
editors/nxml||2014-07-13|Needs recently removed emacs21 or emacs22
graphics/py-stl|graphics/py-stltools|2014-07-13|Upstream project has been renamed
audio/muine||2014-07-13|Has expired: Fails to build/run since August 2013
x11-themes/kde4-windeco-nitrogen||2014-07-14|Has expired: Merged with the Oxygen windeco included with KDE4
net/linphone-base||2014-07-14|Split into separate components
databases/py-simplecouchdb||2014-07-15|Has expired: Obsolete, abandoned
audio/xmms-bonk||2014-07-15|Has expired: Obsolete experimental codec, use audio/flac or audio/wavpack
audio/bonk||2014-07-15|Has expired: Obsolete experimental codec, use audio/flac or audio/wavpack
sysutils/gtk-send-pr||2014-07-17|Has expired: Obsolete after migration to Bugzilla
lang/stklos||2014-07-20|Has expired: Fails testsuite on all platforms, unmaintained upstream
lang/ikarus||2014-07-20|Has expired: Upstream project died in 2009
security/pam_pgina||2014-07-20|Has expired: main site disappeared, no more public distfiles
www/linux-opera-devel|www/opera|2014-07-20|Has expired: Not staged and multiple vulnerabilities
www/opera-devel|www/opera|2014-07-20|Has expired: Not staged, multiple vulnerabilities, older than non-devel
accessibility/at-poke||2014-07-21|Has expired: Depends on expired libgailgnome
misc/bigboard||2014-07-21|Has expired: gnome-panel will be updated to the 3.x version which is not compatible with 2.x
net/desktop-data-model||2014-07-21|Has expired: gnome-desktop 2.x will be updated in the GNOME 3 import
net/online-desktop||2014-07-21|Has expired: Disappeared upstream, depends on expired ports
x11-toolkits/libgail-gnome||2014-07-21|Has expired: gnome-panel 2.x will be updated in the GNOME 3 import
security/gnutls3|security/gnutls|2014-07-22|Moved to replace GnuTLS 2.x port
print/latex-ifluatex|print/texlive-texmf|2014-07-23|Has been incorporated into texlive-texmf
print/teTeX|print/texlive-full|2014-07-23|Replaced by texlive
print/passivetex|print/tex-xmltex|2014-07-23|Has been incorporated in TeXLive version of xmltex
print/xmltex|print/tex-xmltex|2014-07-23|Replaced by texlive
print/latex-caption|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/xdvik|print/tex-xdvik|2014-07-23|Replaced by texlive
print/latex-subfloat|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-circ|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-prettyref|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-nomencl|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-mathabx|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-arydshln|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-feynmf|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-chapterfolder|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-cjk|print/texlive-base|2014-07-23|Has been incorporated in TeXLive
print/latex-aastex|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-biblatex|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-biblist|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-bytefield|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-csquotes|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-etoolbox|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-keystroke|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-logpap|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-logreq|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-pgf|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-supertabular|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-svninfo|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-tipa|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/latex-ucs|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
print/teTeX-base|print/texlive-base|2014-07-23|Has been incorporated in TeXLive
print/teTeX-texmf|print/texlive-texmf|2014-07-23|Has been incorporated in TeXLive
japanese/xdvik|print/tex-xdvik|2014-07-23|Use TeXLive version
japanese/latex2html||2014-07-23|Depends on decomissioned teTeX
japanese/platex209||2014-07-23|Depends on decomissioned teTeX
japanese/platex-jsclasses||2014-07-23|Depends on decomissioned teTeX
japanese/platex-otf||2014-07-23|Depends on decomissioned teTeX
japanese/jadetex-ptex|japanese/tex-ptex|2014-07-23|Use TeXLive version
japanese/dvipsk|print/tex-dvipsk|2014-07-23|Use TeXLive version
print/dvipsk-tetex|print/tex-dvipsk|2014-07-23|Use TeXLive version
print/dvipdfmx|print/tex-dvipdfmx|2014-07-23|Use TeXLive version
print/jadetex|print/tex-jadetex|2014-07-23|Use TeXLive version
japanese/teTeX|print/texlive-full|2014-07-23|Use TeXLive
chinese/big5con||2014-07-24|Has expired: Fails to build with new utmpx
chinese/hztty||2014-07-24|Has expired: Fails to build with new utmpx
irc/solid-ircd||2014-07-24|Has expired: Fails to build with new utmpx
korean/eterm||2014-07-24|Has expired: Fails to build with new utmpx
mail/biffer||2014-07-24|Has expired: Fails to build with new utmpx
misc/c-hey||2014-07-24|Has expired: Fails to build with new utmpx
misc/wminfo||2014-07-24|Has expired: Fails to build with new utmpx
net/sendfile||2014-07-24|Has expired: Fails to build with new utmpx
net-im/centericq||2014-07-24|Has expired: Fails to build with new utmpx
security/openfwtk||2014-07-24|Has expired: Fails to build with new utmpx
security/pam_alreadyloggedin||2014-07-24|Has expired: Fails to build with new utmpx
security/srp||2014-07-24|Has expired: Fails to build with new utmpx
security/sud||2014-07-24|Has expired: Fails to build with new utmpx
sysutils/hyperic-sigar||2014-07-24|Has expired: Fails to build with new utmpx
sysutils/lookupd||2014-07-24|Has expired: Fails to build with new utmpx
sysutils/lookupd_ldap||2014-07-24|Has expired: Fails to build with new utmpx
sysutils/p5-Sys-Utmp||2014-07-24|Has expired: Fails to build with new utmpx
sysutils/syslog-ng2||2014-07-24|Has expired: Fails to build with new utmpx
sysutils/yawho||2014-07-24|Has expired: Fails to build with new utmpx
devel/libevent|devel/libevent2|2014-07-27|libevent2 replaced libevent
devel/p5-MetaCPAN-API|devel/p5-MetaCPAN-Client|2014-07-27|Has expired: Use devel/p5-MetaCPAN-Client instead
net-im/pidgin-facebookchat||2014-07-27|Has expired: obsolete, development has ceased, not staged
net-im/gtkyahoo||2014-07-28|Has expired: Broken, unmaintained, unstaged, gtk12, i386 only
devel/cl-cffi-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
devel/cl-alexandria-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
converters/cl-babel-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
devel/cl-infix-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
devel/meta-cvs||2014-07-28|Has expired: Depends on deprecated lang/clisp
textproc/cl-meta-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
www/cl-lml-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
devel/cl-trivial-features-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
security/cl-md5-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
devel/cl-port-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
textproc/cl-ppcre-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
devel/cl-asdf-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
devel/cl-split-sequence-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
devel/cl-trivial-gray-streams-clisp||2014-07-28|Has expired: Depends on deprecated lang/clisp
lang/clisp||2014-07-28|Has expired: development has ceased, not staged
print/texpower|print/texlive-texmf|2014-07-28|Has been incorporated in TeXLive
print/tex-mfpic|print/texlive-texmf|2014-07-28|Has been incorporated in TeXLive
lang/sml-nj-devel|lang/smlnj|2014-07-30|The -devel was updated and is now production-ready
lang/sml-nj|lang/smlnj|2014-07-30|Use lang/smlnj as newer version
www/ajaxplorer|www/pydio|2014-07-31|Project renamed
converters/igbinary|converters/pecl-igbinary|2014-07-31|The project has been moved to PECL
mail/postfix27||2014-07-31|Has expired: No longer supported by upstream
misc/freecode-submit||2014-07-31|Has expired: This software is obsolete. Freecode does not accept updates anymore
mail/exim-doc-info||2014-07-31|Has expired: yes
misc/gman||2014-07-31|Has expired: Depends on expiring ghostview
print/ghostview|print/gv|2014-07-31|Has expired: project dead nearly a decade ago; use print/gv instead
mail/getlive||2014-08-01|Has expired: GetLive project has been declared dead due to MS account conversion
print/ifxetex||2014-08-01|Has expired: Very outdated and fully contained in texlive-texmf
lang/dragonegg46-33||2014-08-01|Has expired: Dead upstream, impractical to build on 10 and later
lang/dragonegg47-33||2014-08-01|Has expired: Dead upstream, impractical to build on 10 and later
print/freetype-tools|print/texlive-texmf|2014-08-01|Has been incorporated in TeXLive
sysutils/readlink||2014-08-03|Has expired: All features implemented in the base system since FreeBSD 8.3
net-mgmt/bsd-airtools||2014-08-04|Has expired: broken by removal of wicontrol ioctls from if_wavelan_ieee.h; domain disappeared
www/moodle||2014-08-04|Has expired: Upstream support ended
databases/bucardo|databases/p5-Bucardo|2014-08-04|Duplicate port removed
security/p5-openxpki-client|security/p5-openxpki|2014-08-04|Has expired: now incorporated within security/p5-openxpki
security/p5-openxpki-client-scep|security/p5-openxpki|2014-08-04|Has expired: now incorporated within security/p5-openxpki
security/p5-openxpki-deployment|security/p5-openxpki|2014-08-04|Has expired: now incorporated within security/p5-openxpki
news/husky-base-devel||2014-08-05|Has been incorporated into the build process of other husky-*-devel ports
archivers/hs-zlib-conduit||2014-08-10|Removed: Deprecated in favor of conduit-extra
devel/hs-IORefCAS||2014-08-10|Removed: Deprecated in favor of atomic-primops
devel/hs-Tensor||2014-08-10|Removed: Deprecated
devel/hs-attempt||2014-08-10|Removed: Deprecated in favor of exceptions
devel/hs-base64-conduit||2014-08-10|Removed: Deprecated in favor of conduit-combinators
devel/hs-blaze-builder-conduit||2014-08-10|Removed: Deprecated in favor of conduit-extra
devel/hs-drift|devel/hs-DrIFT|2014-08-10|Renamed: Converted to use the Cabal framework
devel/hs-failure||2014-08-10|Removed: Deprecated in favor or exceptions
devel/hs-filesystem-conduit||2014-08-10|Removed: Deprecated in favor of conduit-combinators
devel/hs-haskeline||2014-08-10|Removed: Become part of GHC
devel/hs-pool-conduit||2014-08-10|Removed: Deprecated in favor of resource-pool
devel/hs-profunctor-extras||2014-08-10|The package has been absorbed into profunctors
devel/hs-terminfo||2014-08-10|Removed: Become part of GHC
devel/hs-transformers||2014-08-10|Removed: Become part of GHC
math/hs-comonad-transformers||2014-08-10|Deprecated in favor of comonad
math/hs-comonads-fd||2014-08-10|Deprecated in favor of comonad
math/hs-groupoids||2014-08-10|Deprecated in favor of semigroupoids
math/hs-semigroupoid-extras||2014-08-10|Deprecated in favor of semigroupoids
net/hs-network-conduit||2014-08-10|Removed: Deprecated in favor of conduit-extra
security/hs-tls-extra||2014-08-10|Removed: Deprecated in favor of tls
textproc/hs-attoparsec-conduit||2014-08-10|Removed: Deprecated in favor of conduit-extra
textproc/hs-xhtml||2014-08-10|Removed: Become part of GHC
www/hs-hamlet||2014-08-10|Removed: Deprecated in favor of shakespeare
www/hs-shakespeare-css||2014-08-10|Removed: Deprecated in favor of shakespeare
www/hs-shakespeare-i18n||2014-08-10|Removed: Deprecated in favor of shakespeare
www/hs-shakespeare-js||2014-08-10|Removed: Deprecated in favor of shakespeare
www/hs-shakespeare-text||2014-08-10|Removed: Deprecated in favor of shakespeare
www/hs-wai-test||2014-08-10|Removed: Deprecated in favor of wai-extra
devel/rubygem-foreman_api||2014-08-11|Removed: Deprecated by upstream
security/termlog||2014-08-11|Has expired: Fails to build with new utmpx, unstaged, maintainer timeout
games/linux-americasarmy||2014-08-13|Removed: Unsupported by upstream, distfile unavailable
devel/kyua-atf-compat|devel/kyua|2014-08-14|Upstream merged all components into devel/kyua
devel/kyua-cli|devel/kyua|2014-08-14|Upstream merged all components into devel/kyua
devel/kyua-testers|devel/kyua|2014-08-14|Upstream merged all components into devel/kyua
devel/glib-java||2014-08-14|Has expired: Unmaintained, outdated not depend on
www/phpgedview|www/webtrees|2014-08-15|Has expired: Superceded by www/webtrees
graphics/luxrays||2014-08-15|Has expired: No longer needed as luxrender bundles its own verion now
net-mgmt/cflowd||2014-08-15|Has expired: Unmaintained 10 years, requires dozens of patches, unverifiable
archivers/unzip-iconv|archivers/unzip|2014-08-15|Merged with archivers/unzip as a new non-default option
chinese/unzip|archivers/unzip|2014-08-15|Merged with archivers/unzip as a new non-default option
korean/unzip|archivers/unzip|2014-08-15|Merged with archivers/unzip as a new non-default option
russian/unzip|archivers/unzip|2014-08-15|Merged with archivers/unzip as a new non-default option
mail/sendmail-sasl|mail/sendmail|2014-08-15|Removed: Use mail/sendmail instead
print/cups-samba||2014-08-15|Removed: defunct for long, disappeared upstream
databases/db4|databases/db48|2014-08-15|Superseded by databases/db48
databases/db41|databases/db48|2014-08-15|Superseded by databases/db48
databases/db41-nocrypto|databases/db48|2014-08-15|Superseded by databases/db48
databases/db42|databases/db48|2014-08-15|Superseded by databases/db48
databases/db42-nocrypto|databases/db48|2014-08-15|Superseded by databases/db48
databases/db43|databases/db48|2014-08-15|Superseded by databases/db48
databases/db44|databases/db48|2014-08-15|Superseded by databases/db48
databases/db46|databases/db48|2014-08-15|Superseded by databases/db48
databases/db47|databases/db48|2014-08-15|Superseded by databases/db48
security/sguil-client|security/sguil|2014-08-16|Merged into new port security/sguil
security/sguil-sensor|security/sguil|2014-08-16|Merged into new port security/sguil
security/sguil-server|security/sguil|2014-08-16|Merged into new port security/sguil
databases/jasperserver||2014-08-18|Has expired: Unstaged, depends on expiring devel/maven2
devel/maven2|devel/maven3|2014-08-18|Has expired: No longer supported by the Apache Foundation. Use 3.x instead
x11-clocks/alarm-clock||2014-08-18|Removed: disappeared upstream
mail/rss2email|mail/rss2email2|2014-08-19|Renamed to avoid ambiguity with mail/rss2email3
news/husky-base||2014-08-19|Obsolete due to husky-*-devel => husky-* migration
news/husky-bsopack||2014-08-19|Obsolete due to husky-*-devel => husky-* migration
news/husky-hptkill||2014-08-19|Obsolete due to husky-*-devel => husky-* migration
news/husky-hptsqfix||2014-08-19|Obsolete due to husky-*-devel => husky-* migration
news/husky-hpucode||2014-08-19|Obsolete due to husky-*-devel => husky-* migration
news/husky-msged||2014-08-19|Obsolete due to husky-*-devel => husky-* migration
news/husky-nltools||2014-08-19|Obsolete due to husky-*-devel => husky-* migration
news/husky-sqpack||2014-08-19|Obsolete due to husky-*-devel => husky-* migration
net/rsmb|net/mosquitto|2014-08-19|Superseded by net/mosquitto
deskutils/horde3-hermes||2014-08-20|Has expired: EOL in April 2012
deskutils/horde3-klutz||2014-08-20|Has expired: EOL in April 2012
deskutils/horde3-kronolith||2014-08-20|Has expired: EOL in April 2012
deskutils/horde3-mnemo||2014-08-20|Has expired: EOL in April 2012
devel/horde3-chora||2014-08-20|Has expired: EOL in April 2012
ftp/horde3-gollem||2014-08-20|Has expired: EOL in April 2012
games/linux-steam||2014-08-20|Has expired: Unmaintained interactive port
games/linux-ut2004-demo||2014-08-20|Has expired: Unmaintained restricted ancient demo
mail/horde3-dimp||2014-08-20|Has expired: EOL in April 2012
mail/horde3-forwards||2014-08-20|Has expired: EOL in April 2012
mail/horde3-ingo||2014-08-20|Has expired: EOL in April 2012
mail/horde3-mimp||2014-08-20|Has expired: EOL in April 2012
mail/horde3-vacation||2014-08-20|Has expired: EOL in April 2012
net-mgmt/horde3-nic||2014-08-20|Has expired: EOL in April 2012
net-mgmt/nocol||2014-08-20|Has expired: Unmaintained interactive port
net-mgmt/ourmon||2014-08-20|Has expired: Unmaintained interactive port
net/wowzamediaserverpro||2014-08-20|Has expired: Unmaintained interactive port
news/p5-NNML||2014-08-20|Has expired: Unmaintained interactive port
print/dvips||2014-08-20|Has expired: Unmaintained interactive port
print/xdvi||2014-08-20|Has expired: Unmaintained interactive port
security/horde3-jeta||2014-08-20|Has expired: EOL in April 2012
security/hunch||2014-08-20|Has expired: Likely unused interactive port
www/horde3-ansel||2014-08-20|Has expired: EOL in April 2012
www/horde3-meta||2014-08-20|Has expired: EOL in April 2012
www/horde3-passwd||2014-08-20|Has expired: EOL in April 2012
www/horde3-trean||2014-08-20|Has expired: EOL in April 2012
www/wwwcount||2014-08-20|Has expired: Ancient interactive port
mail/horde3-turba||2014-08-20|Has expired: EOL in April 2012
deskutils/horde3-nag||2014-08-20|Has expired: EOL in April 2012
devel/horde3-whups||2014-08-20|Has expired: EOL in April 2012
mail/horde3-imp||2014-08-20|Has expired: EOL in April 2012
www/horde3-base||2014-08-20|Has expired: EOL in April 2012
print/tex-omegaware-old||2014-08-22|Deprecated in favor of print/tex-aleph
databases/pg_filedump||2014-08-22|Has expired: Broken for more than 6 months
devel/svnmerge||2014-08-22|Has expired: Broken for more than 6 months
net-mgmt/circe||2014-08-22|Has expired: Broken for more than 6 months
print/latex-aa||2014-08-22|Has expired: Broken for more than 6 months
textproc/rast||2014-08-22|Has expired: Broken for more than 6 months
www/abyssws||2014-08-22|Has expired: Broken for more than 6 months
www/docebo||2014-08-22|Has expired: Not maintained upstream
devel/rubygem-railsless-deploy||2014-08-22|Removed: Obsolete, Capistrano 3 does not ship with any Railsisms and is better than Capistrano 2 and railsless-deploy
lang/gcc410|lang/gcc5|2014-08-22|Renamed to GCC 5 upstream
security/pam_abl||2014-08-24|Has expired: Newer version requires large number of hacks, not worth the effort
www/rubygem-feedzirra|www/rubygem-feedjira|2014-08-24|Has expired: Project renamed upstream, see www/rubygem-feedjira
devel/picosat|math/picosat|2014-08-25|More appropriate primary category
devel/py-pycosat|math/py-pycosat|2014-08-25|More appropriate primary category
games/bomns3|games/3omns|2014-08-26|Has expired: Development ceased, use 3omns
misc/rubygem-mime-types117|misc/rubygem-mime-types1|2014-08-26|Renamed to properly reflect version
devel/rubygem-json146|devel/rubygem-json|2014-08-28|Has expired: Old version no longer required by dependencies
archivers/rubygem-bzip2|archivers/rubygem-bzip2-ruby|2014-08-29|Rename to match our rubygems naming
ports-mgmt/pkg_add_it||2014-08-30|Has expired: Does not support pkgng
print/dviselect|print/texlive-base|2014-08-30|Use print/texlive-base instead
chinese/acroread8-zh_CN||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
chinese/acroread8-zh_TW||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
french/acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
french/acroread9||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
german/acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
german/acroread9||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
japanese/acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
japanese/acroread9||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
korean/acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
portuguese/acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
print/acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
print/acroread9||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
print/acroreadwrapper||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
print/dk-acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
print/es-acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
print/fi-acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
print/it-acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
print/nl-acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
print/no-acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
print/sv-acroread8||2014-08-30|Deprecated: many security issues are reported and Adobe no longer actively supports Adobe Reader for Unix
net-p2p/p5-Net-DirectConnect-TigerHash||2014-08-31|Broken for many months and security/p5-Crypt-RHash is a suitable replacement
games/childsplay_plugins||2014-08-31|Plugins package is no longer created for new versions of childsplay
print/tex-texmflocal||2014-08-31|Removed: no longer required for TeXLive
audio/emu10kx||2014-09-01|Not staged
audio/festvox-us1-mbrola||2014-09-01|Not staged
audio/festvox-us2-mbrola||2014-09-01|Not staged
audio/festvox-us3-mbrola||2014-09-01|Not staged
audio/ipod-sharp||2014-09-01|Not staged
audio/linux-musicipserver||2014-09-01|Not staged
audio/liquidsoap||2014-09-01|Not staged
benchmarks/spec-sfs||2014-09-01|Not staged
biology/blast||2014-09-01|Not staged
biology/embassy||2014-09-01|Not staged
biology/pymol||2014-09-01|Not staged
cad/scv||2014-09-01|Not staged
cad/systemc||2014-09-01|Not staged
chinese/cmexfonts||2014-09-01|Not staged
chinese/cwtex||2014-09-01|Not staged
chinese/hanzim||2014-09-01|Not staged
chinese/miniChinput||2014-09-01|Not staged
chinese/moefonts-cid||2014-09-01|Not staged
chinese/msttf||2014-09-01|Not staged
chinese/pine4||2014-09-01|Not staged
chinese/xsim||2014-09-01|Not staged
chinese/zhcon||2014-09-01|Not staged
comms/gammu-devel||2014-09-01|Not staged
databases/cyrus-imspd||2014-09-01|Not staged
databases/db4o-mono||2014-09-01|Not staged
databases/dbXML||2014-09-01|Not staged
databases/exist||2014-09-01|Not staged
databases/flare||2014-09-01|Not staged
databases/hk_classes||2014-09-01|Not staged
databases/lsdb||2014-09-01|Not staged
databases/msql3||2014-09-01|Not staged
databases/mysqlcppapi||2014-09-01|Not staged
databases/ocaml-pgocaml||2014-09-01|Not staged
databases/pear-Doctrine12||2014-09-01|Not staged
databases/ruby-msql||2014-09-01|Not staged
databases/ruby-oci8||2014-09-01|Not staged
deskutils/adesklets||2014-09-01|Not staged
deskutils/org-mode.el||2014-09-01|Not staged
deskutils/planner.el||2014-09-01|Not staged
deskutils/remember.el||2014-09-01|Not staged
devel/asdlgen||2014-09-01|Not staged
devel/ats-contrib-testing||2014-09-01|Not staged
devel/e4graph||2014-09-01|Not staged
devel/eclipse-eclemma||2014-09-01|Not staged
devel/elib||2014-09-01|Not staged
devel/entity||2014-09-01|Not staged
devel/flowdesigner||2014-09-01|Not staged
devel/gjstest||2014-09-01|Not staged
devel/jzmq||2014-09-01|Not staged
devel/libslave||2014-09-01|Not staged
devel/linux-kmod-compat||2014-09-01|Not staged
devel/ml-doc||2014-09-01|Not staged
devel/nemiver||2014-09-01|Not staged
devel/ocaml-event||2014-09-01|Not staged
devel/ocamlweb||2014-09-01|Not staged
devel/p4db||2014-09-01|Not staged
devel/p5-Alzabo-GUI-Mason||2014-09-01|Not staged
devel/php-java-bridge||2014-09-01|Not staged
devel/pmk||2014-09-01|Not staged
devel/pure-gen||2014-09-01|Not staged
devel/ruby-amstd||2014-09-01|Not staged
devel/ruby-avl||2014-09-01|Not staged
devel/ruby-robjectteam||2014-09-01|Not staged
devel/sfslite-dbg||2014-09-01|Not staged
devel/sfslite-noopt||2014-09-01|Not staged
devel/sfslite||2014-09-01|Not staged
devel/sml_tk||2014-09-01|Not staged
devel/stlport||2014-09-01|Not staged
devel/sunterlib||2014-09-01|Not staged
devel/tide||2014-09-01|Not staged
devel/uppaal||2014-09-01|Not staged
devel/ustl||2014-09-01|Not staged
devel/vtg||2014-09-01|Not staged
dns/poweradmin||2014-09-01|Not staged
editors/color-mate||2014-09-01|Not staged
editors/gnuserv||2014-09-01|Not staged
editors/jext||2014-09-01|Not staged
editors/komodo-ide||2014-09-01|Not staged
editors/setedit||2014-09-01|Not staged
editors/softmaker-office||2014-09-01|Not staged
editors/textedit||2014-09-01|Not staged
emulators/its||2014-09-01|Not staged
emulators/linux-geepee32||2014-09-01|Not staged
emulators/linux-systemsimcell||2014-09-01|Not staged
emulators/psim-freebsd||2014-09-01|Not staged
emulators/vMac||2014-09-01|Not staged
finance/opentaxsolver||2014-09-01|Not staged
french/facturier||2014-09-01|Not staged
games/actx||2014-09-01|Not staged
games/atitd||2014-09-01|Not staged
games/avp-demo||2014-09-01|Not staged
games/linux-sof||2014-09-01|Not staged
games/quake3-freezetag||2014-09-01|Not staged
games/rftg||2014-09-01|Not staged
games/rftg||2014-09-01|Not staged
german/manpages||2014-09-01|Not staged
graphics/Cgraph||2014-09-01|Not staged
graphics/glide3||2014-09-01|Not staged
graphics/ivtools||2014-09-01|Not staged
graphics/linux_glide||2014-09-01|Not staged
graphics/mingplot||2014-09-01|Not staged
graphics/orca||2014-09-01|Not staged
graphics/php5-chartdirector||2014-09-01|Not staged
graphics/ruby-rmagick||2014-09-01|Not staged
graphics/uDrawGraph||2014-09-01|Not staged
graphics/visionworkbench||2014-09-01|Not staged
irc/bobot++||2014-09-01|Not staged
japanese/flex-sdk||2014-09-01|Not staged
japanese/gqmpeg||2014-09-01|Not staged
japanese/ja6||2014-09-01|Not staged
japanese/lambdamoo||2014-09-01|Not staged
japanese/makejvf||2014-09-01|Not staged
japanese/mell||2014-09-01|Not staged
japanese/mendexk-euc||2014-09-01|Not staged
japanese/platex-japanese||2014-09-01|Not staged
japanese/postgresql82-man||2014-09-01|Not staged
japanese/prime-el||2014-09-01|Not staged
japanese/rbnamazu||2014-09-01|Not staged
java/jai-imageio||2014-09-01|Not staged
java/jboss5||2014-09-01|Not staged
java/jc||2014-09-01|Not staged
java/poseidon||2014-09-01|Not staged
lang/Sather||2014-09-01|Not staged
lang/gnustep-guile||2014-09-01|Not staged
lang/hiphop-php||2014-09-01|Not staged
lang/lush||2014-09-01|Not staged
lang/metaocaml||2014-09-01|Not staged
lang/mpd||2014-09-01|Not staged
lang/ocaml-camlidl||2014-09-01|Not staged
lang/ocaml-mode.el||2014-09-01|Not staged
lang/ocs||2014-09-01|Not staged
lang/oorexx||2014-09-01|Not staged
lang/rakudo||2014-09-01|Not staged
lang/sml-mode.el||2014-09-01|Not staged
lang/sr||2014-09-01|Not staged
lang/t3x||2014-09-01|Not staged
lang/xds-c||2014-09-01|Not staged
lang/xds||2014-09-01|Not staged
lang/xotcl||2014-09-01|Not staged
mail/elm+ME||2014-09-01|Not staged
mail/emh||2014-09-01|Not staged
mail/extmail||2014-09-01|Not staged
mail/extman||2014-09-01|Not staged
mail/ezmlm-web||2014-09-01|Not staged
mail/firemime||2014-09-01|Not staged
mail/firepay||2014-09-01|Not staged
mail/ftrack||2014-09-01|Not staged
mail/ilohamail||2014-09-01|Not staged
mail/majordomo||2014-09-01|Not staged
mail/p3scan||2014-09-01|Not staged
mail/popd||2014-09-01|Not staged
mail/popper||2014-09-01|Not staged
mail/postfix-gps||2014-09-01|Not staged
mail/postfix28||2014-09-01|Not staged
mail/postfix29||2014-09-01|Not staged
mail/postpals||2014-09-01|Not staged
mail/premail||2014-09-01|Not staged
mail/qmail-scanner1||2014-09-01|Not staged
mail/qmail-scanner||2014-09-01|Not staged
mail/qscan||2014-09-01|Not staged
mail/quickml||2014-09-01|Not staged
mail/rabl_client||2014-09-01|Not staged
mail/rabl_server||2014-09-01|Not staged
mail/relay-ctrl||2014-09-01|Not staged
mail/reply-o-matic||2014-09-01|Not staged
mail/sccmilter||2014-09-01|Not staged
mail/softfail||2014-09-01|Not staged
mail/spmfilter-spamassassin||2014-09-01|Not staged
mail/synonym||2014-09-01|Not staged
mail/uebimiau||2014-09-01|Not staged
mail/vm-pop3d||2014-09-01|Not staged
mail/vm||2014-09-01|Not staged
mail/wmpop3lb||2014-09-01|Not staged
mail/xf-spf||2014-09-01|Not staged
math/atlas-devel||2014-09-01|Not staged
math/bihar||2014-09-01|Not staged
math/itl||2014-09-01|Not staged
math/javanns||2014-09-01|Not staged
math/javaview||2014-09-01|Not staged
math/jsmath-fonts-sprite||2014-09-01|Not staged
math/jsmath||2014-09-01|Not staged
math/kash3||2014-09-01|Not staged
math/matrix||2014-09-01|Not staged
math/mprime||2014-09-01|Not staged
math/petsc||2014-09-01|Not staged
math/sdpa-gmp||2014-09-01|Not staged
math/sedumi||2014-09-01|Not staged
math/unixstat||2014-09-01|Not staged
misc/amanda25-client||2014-09-01|Not staged
misc/amanda25-server||2014-09-01|Not staged
misc/amanda26-client||2014-09-01|Not staged
misc/amanda26-server||2014-09-01|Not staged
misc/amanda32-client||2014-09-01|Not staged
misc/amanda32-server||2014-09-01|Not staged
misc/callid||2014-09-01|Not staged
misc/color-theme.el||2014-09-01|Not staged
misc/dotfile||2014-09-01|Not staged
misc/libhome||2014-09-01|Not staged
misc/mshell||2014-09-01|Not staged
misc/quranref||2014-09-01|Not staged
misc/tet||2014-09-01|Not staged
misc/xfce4-artwork||2014-09-01|Not staged
multimedia/clive1||2014-09-01|Not staged
multimedia/mplayerxp||2014-09-01|Not staged
multimedia/tunapie||2014-09-01|Not staged
net-im/gyach||2014-09-01|Not staged
net-im/iserverd||2014-09-01|Not staged
net-im/jabber-pyaim||2014-09-01|Not staged
net-im/komclean||2014-09-01|Not staged
net-im/libjingle||2014-09-01|Not staged
net-im/linpopup||2014-09-01|Not staged
net-mgmt/argus-monitor||2014-09-01|Not staged
net-mgmt/aspathtree||2014-09-01|Not staged
net-mgmt/bigsister||2014-09-01|Not staged
net-mgmt/cisco_conf||2014-09-01|Not staged
net-mgmt/fruity||2014-09-01|Not staged
net-mgmt/ifgraph||2014-09-01|Not staged
net-mgmt/ipacco||2014-09-01|Not staged
net-mgmt/macroscope||2014-09-01|Not staged
net-mgmt/nagios-check_kumofs||2014-09-01|Not staged
net-mgmt/nagios-portaudit||2014-09-01|Not staged
net-mgmt/nagios-silfreed-plugins||2014-09-01|Not staged
net-mgmt/nagiostat||2014-09-01|Not staged
net-mgmt/netams-front||2014-09-01|Not staged
net-mgmt/ramond||2014-09-01|Not staged
net-mgmt/rancid-devel||2014-09-01|Not staged
net-mgmt/satellite||2014-09-01|Not staged
net-mgmt/wide-dhcp||2014-09-01|Not staged
net-mgmt/yabm||2014-09-01|Not staged
net-mgmt/zenpack-checkping||2014-09-01|Not staged
net-mgmt/zenpack-dellmon||2014-09-01|Not staged
net-mgmt/zenpack-deviceadvdetail||2014-09-01|Not staged
net-mgmt/zenpack-devicesearch||2014-09-01|Not staged
net-mgmt/zenpack-grap||2014-09-01|Not staged
net-mgmt/zenpack-interfacegraphs||2014-09-01|Not staged
net-mgmt/zenpack-libvirt||2014-09-01|Not staged
net-mgmt/zenpack-macreport||2014-09-01|Not staged
net-p2p/azureus2||2014-09-01|Not staged
net-p2p/linux-jigdo||2014-09-01|Not staged
net-p2p/mldonkey-perlreactor||2014-09-01|Not staged
net-p2p/mldonkey-urlslave||2014-09-01|Not staged
net-p2p/museekplus||2014-09-01|Not staged
net-p2p/opennap||2014-09-01|Not staged
net-p2p/solidcoin||2014-09-01|Not staged
net-p2p/teknap||2014-09-01|Not staged
net-p2p/vhcp||2014-09-01|Not staged
net/DarwinStreamingServer||2014-09-01|Not staged
net/acx100||2014-09-01|Not staged
net/bcusdk-eibd||2014-09-01|Not staged
net/blam||2014-09-01|Not staged
net/bld||2014-09-01|Not staged
net/click||2014-09-01|Not staged
net/cnet||2014-09-01|Not staged
net/cnupm||2014-09-01|Not staged
net/ct||2014-09-01|Not staged
net/entitymib||2014-09-01|Not staged
net/freedbd||2014-09-01|Not staged
net/frickin||2014-09-01|Not staged
net/hawknl-devel||2014-09-01|Not staged
net/hawknl||2014-09-01|Not staged
net/heybuddy||2014-09-01|Not staged
net/ipa_ipfw||2014-09-01|Not staged
net/iscsi-target||2014-09-01|Not staged
net/kojoney||2014-09-01|Not staged
net/libtcp4u||2014-09-01|Not staged
net/mediaproxy||2014-09-01|Not staged
net/mknbi||2014-09-01|Not staged
net/mmucl||2014-09-01|Not staged
net/ncplib||2014-09-01|Not staged
net/ng_daphne||2014-09-01|Not staged
net/openam||2014-09-01|Not staged
net/openmcu||2014-09-01|Not staged
net/openser||2014-09-01|Not staged
net/pfflowd||2014-09-01|Not staged
net/quagga-re||2014-09-01|Not staged
net/rexx-sock||2014-09-01|Not staged
net/ris||2014-09-01|Not staged
net/rshell||2014-09-01|Not staged
net/samba4wins||2014-09-01|Not staged
net/ser||2014-09-01|Not staged
net/silc-client||2014-09-01|Not staged
net/silc-irssi-plugin||2014-09-01|Not staged
net/silc-server||2014-09-01|Not staged
net/skyfish||2014-09-01|Not staged
net/skystar2||2014-09-01|Not staged
net/tac_plus-libradius||2014-09-01|Not staged
net/ushare||2014-09-01|Not staged
net/v6eval||2014-09-01|Not staged
net/vchat||2014-09-01|Not staged
net/vserver||2014-09-01|Not staged
net/wire||2014-09-01|Not staged
net/wired-tracker||2014-09-01|Not staged
net/wired||2014-09-01|Not staged
net/xbone||2014-09-01|Not staged
net/xipdump||2014-09-01|Not staged
net/xorp-devel||2014-09-01|Not staged
palm/iSiloXC||2014-09-01|Not staged
palm/py-synce-librapi2||2014-09-01|Not staged
palm/py-synce-librra||2014-09-01|Not staged
palm/synce-librapi2||2014-09-01|Not staged
palm/synce-librra||2014-09-01|Not staged
ports-mgmt/bxpkg||2014-09-01|Not staged
ports-mgmt/pkgfe||2014-09-01|Not staged
ports-mgmt/prhistory||2014-09-01|Not staged
print/bophook||2014-09-01|Not staged
print/examplep||2014-09-01|Not staged
print/latex-acm||2014-09-01|Not staged
print/latex-auto-greek||2014-09-01|Not staged
print/latex-timing||2014-09-01|Not staged
print/latex||2014-09-01|Not staged
print/pdfcolorsplit||2014-09-01|Not staged
print/pdq||2014-09-01|Not staged
print/phppdflib||2014-09-01|Not staged
print/ruby-panda||2014-09-01|Not staged
print/scribus-devel||2014-09-01|Not staged
russian/libcyrillic||2014-09-01|Not staged
russian/prawda||2014-09-01|Not staged
russian/pscyr||2014-09-01|Not staged
russian/tac+ia||2014-09-01|Not staged
science/2dhf||2014-09-01|Not staged
science/abinit||2014-09-01|Not staged
science/dtiquery||2014-09-01|Not staged
science/elmer-hutiter||2014-09-01|Not staged
science/elmerpost||2014-09-01|Not staged
science/g3data||2014-09-01|Not staged
science/gamess||2014-09-01|Not staged
science/minc||2014-09-01|Not staged
science/psi3||2014-09-01|Not staged
science/x11iraf||2014-09-01|Not staged
science/xmds||2014-09-01|Not staged
security/bioapi||2014-09-01|Not staged
security/bsp_upektfmess||2014-09-01|Not staged
security/distcache-devel||2014-09-01|Not staged
security/mosref||2014-09-01|Not staged
security/openvpn-beta||2014-09-01|Not staged
security/pam_bsdbioapi||2014-09-01|Not staged
security/php-Auth_OpenID2||2014-09-01|Not staged
security/php-Auth_OpenID||2014-09-01|Not staged
security/php-openid-ldap||2014-09-01|Not staged
security/samhain-client||2014-09-01|Not staged
security/samhain-server||2014-09-01|Not staged
security/samhain||2014-09-01|Not staged
security/scannedonly||2014-09-01|Not staged
security/tinysu||2014-09-01|Not staged
sysutils/asapm||2014-09-01|Not staged
sysutils/asr-utils||2014-09-01|Not staged
sysutils/be_agent||2014-09-01|Not staged
sysutils/bubblemon-dockapp||2014-09-01|Not staged
sysutils/clockspeed-conf||2014-09-01|Not staged
sysutils/comconsole||2014-09-01|Not staged
sysutils/comiccron||2014-09-01|Not staged
sysutils/contool||2014-09-01|Not staged
sysutils/cromwell||2014-09-01|Not staged
sysutils/cvsweb-converters||2014-09-01|Not staged
sysutils/eroaster||2014-09-01|Not staged
sysutils/freqsdwn||2014-09-01|Not staged
sysutils/gnomebaker||2014-09-01|Not staged
sysutils/ispman||2014-09-01|Not staged
sysutils/jailuser||2014-09-01|Not staged
sysutils/linux-afaapps||2014-09-01|Not staged
sysutils/netident||2014-09-01|Not staged
sysutils/news||2014-09-01|Not staged
sysutils/nut22||2014-09-01|Not staged
sysutils/nvtv||2014-09-01|Not staged
sysutils/penv||2014-09-01|Not staged
sysutils/pmap||2014-09-01|Not staged
sysutils/replicant||2014-09-01|Not staged
sysutils/sbniconfig||2014-09-01|Not staged
sysutils/upsd||2014-09-01|Not staged
sysutils/wmapm||2014-09-01|Not staged
sysutils/xsi||2014-09-01|Not staged
textproc/ats-contrib-parcomb||2014-09-01|Not staged
textproc/coco||2014-09-01|Not staged
textproc/lemmatizer2||2014-09-01|Not staged
textproc/openvanilla-modules||2014-09-01|Not staged
textproc/publican||2014-09-01|Not staged
textproc/ruby-html-fillinform||2014-09-01|Not staged
textproc/ruby-html-template||2014-09-01|Not staged
textproc/sgmltools-lite||2014-09-01|Not staged
textproc/sml-fxp||2014-09-01|Not staged
textproc/tei-guidelines-p3||2014-09-01|Not staged
textproc/tei-p3||2014-09-01|Not staged
vietnamese/vntex||2014-09-01|Not staged
vietnamese/vnxfonts||2014-09-01|Not staged
vietnamese/xvnkb||2014-09-01|Not staged
www/aria||2014-09-01|Not staged
www/aswedit||2014-09-01|Not staged
www/bk2site||2014-09-01|Not staged
www/bluefish-devel||2014-09-01|Not staged
www/bugmenot-firefox||2014-09-01|Not staged
www/cacheboy16||2014-09-01|Not staged
www/cakephp12||2014-09-01|Not staged
www/cas||2014-09-01|Not staged
www/dokeos||2014-09-01|Not staged
www/dwoo||2014-09-01|Not staged
www/elog||2014-09-01|Not staged
www/eyeos-themes||2014-09-01|Not staged
www/eyeos||2014-09-01|Not staged
www/firefox-remote||2014-09-01|Not staged
www/foswiki-ModPerlEngineContrib||2014-09-01|Not staged
www/free-sa||2014-09-01|Not staged
www/harvest||2014-09-01|Not staged
www/htmlobject||2014-09-01|Not staged
www/lusca-head||2014-09-01|Not staged
www/mod_auth_form||2014-09-01|Not staged
www/mod_auth_mellon||2014-09-01|Not staged
www/mod_ftp||2014-09-01|Not staged
www/mod_gnutls||2014-09-01|Not staged
www/mod_log_dbd||2014-09-01|Not staged
www/mod_pagespeed||2014-09-01|Not staged
www/moodle24||2014-09-01|Not staged
www/plugger-plugins-hubbe||2014-09-01|Not staged
www/prado||2014-09-01|Not staged
www/quixote||2014-09-01|Not staged
www/ruboard||2014-09-01|Not staged
www/ruby-div||2014-09-01|Not staged
www/snownews||2014-09-01|Not staged
www/squirm||2014-09-01|Not staged
www/xapian-omega10||2014-09-01|Not staged
x11-drivers/xf86-video-rdc||2014-09-01|Not staged
x11-themes/bluecurve-themes||2014-09-01|Not staged
x11-themes/cursor-bluecurve-theme||2014-09-01|Not staged
x11-themes/gnome-bluecurve-theme||2014-09-01|Not staged
x11-themes/icon-bluecurve-theme||2014-09-01|Not staged
x11-themes/icons-buuf||2014-09-01|Not staged
x11-themes/kde-icons-crystal-project||2014-09-01|Not staged
x11-themes/kde-icons-nuovext||2014-09-01|Not staged
x11-themes/kde-icons-os-k||2014-09-01|Not staged
x11-themes/kde-icons-vista-inspirate||2014-09-01|Not staged
x11-themes/metacity-bluecurve-theme||2014-09-01|Not staged
x11-toolkits/paragui-devel||2014-09-01|Not staged
x11-wm/sapphire||2014-09-01|Not staged
x11-themes/gtk-bluecurve-theme||2014-09-01|Not staged
biology/phd2fasta||2014-09-01|Not staged
databases/kumofs||2014-09-01|Not staged
devel/lxr||2014-09-01|Not staged
devel/scsh-install-lib||2014-09-01|Not staged
games/qix||2014-09-01|Not staged
games/vdrift||2014-09-01|Not staged
net-mgmt/zenpack-graphportlet||2014-09-01|Not staged
www/webcalendar-devel|www/webcalendar|2014-09-04|Removed, use www/webcalendar instead
devel/ruby-memoize||2014-09-06|Has expired: RubyForge shutdown May 15 2014
www/oops||2014-09-06|Development stops long ago, domain has been expired
net/freeswitch-core-devel||2014-09-06|Not staged
net/freeswitch-devel||2014-09-06|Not staged
audio/freeswitch-sounds||2014-09-06|Not staged
audio/freeswitch-music||2014-09-06|No purpose after unstaged freeswitch ports removed
devel/eieio||2014-09-06|Not staged
devel/semantic||2014-09-06|Not staged
editors/speedbar||2014-09-06|Not staged
japanese/tk80||2014-09-06|Not staged
japanese/tcl80||2014-09-06|Not staged
japanese/tkhonyaku||2014-09-06|Cascade removal (ja-tcl/tk80 dependency)
japanese/timidity++-tcltk||2014-09-06|Cascade removal (ja-tcl/tk80 dependency)
japanese/prime||2014-09-06|Not staged
japanese/suikyo||2014-09-06|Not staged
japanese/prime-dict||2014-09-06|Not staged
japanese/scim-prime||2014-09-06|Cascade removal (japanese/prime dependency)
graphics/povray31||2014-09-06|Not staged
graphics/pvmpov||2014-09-06|Cascade removal (graphics/povray31)
databases/firebird21-server||2014-09-06|Not staged
databases/firebird21-client||2014-09-06|Not staged
databases/kinterbasdb||2014-09-07|Has expired: Not staged and BROKEN
databases/msql||2014-09-07|Has expired: Not staged and BROKEN
multimedia/pvr250||2014-09-07|Has expired: Not staged and BROKEN
multimedia/pvrxxx||2014-09-07|Has expired: Not staged and BROKEN
textproc/py-4suite-xml||2014-09-07|Has expired: Not staged
net/libexosip2-legacy|net/libexosip2|2014-09-07|Has expired: Superseded by net/libexosip2
net/libosip|net/libosip2|2014-09-07|Has expired: Superseded by net/libosip2
lang/caml-light||2014-09-07|Not staged
devel/pybaz||2014-09-07|Obsolete, use devel/bzr instead
devel/baz||2014-09-07|Unstaged, obsolete, distfiles don't exist. Use devel/bzr instead
security/prelude-lml||2014-09-07|Not staged
security/prelude-manager||2014-09-07|Not staged
security/prelude-pflogger||2014-09-07|Not staged
lang/otcl||2014-09-07|Not staged
devel/tclcl||2014-09-07|Cascade removal (lang/otcl)
net/nam||2014-09-07|Cascade removal (lang/otcl)
net/ns||2014-09-07|Cascade removal (lang/otcl)
databases/frontbase||2014-09-07|Not staged
databases/p5-DBD-FrontBase||2014-09-07|Cascade removal (databases/frontbase)
databases/ruby-frontbase||2014-09-07|Cascade removal (databases/frontbase)
devel/flex-sdk2||2014-09-07|Not staged
devel/flex_compiler_shell||2014-09-07|Cascade removal (devel/flex-sdk2)
emulators/virtualbox-ose-legacy||2014-09-09|Not staged
emulators/virtualbox-ose-kmod-legacy||2014-09-09|No purpose after removal of virtualbox-ose-legacy
devel/arm-eabi-gcc||2014-09-09|Not staged
devel/cross-gcc||2014-09-09|Not staged
devel/arm-eabi-binutils||2014-09-09|No purpose after removal of arm-eabi-gcc
sysutils/u-boot-beaglebone-eabi||2014-09-09|Cascade removal (devel/arm-eabi-gcc)
lang/ezm3||2014-09-09|Not staged
net/cvsup-without-gui||2014-09-09|Cascade removal (lang/ezm3)
net/cvsupchk||2014-09-09|Cascade removal (lang/ezm3)
net/cvsup||2014-09-09|Cascade removal (lang/ezm3)
dns/posadis||2014-09-09|Not staged
net/etherboot||2014-09-09|Not staged
games/linux-savage||2014-09-09|Not staged
lang/ifc||2014-09-09|Not staged
japanese/rskkserv||2014-09-09|Not staged
graphics/passepartout||2014-09-09|Not staged
lang/scsh||2014-09-10|Not staged
net-mgmt/zenoss||2014-09-10|Not staged
archivers/mate-file-archiver|archivers/engrampa|2014-09-10|renamed
deskutils/mate-menu-editor|deskutils/mozo|2014-09-10|renamed
editors/mate-text-editor|editors/pluma|2014-09-10|renamed
graphics/mate-document-viewer|graphics/atril|2014-09-10|renamed
graphics/mate-image-viewer|graphics/eom|2014-09-10|renamed
x11-fm/mate-file-manager|x11-fm/caja|2014-09-10|renamed
x11-wm/mate-window-manager|x11-wm/marco|2014-09-10|renamed
deskutils/mate-character-map||2014-09-10|removed
deskutils/mate-file-manager-open-terminal||2014-09-10|removed
security/libmatekeyring||2014-09-10|removed
security/mate-keyring||2014-09-10|removed
textproc/mate-doc-utils||2014-09-10|removed
x11-toolkits/libmatewnck||2014-09-10|removed
net/ruby-net-geoip|net/rubygem-geoip|2014-09-13|Has expired: Broken
www/bannerfilter||2014-09-16|Depends on www/squid (v2.7) which is two years past EOL
www/dansguardian||2014-09-16|Depends on www/squid (v2.7) which is two years past EOL
www/dansguardian-devel||2014-09-16|Depends on www/squid (v2.7) which is two years past EOL
www/videocache||2014-09-16|Depends on www/squid (v2.7) which is two years past EOL
www/squid32||2014-09-16|Readed EOL on 14 August 2012
net/ruby-growl|net/rubygem-ruby-growl|2014-09-20|Renamed
sysutils/moreutils-parallel|sysutils/moreutils|2014-09-20|Has expired: Use moreutils-parallel in sysutils/moreutils instead
science/ruby-netcdf||2014-09-20|Has expired: Depends on deprecated math/ruby-narray
x11-toolkits/ruby-fox16||2014-09-20|Has expired: RubyForge shutdown May 15 2014
math/ruby-gnuplot||2014-09-20|Has expired: Depends on deprecated math/ruby-narray
science/ruby-gphys||2014-09-20|Has expired: Depends on deprecated math/ruby-narray
math/ruby-fftw3||2014-09-20|Has expired: Depends on deprecated math/ruby-narray
science/ruby-dcl||2014-09-20|Has expired: Depends on deprecated math/ruby-narray
math/ruby-numru_misc||2014-09-20|Has expired: Depends on deprecated math/ruby-narray
math/ruby-narray||2014-09-20|Has expired: RubyForge shutdown May 15 2014
textproc/ruby-liquid||2014-09-20|Has expired: RubyForge shutdown May 15 2014
comms/callsign||2014-09-20|Has expired: RubyForge shutdown May 15 2014
misc/ruby-vpim||2014-09-20|Has expired: RubyForge shutdown May 15 2014
net/ruby-ldap||2014-09-20|Has expired: RubyForge shutdown May 15 2014
devel/rubygem-echoe||2014-09-20|Has expired: Depends on deprecated rubyforge
www/ruby-borges||2014-09-20|Has expired: RubyForge shutdown May 15 2014
www/ruby-fcgiwrap||2014-09-20|Has expired: RubyForge shutdown May 15 2014
www/rubygem-scrubyt||2014-09-20|Has expired: RubyForge shutdown May 15 2014
devel/ruby-multi||2014-09-20|Has expired: RubyForge shutdown May 15 2014
databases/ruby-dbd_sqlite3|databases/rubygem-dbd-sqlite3|2014-09-20|Replaced by rubygem-dbd-sqlite
math/ruby-gsl||2014-09-20|Has expired: RubyForge shutdown May 15 2014
security/ruby-gpgme||2014-09-20|Has expired: RubyForge shutdown May 15 2014
multimedia/vodcatcher||2014-09-20|Has expired: RubyForge shutdown May 15 2014
japanese/ruby-ming||2014-09-20|Has expired: RubyForge shutdown May 15 2014
devel/ruby-statgrab||2014-09-20|Has expired: RubyForge shutdown May 15 2014
security/ruby-crypt||2014-09-20|Has expired: RubyForge shutdown May 15 2014
sysutils/philesight||2014-09-20|Has expired: Depends on deprecated devel/ruby-locale2
multimedia/podcatcher||2014-09-20|Has expired: RubyForge shutdown May 15 2014
audio/ruby-mp3info||2014-09-20|Has expired: RubyForge shutdown May 15 2014
multimedia/ruby-flvtool2||2014-09-20|Has expired: RubyForge shutdown May 15 2014
audio/ruby-freedb||2014-09-20|Has expired: RubyForge shutdown May 15 2014
graphics/ruby-ming||2014-09-20|Has expired: RubyForge shutdown May 15 2014
devel/ruby-locale2||2014-09-20|Has expired: RubyForge shutdown May 15 2014
devel/rubygem-rubyforge||2014-09-20|Has expired: RubyForge shutdown May 15 2014
databases/ruby-dbd_odbc|databases/rubygem-dbd-odbc|2014-09-20|Replaced by rubygem-dbd-odbc
devel/ruby-fastri||2014-09-20|Has expired: RubyForge shutdown May 15 2014
devel/ri-emacs||2014-09-20|Has expired: RubyForge shutdown May 15 2014
security/p5-openxpki-client-html-mason||2014-09-20|Has expired: security/p5-openxpki-0.15+ abandoned Mason UI technology in favor of FastCGI
math/ruby-narray_miss||2014-09-20|Removed, depended on deleted math/ruby-narray
games/gnomechess|games/gnome-chess|2014-09-20|Renamed to match port name
www/ruby-fcgi||2014-09-20|Has expired: RubyForge shutdown May 15 2014
databases/ruby-dbi|databases/rubygem-dbi|2014-09-21|Replaced by rubygem-dbi
databases/ruby-dbd_mysql|databases/rubygem-dbd-mysql|2014-09-21|Replaced by rubygem-dbd-mysql
databases/ruby-dbd_pg|databases/rubygem-dbd-pg|2014-09-21|Replaced by rubygem-dbd-pg
databases/ruby-dbd_sqlite|databases/rubygem-dbd-sqlite3|2014-09-21|Replaced by rubygem-dbd-sqlite3
databases/ruby-dbd-sqlite||2014-09-21|Dysfunctional
textproc/ruby-amatch|textproc/rubygem-amatch|2014-09-21|Replaced by textproc/rubygem-amatch
databases/rubygem-aspectr|devel/rubygem-aspectr|2014-09-21|Change category
graphics/libggi||2014-09-22|Has expired: Unmaintained upstream
devel/libgii||2014-09-22|Has expired: Unmaintained upstream
graphics/fpc-ggi||2014-09-22|Has expired: Unmaintained upstream
graphics/linux-sdl_ttf||2014-09-22|Replaced by graphics/linux-*-sdl_ttf
www/mediawiki121||2014-09-23|Has expired: Not maintained upstream
sysutils/rubygem-chef-expander||2014-09-25|Has expired: Depends on broken rubygem-dep_selector
sysutils/rubygem-chef-server||2014-09-25|Has expired: Depends on broken rubygem-dep_selector
sysutils/rubygem-chef-solr||2014-09-25|Has expired: Depends on broken rubygem-dep_selector
www/rubygem-chef-server-webui||2014-09-25|Has expired: Depends on broken rubygem-dep_selector
www/rubygem-chef-server-api||2014-09-25|Has expired: Depends on broken rubygem-dep_selector
databases/freetds-msdblib||2014-09-27|No longer required, now covered by databases/freetds
sysutils/rubgem-bundler_ext|sysutils/rubygem-bundler_ext|2014-09-27|Renamed
archivers/rpm5||2014-09-28|Has expired: Broken for more than 6 months
devel/cocaine-core||2014-09-28|Has expired: Broken for more than 6 months
graphics/ruby-tgif||2014-09-28|Has expired: Broken for more than 6 months
net/libnet10||2014-09-30|Has expired: Superseded by net/libnet
net/despoof||2014-09-30|Has expired: Depends on expired net/libnet10
sysutils/gpkgdep||2014-09-30|Has expired: Requires old pkg_info
security/vida||2014-09-30|Has expired: Depends on expired net/libnet10
net/nemesis||2014-09-30|Has expired: Depends on expired net/libnet10
net-mgmt/sing||2014-09-30|Has expired: Depends on expired net/libnet10
net-mgmt/gps||2014-09-30|Has expired: Depends on expired net/libnet10
net/ttlscan||2014-09-30|Has expired: Depends on expired net/libnet10
security/zombiezapper||2014-09-30|Has expired: Depends on expired net/libnet10
dns/dnshijacker||2014-09-30|Has expired: Depends on expired net/libnet10
net/xboxproxy||2014-09-30|Has expired: Depends on expired net/libnet10
net-mgmt/scdp||2014-09-30|Has expired: Depends on expired net/libnet10
net-mgmt/angst||2014-09-30|Has expired: Depends on expired net/libnet10
security/py-otr||2014-09-30|Has expired: Abandoned upstream
net-p2p/cdonkey||2014-09-30|Has expired: depends on deprecated db41 version
www/rubygem-puma16||2014-10-02|Has expired: Old version no longer needed
x11-toolkits/gnome-desktop-sharp20||2014-10-02|Removed, no users and depends on gnome-panel which will be removed
x11-toolkits/eel||2014-10-03|Removed, doesn't build with updated gnome-desktop
deskutils/gnome-main-menu||2014-10-03|Removed, because x11-toolkits/eel was removed
editors/mlview||2014-10-03|Removed, because x11-toolkits/eel was removed
textproc/gnome-translate||2014-10-03|Removed, because x11-toolkits/eel was removed
x11/avant-window-navigator-gnome||2014-10-03|Removed doesn't build with update gnome-desktop
www/moodle25||2014-10-05|Has expired: Upstream support ended
astro/openmap||2014-10-07|Ten years out of date
ports-mgmt/portaudit||2014-10-13|portaudit expired when pkg_tools did, use pkg audit
ports-mgmt/portaudit-db||2014-10-13|portaudit expired
ports-mgmt/kports-qt4||2014-10-13|portaudit expired
net-mgmt/check_snmp_pkgvuln||2014-10-13|portaudit expired
mail/p5-Email-Stuff|mail/p5-Email-Stuffer|2014-10-15|Has expired: Deprecated in favour of mail/p5-Email-Stuffer
security/krb5-maint|security/krb5-111|2014-10-16|MIT now supports two maintenance releases of which 1.11 is the older of the two
devel/rubygem-rspec-spies||2014-10-17|Has expired: Same syntax available in rspec 2.14 and later
graphics/libfreehand00|graphics/libfreehand|2014-10-17|Replaced by newer version
graphics/libcdr|graphics/libcdr01|2014-10-17|Replaced by newer version
print/libmspub|print/libmspub01|2014-10-17|Replaced by newer version
devel/py-olefileio_pl|devel/py-olefile|2014-10-17|Upstream name change
audio/mad||2014-10-20|Directly use audio/libmad or audio/madplay
mail/dspam-devel|mail/dspam|2014-10-20|Merged into mail/dspam
dns/bind98|dns/bind99|2014-10-21|BIND 9.8 EOL
dns/powerdns-devel|dns/powerdns|2014-10-24|Older than dns/powerdns and no longer needed
www/mod_authz_unixgroup|www/mod_authz_unixgroup22|2014-10-26|Reflect Apache version in portsdir
lang/kroc||2014-10-28|Has expired: Broken for more than 6 months
net/slirp||2014-10-28|Has expired: Broken for more than 6 months
www/typo347||2014-10-30|Has expired: Upgrade to www/typo3 or www/typo3-lts
deskutils/babytrans||2014-10-31|Has expired: Abandonware, dictionaries unavailable
www/rt38||2014-10-31|Has expired: Has expired: End of Life March 2014
textproc/libmwaw|textproc/libmwaw03|2014-10-31|Replaced by newer version
databases/pecl-yac|devel/pecl-yac|2014-11-04|Duplicate port
devel/qt5-qmldevtools||2014-11-05|Merged into lang/qt5-qml
math/elmer-umfpack|cad/elmerfem|2014-11-07|Has expired: Obsoleted by cad/elmerfem
science/elmer-eio|cad/elmerfem|2014-11-07|Has expired: Obsoleted by cad/elmerfem
science/elmer-matc|cad/elmerfem|2014-11-07|Has expired: Obsoleted by cad/elmerfem
science/elmer-meshgen2d|cad/elmerfem|2014-11-07|Has expired: Obsoleted by cad/elmerfem
science/elmergrid|cad/elmerfem|2014-11-07|Has expired: Obsoleted by cad/elmerfem
security/pinentry-gtk||2014-11-13|Removed: upstream ended support for GTK+ 1
audio/cuberok||2014-11-15|Has expired: Upstream development has stalled
sysutils/cfengine36-rc|sysutils/cfengine36|2014-11-18|Has gone GA
deskutils/gdesklets||2014-11-19|Depends on removed x11-toolkits/py-gnome-extra
deskutils/gdesklets-recentlyused||2014-11-19|Depends on removed x11-toolkits/py-gnome-extra
deskutils/gdesklets-starterbar||2014-11-19|Depends on removed x11-toolkits/py-gnome-extra
deskutils/global-menu||2014-11-19|Depends on removed gnome-panel and incompatible with updated gnome-desktop
deskutils/labyrinth||2014-11-19|Is not compatible with updated gnome-desktop
deskutils/libopensync-plugin-evolution2||2014-11-19|Is not compatible with updated evolution
deskutils/libopensync-plugin-evolution2-devel||2014-11-19|Is not compatible with updated evolution
devel/bug-buddy||2014-11-19|No longer used in GNOME
devel/gnome2-hacker-tools||2014-11-19|GNOME 2 was removed
editors/gnome2-office||2014-11-19|GNOME 2 was removed
games/gnomesudoku|games/gnome-sudoku|2014-11-19|Renamed to what the actualy name
lang/vala-vapigen|lang/vala|2014-11-19|vapigen merged into vala
mail/evolution-exchange|mail/evolution-ews|2014-11-19|Replaced by evolution-ews
mail/gmail-notify||2014-11-19|Depends on removed x11-toolkits/py-gnome-extras
math/gcalctool|math/gnome-calculator|2014-11-19|Project renamed
misc/gnome2-reference||2014-11-19|GNOME 2 was removed
misc/xmonad-log-applet||2014-11-19|Depends on removed gnome-panel
net/gnome-netstatus||2014-11-19|Depends on removed gnome-panel
security/seahorse-plugins||2014-11-19|Removed, not used in GNOME 3
sysutils/gnome-system-tools||2014-11-19|Depends on removed nautilus2
sysutils/tracker-client|sysutils/tracker|2014-11-19|Merged into sysutils/tracker
sysutils/tracker-gnome|sysutils/tracker|2014-11-19|Merged into sysutils/tracker
sysutils/tracker-libtrackergtk|sysutils/tracker|2014-11-19|Merged into sysutils/tracker
www/epiphany-extensions||2014-11-19|Removed, not used in GNOME 3
www/evolution-webcal||2014-11-19|Not compatible with evolution 3
x11-clocks/gdesklets-clock||2014-11-19|Depends on removed x11-toolkits/py-gnome-extra
x11-clocks/gdesklets-countdown||2014-11-19|Depends on removed x11-toolkits/py-gnome-extra
x11-clocks/gdesklets-ebichuclock||2014-11-19|Depends on removed x11-toolkits/py-gnome-extra
x11-toolkits/libpanelappletmm||2014-11-19|Depends on removed GNOME 2 ports
x11-toolkits/py-gnome-desktop||2014-11-19|Depends on removed GNOME 2 ports
x11-toolkits/py-gnome-extras||2014-11-19|Depends on removed GNOME 2 ports
x11/gdesklets-tasklist||2014-11-19|Depends on removed x11-toolkits/py-gnome-extra
x11/gnome-applets||2014-11-19|GNOME 2 was removed
x11/gnome-panel||2014-11-19|GNOME 2 was removed
x11/gnome-panel-reference||2014-11-19|GNOME 2 was removed
x11/gnome-screensaver||2014-11-19|Is not compatible with updated gnome-desktop
x11/gnome-swallow||2014-11-19|Removed, depends on removed gnome-panel
x11/gnome2||2014-11-19|GNOME 2 was removed
x11/gnome2-fifth-toe||2014-11-19|GNOME 2 was removed
x11/gnome2-lite||2014-11-19|GNOME 2 was removed
x11/gnome2-power-tools||2014-11-19|GNOME 2 was removed
x11/xfce4-xfapplet-plugin||2014-11-19|Depends on removed gnome-panel
net-im/telegram-cli||2014-11-19|Duplicate of net-im/tg
emulators/wine-doors||2014-11-19|Abandonware, depends on non existing USE_GNOME components
x11/gtstarter||2014-11-19|Abandonware, depends on non existing USE_GNOME components
sysutils/serpentine||2014-11-19|Abandonware, depends on non existing USE_GNOME components
sysutils/pessulus||2014-11-19|Abandonware, depends on non existing USE_GNOME components
x11-toolkits/libzvt||2014-11-19|Abandonware, not depended on anymore
net-p2p/gtkhx||2014-11-19|Does not work anymore
korean/ami||2014-11-19|Does not work anymore
graphics/xzgv||2014-11-19|Abandonware since at least 2008
deskutils/gtkjournal||2014-11-19|Abandonware, not working anymore
deskutils/splashsetter||2014-11-19|Abandonware, useless without gnome2
editors/emacs23|editors/emacs|2014-11-19|Has expired: Unmaintained upstream, use editors/emacs
net-im/tg|net-im/telegram|2014-11-20|Renamed to more specific name
net-mgmt/virtinst|deskutils/virt-manager|2014-11-20|Obsoleted by deskutils/virt-manager
graphics/linux-c6-gdk-pixbuf|graphics/linux-c6-gdk-pixbuf2|2014-11-24|Port renamed to align with upstream
devel/libole2||2014-11-24|Abandoned upstream, incomplete, not depend on
net/p5-SOAP-Transport-TCP|net/p5-SOAP-Lite|2014-11-24|Has been integrated into net/p5-SOAP-Lite
www/chimera||2014-11-24|Has expired: Abandonware (last update in 1997), restrictive license
devel/ecore|devel/efl|2014-11-25|Merged to devel/efl
devel/ecore-file|devel/efl|2014-11-25|Merged to devel/efl
devel/ecore-ipc|devel/efl|2014-11-25|Merged to devel/efl
devel/ecore-main|devel/efl|2014-11-25|Merged to devel/efl
devel/eet|devel/efl|2014-11-25|Merged to devel/efl
devel/eina|devel/efl|2014-11-25|Merged to devel/efl
devel/eio|devel/efl|2014-11-25|Merged to devel/efl
graphics/ecore-evas|devel/efl|2014-11-25|Merged to devel/efl
graphics/ecore-sdl|devel/efl|2014-11-25|Merged to devel/efl
graphics/edje|devel/efl|2014-11-25|Merged to devel/efl
graphics/ethumb|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-core|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-engine-buffer|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-engine-opengl|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-engine-sdl|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-engine-x11|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-bmp|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-eet|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-generic|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-gif|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-ico|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-jpeg|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-pmaps|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-png|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-psd|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-svg|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-tga|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-tiff|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-wbmp|devel/efl|2014-11-25|Merged to devel/efl
graphics/evas-loader-xpm|devel/efl|2014-11-25|Merged to devel/efl
lang/embryo|devel/efl|2014-11-25|Merged to devel/efl
multimedia/emotion|devel/efl|2014-11-25|Merged to devel/efl
net/ecore-con|devel/efl|2014-11-25|Merged to devel/efl
x11/ecore-imf|devel/efl|2014-11-25|Merged to devel/efl
x11/ecore-imf_evas|devel/efl|2014-11-25|Merged to devel/efl
x11/ecore-input|devel/efl|2014-11-25|Merged to devel/efl
x11/ecore-input_evas|devel/efl|2014-11-25|Merged to devel/efl
x11/ecore-x11|devel/efl|2014-11-25|Merged to devel/efl
x11/efreet|devel/efl|2014-11-25|Merged to devel/efl
x11-wm/e17-module-alarm|x11-wm/e-module-alarm|2014-11-25|Renamed
x11-wm/e17-module-cpu|x11-wm/e-module-cpu|2014-11-25|Renamed
x11-wm/e17-module-deskshow|x11-wm/e-module-deskshow|2014-11-25|Renamed
x11-wm/e17-module-diskio|x11-wm/e-module-diskio|2014-11-25|Renamed
x11-wm/e17-module-everything-places|x11-wm/e-module-everything-places|2014-11-25|Renamed
x11-wm/e17-module-everything-websearch|x11-wm/e-module-everything-websearch|2014-11-25|Renamed
x11-wm/e17-module-forecasts|x11-wm/e-module-forecasts|2014-11-25|Renamed
x11-wm/e17-module-mem|x11-wm/e-module-mem|2014-11-25|Renamed
x11-wm/e17-module-mpdule|x11-wm/e-module-mpdule|2014-11-25|Renamed
x11-wm/e17-module-net|x11-wm/e-module-net|2014-11-25|Renamed
x11-wm/e17-module-penguins|x11-wm/e-module-penguins|2014-11-25|Renamed
x11-wm/e17-module-places|x11-wm/e-module-places|2014-11-25|Renamed
x11-wm/e17-module-rmb|x11-wm/e-module-rmb|2014-11-25|Renamed
x11-wm/e17-module-tclock|x11-wm/e-module-tclock|2014-11-25|Renamed
x11-wm/e17-module-wlan|x11-wm/e-module-wlan|2014-11-25|Renamed
x11-wm/e17-modules|x11-wm/e-modules|2014-11-25|Renamed
net-im/folks04||2014-11-26|Removed, no longer used after GNOME 3 merge
devel/afl|security/afl|2014-11-26|Duplicate port
print/latexmk|print/texlive-base|2014-11-27|Has been incorporated in TeXLive
print/pdfjam|print/texlive-base|2014-11-27|Has been incorporated in TeXLive
vietnamese/vnlpr||2014-11-29|Has expired: Broken for more than 6 months
devel/fsmgenerator||2014-11-29|Has expired: Broken for more than 6 months
graphics/multiraw||2014-11-29|Has expired: Depends on broken and deprecated graphics/dcraw-m
news/fidogate-ds||2014-11-29|Has expired: Broken for more than 6 months
net/py-yadis||2014-11-29|Has expired: Broken for more than 6 months
textproc/ruby-diff||2014-11-29|Has expired: Broken for more than 6 months
audio/cowbell||2014-11-29|Has expired: Broken for more than 6 months
lang/ironpython||2014-11-29|Has expired: Broken for more than 6 months
www/dpsearch||2014-11-29|Has expired: Broken for more than 6 months
multimedia/y4mscaler||2014-11-29|Has expired: Broken for more than 6 months
devel/rubygem-dep_selector||2014-11-29|Has expired: Broken for more than 6 months
sysutils/rubygem-hiera-puppet||2014-12-01|Has expired: Has been incorporated into hiera
sysutils/rubygem-hiera-json||2014-12-01|Has expired: Has been incorporated into hiera
databases/memcachedb||2014-12-01|Has expired: Depends on deprecated Berkeley DB version, needs porting to DB_SITE
games/djgame2||2014-12-01|Has expired: Online servers gone, game is not playable
lang/clay||2014-12-01|Has expired: No development since July 2013, depends on obsolete clang-3.2
textproc/libodfgen|textproc/libodfgen01|2014-12-02|Replaced by newer version
graphics/libetonyek|graphics/libetonyek01|2014-12-02|Replaced by newer version
textproc/sw-hunspell|textproc/sv-hunspell|2014-12-02|Swedish is sv not sw
deskutils/gnome-shell-extension-gtile||2014-12-03|Removed, doesn't work properly
devel/rubygem-rb-readline||2014-12-05|Removed, not needed
ports-mgmt/pib||2014-12-06|Has expired: Does not work with tcl/tk 8.4+, does not support pkgng
editors/texmakerx|editors/texstudio|2014-12-06|The project has been renamed
databases/postgresql93-plv8js|databases/postgresql-plv8js|2014-12-07|Breaks index when PGSQL_DEFAULT=9.3 and master port can be used for pgsql 9.3
www/twig-php||2014-12-08|Removed, as it was replaced and conflicting with www/pear-twig and www/pecl-twig
textproc/xerces-c2|textproc/xerces-c3|2014-12-12|Unused, conflicting with xerces-c3
textproc/xerces-c2-devel|textproc/xerces-c3|2014-12-12|Unused, conflicting with xerces-c3
games/empire|games/vms-empire|2014-12-15|Moved to match upstream name
devel/preps-gui||2014-12-15|Has expired: upstream disappeared
devel/prepstools||2014-12-15|Has expired: upstream disappeared
devel/llvm32||2014-12-18|Obsolete and unmaintained upstream
lang/clang32||2014-12-18|Obsolete and unmaintained upstream
x11-drivers/xf86-video-newport||2014-12-19|Removed: Depends on removed xorg-server 1.12
x11-drivers/xf86-video-tga||2014-12-19|Removed: Alpha support was removed in FreeBSD 7.0
x11/nvidia-driver-71||2014-12-19|Removed: Not compatible with xserver 1.14
x11/nvidia-driver-96||2014-12-19|Removed: Not compatible with xserver 1.14
www/drupal7-jailadmin||2014-12-20|Removed per author's request; unmaintained
www/drupal7-vulnscan||2014-12-20|Removed per author's request; unmaintained
www/neon29|www/neon|2014-12-24|Rename to reflect upstream
graphics/pornview||2014-12-24|No more upstream, no more public distfile, no proper support for modern png
misc/gnomehier||2014-12-25|Not needed anymore
graphics/corona||2014-12-25|Abandonware, no proper support for modern png
graphics/libpano12|graphics/libpano13|2014-12-25|No proper support for modern png, newer version available as libpano13
games/hex||2014-12-25|Abandonware, no support for moden graphics libraries
graphics/bbrb||2014-12-25|Abandonware, depends on imlib
graphics/gtkgraph||2014-12-25|Abandonware, depends on imlib
graphics/imagesort||2014-12-25|Abandonware, depends on imlib
graphics/picturebook||2014-12-25|Abandonware, depends on imlib
graphics/show||2014-12-25|Abandonware, depends on imlib
japanese/ebview|japanese/ebview-gtk2|2014-12-25|Use GTK2 version
japanese/xjtext||2014-12-25|Abandonware, depends on imlib
x11/peeper||2014-12-25|Abandonware, depends on imlib
x11-toolkits/fpc-gnome1||2014-12-25|Depends on imlib
graphics/fpc-imlib||2014-12-25|Depends on imlib
graphics/imlib||2014-12-25|Does not handle modern graphics libraries
games/secretmaryochronicles-music||2014-12-27|Has expired: Depends on expiring games/secretmaryochronicles
x11-fm/pbi-thumbnailer||2014-12-27|Has expired: Broken for more than 6 months
games/secretmaryochronicles||2014-12-27|Has expired: does not run, cegui 0.8 support still in development
multimedia/ffmpeg24|multimedia/ffmpeg25|2014-12-27|ffmpeg upstream now points to 2.5.x series
x11-wm/enlightenment-docs|x11-wm/e16-docs|2014-12-28|Renamed for better naming
devel/py-checkmanifest|devel/py-check-manifest|2014-12-29|Use correct upstream PyPI name
deskutils/xpad-current|deskutils/xpad|2014-12-30|deskutils/xpad-current is ready for prime time
biology/ncbi-blast|biology/ncbi-blast+|2014-12-30|Clarify that this is blast+ and not the blast, allow for a future ncbi-blast port
lang/perl5.14||2014-12-31|Has expired: Unsupported, please upgrade to a more recent version of Perl
graphics/ender||2014-12-31|Has expired: Unused by EFL 1.11
graphics/enesim||2014-12-31|Has expired: Unused by EFL 1.11
graphics/etch||2014-12-31|Has expired: Unused by EFL 1.11
www/egueb||2014-12-31|Has expired: Unused by EFL 1.11
x11-wm/e17-module-comp-scale||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-eektool||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-elfe||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-empris||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-engage||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-eooorg||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-everything-aspell||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-everything-mpris||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-everything-pidgin||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-everything-shotgun||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-everything-wallpaper||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-exebuf||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-execwatch||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-flame||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-iiirk||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-itask||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-mail||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-moon||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-news||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-photo||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-rain||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-screenshot||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-slideshow||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-taskbar||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-uptime||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-weather||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-winlist-ng||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-winselector||2014-12-31|Has expired: Broken and updates aren't available
x11-wm/e17-module-snow||2014-12-31|Has expired: Broken and updates aren't available
biology/boinc-simap||2015-01-01|Has expired: Project shutting down, see http://boincsimap.org/boincsimap/forum_thread.php?id=88
security/openssh-portable-base||2015-01-01|Has expired: Overwrite-base option/port/pkg will be removed. There is no real need for foot-shooting
devel/cedet||2015-01-01|Has expired: Fails to build, use Emacs' builtin cedet package instead
devel/ecb||2015-01-01|Has expired: does not work with newer Emacs versions, use the elpa package instead
devel/rubygem-little_plugger|devel/rubygem-little-plugger|2015-01-05|Rename to match our rubygems naming
misc/nagios-base-logos||2015-01-05|Included in nagios distribution
ports-mgmt/portcheckout||2015-01-06|Has expired: Uses ports cvs repo, which is long gone
ports-mgmt/pkg_trackinst||2015-01-06|Has expired: Does not support pkgng, generates incorrect pkg-plist
ports-mgmt/pkg_remove||2015-01-06|Has expired: Does not support pkgng
ports-mgmt/pkg-orphan||2015-01-06|Has expired: Does not support pkgng
ports-mgmt/p5-FreeBSD-Pkgs-FindUpdates||2015-01-06|Has expired: Depends on ports-mgmt/p5-FreeBSD-Pkgs
ports-mgmt/p5-FreeBSD-Pkgs||2015-01-06|Has expired: Does not support pkgng
ports-mgmt/p5-App-Pm2Port||2015-01-06|Has expired: Does not know about USES=perl, generates incorrect pkg-plist
ports-mgmt/bpkg||2015-01-06|Has expired: Does not support pkgng
multimedia/mplayer-fonts||2015-01-11|Obsolete port
security/qca-cyrus-sasl|devel/qca|2015-01-12|Part of devel/qca now
security/qca-gnupg|devel/qca|2015-01-12|Part of devel/qca now
security/qca-ossl|devel/qca|2015-01-12|Part of devel/qca now
games/vdrift-data||2015-01-16|vdrift engine was removed from ports four months earlier
x11/rxvt-devel||2015-01-17|Has expired: No longer developed nor maintained and deprecated by x11/xvt and x11/rxvt-unicode
comms/spandsp-devel|comms/spandsp|2015-01-17|Has expired: Use newer comms/spandsp
multimedia/universal-media-server||2015-01-17|Has expired: RC script broken, especially prestart target
www/qupzilla|www/qupzilla-qt4|2015-01-18|Renamed to differentiate from www/qupzilla-qt5
devel/p5-perlbrew|devel/p5-App-perlbrew|2015-01-19|Rename to match upstream naming
devel/actor-framework|devel/caf|2015-01-19|Rename to match upstream naming
textproc/py-charade||2015-01-28|Charade was merged back to textproc/py-chardet
audio/qmidinet||2015-01-28|Has expired: Broken for more than 6 months
audio/wmauda||2015-01-28|Has expired: Broken for more than 6 months
audio/x11amp||2015-01-28|Has expired: Broken for more than 6 months
devel/p5-Log-Any-Adapter|devel/p5-Log-Any|2015-01-28|Has expired: devel/p5-Log-Any-Adapter merged into devel/p5-Log-Any by upstream
net-im/pidgin-audacious-remote||2015-01-28|Has expired: Broken for more than 6 months
www/lifetype||2015-01-28|Has expired: Broken for more than 6 months
www/ump||2015-01-28|Has expired: Broken for more than 6 months
net/owncloud-csync||2015-02-01|Merged into deskutils/mirall
audio/py-eyed3-06|audio/py-eyed3|2015-02-02|Has expired: In audio/abcde dependency has been changed to audio/py-eyed3
mail/postfix210|mail/postfix|2015-02-02|Has expired: Use mail/postfix instead
net-im/venom||2015-02-02|Has expired: No more support from the project
security/openssh-portable66|security/openssh-portable|2015-02-02|Has expired: security/openssh-portable now has all patches working. This port is obsolete
www/p5-WWW-Scraper-ISBN-Driver|www/p5-WWW-Scraper-ISBN|2015-02-02|Has expired: Merged to www/p5-WWW-Scraper-ISBN by upstream
www/p5-WWW-Scraper-ISBN-Record|www/p5-WWW-Scraper-ISBN|2015-02-02|Has expired: Merged to www/p5-WWW-Scraper-ISBN by upstream
japanese/xlockmore|x11/xlockmore|2015-02-02|Merged into x11/xlockmore
deskutils/currtime|sysutils/currtime|2015-02-03|Move to sysutils category
sysutils/pcbsd-utils-qt4|sysutils/pcbsd-utils-qt5|2015-02-03|Renamed to pcbsd-utils-qt5
devel/ntopng-zmq||2015-02-05|Has expired: No longer required after net/ntopng 1.1
devel/py-pylib|devel/py-py|2015-02-11|Rename to match upstream (PyPI) name
sysutils/brebis|sysutils/backupchecker|2015-02-12|Renamed to backupchecker
sysutils/rsyslog7-devel|sysutils/rsyslog7|2015-02-13|Has expired: EoL, use sysutils/rsyslog7
sysutils/rsyslog8-devel|sysutils/rsyslog8|2015-02-13|Has expired: EoL, use sysutils/rsyslog8
japanese/mozc-additions||2015-02-15|Obsoleted by mozc script in japanese/mozc-server
math/ruby-numru_units|math/rubygem-numru-units|2015-02-22|Long time broken. Please use math/rubygem-numru-units instead
lang/ruby19|lang/ruby20|2015-02-24|Upstream support ended February 23, 2015
games/trigger|games/trigger-rally|2015-02-26|Follow upstream naming
multimedia/xbmc|multimedia/kodi|2015-02-28|Project renamed
finance/openerp-server||2015-03-01|Has expired: Broken for more than 6 months
graphics/p5-Geo-KML||2015-03-01|Has expired
mail/postfix-tls||2015-03-01|Has expired: TLS is now a default for postfix / postfix-current
net/spserver||2015-03-01|Has expired: Broken for more than 6 months
net/xrdesktop||2015-03-01|Has expired: Unmaintained upstream - please use net/xrdesktop2 instead
www/mediawiki122||2015-03-01|Has expired: Deprecated by upstream, use www/mediawiki12{3,4} instead
www/mod_cplusplus||2015-03-01|Has expired: written for apache 2.0, no longer maintained upstream
www/py-django15||2015-03-01|Has expired: not supported by upstream
math/isabelle||2015-03-01|Has expired: Broken for more than 6 months
net/rubygem-openid|net/rubygem-ruby-openid|2015-03-07|Rename to match our rubygems naming
devel/p5-Errno||2015-03-09|Errno is part of Perl
devel/p5-Class-XSAccessor-Array||2015-03-09|Has been a part of devel/p5-Class-XSAccessor for >5 years. Use that port instead
multimedia/ffmpeg25|multimedia/ffmpeg26|2015-03-14|ffmpeg upstream now points to 2.6.x series
www/squid33|www/squid|2015-03-15|Has expired: Reached EOL on 28 August 2014, use www/squid (v3.4) instead
x11-fonts/ttmkfdir|x11-fonts/mkfontdir|2015-03-22|Has been replaced by mkfontdir/mkfontscale long ago
audio/raproxy||2015-03-28|Has expired: Broken for more than 6 months
converters/ruby-iconv||2015-03-28|Has expired: Not needed with Ruby 2.x
databases/pydbdesigner||2015-03-28|Has expired: Broken for more than 6 months
security/cyassl|security/wolfssl|2015-03-28|Renamed upstream
devel/rubygem-rcov||2015-03-28|Has expired: Does not work with Ruby 2.x
emulators/linux_dist-gentoo-stage3||2015-03-28|Has expired: Broken for more than 6 months
emulators/linux_base-gentoo-stage3||2015-03-28|Has expired: Broken for more than 6 months
www/vimb|www/vimb-gtk3|2015-03-29|Split into www/vimb-gtk2 and www/vimb-gtk3 (former default)
ports-mgmt/portbuilder||2015-03-31|Has expired: No longer developed and overcome by changed in the Ports Collection
devel/subversion16|devel/subversion|2015-03-31|Has expired: EoL, use devel/subversion
lang/nimrod|lang/nim|2015-04-03|Renamed by upstream
deskutils/mirall|deskutils/owncloudclient|2015-04-04|Renamed upstream
mail/rubygem-qmail|mail/rubygem-ruby-qmail|2015-04-05|Rename to match our rubygems naming
devel/rubygem-transactionsimple|devel/rubygem-transaction-simple|2015-04-05|Rename to match our rubygems naming
print/rubygem-pdfwriter|print/rubygem-pdf-writer|2015-04-05|Rename to match our rubygems naming
devel/rubygem-filemagic|devel/rubygem-ruby-filemagic|2015-04-05|Rename to match our rubygems naming
emulators/xl|sysutils/xen-tools|2015-04-06|Renamed into xen-tools
lang/gnatdroid-armv5||2015-04-07|Has expired: Nobody cares enough to fix sigtramp-android.c for ARMv5
sysutils/puppet27||2015-04-07|Has expired: Does not work with Ruby 2.x
www/rubygem-form_data|www/rubygem-http-form_data|2015-04-07|Has expired: Use www/rubygem-http-form_data instead (renamed by upstream)
www/typo345||2015-04-07|Has expired: Upgrade to www/typo3 or www/typo3-lts
multimedia/mediabrowser|multimedia/emby-server|2015-04-08|Project renamed
deskutils/preferencepanes|deskutils/systempreferences|2015-04-08|preferencepanes merged into systempreferences
games/airstrike||2015-04-10|Has expired: never completed, alpha quality, dev site and repo do not resolve
www/trac-batchmodify||2015-04-10|Has expired: This functionality was merged into Trac since version 1.0
net/quagga23|net/quagga|2015-04-17|The regression on 8 and 9 has been patched, go back to the regular quagga
databases/php53-sqlite3||2015-04-17|Has expired: security EOL reached 14 Aug 2014
textproc/php53-simplexml||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-sybase_ct||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-pdo_mysql||2015-04-17|Has expired: security EOL reached 14 Aug 2014
textproc/php53-ctype||2015-04-17|Has expired: security EOL reached 14 Aug 2014
textproc/php53-wddx||2015-04-17|Has expired: security EOL reached 14 Aug 2014
security/php53-filter||2015-04-17|Has expired: security EOL reached 14 Aug 2014
ftp/php53-ftp||2015-04-17|Has expired: security EOL reached 14 Aug 2014
net/php53-soap||2015-04-17|Has expired: security EOL reached 14 Aug 2014
converters/php53-recode||2015-04-17|Has expired: security EOL reached 14 Aug 2014
security/php53-openssl||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-dba||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-pdo_pgsql||2015-04-17|Has expired: security EOL reached 14 Aug 2014
sysutils/php53-fileinfo||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-pdo_odbc||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-sqlite||2015-04-17|Has expired: security EOL reached 14 Aug 2014
devel/php53-readline||2015-04-17|Has expired: security EOL reached 14 Aug 2014
mail/php53-imap||2015-04-17|Has expired: security EOL reached 14 Aug 2014
sysutils/php53-posix||2015-04-17|Has expired: security EOL reached 14 Aug 2014
archivers/php53-phar||2015-04-17|Has expired: security EOL reached 14 Aug 2014
graphics/php53-gd||2015-04-17|Has expired: security EOL reached 14 Aug 2014
textproc/php53-xsl||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-pdo_firebird||2015-04-17|Has expired: security EOL reached 14 Aug 2014
devel/mingw64-binutils||2015-04-17|Has expired: Obsolete. Migrate to devel/binutils based ports
devel/cross-binutils||2015-04-17|Has expired: Obsolete. Migrate to devel/binutils based ports
databases/php53-pdo_dblib||2015-04-17|Has expired: security EOL reached 14 Aug 2014
devel/php53-sysvshm||2015-04-17|Has expired: security EOL reached 14 Aug 2014
devel/php53-json||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-redis||2015-04-17|Has expired: requires php53, security EOL reached 14 Aug 2014
textproc/php53-pspell||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-pgsql||2015-04-17|Has expired: security EOL reached 14 Aug 2014
textproc/php53-xmlreader||2015-04-17|Has expired: security EOL reached 14 Aug 2014
converters/php53-iconv||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-odbc||2015-04-17|Has expired: security EOL reached 14 Aug 2014
ftp/php53-curl||2015-04-17|Has expired: security EOL reached 14 Aug 2014
math/php53-gmp||2015-04-17|Has expired: security EOL reached 14 Aug 2014
security/php53-mcrypt||2015-04-17|Has expired: security EOL reached 14 Aug 2014
devel/php53-shmop||2015-04-17|Has expired: security EOL reached 14 Aug 2014
math/php53-bcmath||2015-04-17|Has expired: security EOL reached 14 Aug 2014
security/php53-hash||2015-04-17|Has expired: security EOL reached 14 Aug 2014
devel/php53-sysvsem||2015-04-17|Has expired: security EOL reached 14 Aug 2014
archivers/php53-zip||2015-04-17|Has expired: security EOL reached 14 Aug 2014
graphics/php53-exif||2015-04-17|Has expired: security EOL reached 14 Aug 2014
devel/php53-gettext||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-mysql||2015-04-17|Has expired: security EOL reached 14 Aug 2014
textproc/php53-xmlwriter||2015-04-17|Has expired: security EOL reached 14 Aug 2014
textproc/php53-xml||2015-04-17|Has expired: security EOL reached 14 Aug 2014
converters/php53-mbstring||2015-04-17|Has expired: security EOL reached 14 Aug 2014
devel/php53-sysvmsg||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-mysqli||2015-04-17|Has expired: security EOL reached 14 Aug 2014
misc/php53-calendar||2015-04-17|Has expired: security EOL reached 14 Aug 2014
devel/php53-tokenizer||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-pdo||2015-04-17|Has expired: security EOL reached 14 Aug 2014
net/php53-xmlrpc||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-interbase||2015-04-17|Has expired: security EOL reached 14 Aug 2014
www/php53-session||2015-04-17|Has expired: security EOL reached 14 Aug 2014
databases/php53-mssql||2015-04-17|Has expired: security EOL reached 14 Aug 2014
www/php53-tidy||2015-04-17|Has expired: security EOL reached 14 Aug 2014
archivers/php53-zlib||2015-04-17|Has expired: security EOL reached 14 Aug 2014
net/php53-ldap||2015-04-17|Has expired: security EOL reached 14 Aug 2014
net-mgmt/php53-snmp||2015-04-17|Has expired: security EOL reached 14 Aug 2014
textproc/php53-dom||2015-04-17|Has expired: security EOL reached 14 Aug 2014
devel/php53-pcntl||2015-04-17|Has expired: security EOL reached 14 Aug 2014
archivers/php53-bz2||2015-04-17|Has expired: security EOL reached 14 Aug 2014
net/php53-sockets||2015-04-17|Has expired: security EOL reached 14 Aug 2014
lang/php53||2015-04-17|Has expired: security EOL reached 14 Aug 2014
lang/php53-extensions||2015-04-17|Has expired: security EOL reached 14 Aug 2014
german/pecl-konto_check||2015-04-17|Has expired: requires php53, security EOL reached 14 Aug 2014
www/moodle26|www/moodle27|2015-04-17|Has expired: Deprecated by upstream, use www/moodle2{7,8} instead
databases/php53-pdo_sqlite||2015-04-17|Has expired: security EOL reached 14 Aug 2014
java/eclipse-ocl||2015-04-18|Has expired: depends on deprecated java/eclipse-emf
java/eclipse-quantum||2015-04-18|Has expired: depends on deprecated java/eclipse-gef
java/eclipse-propedit||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-aptana||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
devel/subclipse||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
devel/scala-ide||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-webtools||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-RDT||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-aptana-radrails||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-jad||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-vep-examples||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-gef-examples||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-gef||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-sysdeo-tomcat||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/commonclipse||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-sqlexplorer||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-viplugin||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-vep||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-checkstyle||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-aptana2||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-examples||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-hibernatetools||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-langpack||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-uml||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-datatools||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-emf||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
java/eclipse-pmd||2015-04-18|Has expired: evaluation recommendation is to remove rather than update
textproc/nltk|textproc/py-nltk|2015-04-19|Renamed for consistency
devel/rubygem-inline|devel/rubygem-rubyinline|2015-04-21|Rename to match our rubygems naming
devel/p5-Devel-Profiler|devel/p5-Devel-NYTProf|2015-04-24|Devel::DProf was removed form Perl, use Devel::NYTProf
audio/filter_audio|audio/libfilteraudio|2015-04-27|audio/filter-audio is renamed into audio/libfilteraudio
www/p5-Google-Code-Upload||2015-04-30|Has expired: Google Code will be shutting down (http://google-opensource.blogspot.tw/2015/03/farewell-to-google-code.html)
games/wmfortune||2015-04-30|Has expired: Broken for more than 6 months
devel/p5-base||2015-04-30|Has expired: this port is outdated and base 2.18+ is already in all supported Perl releases
security/py-certify|security/py-certifi|2015-05-01|security/py-certify is renamed into security/py-certifi
devel/rubygem-mini_portile||2015-05-03|Has expired: Unneeded port
devel/rubygem-mirror|devel/rubygem-rubygems-mirror|2015-05-03|Rename to match our rubygems naming
graphics/rubygem-graphviz|graphics/rubygem-ruby-graphviz|2015-05-03|Rename to match our rubygems naming
x11-fm/walcommander|x11-fm/wcmcommander|2015-05-07|Renamed upstream
archivers/lz4|archivers/liblz4|2015-05-08|Superseded by archivers/liblz4
deskutils/libopensync-plugin-python||2015-05-09|Has expired: Unfetchable, devices are not produced anymore
deskutils/msynctool||2015-05-09|Has expired: Unfetchable, devices are not produced anymore
devel/ruby-flexmock|devel/rubygem-flexmock|2015-05-10|Rename to match our rubygems naming
lang/pypy-devel|lang/pypy|2015-05-17|Superseded by lang/pypy
databases/my2cego|databases/cegobridge|2015-05-19|Superseded by databases/cegobridge
emulators/wine-compholio|emulators/wine-staging|2015-05-23|Renamed
emulators/i386-wine-compholio|emulators/i386-wine-staging|2015-05-23|Renamed
devel/rubygem-bioruby|devel/rubygem-bio|2015-05-23|Rename to match our rubygems naming
www/rubygem-taggable|www/rubygem-acts_as_taggable|2015-05-23|Rename to match our rubygems naming
security/rubygem-meterpreter_bins|security/rubygem-metasploit-payloads|2015-05-23|Renamed upstream
textproc/rubygem-augeas|textproc/rubygem-ruby-augeas|2015-05-23|Rename to match our rubygems naming
textproc/rubygem-xslt|textproc/rubygem-ruby-xslt|2015-05-24|Rename to match our rubygems naming
net-mgmt/glpi-plugins-tracker-agent|net-mgmt/glpi-plugins-fusioninventory-server|2015-05-24|Has expired: superceded by net-mgmt/glpi-plugins-fusioninventory-server
net-mgmt/glpi-plugins-tracker-server|net-mgmt/glpi-plugins-fusioninventory-server|2015-05-24|Has expired: superceded by net-mgmt/glpi-plugins-fusioninventory-server
science/rubygem-netcdf|science/rubygem-ruby-netcdf|2015-05-24|Rename to match our rubygems naming
security/rubygem-rc4|security/rubygem-ruby-rc4|2015-05-24|Rename to match our rubygems naming
print/rubygem-colortools|print/rubygem-color-tools|2015-05-24|Rename to match our rubygems naming
security/qtkeychain|security/qtkeychain-qt5|2015-05-24|Renamed to indicate supported QT version
www/rubygem-layout-yullio|www/rubygem-layout_yullio_generator|2015-05-27|Rename to match our rubygems naming
net/rubygem-rightaws|net/rubygem-right_aws|2015-05-27|Rename to match our rubygems naming
net/rubygem-rightflexiscale|net/rubygem-right_flexiscale|2015-05-27|Rename to match our rubygems naming
net/rubygem-rightgogrid|net/rubygem-right_gogrid|2015-05-27|Rename to match our rubygems naming
net/rubygem-righthttpconnection|net/rubygem-right_http_connection|2015-05-27|Rename to match our rubygems naming
net/rubygem-rightslicehost|net/rubygem-right_slicehost|2015-05-27|Rename to match our rubygems naming
audio/rubygem-shout|audio/rubygem-ruby-shout|2015-05-27|Rename to match our rubygems naming
devel/rubygem-test|devel/rubygem-rubygems-test|2015-05-29|Rename to match our rubygems naming
devel/rubygem-deeptest|devel/rubygem-deep_test|2015-05-30|Rename to match our rubygems naming
audio/portaudio2|audio/portaudio|2015-05-30|Merged into the main port
net/rubygem-yadis|net/rubygem-ruby-yadis|2015-05-30|Rename to match our rubygems naming
ports-mgmt/porteasy||2015-06-01|Has expired: Does not support pkgng
textproc/hgrep||2015-06-01|Has expired: Not needed any more, base grep has coloring support
www/diamanda||2015-06-01|Has expired: Broken for more than 6 months
devel/py-ScriptTest|devel/py-scripttest|2015-06-01|Renamed upstream
net/openmpi-devel||2015-06-09|Port older than net/openmpi
databases/postgresql84-client||2015-06-10|Has expired: "EOL was reached in July 2014"
databases/postgresql84-contrib||2015-06-10|Has expired: "EOL was reached in July 2014"
databases/postgresql84-docs||2015-06-10|Has expired: "EOL was reached in July 2014"
databases/postgresql84-plperl||2015-06-10|Has expired: "EOL was reached in July 2014"
databases/postgresql84-plpython||2015-06-10|Has expired: "EOL was reached in July 2014"
databases/postgresql84-pltcl||2015-06-10|Has expired: "EOL was reached in July 2014"
deskutils/deskbar-applet||2015-06-10|Has expired: Broken since update to gnome3
deskutils/gimmie||2015-06-10|Has expired: Broken since update to gnome3
deskutils/glipper||2015-06-10|Has expired: Broken since update to gnome3
deskutils/gnochm||2015-06-10|Has expired: Broken since update to gnome3
deskutils/hamster-applet||2015-06-10|Has expired: Broken since update to gnome3
deskutils/kupfer||2015-06-10|Has expired: Broken since update to gnome3
deskutils/ontv||2015-06-10|Has expired: Broken since update to gnome3
deskutils/timer-applet||2015-06-10|Has expired: Broken since update to gnome3
editors/scribes||2015-06-10|Has expired: Broken since update to gnome3
games/gweled||2015-06-10|Has expired: Broken since update to gnome3
games/py-pychess||2015-06-10|Has expired: Broken since update to gnome3
graphics/gqview||2015-06-10|Has expired: Unmaintained upstream, preferences dialog broken, use graphics/geeqie fork
lang/gcc47-aux||2015-06-10|Has expired: GCC 4.7 branch closed June 2014, move to lang/gcc-aux
multimedia/arista||2015-06-10|Has expired: Broken since update to gnome3
net/service-discovery-applet||2015-06-10|Has expired: Broken since update to gnome3
net/shaperprobe||2015-06-10|Has expired: broken with no known fix (PR 197327)
print/gnome-specimen||2015-06-10|Has expired: Broken since update to gnome3
x11-themes/gtk-aqualightblue-theme||2015-06-10|Has expired: Upstream disappeared
x11-themes/gtk-flat-theme2||2015-06-10|Has expired: Upstream disappeared
databases/postgresql84-server||2015-06-10|Has expired: "EOL was reached in July 2014"
ftp/ncftp1||2015-06-12|Unfetchable
multimedia/avidemux2||2015-06-13|Branch no longer maintained upstream, use multimedia/avidemux26
multimedia/avidemux2-plugins||2015-06-13|Branch no longer maintained upstream, use multimedia/avidemux26
multimedia/avidemux26|multimedia/avidemux|2015-06-13|Renamed
multimedia/avidemux26-cli|multimedia/avidemux-cli|2015-06-13|Renamed
multimedia/avidemux26-plugins|multimedia/avidemux-plugins|2015-06-13|Renamed
multimedia/avidemux26-qt4|multimedia/avidemux-qt4|2015-06-13|Renamed
editors/zim|deskutils/zim|2015-06-18|Move to more appropriate category
net/py-ldap2|net/py-ldap|2015-06-18|Rename to better match upstream name
devel/erlang-mustache|devel/erlang-bbmustache|2015-06-21|Renamed upstream
security/py-backports.ssl_match_hostname||2015-06-23|This functionality was backported to python 2.7.9
dns/maradns1|dns/maradns|2015-06-23|Has expired: MaraDNS 1 end-of-life: June 21, 2015, use dns/maradns
net/py-soappy-devel||2015-06-25|Please use net/py-soappy instead. It's fresher than -devel
devel/armv6-freebsd10.0-xdev||2015-06-27|Not usable for the purpose it has been intended for
devel/bear|devel/erlang-bear|2015-06-27|Renamed with erlang- prefix
devel/common_lib|devel/erlang-common_lib|2015-06-27|Renamed with erlang- prefix
devel/cowlib|devel/erlang-cowlib|2015-06-27|Renamed with erlang- prefix
devel/cuttlefish|devel/erlang-cuttlefish|2015-06-27|Renamed with erlang- prefix
devel/esdl|devel/erlang-esdl|2015-06-27|Renamed with erlang- prefix
devel/folsom|devel/erlang-folsom|2015-06-27|Renamed with erlang- prefix
devel/goldrush|devel/erlang-goldrush|2015-06-27|Renamed with erlang- prefix
devel/lager_syslog|devel/erlang-lager_syslog|2015-06-27|Renamed with erlang- prefix
devel/lager|devel/erlang-lager|2015-06-27|Renamed with erlang- prefix
devel/meck|devel/erlang-meck|2015-06-27|Renamed with erlang- prefix
devel/neotoma|devel/erlang-neotoma|2015-06-27|Renamed with erlang- prefix
devel/oserl|devel/erlang-oserl|2015-06-27|Renamed with erlang- prefix
devel/poolboy|devel/erlang-poolboy|2015-06-27|Renamed with erlang- prefix
net/erlang_xmlrpc|net/erlang-xmlrpc|2015-06-27|Renamed with erlang- prefix
net/ranch|net/erlang-ranch|2015-06-27|Renamed with erlang- prefix
www/cowboy|www/erlang-cowboy|2015-06-27|Renamed with erlang- prefix
www/mochiweb-basho|www/erlang-mochiweb-basho|2015-06-27|Renamed with erlang- prefix
www/mochiweb|www/erlang-mochiweb|2015-06-27|Renamed with erlang- prefix
www/webmachine|www/erlang-webmachine|2015-06-27|Renamed with erlang- prefix
textproc/exmpp|devel/erlang-exmpp|2015-06-27|Moved to devel category, with erlang- prefix
databases/eredis|databases/erlang-eredis|2015-06-27|Renamed with erlang- prefix
databases/epgsql|databases/erlang-epgsql|2015-06-27|Renamed with erlang- prefix
www/varnish|www/varnish4|2015-06-28|Has expired: EOL was reached in April 2015, use www/varnish4
audio/padevchooser||2015-06-29|Has expired: Broken for more than 6 months
devel/xtla||2015-06-29|Has expired: Broken for more than 6 months
mail/mail-notification||2015-06-29|Has expired: Broken for more than 6 months
ports-mgmt/gnome-packagekit||2015-06-29|Has expired: Broken for more than 6 months
sysutils/py-salt-api||2015-06-29|Has expired: Broken for more than 6 months
devel/rubygem-mash|devel/rubygem-hashie|2015-06-30|Has expired: Deprecated by upstream. Use devel/rubygem-hashie instead
net/rubygem-bunny060|net/rubygem-bunny|2015-06-30|Has expired: Use net/rubygem-bunny instead
security/rubygem-hmac|security/rubygem-ruby-hmac|2015-06-30|Has expired: Duplicate of security/rubygem-ruby-hmac
www/ruby-amazon|www/ruby-aws|2015-06-30|Has expired: Rendered obsolete by upstream since Amazon shut down access to AWS API v3 (2008-03-31). Use www/ruby-aws instead
net/ptpd2-devel|net/ptpd2|2015-07-02|Development version no longer necessary
devel/erlang-cowlib|www/erlang-cowlib|2015-07-03|Move to www where it belongs
net/py-google||2015-07-03|Google no longer supports the SOAP API for search
devel/erlang-ibrowse|www/erlang-ibrowse|2015-07-05|Move to www where it belongs
multimedia/ffmpeg23|multimedia/ffmpeg|2015-07-05|Obsolete since recent upstream upgrade of main ffmpeg port. Use multimedia/ffmpeg instead
multimedia/ffmpeg26|multimedia/ffmpeg|2015-07-05|Obsolete since recent upstream upgrade of main ffmpeg port. Use multimedia/ffmpeg instead
x11/docker|x11/docker-tray|2015-07-06|Renamed
sysutils/docker|sysutils/docker-freebsd|2015-07-07|Renamed
graphics/fli2gif||2015-07-07|Has expired: No public distfiles
net-im/tkabbur||2015-07-07|Has expired: Upstream development ceased since 2008
www/mod_wsgi3|www/mod_wsgi4|2015-07-12|Renamed to reflect new version
archivers/pear-PHP_Archiv|archivers/pear-PHP_Archive|2015-07-12|Fix path
devel/p5-Test-TempDir|devel/p5-Test-TempDir-Tiny|2015-07-14|Has expired: Use devel/p5-Test-TempDir-Tiny instead
x11-toolkits/fpc-gtk1||2015-07-14|Development has been discontinued
graphics/fpc-fpgtk||2015-07-14|Development has been discontinued
editors/lazarus-lcl-gtk||2015-07-14|Development has been discontinued
x11/gmessage||2015-07-14|Upstream has disappeared and development ceased
security/ssh-gui||2015-07-14|Development ceased, broken with modern ssh
textproc/gdict||2015-07-14|Development ceased, unusable
print/pup||2015-07-14|Development ceased, unusable
audio/rubyripper||2015-07-16|Has expired: Does not build and is deprecated upstream
ports-mgmt/vulnerability-test-port||2015-07-19|Useless after portaudit retirement
print/texlive-infra|print/texlive-tlmgr|2015-07-20|Renamed
print/cm-super||2015-07-20|Obsolete
devel/rubygem-builder31||2015-07-20|Has expired: not used by other ports anymore
devel/rubygem-timers1||2015-07-20|Has expired: not used by other ports anymore
net/rubygem-rubyntlm01||2015-07-20|Has expired: not used by other ports anymore
security/rubygem-net-scp11||2015-07-20|Has expired: not used by other ports anymore
security/rubygem-net-ssh27||2015-07-20|Has expired: not used by other ports anymore
graphics/kuickshow-kde4||2015-07-21|Has expired: Broken for more than 6 months
graphics/sng||2015-07-21|Has expired: Broken for more than 6 months
japanese/netype||2015-07-21|Has expired: Broken for more than 6 months
databases/p5-DBD-Pg32|databases/p5-DBD-Pg|2015-07-22|Has expired: Use databases/p5-DBD-Pg instead, compatibility probles are fixed
textproc/py-asciinema|textproc/asciinema|2015-07-23|Has expired: use textproc/asciinema instead
devel/libiomp5-devel|devel/llvm-devel|2015-07-24|Merged with devel/llvm-devel
devel/p5-Test-Tester|devel/p5-Test-Simple|2015-07-25|Has expired: Part of p5-Test-Simple (use that instead), and included in perl 5.22
devel/p5-Test-use-ok|devel/p5-Test-Simple|2015-07-25|Has expired: Part of devel/p5-Test-Simple (use that instead), and included in perl 5.22
sysutils/libzeitgeist|sysutils/zeitgeist|2015-07-26|Merged into zeitgeist
math/mate-calc||2015-07-27|Not part of MATE 1.10. Instead galculator is used
x11/mate-dialogs||2015-07-27|Not part of MATE 1.10
devel/automake14||2015-07-27|Has expired: Not used in the ports tree anymore
sysutils/slurm-hpc|sysutils/slurm-wlm|2015-07-28|Upstream is standardizing on the name "slurm-wlm"
textproc/kibana|textproc/kibana3|2015-07-29|Moved to leave place for a kibana-4 port
lang/clang-cheri|devel/llvm-cheri|2015-07-30|Moved to devel/llvm-cheri to match other LLVM ports
japanese/p5-Acme-Lou||2015-08-01|Has expired: Needs ja-p5-Text-MeCab that does not work with 5.18 or above
mail/maildirsync||2015-08-01|Has expired: Requires an unsupported version of Perl
mail/qar-bufo||2015-08-01|Has expired: Requires an unsupported version of Perl
net/py-soapy|net/py-soappy|2015-08-01|Has expired: Abandonware depending on ancient py-xml. Please use net/py-soappy instead
net-p2p/btqueue||2015-08-01|Has expired: Runtime broken (does not download anything)
sysutils/vhdtool||2015-08-01|Has expired: Use mkimg(1) instead
www/rubygem-modernizr||2015-08-01|Has expired: This gem has been removed from rubygems.org by upstream
devel/java-util-concurrent||2015-08-03|Has expired: Included in all current JDKs by default
devel/py-pyparsing15||2015-08-03|Has expired: Not used in the ports tree anymore
finance/tryton||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_account||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_account_be||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_account_invoice||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_account_invoice_history||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_account_invoice_line_standalone||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_account_product||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_account_statement||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_account_stock_anglo_saxon||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_account_stock_continental||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_analytic_account||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_analytic_invoice||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_analytic_purchase||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_analytic_sale||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_calendar||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_calendar_classification||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_calendar_scheduling||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_calendar_todo||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_carrier||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_carrier_percentage||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_carrier_weight||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_company||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_company_work_time||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_country||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_currency||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_dashboard||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_ldap_authentication||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_ldap_connection||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_party||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_party_siret||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_party_vcarddav||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_product||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_product_cost_fifo||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_product_cost_history||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_product_measurements||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_product_price_list||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_production||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_project||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_project_plan||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_project_revenue||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_purchase||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_purchase_invoice_line_standalone||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_purchase_shipment_cost||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_sale||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_sale_opportunity||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_sale_price_list||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_sale_shipment_cost||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_stock||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_stock_forecast||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_stock_inventory_location||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_stock_location_sequence||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_stock_lot||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_stock_product_location||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_stock_split||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_stock_supply||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_stock_supply_day||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_stock_supply_forecast||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_stock_supply_production||2015-08-05|No more supported upstream, use tryton 2.8 instead
finance/trytond_timesheet||2015-08-05|No more supported upstream, use tryton 2.8 instead
textproc/py-stripogram||2015-08-05|Discontinued, author discourages to use it
french/trytond_account_fr||2015-08-05|No more supported upstream, use tryton 2.8 instead
german/trytond_account_de_skr03||2015-08-05|No more supported upstream, use tryton 2.8 instead
www/trytond_google_maps||2015-08-05|No more supported upstream, use tryton 2.8 instead
devel/appdata-tools|devel/appstream-glib|2015-08-05|Replaced by appstream-glib
textproc/pystemmer|textproc/py-pystemmer|2015-08-06|Rename to match upstream (PyPI) name
dns/knot|dns/knot1|2015-08-07|Rename to knot1 now knot 2.0 is out
net/py-xmlrpclib||2015-08-07|Has expired: This is part of standard library since python 2.2
net-p2p/py-kenosis||2015-08-07|Has expired: Fails to run with modern python
graphics/skencil||2015-08-08|Has expired: Project is abandoned and was overtaken by sK1 fork
www/ismail||2015-08-08|Has expired: Development has been discontinued for many years
sysutils/rubygem-bundler17||2015-08-13|Has expired: not used by other ports anymore
sysutils/fpkg||2015-08-15|Has expired: Does not support pkg(8)
games/galaxymage||2015-08-16|Has expired: Runtime broken and abandoned upstream
devel/rubygem-fog-brightbox|net/rubygem-fog-brightbox|2015-08-19|Move to a better place
www/ompload||2015-08-20|Has expired: omploader.org is down for many years
devel/ocaml-equeue|www/ocaml-net|2015-08-20|Has expired: Superseded by www/ocaml-net
devel/hs-MaybeT||2015-08-20|Removed: Deprecated
devel/hs-geniplate||2015-08-20|Removed: Upstream support is discontinued
devel/hs-glade||2015-08-20|Removed: Upstream support is discontinued
devel/hs-haskell-platform||2015-08-20|Removed: It is not tracked any more
devel/hs-ranges||2015-08-20|Removed: Deprecated
devel/hs-testpack||2015-08-20|Removed: Upstream is unmaintained
graphics/hs-soegtk||2015-08-20|Removed: Upstream support is discontinued
lang/hs-epic||2015-08-20|Removed: It is not needed any more
math/hs-nats||2015-08-20|Removed: It has been merged into the base library of GHC
multimedia/hs-gstreamer||2015-08-20|Removed: Upstream support is discontinued
www/hs-scgi||2015-08-20|Removed: Deprecated
www/hs-yesod-platform||2015-08-20|Removed: Upstream support is discontinued
www/hs-yesod-routes||2015-08-20|Removed: Upstream support is discontinued
x11-toolkits/hs-gtkglext||2015-08-20|Removed: Upstream support is discontinued
textproc/prosper||2015-08-22|Removed: maintainted in print/texlive-texmf
print/ghostscript7|print/ghostscript7-base|2015-08-22|Split into print/ghostscript7-base and print/ghostscript7-x11
print/ghostscript7-nox11|print/ghostscript7-base|2015-08-22|Integrated into print/ghostscript7-base
print/ghostscript8|print/ghostscript8-base|2015-08-22|Split into print/ghostscript8-base and print/ghostscript8-x11
print/ghostscript8-nox11|print/ghostscript8-base|2015-08-22|Integrated into print/ghostscript8-base
print/ghostscript9|print/ghostscript9-base|2015-08-22|Split into print/ghostscript9-base and print/ghostscript9-x11
print/ghostscript9-nox11|print/ghostscript9-base|2015-08-22|Integrated into print/ghostscript9-base
print/ghostscript9-agpl|print/ghostscript9-agpl-base|2015-08-22|Split into print/ghostscript9-agpl-base and print/ghostscript9-agpl-x11
print/ghostscript9-agpl-nox11|print/ghostscript9-agpl-base|2015-08-22|Integrated into print/ghostscript9-agpl-base
www/pelican|www/py-pelican|2015-08-29|Rename to match Python naming conventions
devel/ninja16|devel/ninja|2015-08-29|Use devel/ninja instead
devel/geany-plugin-gproject|devel/geany-plugin-projectorganizer|2015-08-31|Renamed to match upstream naming
www/p5-WWW-Shorten-NotLong||2015-09-01|Has expired: notlong.com is now dead
games/linux-majesty-demo||2015-09-01|Has expired: Broken for more than 6 months
games/linux-coldwar-demo||2015-09-01|Has expired: Broken for more than 6 months
games/linux-hdb-demo||2015-09-01|Has expired: Broken for more than 6 months
devel/rubygem-igraph||2015-09-01|Has expired: Broken for more than 6 months
games/linux-candycruncher-demo||2015-09-01|Has expired: Broken for more than 6 months
games/linux-gorky17-demo||2015-09-01|Has expired: Broken for more than 6 months
sysutils/syslog-ng33||2015-09-01|Has expired: No longer supported by Balabit cince November 2014
textproc/ruby-xmlconfigfile|textproc/ruby-xml-configfile|2015-09-03|Rename to match our ruby naming
net/mcast-tools|net/pim6-tools|2015-09-07|Rename
www/p5-Dancer-Session-Memcached|databases/p5-Dancer-Session-Memcached|2015-09-09|Duplicate port
devel/cloudabi-cloudlibc||2015-09-12|Moved to the CloudABI Ports Collection
devel/cloudabi-compiler-rt||2015-09-12|Moved to the CloudABI Ports Collection
devel/cloudabi-libc++||2015-09-12|Moved to the CloudABI Ports Collection
devel/cloudabi-libc++abi||2015-09-12|Moved to the CloudABI Ports Collection
devel/cloudabi-libunwind||2015-09-12|Moved to the CloudABI Ports Collection
japanese/marumoji-fonts|japanese/font-marumoji|2015-09-13|Renamed
www/asp-php||2015-09-13|Unmaintained upstream, generate unsupported php
textproc/py-xmltools||2015-09-15|Remove port marked broken for six months: fetch failed
security/krb5-111|security/krb5-112|2015-09-15|krb5-1.11 EOLed by MIT in December 2014
textproc/py-xml||2015-09-16|Remove: this package is available in standard python library since 2.2
x11-toolkits/wxgtk28-unicode|x11-toolkits/wxgtk28|2015-09-16|Make wxGTK now only unicode
x11-toolkits/wxgtk28-unicode-contrib|x11-toolkits/wxgtk28-contrib|2015-09-16|Make wxGTK now only unicode
x11-toolkits/py-wxPython28-unicode|x11-toolkits/py-wxPython28|2015-09-16|Make wxGTK now only unicode
japanese/font-mplus|japanese/font-mplus-outline|2015-09-21|Renamed
www/iojs|www/node|2015-09-23|io.js has been merged back to Node.js
japanese/k10|japanese/font-naga10|2015-09-25|Renamed
japanese/k12|japanese/font-kaname12|2015-09-25|Renamed
japanese/elisa8x8|japanese/font-elisa8|2015-09-25|Renamed
japanese/kanji18|japanese/font-kanji18|2015-09-25|Renamed
japanese/kanji26|japanese/font-kanji26|2015-09-25|Renamed
japanese/kappa20|japanese/font-kappa20|2015-09-25|Renamed
japanese/mikachan-ttfonts|japanese/font-mikachan|2015-09-25|Renamed
japanese/monafonts-ttf|japanese/font-mona-ttf|2015-09-25|Renamed
japanese/monafonts|japanese/font-mona|2015-09-25|Renamed
chinese/joe|editors/joe|2015-09-26|Regular joe's editor now supports Chinese
net/linc||2015-09-27|Has expired: Last release in 2003, not used by anything anymore
net/linc-reference||2015-09-27|Has expired: Last release in 2003, not used by anything anymore
x11/xlogout||2015-09-27|Has expired: Useless cruft from 1989
net/rubygem-amq-client||2015-10-01|Has expired: Deprecated by Upstream. It is part of net/rubygem-amqp codebase now
emulators/ppsspp-devel|emulators/ppsspp|2015-10-06|Out of date: use emulators/ppsspp for now
ports-mgmt/bpm||2015-10-10|No support for pkg
www/moodle27||2015-10-11|Has expired: Please upgrade to moodle28 or moodle29
graphics/epeg|devel/efl|2015-10-11|Has expired: Merged into devel/efl
x11-drivers/xf86-video-ati-ums||2015-10-13|Not supported by xorg-server 1.17
x11/nvidia-driver-173||2015-10-13|Does not support xorg-server 1.15 and higher
net-mgmt/bsnmptools||2015-10-16|Has expired: client tools (including SNMPv3 support) are part of the base system
security/yubikey-personalization|security/ykpers|2015-10-18|Port duplicate with security/ykpers
devel/rubygem-listen2||2015-10-20|Has expired: not used by other ports anymore
devel/cloudabi-binutils|devel/cloudabi-binutils-x86_64|2015-10-21|CloudABI now supports aarch64 as well
net/ntp-rc|net/ntp|2015-10-21|ntp-4.2.8p4 has gone GA
x11-wm/clementine|x11-wm/clementine-wm|2015-10-23|add suffix so the port is not mixed up with audio/clementine-player
www/twig||2015-10-25|Has expired: Upstream vanished, php3 and php4 are long unsupported
misc/ruby-progressbar|devel/rubygem-ruby-progressbar|2015-10-25|Has expired: Abandoned upstream, superseded by devel/rubygem-ruby-progressbar
databases/py-mssql|databases/py-pymssql|2015-10-28|Broken with current FreeTDS
net/py-medusa||2015-10-28|Abandoned upstream, last release was in 2005
audio/py-audiotools|audio/py-fmoo-audiotools|2015-10-29|Rename to match PyPI nomenclature
audio/cmus-post.fm||2015-10-31|Has expired: Broken for more than 6 months
devel/libphish||2015-10-31|Has expired: Broken for more than 6 months
devel/rubygem-debugger||2015-10-31|Has expired: This port is for Ruby 1.9 only, upstream stopped maintenance
games/linux-ningpo-demo||2015-10-31|Has expired: Broken for more than 6 months
graphics/gdal-grass||2015-10-31|Has expired: Superseded by gdal-2.0.0
graphics/picviz||2015-10-31|Has expired: Broken for more than 6 months
irc/weechat-devel|irc/weechat|2015-10-31|Has expired: far behind stable irc/weechat (use it instead)
mail/cucipop||2015-10-31|Has expired: Broken for more than 6 months
multimedia/streamanalyze||2015-10-31|Has expired: Broken for more than 6 months
net-mgmt/collectd|net-mgmt/collectd5|2015-10-31|Has expired: Please move to collectd5 - collect4 is not developed/patched
sysutils/sdd||2015-10-31|Has expired: Broken for more than 6 months
sysutils/xfce4-minicmd-plugin||2015-10-31|Has expired: Broken for more than 6 months
www/linux-libgtkembedmoz||2015-10-31|Has expired: Broken for more than 6 months
www/py-feedfinder||2015-10-31|Has expired: Broken for more than 6 months
www/py-openssl-proxy||2015-10-31|Has expired: Broken for more than 6 months
www/py-webware||2015-10-31|Has expired: Broken for more than 6 months
www/py-webware-component||2015-10-31|Has expired: Depends on deprecated www/py-webware
x11-fonts/code2001||2015-10-31|Has expired: Broken for more than 6 months
x11-wm/e-module-diskio||2015-10-31|Has expired: Broken for more than 7 months
devel/ros||2015-11-01|Has expired: Unsupported upstream, see http://wiki.ros.org/Distributions
ports-mgmt/portsopt||2015-11-01|Has expired: Deprecated by optionsng
devel/pyvisa|devel/py-pyvisa|2015-11-02|Renamed to comply with Python ports policy
devel/pyvisa-py|devel/py-pyvisa-py|2015-11-02|Renamed to comply with Python ports policy
science/pyteomics.biolccc|science/py-pyteomics.biolccc|2015-11-02|Renamed to comply with Python ports policy
science/pyteomics|science/py-pyteomics|2015-11-02|Renamed to comply with Python ports policy
graphics/cal3d-devel|graphics/cal3d|2015-11-02|Development ceased in 2006 so set last devel version as stable
www/joomla31|www/joomla3|2015-11-03|Renamed to match upstream only supporting the latest 3.x release at a time
devel/py-parsing|devel/py-pyparsing|2015-11-04|Renamed to match upstream naming
devel/py-pygitup|devel/py-git-up|2015-11-07|Renamed to match upstream naming
devel/phptags||2015-11-08|Has expired: abandoned upstream
sysutils/torsmo|sysutils/conky|2015-11-08|Has expired: no new releases for years, consider using sysutils/conky
databases/mysql-workbench51|databases/mysql-workbench52|2015-11-10|Has expired: EOL upstream, use databases/mysql-workbench52 instead
databases/mysql51-client||2015-11-10|Has expired: EOL upstream, use mysql55 or mysql56 instead
databases/mysql51-scripts||2015-11-10|Has expired: EOL upstream, use mysql55 or mysql56 instead
databases/mysql51-server||2015-11-10|Has expired: EOL upstream, use mysql55 or mysql56 instead
databases/p5-DBD-mysql51|databases/p5-DBD-mysql|2015-11-10|Has expired: EOL upstream, use databases/p5-DBD-mysql instead
databases/py-MySQLdb51||2015-11-10|Has expired: EOL upstream, use databases/py-MySQLdb instead
deskutils/steadyflow||2015-11-13|Has expired: No new releases for years, consider using net/uget
net/py-smb|net/py-pysmb|2015-11-14|Renamed to match upstream naming
devel/py-asn1-modules|devel/py-pyasn1-modules|2015-11-14|Renamed to match upstream naming
devel/py-experimental.cssselect||2015-11-15|The only consumer of this port switched to www/py-cssselect
databases/mariadb-client||2015-11-18|Vulnerable, no updates expected, use mariadb55 or mariadb100 instead
databases/mariadb-server||2015-11-18|Vulnerable, no updates expected, use mariadb55 or mariadb100 instead
databases/mariadb-scripts||2015-11-18|Vulnerable, no updates expected, use mariadb55 or mariadb100 instead
devel/py-asn1|devel/py-pyasn1|2015-11-18|Renamed to match upstream naming
devel/py-pytz3|devel/py3-pytz|2015-11-19|Port Renamed
devel/ocaml-typeconv|devel/ocaml-type_conv|2015-11-20|Renamed to match upstream naming
www/py3-aiohttp|www/py-aiohttp|2015-11-21|Duplicate port
textproc/kibana4|textproc/kibana41|2015-11-22|Distinguish from incompatible kibana42
devel/qsvn||2015-11-23|Has expired: Development discontinued since 2009
audio/pecl-id3||2015-11-28|Has expired: Broken for more than 6 months
dns/geta||2015-11-28|Has expired: Broken for more than 6 months
finance/openerp-web||2015-11-28|Has expired: Broken for more than 6 months
devel/py-async||2015-11-28|Has expired: Further using of this module is not encouraged by upstream
chinese/kon2||2015-11-28|Has expired: Depends on expiring chinese/cce
games/linux-skulltag||2015-11-28|Has expired: Depends on expiring audio/linux-fmodapi
archivers/wzip||2015-11-28|Has expired: Broken for more than 6 months
databases/sybtcl||2015-11-28|Has expired: Broken for more than 6 months
biology/povchem||2015-11-28|Has expired: Broken for more than 6 months
audio/btc||2015-11-28|Has expired: Broken for more than 6 months
astro/wmglobe||2015-11-28|Has expired: Broken for more than 6 months
graphics/pyro||2015-11-28|Has expired: Broken for more than 6 months
graphics/jpeg2ps||2015-11-28|Has expired: Broken for more than 6 months
chinese/gugod-clean||2015-11-28|Has expired: Broken for more than 6 months
comms/bforce||2015-11-28|Has expired: Broken for more than 6 months
cad/geda-docs||2015-11-28|Has expired: Broken for more than 6 months
chinese/cwtexttf||2015-11-28|Has expired: Broken for more than 6 months
comms/zmtx-zmrx||2015-11-28|Has expired: Broken for more than 6 months
astro/sky2000||2015-11-28|Has expired: Broken for more than 6 months
deskutils/libopensync-plugin-file||2015-11-28|Has expired: Broken for more than 6 months
databases/sqlite-ext-mobigroup||2015-11-28|Has expired: Broken for more than 6 months
chinese/bg5ps||2015-11-28|Has expired: Broken for more than 6 months
deskutils/x-tile||2015-11-28|Has expired: Broken for more than 6 months
graphics/pure-gl||2015-11-28|Has expired: Broken for more than 6 months
audio/dvda-author||2015-11-28|Has expired: Broken for more than 6 months
chinese/oxim||2015-11-28|Has expired: Broken for more than 6 months
editors/spe||2015-11-28|Has expired: Broken for more than 6 months
audio/mpdscribble||2015-11-28|Has expired: Broken for more than 6 months
cad/geda-symcheck||2015-11-28|Has expired: Broken for more than 6 months
audio/linux-fmodapi||2015-11-28|Has expired: Broken for more than 6 months
audio/pure-audio||2015-11-28|Has expired: Broken for more than 6 months
benchmarks/geekbench||2015-11-28|Has expired: Broken for more than 6 months
graphics/icoconvert||2015-11-28|Has expired: Broken for more than 6 months
cad/geda-utils||2015-11-28|Has expired: Broken for more than 6 months
deskutils/tomboy-plugin-wordcount||2015-11-28|Has expired: Broken for more than 6 months
graphics/sketch||2015-11-28|Has expired: Broken for more than 6 months
graphics/clutter-box2d||2015-11-28|Has expired: Broken for more than 6 months
audio/scmpc||2015-11-28|Has expired: Broken for more than 6 months
ftp/gnusget||2015-11-28|Has expired: Broken for more than 6 months
comms/gpsk31||2015-11-28|Has expired: Broken for more than 6 months
cad/geda-gschem||2015-11-28|Has expired: Broken for more than 6 months
audio/ampache||2015-11-28|Has expired: Broken for more than 6 months
cad/slffea||2015-11-28|Has expired: Broken for more than 6 months
audio/cripple||2015-11-28|Has expired: Broken for more than 6 months
cad/geda-gattrib||2015-11-28|Has expired: Broken for more than 6 months
cad/findhier||2015-11-28|Has expired: Broken for more than 6 months
audio/wmmp||2015-11-28|Has expired: Broken for more than 6 months
x11/avant-window-navigator||2015-11-28|Has expired: Broken for more than 6 months
cad/geda-netlist||2015-11-28|Has expired: Broken for more than 6 months
deskutils/libopensync-plugin-sunbird||2015-11-28|Has expired: Broken for more than 6 months
biology/ortep3||2015-11-28|Has expired: Broken for more than 6 months
astro/aa||2015-11-28|Has expired: Broken for more than 6 months
french/belote||2015-11-28|Has expired: Broken for more than 6 months
converters/p5-String-SetUTF8||2015-11-28|Has expired: Broken for more than 6 months
cad/geda-examples||2015-11-28|Has expired: Broken for more than 6 months
editors/yasnippet||2015-11-28|Has expired: Broken for more than 6 months
audio/musica||2015-11-28|Has expired: Broken for more than 6 months
graphics/rubyphoto||2015-11-28|Has expired: Broken for more than 6 months
german/bsdpaste||2015-11-28|Has expired: Broken for more than 6 months
audio/amrcoder||2015-11-28|Has expired: Broken for more than 6 months
sysutils/bashburn||2015-11-28|Has expired: Broken for more than 6 months
editors/e93||2015-11-28|Has expired: Broken for more than 6 months
audio/tepsonic||2015-11-28|Has expired: Broken for more than 6 months
astro/ephem||2015-11-28|Has expired: Broken for more than 6 months
chinese/cce||2015-11-28|Has expired: Broken for more than 6 months
graphics/qcread||2015-11-28|Has expired: Broken for more than 6 months
databases/py-sqlkit||2015-11-28|Has expired: Broken for more than 6 months
databases/usogres||2015-11-28|Has expired: Broken for more than 6 months
cad/libgeda||2015-11-28|Has expired: Broken for more than 6 months
chinese/p5-Lingua-ZH-BPMFConvert||2015-11-28|Has expired: Broken for more than 6 months
french/alphabet_sounds_fr||2015-11-28|Has expired: Broken for more than 6 months
deskutils/mrundlg||2015-11-28|Has expired: Broken for more than 6 months
databases/erlang-mysql||2015-11-28|Has expired: Broken for more than 6 months
graphics/linux-XnViewMP||2015-11-28|Has expired: Broken for more than 6 months
deskutils/akamaru||2015-11-28|Has expired: Broken for more than 6 months
dns/p5-Net-DNS-ZoneCheck||2015-11-28|Has expired: Broken for more than 6 months
astro/dgpsip||2015-11-28|Has expired: Broken for more than 6 months
databases/pecl-handlersocket||2015-11-28|Has expired: Broken for more than 6 months
audio/cymbaline||2015-11-28|Has expired: Broken for more than 6 months
french/dico||2015-11-28|Has expired: Broken for more than 6 months
audio/sonice||2015-11-28|Has expired: Broken for more than 6 months
cad/geda-symbols||2015-11-28|Has expired: Broken for more than 6 months
databases/java-mybatis||2015-11-28|Has expired: Broken for more than 6 months
databases/openbase-jdbc||2015-11-28|Has expired: Broken for more than 6 months
www/mediawiki119|www/mediawiki125|2015-11-28|Has expired: Please upgrade to mediawiki-1.25
www/R-cran-Rpad||2015-11-28|Has expired: Unmaintained upstream
archivers/py-liblzma|archivers/py-pyliblzma|2015-11-30|Rename to match upstream (PyPI) naming
archivers/fpc-paszlib||2015-12-05|Eliminated during FPC upgrade to 3.0.0
audio/fpc-sndfile||2015-12-05|Eliminated during FPC upgrade to 3.0.0
devel/fpc-fcl-process||2015-12-05|Eliminated during FPC upgrade to 3.0.0
devel/fpc-fpmkunit||2015-12-05|Eliminated during FPC upgrade to 3.0.0
multimedia/fpc-matroska||2015-12-05|Eliminated during FPC upgrade to 3.0.0
security/fpc-hash||2015-12-05|Eliminated during FPC upgrade to 3.0.0
www/jetty|www/jetty8|2015-12-06|Rename to prepare for jetty9
devel/pyinstaller|devel/py-pyinstaller|2015-12-09|Add py- prefix to directory name
math/why3-gpl|math/why3-spark|2015-12-10|Change why3 suffix (upstream request and for consistency)
devel/py-memoryprofiler|devel/py-memory_profiler|2015-12-11|Rename to consistency with other Python ports
print/py-cups|print/py-pycups|2015-12-11|Renamed to match upstream naming
astro/py-metar|astro/py-pymetar|2015-12-11|Renamed to match upstream naming
devel/jep|devel/py-jep|2015-12-11|Renamed to match upstream naming
ftp/py-curl|ftp/py-pycurl|2015-12-13|Renamed to match upstream naming
www/py-django-pipeline12||2015-12-15|Has expired: Django 1.4 extended support ended on 2015-10-01
www/py-django14||2015-12-15|Has expired: Django 1.4 extended support ended on 2015-10-01
net/py-pysphere|net/py-pyvmomi|2015-12-15|Has expired: No longer maintained, please use net/py-pyvmomi by VMware
ftp/ftpcube||2015-12-15|Has expired: No releases for 8+ years, no supporting newer wxWidget
astro/libroadnav||2015-12-15|Has expired: No releases for 8+ years, no supporting newer wxWidget
astro/roadnav||2015-12-15|Has expired: No releases for 8+ years, no supporting newer wxWidget
www/joomla15||2015-12-18|Has expired: Joomla 1.5.x reached its End of Life in September 2012. Please update to a current version
www/joomla25||2015-12-18|Has expired: Joomla 2.5.x reached its End of Life in December 2014. Please update to a current version
devel/rubygem-tins0||2015-12-18|Has expired: not used by other ports anymore
sysutils/busybox-unstable|sysutils/busybox|2015-12-20|Stable version is more current
editors/calligra-l10n-ia||2015-12-21|Not shipped by Calligra 2.9.10
editors/calligra-l10n-nds||2015-12-21|Not shipped by Calligra 2.9.10
editors/calligra-l10n-sl||2015-12-21|Not shipped by Calligra 2.9.10
japanese/ochusha||2015-12-25|Has expired: Development ceased in 2008, other options available
sysutils/phttpget||2015-12-27|Already in base system (/usr/libexec/phttpget)
editors/sublime|editors/linux-sublime|2015-12-29|Renamed (Linux binary port)
dns/py-dns3|dns/py-py3dns|2015-12-29|Renamed to match upstream naming
editors/sublime3|editors/linux-sublime3|2015-12-29|Renamed (Linux binary port)
mail/py-spf|mail/py-pyspf|2015-12-29|Renamed to match upstream naming
databases/py-memcached|databases/py-python-memcached|2015-12-30|Renamed to match upstream naming
devel/py-hashring|devel/py-hash_ring|2015-12-30|Renamed to match upstream naming
devel/subversion17|devel/subversion|2015-12-30|Has expired: EoL, use devel/subversion
www/ocsigen||2015-12-30|Has expired: Broken for more than 6 months
devel/monodevelop-database||2015-12-30|Has expired: Broken for more than 6 months
lang/cduce||2015-12-30|Has expired: Broken for more than 6 months
science/hdf-java||2015-12-30|Has expired: Broken for more than 6 months
math/p5-Math-Geometry-Planar-GPC-Polygon||2015-12-30|Has expired: Broken for more than 6 months
www/eliom||2015-12-30|Has expired: Depends on broken and expiring www/ocsigen
audio/py-fastaudio||2015-12-30|Has expired: Broken for more than 6 months
devel/jgoodies-common||2015-12-30|Has expired: Broken for more than 6 months
graphics/pinta||2015-12-30|Has expired: Broken for more than 6 months
games/kanatest||2015-12-30|Has expired: Broken for more than 6 months
editors/bless||2015-12-30|Has expired: Broken for more than 6 months
security/burpsuite||2015-12-30|Has expired: Broken for more than 6 months
dns/bind10|dns/bundy|2015-12-31|Has expired: Is not developed any more, use dns/bundy
lang/perl5.16||2015-12-31|Has expired: Unsupported, please upgrade to a more recent version of Perl
devel/py-distutils-extra|devel/py-python-distutils-extra|2015-12-31|Renamed to match upstream naming
irc/irssi-devel||2016-01-01|Has expired: Older than irc/irssi
multimedia/spotify-websocket-api||2016-01-01|Has expired: login fails due to protocol changes
net-mgmt/unifi2|net-mgmt/unifi3|2016-01-01|Has expired: Unifi 2.x is EoL. Please upgrade to net-mgmt/unifi3
misc/kde4-l10n-th||2016-01-01|Has expired: Upstream ceased maintainance of this translation
misc/kde4-l10n-tg||2016-01-01|Has expired: Upstream ceased maintainance of this translation
misc/kde4-l10n-si||2016-01-01|Has expired: Upstream ceased maintainance of this translation
games/supertux-devel|games/supertux2|2016-01-05|Renamed along with update to new stable release
games/duke3d-data||2016-01-06|Incorporated into games/eduke32
devel/msp430-gdb|devel/gcc-msp430-ti-toolchain|2016-01-08|Has expired: Obsolete. Please, use devel/gcc-msp430-ti-toolchain
devel/msp430-gcc|devel/gcc-msp430-ti-toolchain|2016-01-08|Has expired: Obsolete. Please, use devel/gcc-msp430-ti-toolchain
devel/msp430mcu|devel/gcc-msp430-ti-toolchain|2016-01-08|Has expired: Obsolete. Please, use devel/gcc-msp430-ti-toolchain
devel/msp430-libc|devel/gcc-msp430-ti-toolchain|2016-01-08|Has expired: Obsolete. Please, use devel/gcc-msp430-ti-toolchain
devel/msp430-binutils|devel/gcc-msp430-ti-toolchain|2016-01-08|Has expired: Obsolete. Please, use devel/gcc-msp430-ti-toolchain
devel/e_dbus||2016-01-15|Has expired: Not used anymore by x11-wm/enlightenment
www/xpi-locale-switcher||2016-01-15|Has expired: incompatible with Firefox 34 (and later presumably)
textproc/py-gettext|textproc/py-python-gettext|2016-01-16|Renamed to match upstream name
archivers/jzip.org||2016-01-24|Has expired: Abandoned, outdated (no updates since 2003)
databases/mywwwatcher||2016-01-25|Has expired: PHP 5.4 EOL reached
databases/php5-creole||2016-01-25|Has expired: PHP 5.4 EOL reached
databases/php5-propel||2016-01-25|Has expired: PHP 5.4 EOL reached
deskutils/fengoffice||2016-01-25|Has expired: PHP 5.4 EOL reached
devel/simpletest||2016-01-25|Has expired: PHP 5.4 EOL reached
graphics/php5-swfed||2016-01-25|Has expired: PHP 5.4 EOL reached
sysutils/loganalyzer||2016-01-25|Has expired: PHP 5.4 EOL reached
textproc/simplehtmldom||2016-01-25|Has expired: PHP 5.4 EOL reached
www/autoindex2||2016-01-25|Has expired: PHP 5.4 EOL reached
www/cakephp11||2016-01-25|Has expired: PHP 5.4 EOL reached
www/cakephp13||2016-01-25|Has expired: PHP 5.4 EOL reached
www/cakephp21||2016-01-25|Has expired: PHP 5.4 EOL reached
www/cakephp22||2016-01-25|Has expired: PHP 5.4 EOL reached
www/cakephp23||2016-01-25|Has expired: PHP 5.4 EOL reached
www/fluxcms||2016-01-25|Has expired: PHP 5.4 EOL reached
www/fusionpbx||2016-01-25|Has expired: PHP 5.4 EOL reached
www/jawstats||2016-01-25|Has expired: PHP 5.4 EOL reached
www/ojs2||2016-01-25|Has expired: PHP 5.4 EOL reached
www/webcalendar||2016-01-25|Has expired: PHP 5.4 EOL reached
devel/i386-linux-binutils||2016-01-26|Not any usage in the ports tree
devel/py-msgpack|devel/py-msgpack-python|2016-01-28|Renamed to match upstream naming
www/xpi-bookmarkdd||2016-01-30|Has expired, incompatible with Firefox 34+
databases/php5-redis||2016-01-30|Has expired: PHP 5.4 EOL reached, use databases/php55-redis or databases/php56-redis instead
audio/linux-c6-pulseaudio-libs-glib2||2016-01-31|Integrated into audio/linux-c6-pulseaudio-libs
devel/pdcurses-the||2016-02-01|Has expired: Seperate port is no longer needed, see PR
www/py-django17||2016-02-01|Has expired: End of extended support: December 1, 2015
www/codeigniter22|www/codeigniter|2016-02-01|Has expired: Codeigniter 2.2.x reached its End of Life on 31 October 2015. Please update to the current version
java/wildfly80||2016-02-01|Has expired: Fully EOL when version 8.2 was released
java/wildfly81||2016-02-01|Has expired: Fully EOL when version 9.0 was released
mail/phpmailer2|mail/phpmailer|2016-02-01|Has expired: Obsolete, use mail/phpmailer instead
cad/pycam|cad/py-pycam|2016-02-02|Add py- prefix to directory name
lang/python32||2016-02-02|Has expired: Full EOL reached. Please update to Python 3.5
devel/py-setuptools32||2016-02-02|Has expired: Full EOL reached. Please update to Python 3.5
databases/py32-gdbm||2016-02-02|Has expired: Full EOL reached. Please update to Python 3.5
databases/py32-sqlite3||2016-02-02|Has expired: Full EOL reached. Please update to Python 3.5
x11-toolkits/py32-tkinter||2016-02-02|Has expired: Full EOL reached. Please update to Python 3.5
sysutils/puppet|sysutils/puppet38|2016-02-05|Renamed
devel/etcdctl|devel/etcd|2016-02-06|Has expired: etcdctl is now part of etcd, following the change from the upstream
graphics/py-graphviz|graphics/py-pygraphviz|2016-02-07|Renamed to match upstream (PyPI) name
security/polarssl||2016-02-07|Has expired: Upstream is ending support for 1.2.x
multimedia/xbmc-addon-pvr||2016-02-12|Has expired: Does not work with multimedia/kodi 15.x and newer
security/py-openid|security/py-python-openid|2016-02-13|Renamed to match upstream (PyPI) name
ports-mgmt/tinderbox-devel|ports-mgmt/tinderbox|2016-02-14|Has expired: use newer stable version (ports-mgmt/tinderbox)
deskutils/alacarte||2016-02-14|Not part of GNOME anymore
deskutils/gnome-shell-extension-calculator||2016-02-14|Obsolete. gnome-calculator provides the functionality since GNOME 3.14
archivers/php5-bz2||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
archivers/php5-phar||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
archivers/php5-zip||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
archivers/php5-zlib||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
converters/php5-iconv||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
converters/php5-mbstring||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
converters/php5-recode||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-dba||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-interbase||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-mssql||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-mysql||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-mysqli||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-odbc||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-pdo||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-pdo_dblib||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-pdo_firebird||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-pdo_mysql||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-pdo_odbc||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-pdo_pgsql||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-pdo_sqlite||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-pgsql||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-sqlite3||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
databases/php5-sybase_ct||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
devel/php5-gettext||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
devel/php5-json||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
devel/php5-pcntl||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
devel/php5-readline||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
devel/php5-shmop||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
devel/php5-sysvmsg||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
devel/php5-sysvsem||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
devel/php5-sysvshm||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
devel/php5-tokenizer||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
ftp/php5-curl||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
ftp/php5-ftp||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
graphics/php5-exif||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
graphics/php5-gd||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
lang/php5||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
lang/php5-extensions||2016-02-14|PHP 5.4 EOL reached
mail/php5-imap||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
math/php5-bcmath||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
math/php5-gmp||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
misc/php5-calendar||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
net/php5-ldap||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
net/php5-soap||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
net/php5-sockets||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
net/php5-xmlrpc||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
net-mgmt/php5-snmp||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
security/php5-filter||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
security/php5-hash||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
security/php5-mcrypt||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
security/php5-openssl||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
sysutils/php5-fileinfo||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
sysutils/php5-posix||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
textproc/php5-ctype||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
textproc/php5-dom||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
textproc/php5-pspell||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
textproc/php5-simplexml||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
textproc/php5-wddx||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
textproc/php5-xml||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
textproc/php5-xmlreader||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
textproc/php5-xmlwriter||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
textproc/php5-xsl||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
www/mod_php5||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
www/pecl-zendopcache||2016-02-14|PHP 5.4 EOL reached
www/php5-session||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
www/php5-tidy||2016-02-14|PHP 5.4 is End of Life http://php.net/supported-versions.php
mail/pronto||2016-02-18|No release since 2002 http://www.muhri.net/pronto/page.php3?node=news
russian/muttprint||2016-02-25|The Russian translation is included in print/muttprint
security/openssh-portable-devel|security/openssh-portable|2016-02-29|Outdated and insecure, use the main port
audio/audacious-dumb||2016-02-29|Has expired: Broken for more than 6 months
audio/rezound||2016-02-29|Has expired: Broken for more than 6 months
net/rubygem-amqp067|net/rubygem-bunny|2016-02-29|Has expired: Upstream prefers net/rubygem-bunny
devel/py-unittestplus||2016-02-29|Has expired: Tarballs and upstream website disappeared
net/samba4||2016-03-02|Has expired: not supported by the upstream
net/isc-dhcp42-client|net/isc-dhcp43-client|2016-03-02|Has expired: isc-dhcp 4.2 is End of Life
net/isc-dhcp41-relay|net/isc-dhcp43-relay|2016-03-02|Has expired: isc-dhcp 4.1 is now End of Life
net/isc-dhcp42-relay|net/isc-dhcp43-relay|2016-03-02|Has expired: isc-dhcp 4.2 is End of Life
net/isc-dhcp41-client|net/isc-dhcp43-client|2016-03-02|Has expired: isc-dhcp 4.1 is now End of Life
net/isc-dhcp42-server|net/isc-dhcp43-server|2016-03-02|Has expired: isc-dhcp 4.2 is End of Life
devel/pear-IO_Bit||2016-03-02|Has expired: Unsupported upstream
graphics/pear-IO_SWF||2016-03-02|Has expired: Unsupported upstream
math/k3dsurf|math/mathmod|2016-03-04|K3DSurf was the previous release, based on Qt3, MathMod is the new one, based on Qt5
databases/mysql-workbench52||2016-03-05|Has expired: Broken for more than 6 months
math/geogebra-i18n|math/geogebra|2016-03-06|Portname simplified
devel/seed||2016-03-06|Has expired: No longer used
devel/seed3||2016-03-06|Has expired: No longer used
audio/waheela||2016-03-06|Has expired: Distfiles unavailable and no updates in 6 years
sysutils/logstash-contrib||2016-03-06|Has expired: Upstream now distributing plugins separately: see https://github.com/logstash-plugins
devel/p5-DateTime-Event-SolarTerm|devel/p5-DateTime-Astro|2016-03-07|Has been part of DateTime-Astro for a long time
devel/p5-DateTime-Util-Astro|devel/p5-DateTime-Astro|2016-03-07|Has been part of DateTime-Astro for a long time
security/regripperplugins||2016-03-07|Merged into security/regripper
textproc/elasticsearch-plugin-marvel2|textproc/elasticsearch2-plugin-marvel|2016-03-10|Rename to match other Elasticsearch 2 plugins
print/cups-base|print/cups|2016-03-11|Merged
print/cups-client|print/cups|2016-03-11|Merged
print/cups-image|print/cups|2016-03-11|Merged
print/cups-pstoraster|print/cups-filters|2016-03-11|Obsolete
russian/MT||2016-03-13|Has expired: Reached it's EOL in September 2015
www/MT||2016-03-13|Has expired: Reached it's EOL in September 2015
security/openvas-libnasl|security/openvas-libraries|2016-03-17|Merged
security/openvas-server|security/openvas-scanner|2016-03-17|Renamed
security/openvas-plugins|security/openvas-scanner|2016-03-17|Merged
security/openvas-client||2016-03-17|Discontinued, try security/greenbone-security-assistant
devel/py-icu|devel/py-pyicu|2016-03-19|Renamed to match upstream (PyPI) name
www/eaccelerator||2016-03-20|Has expired: cannot be installed: doesn't work with lang/php56 port (doesn't support PHP 5.5 5.6 70)
devel/pecl-inclued||2016-03-20|Has expired: cannot be installed: doesn't work with lang/php56 port (doesn't support PHP 5.5 5.6 70)
security/pecl-taint||2016-03-20|Has expired: cannot be installed: doesn't work with lang/php56 port (doesn't support PHP 5.5 5.6 70)
net/libnids-libnet11|net/libnids|2016-03-20|Same content
lang/cloudabi-clang|devel/cloudabi-toolchain|2016-03-21|Merged
graphics/hugin-devel||2016-03-22|overtaken by released version
graphics/hugin-2016||2016-03-22|overtaken by released version
net/rubygem-omniauth-cas3||2016-03-28|Removed
textproc/libvisio||2016-03-28|No longer used by other ports: use textproc/libvisio01 instead
textproc/libe-book00||2016-03-28|No longer used by other ports: use textproc/libe-book instead
devel/erlang-ssl_verify_hostname|devel/erlang-ssl_verify_fun|2016-03-28|Project renamed
graphics/libtxc_dxtn|graphics/s2tc|2016-03-29|Superseded by graphics/s2tc
www/session2||2016-03-29|Has expired: That is a part of Quixote webapp framework we no longer have in ports
www/py-django-pipeline14||2016-03-29|Has expired: This port depends upon expired www/py-django16 and have no consumers
textproc/libwpd||2016-03-29|Has expired: Not used any more
graphics/libwpg||2016-03-29|Has expired: Not used any more
textproc/libwps02||2016-03-29|Has expired: Not used any more
textproc/libabw00||2016-03-29|Has expired: Not used any more
databases/cassandra||2016-03-29|Has expired: 1.2.x has reached EOL, upgrade to a supported version of Cassandra
databases/rubygem-after_commit_queue-rails41|databases/rubygem-after_commit_queue|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
textproc/rubygem-jekyll-assets1|textproc/rubygem-jekyll-assets|2016-03-31|Has expired: Use textproc/rubygem-jekyll-assets instead
devel/rubygem-sprockets-rails-rails41|devel/rubygem-sprockets-rails|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
mail/rubygem-actionmailer41|mail/rubygem-actionmailer4|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
databases/rubygem-activemodel41|databases/rubygem-activemodel4|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
devel/rubygem-activesupport41|devel/rubygem-activesupport4|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
www/rubygem-actionpack41|www/rubygem-actionpack4|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
devel/rubygem-actionview41|devel/rubygem-actionview|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
databases/rubygem-paranoia-rails41|databases/rubygem-paranoia|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
databases/rubygem-activerecord41|databases/rubygem-activerecord4|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
textproc/rubygem-sass-rails4-rails41|textproc/rubygem-sass-rails4|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
www/rubygem-turbolinks-rails41|www/rubygem-turbolinks|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
devel/rubygem-omniauth_crowd-rails41|devel/rubygem-omniauth_crowd|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
www/rubygem-railties41|www/rubygem-railties4|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
devel/rubygem-jbuilder-rails41|devel/rubygem-jbuilder|2016-03-31|Has expired: Rails 4.1 is no longer supported - please switch to Rails 4.2
textproc/py-genshi-devel|textproc/py-genshi|2016-03-31|Has expired: The port is no longer updated and behind the main genshi port
www/py-satchmo||2016-04-03|Has expired: Project development unmaintained
www/py-ua-parser|devel/py-ua_parser|2016-04-04|Duplicate port deleted
net-mgmt/weathermap||2016-04-04|Has expired: Distfile unavailable, website no longer exists
accessibility/gnopernicus|accessibility/orca|2016-04-08|Has expired: Not developed upstream anymore. Obsoleted by accessibility/orca
textproc/p5-ElasticSearch-SearchBuilder|textproc/p5-Search-Elasticsearch|2016-04-10|Has expired: Use textproc/p5-Search-Elasticsearch which is the official client
textproc/p5-ElasticSearch-legacy|textproc/p5-Search-Elasticsearch|2016-04-10|Has expired: Use textproc/p5-Search-Elasticsearch which is the official client
textproc/py-openpyxl1|textproc/py-openpyxl|2016-04-10|Has expired: Use textproc/py-openpyxl instead
devel/libmcs||2016-04-13|Development no longer active and is not used any more
www/node-devel|www/node|2016-04-13|Upstream no longer releases a development version
graphics/kipi-plugin-googledrive||2016-04-14|Merged into graphics/kipi-plugin-googleservices
graphics/kipi-plugin-picasawebexport||2016-04-14|Merged into graphics/kipi-plugin-googleservices
security/engine_pkcs11|security/libp11|2016-04-20|Merged
devel/elixir-timex-interval||2016-04-22|Merged into devel/elixir-timex upstream
devel/p5-Test-Stream|devel/p5-Test2-Suite|2016-04-23|Use devel/p5-Test2-Suite instead
deskutils/qlabels||2016-04-23|Has expired: Does not fetch, unmaintained
french/tvdownloader||2016-04-23|Has expired: Many channels have modified their protocols and cannot be DL anymore
comms/cdr_read||2016-04-23|Has expired: unfetchable
russian/rubygem-rutils||2016-04-23|Has expired: Deprecated by upstream
devel/rubygem-dotenv-deployment||2016-04-23|Has expired: Deprecated by upstream in latest version (0.3.0)
www/p5-LWP-ConsoleLogger||2016-04-23|Has expired: Depends on expiring www/p5-HTTP-CookieMonster
www/p5-WWW-Mechanize-Cached||2016-04-23|Has expired: Depends on expiring www/p5-HTTP-CookieMonster
www/p5-HTTP-CookieMonster||2016-04-23|Has expired: Broken for more than 6 months
misc/diary-hercules||2016-04-23|Has expired: Broken for more than 6 months
graphics/ffff||2016-04-23|Has expired: Broken for more than 6 months
net-im/sigram||2016-04-23|Has expired: Broken for more than 6 months
games/annelid||2016-04-23|Has expired: Broken for more than 6 months
science/py-pydap||2016-04-23|Has expired: Broken for more than 6 months
sysutils/su2||2016-04-23|Has expired: Broken for more than 6 months
www/download-gemist||2016-04-23|Has expired: Broken for more than 6 months
databases/p5-qdbm||2016-04-23|Has expired: Broken for more than 6 months
deskutils/ladon||2016-04-23|Has expired: Broken for more than 6 months
java/linux-sun-jdk17||2016-04-24|Has expired: Unsupported and known for multiple security vulnerabilities
devel/compiler-rt-devel|devel/llvm-devel|2016-04-24|Folded back in to devel/llvm-devel
databases/rrdtool10|databases/rrdtool|2016-05-02|Old version, not maintained any more
devel/sope|devel/sope2|2016-05-02|Renamed to devel/sope2
www/sogo|www/sogo2|2016-05-02|Renamed to www/sogo2
www/sogo-activesync|www/sogo2-activesync|2016-05-02|Renamed to www/sogo2-activesync
textproc/rubygem-gherkin3|textproc/rubygem-gherkin|2016-05-03|Has expired: Use textproc/rubygem-gherkin instead
dns/odsclient||2016-05-03|Has expired: ODS shuts service down, so client is probably useless
games/Cockatrice|games/cockatrice|2016-05-05|Renamed to games/cockatrice
graphics/py-opengl|graphics/py-PyOpenGL|2016-05-09|Use correct upstream PyPI name
graphics/py-opengl-accelerate|graphics/py-PyOpenGL-accelerate|2016-05-09|Use correct upstream PyPI name
java/linux-sun-jre17||2016-05-09|Has expired: Unsupported and known for multiple security vulnerabilities
deskutils/gnustep-notebook||2016-05-09|Has expired: Does not fetch
lang/moscow_ml|lang/mosml|2016-05-11|Project renamed
devel/rubygem-redmine_acts_as_taggable_on|www/rubygem-redmine_acts_as_taggable_on|2016-05-14|Duplicate port
lang/gcc-aux||2016-05-16|Has expired: Use newer lang/gcc5-aux or lang/gcc6-aux compilers instead
audio/deadbeef-mpris-plugin|audio/deadbeef-mpris2-plugin|2016-05-16|Has expired: Abandonware; use `audio/deadbeef-mpris2-plugin' instead
net/samba41||2016-05-16|Has expired: not supported by the upstream
databases/postgresql90-contrib||2016-05-16|Has expired: "EOL was reached in September 2015"
databases/postgresql90-pltcl||2016-05-16|Has expired: "EOL was reached in September 2015"
databases/postgresql90-docs||2016-05-16|Has expired: "EOL was reached in September 2015"
devel/py-gyp-devel|devel/py-gyp|2016-05-16|Renamed to devel/py-gyp
databases/py-sqlalchemy|databases/py-sqlalchemy07|2016-05-18|Renamed to databases/py-sqlalchemy07
databases/py-sqlalchemy-devel|databases/py-sqlalchemy08|2016-05-18|Renamed to databases/py-sqlalchemy08
sysutils/relaunchd|sysutils/jobd|2016-05-20|Renamed to sysutils/jobd
dns/nsd3|dns/nsd|2016-05-20|Has expired: NSD 3 is EOL, please upgrade to NSD 4 in dns/nsd
security/easypg||2016-05-22|Has expired: Included into emacs since 2.3
misc/kdehier4||2016-05-25|Not used since 2014
devel/maven-ant-tasks||2016-05-27|Use Maven directly
graphics/py-imaging|graphics/py-pillow|2016-05-28|Has expired: Unmaintained upstream; use graphics/py-pillow
textproc/py-curator|textproc/py-elasticsearch-curator-py|2016-05-29|Follow existing Elasticsearch naming conventions
databases/py-psycopg|databases/py-psycopg2|2016-05-29|Has expired: This port is obsoleted by databases/py-psycopg2
security/py-clamav|security/py-pyclamd|2016-05-30|Has expired: Not updated since 2008 by upstream and abandoned in favor of pyClamd (security/py-pyclamd)
graphics/ruby-gdal||2016-05-31|Has expired: disabled by upstream (https://trac.osgeo.org/gdal/changeset/28756)
net/omcmd||2016-06-01|Has expired: Unfetchable and depends on expired net/isc-dhcp41-server
net/isc-dhcp41-server|net/isc-dhcp43-server|2016-06-01|Has expired: isc-dhcp 4.1 is now End of Life
lang/ruby20||2016-06-01|Has expired: Upstream support ended
java/rubygem-rjb||2016-06-02|Has expired: fails to create JVM
devel/rubygem-atoulme-antwrap||2016-06-02|Removed, depends on java/rubygem-rjb
net/xmlrpc-c-devel||2016-06-11|Retired, older than net/xmlrpc-c
www/drupal6-content_access||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-google_analytics||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-seo_checklist||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-pathauto||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-wysiwyg||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-advanced_help||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-path_redirect||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-webform||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-imce||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-mimedetect||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-tagadelic||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-panels||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-zeropoint||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-geshifilter||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-chaos||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-token||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-print||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-nodewords||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-image||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-menu_block||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-views||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-services||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-ckeditor||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-nice_menus||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-page_title||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6-cck||2016-06-18|Has expired: www/drupal6 upstream is EOL and port expired 2016-04-24
www/drupal6||2016-06-18|Has expired: EOL upstream as of 2016-02-24
x11-toolkits/gtk-sharp10||2016-06-20|Not depend on anymore superceeded by gtk-sharp20 and gtk-sharp30
devel/p5-ReadLine-Perl|devel/p5-Term-ReadLine-Perl|2016-06-21|Duplicates
devel/p5-ReadLine-Gnu|devel/p5-Term-ReadLine-Gnu|2016-06-21|Rename to match upstream
devel/p5-ReadLine-TTYtter|devel/p5-Term-ReadLine-TTYtter|2016-06-21|Rename to match upstream
databases/postgresql90-client||2016-06-21|Postgresql 9.0 EoL Upstream as of September 2015
databases/postgresql90-pgtcl||2016-06-21|Postgresql 9.0 EoL Upstream as of September 2015
databases/postgresql90-plperl||2016-06-21|Postgresql 9.0 EoL Upstream as of September 2015
databases/postgresql90-plpython||2016-06-21|Postgresql 9.0 EoL Upstream as of September 2015
databases/postgresql90-server||2016-06-21|Postgresql 9.0 EoL Upstream as of September 2015
graphics/linux-c6-dri-compat|graphics/linux-c6-dri|2016-06-22|Obsolete
security/py-letsencrypt|security/py-certbot|2016-06-23|The LetsEncrypt project has renamed the utility
textproc/py-beautifulsoup4|www/py-beautifulsoup|2016-06-26|Duplicate port deleted
textproc/kibana42|textproc/kibana45|2016-06-27|Has expired: not actively supported - use kibana 4.5 (textproc/kibana45) instead
graphics/libchamplain08||2016-06-30|Has expired: Old version, not needed any more
sysutils/syslog-ng35||2016-06-30|Has expired: EOL, no longer supported by bababit.hu
sysutils/syslog-ng34||2016-06-30|Has expired: EOL, no longer supported by bababit.hu
devel/jenkins2|devel/jenkins|2016-06-30|Has expired: Use devel/jenkins
www/p5-WWW-Google-Notebook||2016-06-30|Has expired: Google Notebook has shut down
sysutils/syslog-ng-incubator03||2016-06-30|Has expired: EOL, no longer supported by bababit.hu
www/node5|www/node|2016-07-01|Has expired: upstream support has ended, use www/node instead
devel/p5-Test2|devel/p5-Test-Simple|2016-07-02|Has expired: Test2 has been merged into Test-Simple distribution
security/openpgpsdk||2016-07-04|Has expired: Broken for more than 6 months
security/radiusniff||2016-07-04|Has expired: Broken for more than 6 months
security/pear-Auth_OpenID||2016-07-04|Has expired: Broken for more than 6 months
security/sshit||2016-07-04|Has expired: Broken for more than 6 months
security/ifd-slb_rf60||2016-07-04|Has expired: Broken for more than 6 months
security/rainbowcrack||2016-07-04|Has expired: Broken for more than 6 months
security/vlog||2016-07-04|Has expired: Broken for more than 6 months
security/cryptstring||2016-07-04|Has expired: Broken for more than 6 months
x11/libdnd||2016-07-04|Has expired: Broken for more than 6 months
x11/xlupe||2016-07-04|Has expired: Broken for more than 6 months
x11/xco||2016-07-04|Has expired: Broken for more than 6 months
x11/xclick||2016-07-04|Has expired: Broken for more than 6 months
devel/ocfpcsc||2016-07-04|Has expired: Broken for more than 6 months
devel/dits||2016-07-04|Has expired: Broken for more than 6 months
devel/ruby-cache||2016-07-04|Has expired: Broken for more than 6 months
devel/rapidsvn||2016-07-04|Has expired: Broken for more than 6 months
devel/svnkit||2016-07-04|Has expired: Broken for more than 6 months
devel/py-EnthoughtBase||2016-07-04|Has expired: Broken for more than 6 months
devel/cl-uffi||2016-07-04|Has expired: Broken for more than 6 months
devel/ruby-event-loop||2016-07-04|Has expired: Broken for more than 6 months
devel/libqxt||2016-07-04|Has expired: Broken for more than 6 months
devel/dasm||2016-07-04|Has expired: Broken for more than 6 months
devel/libopendaap||2016-07-04|Has expired: Broken for more than 6 months
devel/cl-uffi-sbcl||2016-07-04|Has expired: Depends on expiring devel/cl-uffi
devel/cvs2p4||2016-07-04|Has expired: Broken for more than 6 months
devel/bufferpool||2016-07-04|Has expired: Broken for more than 6 months
devel/ifd-test||2016-07-04|Has expired: Broken for more than 6 months
devel/eric4||2016-07-04|Has expired: Broken for more than 6 months
devel/uclmmbase||2016-07-04|Has expired: Broken for more than 6 months
devel/obfuscatejs||2016-07-04|Has expired: Broken for more than 6 months
devel/oniguruma||2016-07-04|Has expired: Broken for more than 6 months
devel/libbnr||2016-07-04|Has expired: Broken for more than 6 months
devel/c4||2016-07-04|Has expired: Broken for more than 6 months
devel/memcheck||2016-07-04|Has expired: Broken for more than 6 months
devel/liblcfg||2016-07-04|Has expired: Broken for more than 6 months
devel/svndelta||2016-07-04|Has expired: Broken for more than 6 months
devel/papp||2016-07-04|Has expired: Broken for more than 6 months
devel/mk||2016-07-04|Has expired: Broken for more than 6 months
devel/avltree||2016-07-04|Has expired: Broken for more than 6 months
devel/cbind||2016-07-04|Has expired: Broken for more than 6 months
devel/tclgetopts||2016-07-04|Has expired: Broken for more than 6 months
devel/antlrworks||2016-07-04|Has expired: Broken for more than 6 months
devel/acme||2016-07-04|Has expired: Broken for more than 6 months
devel/libopensync022||2016-07-04|Has expired: Broken for more than 6 months
archivers/epkg||2016-07-04|Has expired: Broken for more than 6 months
print/enscriptfonts||2016-07-04|Has expired: Broken for more than 6 months
print/mup||2016-07-04|Has expired: Broken for more than 6 months
lang/lua-mode.el||2016-07-04|Has expired: Broken for more than 6 months
lang/s9fes||2016-07-04|Has expired: Broken for more than 6 months
lang/alisp||2016-07-04|Has expired: Broken for more than 6 months
lang/intel2gas||2016-07-04|Has expired: Broken for more than 6 months
lang/stalin||2016-07-04|Has expired: Broken for more than 6 months
french/eric4||2016-07-04|Has expired: Depends on expiring devel/eric4
textproc/exslt||2016-07-04|Has expired: Broken for more than 6 months
textproc/xt||2016-07-04|Has expired: Broken for more than 6 months
textproc/ssddiff||2016-07-04|Has expired: Broken for more than 6 months
textproc/xslint||2016-07-04|Has expired: Broken for more than 6 months
textproc/cbedic||2016-07-04|Has expired: Broken for more than 6 months
textproc/tralics||2016-07-04|Has expired: Broken for more than 6 months
textproc/docbookide.el||2016-07-04|Has expired: Broken for more than 6 months
textproc/glpi-plugins-AdditionalReports||2016-07-04|Has expired: Broken for more than 6 months
textproc/tdhkit||2016-07-04|Has expired: Broken for more than 6 months
textproc/p5-Groonga-API||2016-07-04|Has expired: Broken for more than 6 months
textproc/glpi-plugins-DataInjection||2016-07-04|Has expired: Broken for more than 6 months
dns/ldnsm||2016-07-04|Has expired: Broken for more than 6 months
japanese/guesswork-classic||2016-07-04|Has expired: Broken for more than 6 months
japanese/texinfo||2016-07-04|Has expired: Broken for more than 6 months
japanese/jyuroku||2016-07-04|Has expired: Broken for more than 6 months
japanese/mtools||2016-07-04|Has expired: Broken for more than 6 months
palm/pdbar||2016-07-04|Has expired: Broken for more than 6 months
graphics/gplot||2016-07-04|Has expired: Broken for more than 6 months
graphics/white_dune||2016-07-04|Has expired: Broken for more than 6 months
graphics/whirlgif||2016-07-04|Has expired: Broken for more than 6 months
graphics/libaux||2016-07-04|Has expired: Broken for more than 6 months
graphics/import-pictures||2016-07-04|Has expired: Broken for more than 6 months
math/xgobi||2016-07-04|Has expired: Broken for more than 6 months
math/fricas||2016-07-04|Has expired: Broken for more than 6 months
math/dcdflib||2016-07-04|Has expired: Broken for more than 6 months
math/libneural||2016-07-04|Has expired: Broken for more than 6 months
math/open-axiom||2016-07-04|Has expired: Broken for more than 6 months
irc/nefarious||2016-07-04|Has expired: Broken for more than 6 months
irc/slirc||2016-07-04|Has expired: Broken for more than 6 months
irc/qwebirc||2016-07-04|Has expired: Broken for more than 6 months
biology/platon||2016-07-04|Has expired: Broken for more than 6 months
news/slnr||2016-07-04|Has expired: Broken for more than 6 months
science/jmol||2016-07-04|Has expired: Broken for more than 6 months
net/nstxd||2016-07-04|Has expired: Broken for more than 6 months
net/sprinkle||2016-07-04|Has expired: Broken for more than 6 months
editors/ssam||2016-07-04|Has expired: Broken for more than 6 months
editors/fb||2016-07-04|Has expired: Broken for more than 6 months
misc/quotes||2016-07-04|Has expired: Broken for more than 6 months
misc/boxquote.el||2016-07-04|Has expired: Broken for more than 6 months
misc/pypanda||2016-07-04|Has expired: Broken for more than 6 months
misc/cuecat||2016-07-04|Has expired: Broken for more than 6 months
deskutils/displaycalibrator||2016-07-04|Has expired: Broken for more than 6 months
german/eric4||2016-07-04|Has expired: Depends on expiring devel/eric4
multimedia/vic||2016-07-04|Has expired: Depends on expiring devel/uclmmbase
multimedia/ggrab||2016-07-04|Has expired: Broken for more than 6 months
emulators/dynamips||2016-07-04|Has expired: Broken for more than 6 months
emulators/dynamips-devel||2016-07-04|Has expired: Broken for more than 6 months
emulators/sim6811||2016-07-04|Has expired: Broken for more than 6 months
emulators/minivmac||2016-07-04|Has expired: Broken for more than 6 months
cad/qcad-partslib||2016-07-04|Has expired: Broken for more than 6 months
comms/dump1090_mr||2016-07-04|Has expired: Broken for more than 6 months
x11-fm/asfiles||2016-07-04|Has expired: Depends on expiring x11/libdnd
x11-fonts/fonts-te||2016-07-04|Has expired: Broken for more than 6 months
sysutils/rsyncmanager||2016-07-04|Has expired: Broken for more than 6 months
sysutils/jfbterm||2016-07-04|Has expired: Broken for more than 6 months
sysutils/daedalus||2016-07-04|Has expired: Broken for more than 6 months
sysutils/pcfclock||2016-07-04|Has expired: Broken for more than 6 months
sysutils/vlogger||2016-07-04|Has expired: Broken for more than 6 months
sysutils/bontmia||2016-07-04|Has expired: Broken for more than 6 months
mail/pop3gwd||2016-07-04|Has expired: Broken for more than 6 months
mail/mailtray||2016-07-04|Has expired: Broken for more than 6 months
mail/pflogstats||2016-07-04|Has expired: Broken for more than 6 months
mail/exact||2016-07-04|Has expired: Broken for more than 6 months
mail/wmpop3||2016-07-04|Has expired: Broken for more than 6 months
mail/gld||2016-07-04|Has expired: Broken for more than 6 months
mail/dsbl-testers||2016-07-04|Has expired: Broken for more than 6 months
mail/vqregister||2016-07-04|Has expired: Broken for more than 6 months
mail/atmail||2016-07-04|Has expired: Broken for more than 6 months
mail/ml||2016-07-04|Has expired: Broken for more than 6 months
net-im/icb||2016-07-04|Has expired: Broken for more than 6 months
net-im/cicquin||2016-07-04|Has expired: Broken for more than 6 months
net-im/pidgin-manualsize||2016-07-04|Has expired: Broken for more than 6 months
net-im/pidgin-rhythmbox||2016-07-04|Has expired: Broken for more than 6 months
russian/eric4||2016-07-04|Has expired: Depends on expiring devel/eric4
russian/fortune-bashorgru||2016-07-04|Has expired: Broken for more than 6 months
www/xpi-clearfields||2016-07-04|Has expired: Broken for more than 6 months
www/pecl-varnish||2016-07-04|Has expired: Broken for more than 6 months
www/py-requests-oauth-hook||2016-07-04|Has expired: Broken for more than 6 months
www/hudson||2016-07-04|Has expired: Broken for more than 6 months
www/xpi-mldonkey||2016-07-04|Has expired: Broken for more than 6 months
www/xpi-cookiesafe||2016-07-04|Has expired: Broken for more than 6 months
www/trac-mastertickets||2016-07-04|Has expired: Broken for more than 6 months
www/dotclear||2016-07-04|Has expired: Broken for more than 6 months
www/ruby-wgettsv||2016-07-04|Has expired: Broken for more than 6 months
www/wwwstat||2016-07-04|Has expired: Broken for more than 6 months
www/xpi-prism||2016-07-04|Has expired: Broken for more than 6 months
www/xpi-fasterfox||2016-07-04|Has expired: Broken for more than 6 months
www/siteframe||2016-07-04|Has expired: Broken for more than 6 months
www/py-urljr||2016-07-04|Has expired: Broken for more than 6 months
www/reviewboard||2016-07-04|Has expired: Broken for more than 6 months
www/xpi-tabletools||2016-07-04|Has expired: Broken for more than 6 months
www/wikindx||2016-07-04|Has expired: Broken for more than 6 months
www/typolight||2016-07-04|Has expired: Broken for more than 6 months
www/varnish-libvmod-header||2016-07-04|Has expired: Broken for more than 6 months
www/xpi-gbrain||2016-07-04|Has expired: Broken for more than 6 months
www/trac-robotstxt||2016-07-04|Has expired: Broken for more than 6 months
www/simplog||2016-07-04|Has expired: Broken for more than 6 months
www/chtml||2016-07-04|Has expired: Broken for more than 6 months
databases/postgresql_autodoc||2016-07-04|Has expired: Broken for more than 6 months
databases/oracle_odbc_driver||2016-07-04|Has expired: Broken for more than 6 months
databases/mysql-xql||2016-07-04|Has expired: Broken for more than 6 months
databases/mysql-udf-sys||2016-07-04|Has expired: Broken for more than 6 months
games/lucidlife||2016-07-04|Has expired: Broken for more than 6 months
games/gma||2016-07-04|Has expired: Broken for more than 6 months
games/smiley||2016-07-04|Has expired: Broken for more than 6 months
games/noegnud-littlehack||2016-07-04|Has expired: Broken for more than 6 months
games/sdlquake2||2016-07-04|Has expired: Broken for more than 6 months
games/daimonin||2016-07-04|Has expired: Depends on expiring games/daimonin-music
games/noegnud-nethack||2016-07-04|Has expired: Broken for more than 6 months
games/xbomber||2016-07-04|Has expired: Broken for more than 6 months
games/xwelltris||2016-07-04|Has expired: Broken for more than 6 months
games/ftjava||2016-07-04|Has expired: Broken for more than 6 months
games/daimonin-music||2016-07-04|Has expired: Broken for more than 6 months
games/gno3dtet||2016-07-04|Has expired: Broken for more than 6 months
games/qtv||2016-07-04|Has expired: Broken for more than 6 months
games/xwordpy||2016-07-04|Has expired: Broken for more than 6 months
games/netris||2016-07-04|Has expired: Broken for more than 6 months
games/rt2-demo||2016-07-04|Has expired: Broken for more than 6 months
games/noegnud-addons||2016-07-04|Has expired: Broken for more than 6 months
games/noegnud-nethack-deet||2016-07-04|Has expired: Broken for more than 6 months
games/live-f1||2016-07-04|Has expired: Broken for more than 6 months
games/xonix||2016-07-04|Has expired: Broken for more than 6 months
games/fgkicker||2016-07-04|Has expired: Broken for more than 6 months
games/tank||2016-07-04|Has expired: Depends on expiring graphics/libaux
games/linux-nwserver||2016-07-04|Has expired: Broken for more than 6 months
games/quake2-zaero||2016-07-04|Has expired: Broken for more than 6 months
games/pyching||2016-07-04|Has expired: Broken for more than 6 months
games/thevalley||2016-07-04|Has expired: Broken for more than 6 months
games/xroads||2016-07-04|Has expired: Broken for more than 6 months
games/fxsudoku||2016-07-04|Has expired: Broken for more than 6 months
games/sudoku||2016-07-04|Has expired: Broken for more than 6 months
games/kmancala||2016-07-04|Has expired: Broken for more than 6 months
games/plonx||2016-07-04|Has expired: Broken for more than 6 months
games/wmminichess||2016-07-04|Has expired: Broken for more than 6 months
games/noegnud-slashem||2016-07-04|Has expired: Broken for more than 6 months
games/latrine||2016-07-04|Has expired: Broken for more than 6 months
games/pysycache-themes||2016-07-04|Has expired: Broken for more than 6 months
games/nibbles||2016-07-04|Has expired: Broken for more than 6 months
games/hlstatsx||2016-07-04|Has expired: Broken for more than 6 months
audio/streamtuner||2016-07-04|Has expired: Broken for more than 6 months
audio/mangler||2016-07-04|Has expired: Broken for more than 6 months
audio/hawkvoice||2016-07-04|Has expired: Broken for more than 6 months
audio/alac||2016-07-04|Has expired: Broken for more than 6 months
x11-wm/e-module-mpdule||2016-07-04|Has expired: Broken for more than 6 months
x11-wm/e-module-tclock||2016-07-04|Has expired: Broken for more than 6 months
x11-wm/musca||2016-07-04|Has expired: Broken for more than 6 months
x11-wm/e-module-places||2016-07-04|Has expired: Broken for more than 6 months
x11-wm/e-module-forecasts||2016-07-04|Has expired: Broken for more than 6 months
x11-wm/e-module-net||2016-07-04|Has expired: Broken for more than 6 months
x11-wm/e-module-penguins||2016-07-04|Has expired: Broken for more than 6 months
ftp/fget||2016-07-04|Has expired: Broken for more than 6 months
net-mgmt/netmond||2016-07-04|Has expired: Broken for more than 6 months
net-mgmt/ipfm||2016-07-04|Has expired: Broken for more than 6 months
textproc/py-dbf|databases/py-dbf|2016-07-05|Duplicate port deleted
www/yahoo-ui||2016-07-05|Has expired: Broken for more than 6 months
sysutils/moosefs-cgi|sysutils/moosefs2-cgi|2016-07-07|Moved to a numbered port name
sysutils/moosefs-cgiserv|sysutils/moosefs2-cgiserv|2016-07-07|Moved to a numbered port name
sysutils/moosefs-chunkserver|sysutils/moosefs2-chunkserver|2016-07-07|Moved to a numbered port name
sysutils/moosefs-cli|sysutils/moosefs2-cli|2016-07-07|Moved to a numbered port name
sysutils/moosefs-client|sysutils/moosefs2-client|2016-07-07|Moved to a numbered port name
sysutils/moosefs-master|sysutils/moosefs2-master|2016-07-07|Moved to a numbered port name
sysutils/moosefs-metalogger|sysutils/moosefs2-metalogger|2016-07-07|Moved to a numbered port name
sysutils/moosefs-netdump|sysutils/moosefs2-netdump|2016-07-07|Moved to a numbered port name
devel/gmake-lite|devel/gmake|2016-07-08|No longer needed
devel/capstone|devel/capstone3|2016-07-10|Moved to a numbered port name to make place for capstone4
net-mgmt/unifi3|net-mgmt/unifi4|2016-07-10|Has expired: Unifi 3.x is EoL. Please upgrade to net-mgmt/unifi4
net/lam||2016-07-12|Has expired: Broken for more than 6 months
java/wildfly82||2016-07-17|Has expired: Fully EOL when version 10.0 was released
print/tex|print/texlive-base|2016-07-30|Superceeded by texlive
net/tridiavnc|net/tigervnc|2016-08-01|No upstream 2005
lang/pypy3-devel|lang/pypy3|2016-08-04|Renamed to lang/pypy3
net/qt5-enginio||2016-08-06|Has expired: Deprecated by upstream from Qt 5.6 on, do not use for development
multimedia/linux-xmovie||2016-08-08|Has expired: Not maintained upstream, contains security issues
multimedia/linux-realplayer||2016-08-09|Has expired: Not maintained upstream, contains security issues
ports-mgmt/xps||2016-08-11|Has expired: Does not support pkg(8)
cad/NASTRAN|cad/NASTRAN-95|2016-08-12|Rename to match PORTNAME and upstream name
math/bamg||2016-08-14|No longer maintained upstream as is now part of freefem++
www/pecl-APC||2016-08-15|No longer maintained upstream, and not working with PHP > 5.4
textproc/libtext-wrapi18n-perl|textproc/p5-Text-WrapI18N|2016-08-15|Duplicate
textproc/libtext-charwidth-perl|textproc/p5-Text-CharWidth|2016-08-15|Duplicate
net-mgmt/netams||2016-08-18|Has expired: unmaintained, broken on most FreeBSD platforms
emulators/kqemu-kmod||2016-08-26|Not supported in any qemu version anymore
emulators/kqemu-kmod-devel||2016-08-26|Not supported in any qemu version anymore
www/varnish-libvmod-saintmode|www/varnish-modules|2016-09-01|Upstream moved this module into the varnish-modules collection
security/letskencrypt|security/acme-client|2016-09-02|Upstream renamed the project
net/asterisk||2016-09-12|Has expired: Asterisk 1.8 reached EOL on 2015-10-21
www/mediawiki124||2016-09-13|Has expired: EOL upstream
sysutils/rsyslog7|sysutils/rsyslog8|2016-09-13|Has expired: Upgrade to rsyslog 8
www/moodle28||2016-09-13|Has expired: EOL upstream
devel/php5-msgpack|devel/pecl-msgpack|2016-09-13|Has expired: This is an older version of the software, please use devel/pecl-msgpack
textproc/asciinema|textproc/py3-asciinema|2016-09-13|Has expired: use textproc/py3-asciinema instead
x11-toolkits/qtada||2016-09-13|Has expired: No development since 2012, usefulness unclear
security/letsencrypt.sh|security/dehydrated|2016-09-13|Upstream renamed the project
devel/py-dogpile.core|devel/py-dogpile.cache|2016-09-13|EOL upstream. Merged into devel/py-dogpile.cache since 0.6.0
korean/imhangul||2016-09-15|Split into korean/imhangul-gtk2 and korean/imhangul-gtk3
devel/poco-devel|devel/poco|2016-09-18|Has expired: older than stable devel/poco
databases/pglogical-output|databases/pglogical|2016-09-22|databases/pglogical-output merged into databases/pglogical
mail/gml||2016-09-23|Has expired: Deprecated upstream. Use native gmail tools to import
net/nats|net/gnatsd|2016-09-24|Switched to upstream naming
graphics/evas_generic_loaders|devel/efl|2016-09-27|Merged into devel/efl
graphics/evas_generic_loaders-gst|devel/efl|2016-09-27|Merged into devel/efl
graphics/evas_generic_loaders-pdf|devel/efl|2016-09-27|Merged into devel/efl
graphics/evas_generic_loaders-ps|devel/efl|2016-09-27|Merged into devel/efl
graphics/evas_generic_loaders-raw|devel/efl|2016-09-27|Merged into devel/efl
graphics/evas_generic_loaders-svg|devel/efl|2016-09-27|Merged into devel/efl
graphics/evas_generic_loaders-xcf|devel/efl|2016-09-27|Merged into devel/efl
multimedia/emotion_generic_players-vlc|devel/efl|2016-09-27|Merged into devel/efl
x11-toolkits/elementary|devel/efl|2016-09-27|Merged into devel/efl
devel/google-sparsehash|devel/sparsehash|2016-09-30|Moved to GitHub under a different name
games/fgrun||2016-09-30|Incompatible with latest flightgear
math/why3-spark||2016-09-30|Has expired: Only useful for deprecated lang/spark
lang/spark||2016-09-30|Has expired: Broken for more than 6 months
math/alt-ergo-spark||2016-09-30|Has expired: Only useful for deprecate lang/spark
security/nessus-libnasl||2016-09-30|Has expired: Abandoned, consider using OpenVAS
security/nessus||2016-09-30|Has expired: Abandoned, consider using OpenVAS
security/nessus-libraries||2016-09-30|Has expired: Abandoned, consider using OpenVAS
security/nessus-plugins||2016-09-30|Has expired: Abandoned, consider using OpenVAS
www/node010||2016-10-01|Has expired: Upstream has placed 0.10.x in maintenance mode, see https://github.com/nodejs/LTS
databases/postgresql91-contrib||2016-10-01|Has expired: End-of-life is near
databases/postgresql91-plpython||2016-10-01|Has expired: End-of-life is near
databases/postgresql91-plperl||2016-10-01|Has expired: End-of-life is near
databases/postgresql91-pltcl||2016-10-02|Has expired: End-of-life is near
databases/postgresql91-docs||2016-10-02|Has expired: End-of-life is near
www/mediawiki125||2016-10-02|Has expired: EOL upstream
graphics/opencv|graphics/opencv2|2016-10-03|Renamed
graphics/opencv-core|graphics/opencv2-core|2016-10-03|Renamed
graphics/opencv-java|graphics/opencv2-java|2016-10-03|Renamed
graphics/py-opencv|graphics/py-opencv2|2016-10-03|Renamed
databases/postgresql91-client||2016-10-03|Has expired: End-of-life is near
databases/postgresql91-pgtcl||2016-10-03|Has expired: Depends on expired PostgreSQL 9.1
databases/postgresql91-server||2016-10-03|Has expired: End-of-life is near
databases/postgresql-pllua||2016-10-03|Has expired: Depends on expired PostgreSQL 9.1
multimedia/kvazaar-devel|multimedia/kvazaar|2016-10-05|Out of date: use multimedia/kvazaar for now
emulators/virtualbox-ose-lite|emulators/virtualbox-ose-nox11|2016-10-05|Renamed
audio/squeezeboxserver|audio/logitechmediaserver|2016-10-05|Squeezebox Server renamed to Logitech Media Server
audio/squeezeboxserver-dynamicplaylist|audio/logitechmediaserver-dynamicplaylist|2016-10-05|Squeezebox Server renamed to Logitech Media Server
audio/squeezeboxserver-lazysearch|audio/logitechmediaserver-lazysearch|2016-10-05|Squeezebox Server renamed to Logitech Media Server
audio/squeezeboxserver-sqlplaylist|audio/logitechmediaserver-sqlplaylist|2016-10-05|Squeezebox Server renamed to Logitech Media Server
audio/squeezeboxserver-superdatetime|audio/logitechmediaserver-superdatetime|2016-10-05|Squeezebox Server renamed to Logitech Media Server
audio/squeezeboxserver-trackstat|audio/logitechmediaserver-trackstat|2016-10-05|Squeezebox Server renamed to Logitech Media Server
net/py-uritemplate.py|net/py-uritemplate|2016-10-12|Upstream has consolidated on net/py-uritemplate
misc/fortune_strfile||2016-10-14|Has expired: unmaintained and duplicated from base
mail/elmo-devel|mail/elmo|2016-10-15|Has expired: Same version as mail/elmo, use it instead
math/libR||2016-10-16|Has expired: math/R LIBR option is now on by default
security/libbzrtp|security/bzrtp|2016-10-17|Renamed
devel/gaphor||2016-10-18|Has expired: runtime failure uncorrected for 1 year after first report
editors/winefish||2016-10-18|Has expired: upstream disappeared (project dead?), segfaults on multiple arches
misc/jive||2016-10-20|Has expired: Offensive
devel/pecl-spread||2016-10-20|Has expired: Works only with EOL php 5.5
devel/pecl-mcve||2016-10-20|Has expired: Works only with EOL php 5.5
security/pecl-tcpwrap||2016-10-20|Has expired: Works only with EOL php 5.5
devel/pecl-shape||2016-10-20|Has expired: Works only with EOL php 5.5
textproc/pecl-enchant||2016-10-20|Has expired: Works only with EOL php 5.5
databases/pecl-mysqlnd_ms||2016-10-20|Has expired: Works only with EOL php 5.5
textproc/pecl-html_parse||2016-10-20|Has expired: Works only with EOL php 5.5
mail/pecl-esmtp||2016-10-20|Has expired: Works only with EOL php 5.5
net/pecl-cvsclient||2016-10-20|Has expired: Works only with EOL php 5.5
databases/pecl-mdbtools||2016-10-20|Has expired: Works only with EOL php 5.5
databases/pecl-mysqlnd_qc||2016-10-20|Has expired: Works only with EOL php 5.5
devel/pecl-operator||2016-10-20|Has expired: Works only with EOL php 5.5
devel/pecl-parsekit||2016-10-20|Has expired: Works only with EOL php 5.5
devel/pecl-hidef||2016-10-20|Has expired: Works only with EOL php 5.5
devel/pecl-automap||2016-10-20|Has expired: Works only with EOL php 5.5
devel/pecl-bbcode||2016-10-20|Has expired: Works only with EOL php 5.5
devel/pecl-bcompiler||2016-10-20|Has expired: Works only with EOL php 5.5
databases/php-adodb-ext||2016-10-21|Has expired: Works only with EOL php 5.5
archivers/php55-bz2||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
archivers/php55-phar||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
archivers/php55-zip||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
archivers/php55-zlib||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
converters/php55-iconv||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
converters/php55-mbstring||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
converters/php55-recode||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-dba||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-interbase||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-mssql||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-mysql||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-mysqli||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-odbc||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-pdo||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-pdo_dblib||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-pdo_firebird||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-pdo_mysql||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-pdo_odbc||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-pdo_pgsql||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-pdo_sqlite||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-pgsql||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-redis||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-sqlite3||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
databases/php55-sybase_ct||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
devel/php55-gettext||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
devel/php55-json||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
devel/php55-pcntl||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
devel/php55-readline||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
devel/php55-shmop||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
devel/php55-sysvmsg||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
devel/php55-sysvsem||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
devel/php55-sysvshm||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
devel/php55-tokenizer||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
ftp/php55-curl||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
ftp/php55-ftp||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
graphics/php55-exif||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
graphics/php55-gd||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
lang/php55||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
lang/php55-extensions||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
mail/php55-imap||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
math/php55-bcmath||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
math/php55-gmp||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
misc/php55-calendar||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
net-mgmt/php55-snmp||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
net/php55-ldap||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
net/php55-soap||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
net/php55-sockets||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
net/php55-xmlrpc||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
security/php55-filter||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
security/php55-hash||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
security/php55-mcrypt||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
security/php55-openssl||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
sysutils/php55-fileinfo||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
sysutils/php55-posix||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
textproc/php55-ctype||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
textproc/php55-dom||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
textproc/php55-enchant||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
textproc/php55-pspell||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
textproc/php55-simplexml||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
textproc/php55-wddx||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
textproc/php55-xml||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
textproc/php55-xmlreader||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
textproc/php55-xmlwriter||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
textproc/php55-xsl||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
www/mod_php55||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
www/php55-opcache||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
www/php55-session||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
www/php55-tidy||2016-10-21|Has expired: EOL upstream since 21 Jul 2016
www/lighttpd-mod_geoip|www/lighttpd|2016-10-21|Integrated into www/lighttpd
net/dosdetector||2016-10-23|Has expired: No maintainer activity in over a decade
devel/go-btree||2016-10-26|The only consumer of this port (peco) started to bundle a snapshot
devel/go-flags||2016-10-26|The only consumer of this port (peco) started to bundle a snapshot
devel/go-termbox||2016-10-26|The only consumer of this port (peco) started to bundle a snapshot
math/octave-forge-octgpr||2016-11-01|Has expired: Broken for more than 6 months
math/octave-forge-spline-gcvspl||2016-11-01|Has expired: Broken for more than 6 months
www/pear-Services_SharedBook||2016-11-01|Has expired: Broken for more than 6 months
devel/py-snackwich||2016-11-01|Has expired: Depends on broken and expiring devel/py-snack
math/octave-forge-ad||2016-11-01|Has expired: Broken for more than 6 months
math/octave-forge-xraylib||2016-11-01|Has expired: Broken for more than 6 months
x11-toolkits/py-traitsbackendwx||2016-11-01|Has expired: Broken for more than 6 months
x11-toolkits/py-traitsgui||2016-11-01|Has expired: Depends on broken and expiring x11-toolkits/py-traitsbackendwx
security/lsh||2016-11-01|Has expired: Broken for more than 6 months
devel/py-snack||2016-11-01|Has expired: Broken for more than 6 months
security/massh||2016-11-01|Has expired: Broken for more than 6 months
www/hydra||2016-11-01|Has expired: Broken for more than 6 months
math/py-pyfst||2016-11-01|Has expired: Broken for more than 6 months
archivers/ruby-zip||2016-11-01|Has expired: Broken will all supported versions of Ruby
devel/ruby-langscan||2016-11-01|Has expired: Broken will all supported versions of Ruby
math/octave-forge-dicom||2016-11-01|Has expired: Broken for more than 6 months
graphics/linux-c6-libGLU|graphics/linux-c6-dri|2016-11-04|Unused
graphics/linux-c7-libGLU|graphics/linux-c7-dri|2016-11-04|Unused
multimedia/libmovtar||2016-11-05|Not used anymore, abandonware
devel/p5-Test-Exception-LessClever||2016-11-06|Deprecated by upstream
www/py-django-piston||2016-11-06|Has expired: Abandoned upstream. Doesn't work with django>=1.6
net/remmina-plugin-i18n||2016-11-08|Plugin translations removed upstream in GH commit 2dd0526
net/p5-Net-Ping||2016-11-08|Has expired: This or newer version included in all supported versions of perl
ftp/curl-hiphop||2016-11-08|Has expired: useful only for removed hiphop-php
textproc/rubygem-string-scrub||2016-11-08|Has expired: needed only for EOL versions of Ruby
textproc/erlang-p1xml|textproc/erlang-fast_xml|2016-11-08|Project was renamed
cad/py-gdsii|cad/python-gdsii|2016-11-10|Renamed
devel/py-pydasm|devel/py-capstone|2016-11-11|Has expired: No more upstream and known bugs, use devel/py-capstone instead
devel/libdasm|devel/capstone3|2016-11-11|Has expired: No more upstream and known bugs, use devel/capstone3 instead
security/erlang-p1tls|security/erlang-fast_tls|2016-11-11|Project was renamed
mail/trojita-qt4|mail/trojita|2016-11-13|Qt4 support was dropped, use mail/trojita instead
devel/extra-cmake-modules|devel/kf5-extra-cmake-modules|2016-11-14|Renamed to match other KF5 port
net/vnc||2016-11-14|Has expired: Distfiles no longer available
sysutils/gosa||2016-11-20|Has expired: this version of gosa cannot be fixed (requires PHP < 5.4)
security/krb5-112||2016-11-20|Has expired: EOL twelve months after release of krb5-1.14
astro/osmium|astro/libosmium|2016-11-23|Rename according to upstream
deskutils/xfce4-notification-daemon|deskutils/xfce4-notifyd|2016-11-23|Has expired: No longer supported by upstream, replaced with deskutils/xfce4-notifyd
archivers/brotli|archivers/py-brotli|2016-11-24|Brotli is a python module
textproc/clucene-qt5||2016-11-25|Reintegrated into devel/qt5-help
devel/go-shellwords||2016-11-26|Integrated into textproc/fzf build procedure
www/gecko-sharp20||2016-11-27|Has expired: Broken, no upstream found and no release in 8 years
net-mgmt/rancid|net-mgmt/rancid3|2016-11-27|Has expired: Not supported upstream. Please upgrade to net-mgmt/rancid3
x11-servers/mga_hal||2016-11-28|Support for MGA_HAL feature was removed from xf86-video-mga in 2011
audio/lv2core|audio/lv2|2016-11-30|Has expired: Superseded by audio/lv2
java/jakarta-struts||2016-12-01|Has expired: Port is unmaintained and has known security vulnerabilites
www/rubygem-url-mount|www/rubygem-url_mount|2016-12-03|Rename to match our rubygems naming
editors/focuswriter-qt4|editors/focuswriter|2016-12-03|Qt4 support was dropped, use editors/focuswriter instead
graphics/gtkdps||2016-12-04|Has expired: No more upstream. Not used in the ports tree
security/gsfv||2016-12-04|Has expired: No more upstream
misc/grun||2016-12-04|Has expired: No more upstream
devel/py-argparse||2016-12-04|Has expired: Part of Python standard library for Python >= 2.7 and >= 3.2
www/node7|www/node|2016-12-07|www/node is now www/node7
databases/py-sqlalchemy06|databases/py-sqlalchemy10|2016-12-08|Has expired: Upstream has declared this version EoL: please migrate to databases/py-sqlalchemy10
print/py-reportlab2|print/py-reportlab|2016-12-08|Has expired: no longer supported - use reportlab 3.x (py-reportlab) instead
devel/py-itools||2016-12-08|Has expired: Depends on broken and expired py-reportlab2
graphics/py-aafigure||2016-12-08|Has expired: Depends on broken and expired py-reportlab2
converters/py-pisa||2016-12-08|Has expired: Deprecated upstream, depends on broken and expired py-reportlab2
graphics/ocrfeeder||2016-12-08|Has expired: Depends on broken and expired py-reportlab2
devel/libcppformat|devel/libfmt|2016-12-08|Project was renamed
databases/py35-mysqlclient|databases/py3-mysqlclient|2016-12-10|Moved to match existing naming convention
databases/py35-psycopg2|databases/py3-psycopg2|2016-12-10|Moved to match existing naming convention
www/linux-f10-flashplugin11|www/linux-flashplayer|2016-12-13|Removed upstream
www/linux-c6-flashplugin11|www/linux-flashplayer|2016-12-13|Removed upstream
www/linux-c7-flashplugin11|www/linux-flashplayer|2016-12-13|Removed upstream
net/py-ceilometerclient|net/py-python-ceilometerclient|2016-12-17|Rename to match pypi name
net/py-cinderclient|net/py-python-cinderclient|2016-12-17|Rename to match pypi name
net/py-designateclient|net/py-python-designateclient|2016-12-17|Rename to match pypi name
net/py-glanceclient|net/py-python-glanceclient|2016-12-17|Rename to match pypi name
net/py-heatclient|net/py-python-heatclient|2016-12-17|Rename to match pypi name
net/py-keystoneclient|net/py-python-keystoneclient|2016-12-17|Rename to match pypi name
net/py-neutronclient|net/py-python-neutronclient|2016-12-17|Rename to match pypi name
net/py-novaclient|net/py-python-novaclient|2016-12-17|Rename to match pypi name
net/py-openstackclient|net/py-python-openstackclient|2016-12-17|Rename to match pypi name
www/py-django-openstack-auth|www/py-django_openstack_auth|2016-12-18|Rename to match pypi name
www/linux-c6-flashplugin24|www/linux-flashplayer|2016-12-18|Renamed to match upstream
www/linux-c7-flashplugin24|www/linux-flashplayer|2016-12-18|Renamed to match upstream
biology/p5-bioperl|biology/p5-BioPerl|2016-12-18|Rename to match upstream naming
biology/p5-bioperl-run|biology/p5-BioPerl-Run|2016-12-18|Rename to match upstream naming
databases/py-swiftclient|databases/py-python-swiftclient|2016-12-18|Rename to match pypi name
x11-toolkits/py-kiwi|x11-toolkits/py-kiwi-gtk|2016-12-24|Rename to match PyPI naming
www/py33-requests|www/py3-requests|2016-12-26|No need for 4 versions of py-requests
www/py34-requests|www/py3-requests|2016-12-26|No need for 4 versions of py-requests
www/py35-requests|www/py3-requests|2016-12-26|No need for 4 versions of py-requests
net-mgmt/ccnet|net-mgmt/ccnet-client|2016-12-26|Split into -client and -server parts
net-mgmt/seafile|net-mgmt/seafile-client|2016-12-26|Split into -client and -server parts
comms/libcodec2|audio/codec2|2016-12-26|Removed: Duplicate port use `audio/codec2` instead
databases/py-sqlalchemy07|databases/py-sqlalchemy10|2016-12-27|Has expired: Upstream has declared this version EoL: please migrate to databases/py-sqlalchemy10
security/openvpn-polarssl|security/openvpn-mbedtls|2016-12-27|Slave port renamed to match the TLS library's new name
www/p5-ParallelUA|www/p5-ParallelUserAgent|2016-12-31|Rename to match upstream naming
lang/perl5.18||2016-12-31|Has expired: Unsupported, please upgrade to a more recent version of Perl
audio/linux-f10-sdl_mixer||2016-12-31|Removed
audio/linux-f10-pulseaudio-libs||2016-12-31|Removed
audio/linux-f10-freealut||2016-12-31|Removed
audio/linux-f10-arts||2016-12-31|Removed
audio/linux-f10-esound||2016-12-31|Removed
audio/linux-f10-libogg||2016-12-31|Removed
audio/linux-f10-alsa-plugins-oss||2016-12-31|Removed
audio/linux-f10-openal||2016-12-31|Removed
audio/linux-f10-openal-soft||2016-12-31|Removed
audio/linux-f10-nas-libs||2016-12-31|Removed
audio/linux-f10-alsa-lib||2016-12-31|Removed
audio/linux-f10-libvorbis||2016-12-31|Removed
audio/linux-f10-libaudiofile||2016-12-31|Removed
audio/linux-f10-mikmod||2016-12-31|Removed
databases/linux-f10-sqlite3||2016-12-31|Removed
devel/linux-f10-dbus-glib||2016-12-31|Removed
devel/linux-f10-sdl12||2016-12-31|Removed
devel/linux-f10-libglade2||2016-12-31|Removed
devel/linux-f10-devtools||2016-12-31|Removed
devel/linux-f10-allegro||2016-12-31|Removed
devel/linux-f10-nspr||2016-12-31|Removed
devel/linux-f10-dbus-libs||2016-12-31|Removed
devel/linux-f10-libsigc++20||2016-12-31|Removed
devel/linux-f10-ncurses-base||2016-12-31|Removed
dns/linux-f10-libasyncns||2016-12-31|Removed
emulators/linux_base-f10||2016-12-31|Removed
emulators/linux-f10||2016-12-31|Removed
ftp/linux-f10-curl||2016-12-31|Removed
games/dsnake||2016-12-31|Removed
graphics/linux-f10-sdl_image||2016-12-31|Removed
graphics/linux-f10-sdl_ttf||2016-12-31|Removed
graphics/linux-f10-glew||2016-12-31|Removed
graphics/linux-f10-ungif||2016-12-31|Removed
graphics/linux-f10-png||2016-12-31|Removed
graphics/linux-f10-tiff||2016-12-31|Removed
graphics/linux-f10-dri||2016-12-31|Removed
graphics/linux-f10-jpeg||2016-12-31|Removed
graphics/linux-f10-libGLU||2016-12-31|Removed
graphics/linux-f10-gdk-pixbuf||2016-12-31|Removed
graphics/linux-f10-libmng||2016-12-31|Removed
graphics/linux-f10-cairo||2016-12-31|Removed
graphics/linux-f10-imlib||2016-12-31|Removed
lang/linux-f10-tcl85||2016-12-31|Removed
lang/linux-f10-libg2c||2016-12-31|Removed
multimedia/linux-f10-libtheora||2016-12-31|Removed
multimedia/linux-f10-libv4l||2016-12-31|Removed
net/linux-f10-openldap||2016-12-31|Removed
net/linux-f10-nss_ldap||2016-12-31|Removed
print/linux-f10-cups-libs||2016-12-31|Removed
security/linux-f10-gnutls||2016-12-31|Removed
security/linux-f10-nss||2016-12-31|Removed
security/linux-f10-openssl||2016-12-31|Removed
security/linux-f10-libgpg-error||2016-12-31|Removed
security/linux-f10-libtasn1||2016-12-31|Removed
security/linux-f10-libgcrypt||2016-12-31|Removed
security/linux-f10-libssh2||2016-12-31|Removed
security/linux-f10-cyrus-sasl2||2016-12-31|Removed
sysutils/linux-f10-procps||2016-12-31|Removed
textproc/linux-f10-aspell||2016-12-31|Removed
textproc/linux-f10-expat||2016-12-31|Removed
textproc/linux-f10-scim-gtk||2016-12-31|Removed
textproc/linux-f10-scim-libs||2016-12-31|Removed
textproc/linux-f10-libxml2||2016-12-31|Removed
x11/linux-f10-xorg-libs||2016-12-31|Removed
x11-fonts/linux-f10-fontconfig||2016-12-31|Removed
x11-themes/linux-f10-qtcurve-gtk2||2016-12-31|Removed
x11-themes/linux-f10-hicolor-icon-theme||2016-12-31|Removed
x11-toolkits/linux-f10-qt45||2016-12-31|Removed
x11-toolkits/linux-f10-gtk2||2016-12-31|Removed
x11-toolkits/linux-f10-openmotif||2016-12-31|Removed
x11-toolkits/linux-f10-pango||2016-12-31|Removed
accessibility/linux-f10-atk||2016-12-31|Removed
archivers/linux-f10-ucl||2016-12-31|Removed
archivers/linux-f10-upx||2016-12-31|Removed
devel/rubygem-devise-async-rails4||2016-12-31|Has expired: Not compatible with devel/rubygem-devise > 3
devel/rubygem-devise-async||2016-12-31|Has expired: Not compatible with devel/rubygem-devise > 3
net/iet||2016-12-31|Has expired: Upstream no longer active
sysutils/geomgui||2016-12-31|Has expired: Development stopped years ago
sysutils/screen-legacy||2016-12-31|Has expired: Old version released 2008-08-07 no longer upline maintained
sysutils/ntfsprogs|sysutils/fusefs-ntfs|2016-12-31|Has expired: Superseded by sysutils/fusefs-ntfs
www/rubygem-jekyll2|www/rubygem-jekyll|2016-12-31|Has expired: Use www/rubygem-jekyll instead
databases/rubygem-dm-devise||2016-12-31|Has expired: Not compatible with devel/rubygem-devise > 3
devel/rubygem-sprockets211||2016-12-31|Has expired: Use devel/rubygem-sprockets or devel/rubygem-sprockets3 instead
devel/p5-Parse-CPAN-Meta||2016-12-31|Has expired: Merged into devel/p5-CPAN-Meta 2.150008
devel/jtag|devel/urjtag|2016-12-31|Has expired: development ceased 2003, superceded by devel/urjtag
x11-toolkits/linux-f10-tk85||2016-12-31|Removed
x11-toolkits/linux-f10-blt||2016-12-31|Removed
net-mgmt/unifi4|net-mgmt/unifi5|2017-01-01|Has expired: EoL as of 2017-01-01
net/py-simplesoap|net/py-pysimplesoap|2017-01-01|Rename to match upstream naming
textproc/docdiff|textproc/rubygem-docdiff|2017-01-02|Rename to match our rubygems naming
databases/rubygem-dm-rails||2017-01-07|Has expired: Depends on deprecated www/rubygem-actionpack
databases/rubygem-activerecord||2017-01-07|Has expired: Upstream support ended
devel/rubygem-activesupport||2017-01-07|Has expired: Upstream support ended
devel/rubygem-tzinfo03|devel/rubygem-tzinfo|2017-01-07|Has expired: Use devel/rubygem-tzinfo instead
devel/rubygem-sprockets22|devel/rubygem-sprockets3|2017-01-07|Has expired: Use devel/rubygem-sprockets or devel/rubygem-sprockets3 instead
devel/rubygem-prototype-rails||2017-01-07|Has expired: Depends on deprecated www/rubygem-rails
devel/rubygem-rubigen||2017-01-07|Has expired: Depends on deprecated devel/rubygem-activesupport
devel/rubygem-coffee-rails||2017-01-07|Has expired: Depends on deprecated www/rubygem-railties
japanese/rubygem-jpmobile||2017-01-07|Has expired: Depends on deprecated rubygem-rails
mail/rubygem-actionmailer||2017-01-07|Has expired: Upstream support ended
mail/rubygem-mail25|mail/rubygem-mail|2017-01-07|Has expired: Use mail/rubygem-mail instead
security/dradis||2017-01-07|Has expired: Depends on deprecated www/rubygem-rails
textproc/rubygem-sass-rails||2017-01-07|Has expired: Depends on deprecated www/rubygem-railties
www/rubygem-rails||2017-01-07|Has expired: Upstream support ended
www/rubygem-activeresource||2017-01-07|Has expired: Upstream support ended
www/rubygem-responders-rails3||2017-01-07|Has expired: Depends on deprecated www/rubygem-railties
www/rubygem-jquery-ui-rails||2017-01-07|Has expired: Depends on deprecated www/rubygem-railties
www/rubygem-haml-rails||2017-01-07|Has expired: Depends on deprecated www/rubygem-actionpack
www/rubygem-jquery-rails||2017-01-07|Has expired: Depends on deprecated www/rubygem-railties
www/rubygem-railties||2017-01-07|Has expired: Upstream support ended
www/rubygem-actionpack||2017-01-07|Has expired: Upstream support ended
databases/rubygem-rubyrep||2017-01-07|Has expired: Depends on deprecated databases/rubygem-activerecord
databases/rubygem-activerecord-mysql-adapter||2017-01-07|Has expired: Depends on deprecated databases/rubygem-activerecord
databases/rubygem-dm-active_model||2017-01-07|Has expired: Depends on deprecated databases/rubygem-activemodel
databases/rubygem-activemodel||2017-01-07|Has expired: Upstream support ended
math/libproj4|math/proj.4|2017-01-07|Project was renamed
math/proj.4||2017-01-07|math/libproj4 was already duplicated as graphics/proj
devel/rubygem-actionview|devel/rubygem-actionview4|2017-01-08|Rename to match our Rails ports naming
devel/rubygem-rdoc3|devel/rubygem-rdoc|2017-01-08|Has expired: Older version no longer required
devel/rubygem-activejob|devel/rubygem-activejob4|2017-01-08|Rename to match our Rails ports naming
www/httpie|www/py-httpie|2017-01-09|Renamed to match upstream (PyPI) name
sysutils/istatd|sysutils/istatserver|2017-01-09|Project was renamed
devel/py-gflags|devel/py-python-gflags|2017-01-10|Rename to match PyPI naming
java/wildfly100|java/wildfly10|2017-01-10|Remove minor version number from port name
net/cyphesis||2017-01-15|Has expired: Does not compile on FreeBSD 10+
net/gpxe||2017-01-15|Has expired: does not build on FreeBSD 10.x and later
net/openospfd||2017-01-15|Has expired: requires old CARP implementation (interface layer)
security/openbsm-devel||2017-01-15|Has expired: is not needed under FreeBSD 10.x or higher
security/ssh-copy-id||2017-01-15|Has expired: is already in the base system
sysutils/apt||2017-01-15|Has expired: does not build on 10+
archivers/tclmkziplib||2017-01-15|Has expired: Abandonware, please use bundled zlib package [http://tcl.tk/man/tcl8.6/TclCmd/zlib.htm]
x11-drivers/drm-kmod||2017-01-15|Has expired: this port is only for 9.3 systems
audio/xmms-openspc||2017-01-15|Has expired: does not build on FreeBSD 10.x and later
audio/aureal-kmod||2017-01-15|Has expired: does not build (and fetch)
emulators/doscmd||2017-01-15|Has expired: does not build (accesses field of opaque structure)
sysutils/fusefs-kmod||2017-01-15|Has expired: integrated into base
textproc/aiksaurus-gtk||2017-01-15|Has expired: does not link against GTK2 on FreeBSD 10+
net/rwhoisd||2017-01-22|Has expired: No more public distfiles
devel/bunny||2017-01-22|Has expired: Superseded by a different project
www/pligg||2017-01-22|Has expired: Abandonware
x11-drivers/xf86-video-fbdev||2017-01-22|Linux only driver
net/librsync1|net/librsync2|2017-01-24|Port renamed to librsync2
databases/ruby-rdbc1||2017-01-28|Has expired: Upstream no longer active
databases/ruby-sybct||2017-01-28|Has expired: Upstream no longer active
databases/ruby-o_dbm||2017-01-28|Has expired: Upstream no longer active
databases/ruby-cdb||2017-01-28|Has expired: Upstream no longer active
devel/ruby-rbison||2017-01-28|Has expired: Does not work on modern ruby
devel/ruby-property||2017-01-28|Has expired: Upstream no longer exists
devel/ruby-dialogs||2017-01-28|Has expired: Upstream no longer active
devel/ruby-byaccr||2017-01-28|Has expired: Upstream no longer active
devel/ruby-aspectr|devel/rubygem-aspectr|2017-01-28|Has expired: Use rubygem-aspectr instead
devel/ruby-locale||2017-01-28|Has expired: No longer useful
devel/ruby-wirble||2017-01-28|Has expired: Upstream no longer active
devel/ruby-tzfile||2017-01-28|Has expired: Upstream no longer exists
devel/ruby-rreadline||2017-01-28|Has expired: Upstream no longer exists
devel/ruby-intl|devel/rubygem-gettext|2017-01-28|Has expired: Use devel/rubygem-gettext instead
graphics/ruby-imlib2||2017-01-28|Has expired: Upstream no longer active
graphics/ruby-image_size||2017-01-28|Has expired: Upstream no longer active
graphics/ruby-svg|graphics/rubygem-rsvg2|2017-01-28|Has expired: Use graphics/rubygem-rsvg2 instead
irc/ruby-rice||2017-01-28|Has expired: Upstream no longer active
irc/ruby-rica||2017-01-28|Has expired: Upstream no longer active
irc/ruby-irc||2017-01-28|Has expired: Upstream no longer active
japanese/ruby-usersguide||2017-01-28|Has expired: Does not exist upstream
japanese/ruby-mecab||2017-01-28|Has expired: Upstream no longer active
mail/ruby-rmail||2017-01-28|Has expired: Upstream no longer active
mail/ruby-rfilter||2017-01-28|Has expired: Upstream no longer active
math/ruby-algebra|math/rubygem-algebra|2017-01-28|Has expired: Use rubygem-algebra instead
net/ruby-tserver||2017-01-28|Has expired: Upstream no longer active
net/ruby-tcpsocketpipe||2017-01-28|Has expired: Upstream no longer active
net/ruby-icmp||2017-01-28|Has expired: Upstream no longer active
net/ruby-dict||2017-01-28|Has expired: Upstream no longer active
palm/palmos-sdk||2017-01-28|Has expired: Upstream no longer exists
security/ruby-hmac|security/rubygem-ruby-hmac|2017-01-28|Has expired: Use www/rubygem-ruby-hmac instead
security/ruby-tcpwrap||2017-01-28|Has expired: Upstream no longer active
security/ruby-password||2017-01-28|Has expired: Upstream no longer active
sysutils/ruby-quota||2017-01-28|Has expired: Upstream no longer active
textproc/ruby-rss.alt||2017-01-28|Has expired: Upstream no longer active
textproc/ruby-rss||2017-01-28|Has expired: Upstream no longer exists
textproc/ruby-htmlrepair||2017-01-28|Has expired: Upstream no longer exists
textproc/ruby-xmlscan||2017-01-28|Has expired: Upstream no longer active
textproc/ruby-xml-configfile||2017-01-28|Has expired: Upstream no longer exists
textproc/ruby-htmlsplit||2017-01-28|Has expired: Upstream no longer exists
www/ruby-google||2017-01-28|Has expired: Upstream no longer active
archivers/ruby-lha||2017-01-28|Has expired: Upstream no longer active
x11/ruby-X11||2017-01-28|Has expired: Upstream no longer active
audio/ruby-audiofile||2017-01-28|Has expired: Broken on modern versions of Ruby
audio/ruby-mp3tag||2017-01-28|Has expired: Upstream no longer active
converters/ruby-dump.rb||2017-01-28|Has expired: Upstream no longer active
x11-servers/wayland|graphics/wayland|2017-01-30|Better location for wayland
graphics/hsetroot|x11/hsetroot|2017-01-31|Moved to a better category
x11-themes/linux-c6-hicolor-icon-theme||2017-01-31|Merged into linux_base port
x11-themes/linux-c7-hicolor-icon-theme||2017-01-31|Merged into linux_base port
x11-themes/linux-hicolor-icon-theme||2017-01-31|Merged into linux_base port
audio/linux-c6-arts||2017-01-31|Old KDE3 component
audio/linux-c6-esound||2017-01-31|Old sound daemon
audio/linux-c7-esound||2017-01-31|Old sound daemon
audio/linux-c6-openssl-compat||2017-01-31|Old OpenSSL
audio/linux-c7-openssl-compat||2017-01-31|Old OpenSSL
databases/rubygem-arel3|databases/rubygem-arel|2017-01-31|Has expired: Use devel/rubygem-arel or devel/rubygem-arel6 instead
databases/rubygem-arel5|databases/rubygem-arel|2017-01-31|Has expired: Use devel/rubygem-arel or devel/rubygem-arel6 instead
www/tinymce3|www/tinymce|2017-01-31|Has expired: Use www/tinymce instead
devel/p5-IO-Detect|devel/p5-Scalar-Does|2017-01-31|Has expired: Use devel/p5-Scalar-Does instead
devel/pear-PHPUnit3|devel/phpunit|2017-01-31|Has expired: Deprecated by upstream, use devel/phpunit instead
devel/rubygem-bio|biology/rubygem-bio|2017-02-05|Move to a better place
devel/libcheck|devel/check|2017-02-05|Rename to match upstream naming
devel/p5-JIRA-Client||2017-02-05|Has expired: Deprecated by upstream due to deprecated JIRA's SOAP API
sysutils/puppet37||2017-02-05|Has expired: Upstream support ended, see http://tinyurl.com/puppet3eol
net-im/ttytter||2017-02-05|Has expired: Upstream no longer active, see net-im/oysttyer
java/jboss7||2017-02-07|Has expired: Unsupported, replaced by wildfly
java/jboss71||2017-02-07|Has expired: Unsupported, replaced by wildfly
java/jboss72||2017-02-07|Has expired: Unsupported, replaced by wildfly
misc/teslams||2017-02-08|Has expired: Broken for more than 6 months
devel/libdict||2017-02-08|Has expired: Broken for more than 6 months
math/R-cran-SuppDists||2017-02-08|Has expired: Broken for more than 6 months
devel/py-re2||2017-02-08|Has expired: Broken for more than 6 months
net-p2p/digitalcoin||2017-02-08|Has expired: Broken for more than 6 months
devel/php70-APCu|devel/pecl-APCu|2017-02-12|Use devel/pecl-APCu for PHP 7.0+ users
chinese/mutt|mail/mutt|2017-02-13|Use mail/mutt, which can handle Chinese locales
lang/libjit||2017-02-14|Has expired: This version is severely out of date and its use is discouraged; see http://www.gnu.org/software/libjit/
databases/php56-redis|databases/pecl-redis|2017-02-15|Merged with latest codebase that supports all php versions
databases/php70-redis|databases/pecl-redis|2017-02-15|Merged with latest codebase that supports all php versions
databases/php71-redis|databases/pecl-redis|2017-02-15|Merged with latest codebase that supports all php versions
+devel/dbus-qt4|devel/qt4-dbus|2017-02-18|Renamed to match other Qt ports
+devel/dbus-qt5|devel/qt5-dbus|2017-02-18|Renamed to match other Qt ports
+devel/qmake4|devel/qt4-qmake|2017-02-18|Renamed to match other Qt ports
+devel/qmake5|devel/qt5-qmake|2017-02-18|Renamed to match other Qt ports
+textproc/clucene-qt4|textproc/qt4-clucene|2017-02-18|Renamed to match other Qt ports
+www/webkit-qt4|www/qt4-webkit|2017-02-18|Renamed to match other Qt ports
+www/webkit-qt5|www/qt5-webkit|2017-02-18|Renamed to match other Qt ports
Index: head/Mk/bsd.qt.mk
===================================================================
--- head/Mk/bsd.qt.mk (revision 434379)
+++ head/Mk/bsd.qt.mk (revision 434380)
@@ -1,725 +1,779 @@
#-*- tab-width: 4; -*-
# ex:ts=4
#
# $FreeBSD$
#
# Port variables:
# USE_QT* - List of Qt modules to depend on, with optional '_build'
# and '_run' suffixes. Define it empty to include this file
# without depending on Qt ports.
# QT_DIST - The port belongs to the Qt distribution. Set to 'yes' for
# Qt 4, or to the distribution name(s) for newer versions.
# QT_NONSTANDARD - Suppress modification of configure and make environment.
#
# Global switches (for inclusion into /etc/make.conf):
# QT4_OPTIONS - A list of (Qt 4-only) global options; can be CUPS, NAS
# and/or QGTKSTYLE. If set, Qt will be built with support
# for:
# * Common UNIX Printing System (CUPS);
# * Network Audio System (NAS);
# * GTK+-based Qt theme (QGTKSTYLE).
.if !defined(_POSTMKINCLUDED) && !defined(Qt_Pre_Include)
Qt_Include_MAINTAINER= kde@FreeBSD.org
Qt_Pre_Include= bsd.qt.mk
# Qt versions currently supported by the framework.
_QT_SUPPORTED?= 4 5
QT4_VERSION?= 4.8.7
-QT5_VERSION?= 5.6.2
+QT5_VERSION?= 5.7.1
_QT_RELNAME= qt${_QT_VERSION:R:R}
_QT_VERSION= # empty
.for ver in ${_QT_SUPPORTED}
. if defined(USE_QT${ver})
. if empty(_QT_VERSION)
_QT_VERSION= ${QT${ver}_VERSION}
. else
# Reject different USE_QT*.
IGNORE?= can't be installed: different Qt versions specified via USE_QT[${_QT_SUPPORTED:S/ //g}] #'
. endif
. endif
.endfor
.if empty(_QT_VERSION)
# The file was included without USE_QT*.
IGNORE?= can't be installed: bsd.qt.mk may only be included via USE_QT[${_QT_SUPPORTED:S/ //g}] #'
.endif
.if defined(QT_DIST)
QT_NONSTANDARD= yes
MASTER_SITES= ${MASTER_SITE_QT}
-# Useless, as it must be defined before including bsd.port.pre.mk (at least
-# because of bsd.options.mk).
-#PKGNAMEPREFIX?= ${_QT_RELNAME}-
DISTINFO_FILE?= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/distinfo
LICENSE?= LGPL21
. if !exists(${PKGDIR}/pkg-descr)
DESCR?= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/pkg-descr
. endif
# Stage support.
DESTDIRNAME= INSTALL_ROOT
. if ${_QT_VERSION:M4*}
MASTER_SITE_SUBDIR?= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/
DISTNAME= qt-everywhere-opensource-src-${_QT_VERSION}
DIST_SUBDIR= KDE
. else
MASTER_SITE_SUBDIR?= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/submodules/
DISTNAME= ${QT_DIST:S,^,qt,:S,$,-opensource-src-${DISTVERSION},}
DISTFILES= ${DISTNAME:S,$,${EXTRACT_SUFX},}
DIST_SUBDIR= KDE/Qt/${_QT_VERSION}
USES+= tar:xz
# Qt (at least when used with qmake) has a tendency to overlink: some libraries
# have dependencies on others in the mkspec configurations and the latter are
# always passed to the linker even if they are not actually used. By passing
# --as-needed to the linker by default when building the Qt ports we do not
# have to declare a lot of unnecessary dependencies in USE_QT5.
# This could arguably work for Qt4 too, but since it is maintenance mode it is
# better not to fix what is not explicitly broken there.
LDFLAGS+= -Wl,--as-needed
. if ${.TARGETS:Mmakesum} || ${.TARGETS:Mfetch} && \
defined(DISABLE_SIZE) && defined(NO_CHECKSUM)
# Ensure that the "makesum" target (with its inner "fetch" one) uses
# devel/qt*/distinfo for every port.
. if ${DISTINFO_FILE:H} == ${.CURDIR:H:H}/devel/${_QT_RELNAME}
-QT_DIST= 3d base canvas3d connectivity declarative graphicaleffects imageformats \
- location multimedia quickcontrols quickcontrols2 script sensors serialbus serialport svg tools \
- translations webchannel websockets x11extras xmlpatterns
+QT_DIST= 3d base canvas3d charts connectivity datavis3d declarative \
+ declarative-render2d gamepad graphicaleffects imageformats \
+ location multimedia quickcontrols quickcontrols2 script scxml \
+ sensors serialbus serialport svg tools translations \
+ virtualkeyboard webchannel webkit websockets x11extras \
+ xmlpatterns
. endif
. endif
. if ${QT_DIST} == "base" && ${PORTNAME} != "qmake"
# Qt configure requires pkg-config to detect dependencies.
USES+= pkgconfig
# Set QMAKESPEC when building qtbase so that qmake (called by the configure
# script) can find the mkspecs we create ourselves in devel/qmake5.
CONFIGURE_ENV+= QMAKESPEC="${QMAKESPEC}"
MAKE_ENV+= QMAKESPEC="${QMAKESPEC}"
. endif
# -nomake is only used by qtbase's configure script.
# Other ports from other Qt modules will automatically build examples and
# tests if the directories exist because of mkspecs/features/qt_parts.prf.
EXTRACT_AFTER_ARGS?= ${DISTNAME:S,$,/examples,:S,^,--exclude ,} \
${DISTNAME:S,$,/tests,:S,^,--exclude ,}
. endif # ! ${_QT_VERSION:M4*}
CONFIGURE_ENV+= MAKE="${MAKE:T}"
CONFIGURE_ARGS+=-opensource -confirm-license \
-platform ${QMAKESPEC} \
-no-pch \
-prefix ${PREFIX} \
-bindir ${PREFIX}/${QT_BINDIR_REL} \
-headerdir ${PREFIX}/${QT_INCDIR_REL} \
-libdir ${PREFIX}/${QT_LIBDIR_REL} \
-plugindir ${PREFIX}/${QT_PLUGINDIR_REL} \
-importdir ${PREFIX}/${QT_IMPORTDIR_REL} \
-datadir ${PREFIX}/${QT_DATADIR_REL} \
-docdir ${PREFIX}/${QT_DOCDIR_REL} \
-translationdir ${PREFIX}/${QT_L10NDIR_REL} \
-sysconfdir ${PREFIX}/${QT_ETCDIR_REL}
. if ${_QT_VERSION:M4*}
CONFIGURE_ARGS+=-fast \
-system-libjpeg -system-libpng \
-system-libmng -system-libtiff -system-zlib \
-no-phonon-backend \
-examplesdir ${PREFIX}/${QT_EXAMPLEDIR_REL}/examples \
-demosdir ${PREFIX}/${QT_EXAMPLEDIR_REL}/demos
. else
CONFIGURE_ARGS+=-nomake examples -nomake tests \
-archdatadir ${PREFIX}/${QT_ARCHDIR_REL} \
-libexecdir ${PREFIX}/${QT_LIBEXECDIR_REL} \
-qmldir ${PREFIX}/${QT_QMLDIR_REL} \
-examplesdir ${PREFIX}/${QT_EXAMPLEDIR_REL} \
-testsdir ${PREFIX}/${QT_TESTDIR_REL}
. if ${ARCH} == i386 && empty(MACHINE_CPU:Msse2)
CONFIGURE_ARGS+=-no-sse2
. endif
+
. endif
. if defined(WANT_QT_DEBUG) || defined(WITH_DEBUG)
WITH_DEBUG= yes
STRIP= # It's done prior to bsd.qt.mk inclusion.
CONFIGURE_ARGS+=-debug -separate-debug-info
# Override configuration in global qconfig.pri.
QMAKE_ARGS+= QT_CONFIG+="debug separate_debug_info" \
QT_CONFIG-="release"
PLIST_SUB+= DEBUG=""
. else
CONFIGURE_ARGS+=-release -no-separate-debug-info
QMAKE_ARGS+= QT_CONFIG+="release" \
QT_CONFIG-="debug separate_debug_info"
PLIST_SUB+= DEBUG="@comment "
. endif
. if defined(WANT_QT_VERBOSE_CONFIGURE)
CONFIGURE_ARGS+=-verbose
. endif
. if ${QT_DIST} == "base" || ${_QT_VERSION:M4*}
. 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
. else
-_EXTRA_PATCHES_QT5= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-src_corelib_global_qcompilerdetection.h \
+_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
. endif
EXTRA_PATCHES?= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-configure \
${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-config.tests-unix-compile.test \
${_EXTRA_PATCHES_QT4} ${_EXTRA_PATCHES_QT5}
. endif
# Override settings installed in qconfig.h and *.pri files. The flags will be
# installed along with the port, but have to be passed as arguments while
# building the port itself. Flags prefixed with "-" (e.g., "-CUPS" and "-cups")
# are needed to disable some features.
. if !defined(${QT_MODNAME}) || empty(${QT_MODNAME})
# Used for both qconfig-*.h and qt_config_*.pri; it can't be empty.
QT_MODNAME= ${PORTNAME}
. endif
QT_DEFINES?= # For qconfig.h flags (without "QT_" prefix).
QT_CONFIG?= # For *.pri files QT_CONFIG flags.
. if ${QT_DEFINES}
QMAKE_ARGS+= DEFINES+="${QT_DEFINES:O:u:C/^([^-])/QT_\1/:C/^-/QT_NO_/:O}"
. if ${QT_DEFINES:N-*}
# Use a script to cleanup qconfig-modules.h (see qt-post-install).
PKGDEINSTALL= ${WRKDIR}/pkg-deinstall
. endif
. endif
. if ${QT_CONFIG:N-*}
QMAKE_ARGS+= QT_CONFIG+="${QT_CONFIG:N-*:O:u}"
. endif
. if ${QT_CONFIG:M-*}
QMAKE_ARGS+= QT_CONFIG-="${QT_CONFIG:M-*:O:u:C/^-//}"
. endif
+# Add a RUN_DEPENDS on misc/qtchooser to select the binaries.
+# The binaries of both supported Qt versions are installed to
+# ${LOCALBASE}/lib/qt[45]/bin. The port misc/qtchooser installs
+# wrapper binaries into ${LOCALBASE}/bin, and chooses the correct
+# one depending on the value of QT_SELECT (which we pass to both
+# CONFIGURE_ENV and MAKE_ENV). Therefore make all QT_DIST ports
+# RUN_DEPEND on it.
+RUN_DEPENDS+= qtchooser:misc/qtchooser
+
PLIST_SUB+= SHORTVER=${DISTVERSION:R} \
FULLVER=${DISTVERSION:C/-.*//}
.endif # defined(QT_DIST)
-.if ${_QT_VERSION:M4*}
-QT_BINDIR_REL?= bin
-QT_LIBDIR_REL?= lib/${_QT_RELNAME}
-QT_PLUGINDIR_REL?= ${QT_LIBDIR_REL}/plugins
-QT_IMPORTDIR_REL?= ${QT_LIBDIR_REL}/imports
-.endif
-
# A wrapper (qtchooser) is used to invoke binaries.
QT_BINDIR_REL?= ${QT_ARCHDIR_REL}/bin
QT_INCDIR_REL?= include/${_QT_RELNAME}
-QT_LIBDIR_REL?= lib
-QT_ARCHDIR_REL?=${QT_LIBDIR_REL}/${_QT_RELNAME}
+QT_LIBDIR_REL?= lib/${_QT_RELNAME}
+QT_ARCHDIR_REL?=${QT_LIBDIR_REL}
QT_PLUGINDIR_REL?= ${QT_ARCHDIR_REL}/plugins
QT_LIBEXECDIR_REL?= libexec/${_QT_RELNAME}
QT_IMPORTDIR_REL?= ${QT_ARCHDIR_REL}/imports
QT_QMLDIR_REL?= ${QT_ARCHDIR_REL}/qml
QT_DATADIR_REL?=share/${_QT_RELNAME}
QT_DOCDIR_REL?= share/doc/${_QT_RELNAME}
QT_L10NDIR_REL?=${QT_DATADIR_REL}/translations
QT_ETCDIR_REL?= etc/xdg
QT_EXAMPLEDIR_REL?= share/examples/${_QT_RELNAME}
QT_TESTDIR_REL?=${QT_DATADIR_REL}/tests
+QT_CMAKEDIR_REL?= lib/cmake
+QT_QTCHOOSERDIR_REL?= ${QT_ETCDIR_REL}/qtchooser
# Not customizable.
.if ${_QT_VERSION:M4*}
QT_MKSPECDIR_REL= ${QT_DATADIR_REL}/mkspecs
_QT_LIBVER= # empty
-_QT_BINSUFX= -${_QT_RELNAME}
.else
QT_MKSPECDIR_REL= ${QT_ARCHDIR_REL}/mkspecs
_QT_LIBVER= ${_QT_VERSION:R:R}
-_QT_BINSUFX= # empty
.endif
-LRELEASE?= ${QT_BINDIR}/lrelease${_QT_BINSUFX}
-LUPDATE?= ${QT_BINDIR}/lupdate${_QT_BINSUFX}
-MOC?= ${QT_BINDIR}/moc${_QT_BINSUFX}
+LRELEASE?= ${QT_BINDIR}/lrelease
+LUPDATE?= ${QT_BINDIR}/lupdate
+MOC?= ${QT_BINDIR}/moc
RCC?= ${QT_BINDIR}/rcc
-UIC?= ${QT_BINDIR}/uic${_QT_BINSUFX}
-QMAKE?= ${QT_BINDIR}/qmake${_QT_BINSUFX}
+UIC?= ${QT_BINDIR}/uic
+QMAKE?= ${QT_BINDIR}/qmake
# Needed to redefine the qmake target for internal Qt configuration.
_QMAKE?= ${QMAKE}
QMAKESPEC?= ${QT_MKSPECDIR}/freebsd-${QMAKE_COMPILER}
# The whole Qt distribution should be built with the same compiler, but it's
# better to support custom settings. Dereferencing the detection allows to
# avoid forking a shell on each inclusion of this file, and to catch any CXX
# customization (via USE_GCC, etc.).
QMAKE_COMPILER= $$(ccver="$$(${CXX} --version)"; case "$$ccver" in *clang*) echo clang ;; *) echo g++ ;; esac)
# Import QMAKE_ENV and QMAKE_ARGS definitions.
USES+= qmake:_env
-.for dir in INC ARCH PLUGIN LIBEXEC IMPORT \
- QML DATA DOC L10N ETC EXAMPLE TEST MKSPEC
+.for dir in BIN INC LIB ARCH PLUGIN LIBEXEC IMPORT \
+ QML DATA DOC L10N ETC EXAMPLE TEST MKSPEC \
+ CMAKE QTCHOOSER
QT_${dir}DIR= ${PREFIX}/${QT_${dir}DIR_REL}
+# Export all directories to the plist substituion for QT_DIST ports.
+# For the others, exclude QT_CMAKEDIR and QT_ETCDIR.
+. if (${dir:NCMAKE} && ${dir:NETC}) || defined(QT_DIST)
PLIST_SUB+= QT_${dir}DIR="${QT_${dir}DIR_REL}"
-.endfor
-
-.for dir in BIN LIB
-QT_${dir}DIR= ${PREFIX}/${QT_${dir}DIR_REL}
-. if defined(QT_DIST)
-PLIST_SUB+= QT_${dir}DIR="${QT_${dir}DIR_REL}"
. endif
.endfor
+# Pass the chosen Qt version to the environment for qtchooser.
+CONFIGURE_ENV+= QT_SELECT=${_QT_RELNAME}
+MAKE_ENV+= QT_SELECT=${_QT_RELNAME}
+
.endif # !defined(_POSTMKINCLUDED) && !defined(Qt_Pre_Include)
.if defined(_POSTMKINCLUDED) && !defined(Qt_Post_Include)
Qt_Post_Include= bsd.qt.mk
.if !defined(QT_NONSTANDARD)
-CONFIGURE_ENV+= QTDIR="${PREFIX}" QMAKE="${QMAKE}" \
+CONFIGURE_ENV+= QTDIR="${QT_ARCHDIR}" QMAKE="${QMAKE}" \
MOC="${MOC}" RCC="${RCC}" UIC="${UIC}" \
QMAKESPEC="${QMAKESPEC}"
CONFIGURE_ARGS+=--with-qt-includes=${QT_INCDIR} \
--with-qt-libraries=${QT_LIBDIR} \
--with-extra-includes=${LOCALBASE}/include \
--with-extra-libs=${LOCALBASE}/lib
.endif # !defined(QT_NONSTANDARD)
_USE_QT_ALL= assistant dbus declarative designer doc gui help \
imageformats l10n linguist linguisttools multimedia \
network opengl pixeltool qdbusviewer qmake script \
scripttools sql sql-ibase sql-mysql sql-odbc sql-pgsql \
sql-sqlite2 sql-sqlite3 svg testlib webkit \
xml xmlpatterns
_USE_QT4_ONLY= accessible assistant-adp assistantclient clucene codecs-cn codecs-jp \
codecs-kr codecs-tw corelib demo graphicssystems-opengl \
help-tools iconengines inputmethods makeqpf moc phonon \
phonon-gst porting qdoc3 qmlviewer qt3support qtconfig \
qtestlib qvfb rcc uic uic3 xmlpatterns-tool
-_USE_QT5_ONLY= 3d buildtools canvas3d concurrent connectivity core \
- examples graphicaleffects location paths phonon4 \
- printsupport qdbus qdoc qdoc-data qev qml quick quickcontrols \
- quickcontrols2 sensors serialbus serialport sql-tds \
- uiplugin uitools webchannel websockets widgets x11extras
+_USE_QT5_ONLY= 3d buildtools canvas3d charts concurrent connectivity \
+ core datavis3d declarative-render2d examples gamepad \
+ graphicaleffects location paths phonon4 printsupport \
+ qdbus qdoc qdoc-data qev qml quick quickcontrols \
+ quickcontrols2 scxml sensors serialbus serialport \
+ sql-tds uiplugin uitools virtualkeyboard webchannel \
+ websockets widgets x11extras
3d_PORT= graphics/${_QT_RELNAME}-3d
3d_LIB= libQt${_QT_LIBVER}3DCore.so
accessible_PORT= accessibility/${_QT_RELNAME}-accessible
accessible_PATH= ${QT_PLUGINDIR}/accessible/libqtaccessiblewidgets.so
assistant_PORT= devel/${_QT_RELNAME}-assistant
-assistant_PATH= ${QT_BINDIR}/assistant${_QT_BINSUFX}
+assistant_PATH= ${QT_BINDIR}/assistant
assistant-adp_PORT= devel/${_QT_RELNAME}-assistant-adp
-assistant-adp_PATH= ${QT_BINDIR}/assistant_adp
+assistant-adp_PATH= ${PREFIX}/bin/assistant_adp
assistantclient_PORT= devel/${_QT_RELNAME}-libqtassistantclient
assistantclient_LIB= libQt${_QT_LIBVER}AssistantClient.so
buildtools_PORT= devel/${_QT_RELNAME}-buildtools
buildtools_PATH= ${MOC}
canvas3d_PORT= x11-toolkits/${_QT_RELNAME}-canvas3d
canvas3d_PATH= ${QT_QMLDIR}/QtCanvas3D/qmldir
-clucene_PORT= textproc/clucene-${_QT_RELNAME}
+charts_PORT= x11-toolkits/${_QT_RELNAME}-charts
+charts_LIB= libQt${_QT_LIBVER}Charts.so
+
+clucene_PORT= textproc/${_QT_RELNAME}-clucene
clucene_LIB= libQt${_QT_LIBVER}CLucene.so
codecs-cn_PORT= chinese/${_QT_RELNAME}-codecs-cn
codecs-cn_PATH= ${QT_PLUGINDIR}/codecs/libqcncodecs.so
codecs-jp_PORT= japanese/${_QT_RELNAME}-codecs-jp
codecs-jp_PATH= ${QT_PLUGINDIR}/codecs/libqjpcodecs.so
codecs-kr_PORT= korean/${_QT_RELNAME}-codecs-kr
codecs-kr_PATH= ${QT_PLUGINDIR}/codecs/libqkrcodecs.so
codecs-tw_PORT= chinese/${_QT_RELNAME}-codecs-tw
codecs-tw_PATH= ${QT_PLUGINDIR}/codecs/libqtwcodecs.so
concurrent_PORT= devel/${_QT_RELNAME}-concurrent
concurrent_LIB= libQt${_QT_LIBVER}Concurrent.so
connectivity_PORT= comms/${_QT_RELNAME}-connectivity
connectivity_LIB= libQt${_QT_LIBVER}Bluetooth.so
core_PORT= devel/${_QT_RELNAME}-core
core_LIB= libQt${_QT_LIBVER}Core.so
corelib_PORT= devel/${_QT_RELNAME}-corelib
corelib_LIB= ${core_LIB}
-dbus_PORT= devel/dbus-${_QT_RELNAME}
+datavis3d_PORT= x11-toolkits/${_QT_RELNAME}-datavis3d
+datavis3d_LIB= libQt${_QT_LIBVER}DataVisualization.so
+
+dbus_PORT= devel/${_QT_RELNAME}-dbus
dbus_LIB= libQt${_QT_LIBVER}DBus.so
declarative_PORT= x11-toolkits/${_QT_RELNAME}-declarative
declarative_LIB= libQt${_QT_LIBVER}Declarative.so
+declarative-render2d_PORT= x11-toolkits/${_QT_RELNAME}-declarative-render2d
+declarative-render2d_PATH= ${QT_PLUGINDIR}/scenegraph/libsoftwarecontext.so
+
demo_PORT= misc/${_QT_RELNAME}-qtdemo
demo_PATH= ${QT_BINDIR}/qtdemo
designer_PORT= devel/${_QT_RELNAME}-designer
-designer_PATH= ${QT_BINDIR}/designer${_QT_BINSUFX}
+designer_PATH= ${QT_BINDIR}/designer
doc_PORT= misc/${_QT_RELNAME}-doc
doc_PATH= ${_QT_RELNAME}-doc>=${_QT_VERSION:R:R}
examples_PORT= misc/${_QT_RELNAME}-examples
examples_PATH= ${_QT_RELNAME}-examples>=${_QT_VERSION:R:R}
+gamepad_PORT= x11-toolkits/${_QT_RELNAME}-gamepad
+gamepad_LIB= libQt${_QT_LIBVER}Gamepad.so
+
graphicaleffects_PORT= graphics/${_QT_RELNAME}-graphicaleffects
graphicaleffects_PATH= ${QT_QMLDIR}/QtGraphicalEffects/qmldir
graphicssystems-opengl_PORT= x11/${_QT_RELNAME}-graphicssystems-opengl
graphicssystems-opengl_PATH= ${QT_PLUGINDIR}/graphicssystems/libqglgraphicssystem.so
gui_PORT= x11-toolkits/${_QT_RELNAME}-gui
gui_LIB= libQt${_QT_LIBVER}Gui.so
help_PORT= devel/${_QT_RELNAME}-help
help_LIB= libQt${_QT_LIBVER}Help.so
help-tools_PORT= devel/${_QT_RELNAME}-help-tools
help-tools_PATH= ${QT_BINDIR}/qhelpgenerator
iconengines_PORT= graphics/${_QT_RELNAME}-iconengines
iconengines_PATH= ${QT_PLUGINDIR}/iconengines/libqsvgicon.so
imageformats_PORT= graphics/${_QT_RELNAME}-imageformats
imageformats_PATH= ${QT_PLUGINDIR}/imageformats/libqtiff.so
inputmethods_PORT= x11/${_QT_RELNAME}-inputmethods
inputmethods_PATH= ${QT_PLUGINDIR}/inputmethods/libqimsw-multi.so
linguist_PORT= devel/${_QT_RELNAME}-linguist
-linguist_PATH= ${QT_BINDIR}/linguist${_QT_BINSUFX}
+linguist_PATH= ${QT_BINDIR}/linguist
linguisttools_PORT= devel/${_QT_RELNAME}-linguisttools
linguisttools_PATH= ${LRELEASE}
location_PORT= devel/${_QT_RELNAME}-location
location_LIB= libQt${_QT_LIBVER}Location.so
l10n_PORT= misc/${_QT_RELNAME}-l10n
l10n_PATH= ${_QT_RELNAME}-l10n>=${_QT_VERSION:R:R}
makeqpf_PORT= devel/${_QT_RELNAME}-makeqpf
-makeqpf_PATH= ${QT_BINDIR}/makeqpf${_QT_BINSUFX}
+makeqpf_PATH= ${QT_BINDIR}/makeqpf
moc_PORT= devel/${_QT_RELNAME}-moc
moc_PATH= ${MOC}
multimedia_PORT= multimedia/${_QT_RELNAME}-multimedia
multimedia_LIB= libQt${_QT_LIBVER}Multimedia.so
network_PORT= net/${_QT_RELNAME}-network
network_LIB= libQt${_QT_LIBVER}Network.so
opengl_PORT= graphics/${_QT_RELNAME}-opengl
opengl_LIB= libQt${_QT_LIBVER}OpenGL.so
paths_PORT= sysutils/${_QT_RELNAME}-qtpaths
paths_PATH= ${QT_BINDIR}/qtpaths
pixeltool_PORT= graphics/${_QT_RELNAME}-pixeltool
pixeltool_PATH= ${QT_BINDIR}/pixeltool
phonon_PORT= multimedia/phonon
phonon_LIB= libphonon.so
phonon4_PORT= multimedia/${_QT_RELNAME}-phonon4
phonon4_LIB= libphonon4${_QT_RELNAME}.so
phonon-gst_PORT= multimedia/phonon-gstreamer
phonon-gst_PATH= ${QT_PLUGINDIR}/phonon_backend/libphonon_gstreamer.so
porting_PORT= devel/${_QT_RELNAME}-porting
porting_PATH= ${QT_BINDIR}/qt3to4
printsupport_PORT= print/${_QT_RELNAME}-printsupport
printsupport_LIB= libQt${_QT_LIBVER}PrintSupport.so
qdbus_PORT= devel/${_QT_RELNAME}-qdbus
qdbus_PATH= ${QT_BINDIR}/qdbus
qdbusviewer_PORT= devel/${_QT_RELNAME}-qdbusviewer
qdbusviewer_PATH= ${QT_BINDIR}/qdbusviewer
qdoc_PORT= devel/${_QT_RELNAME}-qdoc
qdoc_PATH= ${QT_BINDIR}/qdoc
qdoc-data_PORT= devel/${_QT_RELNAME}-qdoc-data
qdoc-data_PATH= ${QT_DOCDIR}/global/config.qdocconf
qdoc3_PORT= devel/${_QT_RELNAME}-qdoc3
qdoc3_PATH= ${QT_BINDIR}/qdoc3
qev_PORT= x11/${_QT_RELNAME}-qev
qev_PATH= ${QT_BINDIR}/qev
-qmake_PORT= devel/qmake${_QT_VERSION:R:R}
+qmake_PORT= devel/${_QT_RELNAME}-qmake
qmake_PATH= ${QMAKE}
qml_PORT= lang/${_QT_RELNAME}-qml
qml_LIB= libQt${_QT_LIBVER}Qml.so
qmlviewer_PORT= devel/${_QT_RELNAME}-qmlviewer
qmlviewer_PATH= ${QT_BINDIR}/qmlviewer
qt3support_PORT= devel/${_QT_RELNAME}-qt3support
qt3support_LIB= libQt${_QT_LIBVER}3Support.so
qtconfig_PORT= misc/${_QT_RELNAME}-qtconfig
-qtconfig_PATH= ${QT_BINDIR}/qtconfig${_QT_BINSUFX}
+qtconfig_PATH= ${QT_BINDIR}/qtconfig
qtestlib_PORT= ${testlib_PORT}
qtestlib_LIB= ${testlib_LIB}
quick_PORT= x11-toolkits/${_QT_RELNAME}-quick
quick_LIB= libQt${_QT_LIBVER}Quick.so
quickcontrols_PORT= x11-toolkits/${_QT_RELNAME}-quickcontrols
quickcontrols_PATH= ${QT_QMLDIR}/QtQuick/Controls/qmldir
quickcontrols2_PORT= x11-toolkits/${_QT_RELNAME}-quickcontrols2
-quickcontrols2_LIB= libQt${_QT_LIBVER}LabsTemplates.so
+quickcontrols2_LIB= libQt${_QT_LIBVER}QuickControls2.so
qvfb_PORT= devel/${_QT_RELNAME}-qvfb
-qvfb_PATH= ${QT_BINDIR}/qvfb${_QT_BINSUFX}
+qvfb_PATH= ${QT_BINDIR}/qvfb
rcc_PORT= devel/${_QT_RELNAME}-rcc
rcc_PATH= ${RCC}
sensors_PORT= comms/${_QT_RELNAME}-sensors
sensors_LIB= libQt${_QT_LIBVER}Sensors.so
script_PORT= devel/${_QT_RELNAME}-script
script_LIB= libQt${_QT_LIBVER}Script.so
scripttools_PORT= devel/${_QT_RELNAME}-scripttools
scripttools_LIB= libQt${_QT_LIBVER}ScriptTools.so
+scxml_PORT= devel/${_QT_RELNAME}-scxml
+scxml_LIB= libQt${_QT_LIBVER}Scxml.so
+
serialbus_PORT= comms/${_QT_RELNAME}-serialbus
serialbus_LIB= libQt${_QT_LIBVER}SerialBus.so
serialport_PORT= comms/${_QT_RELNAME}-serialport
serialport_LIB= libQt${_QT_LIBVER}SerialPort.so
sql_PORT= databases/${_QT_RELNAME}-sql
sql_LIB= libQt${_QT_LIBVER}Sql.so
sql-pgsql_PATH= ${QT_PLUGINDIR}/sqldrivers/libqsqlpsql.so
. if ${_QT_VERSION:M4*}
sql-sqlite2_PORT= databases/${_QT_RELNAME}-sqlite-plugin
. endif
sql-sqlite3_PATH= ${QT_PLUGINDIR}/sqldrivers/libqsqlite.so
. for db in ibase mysql odbc pgsql sqlite2 sqlite3 tds
. if ${_QT_VERSION:M4*}
sql-${db}_PORT?= databases/${_QT_RELNAME}-${db}-plugin
. else
sql-${db}_PORT?= databases/${_QT_RELNAME}-sqldrivers-${db}
. endif
sql-${db}_PATH?= ${QT_PLUGINDIR}/sqldrivers/libqsql${db:C/^sql//}.so
. endfor
svg_PORT= graphics/${_QT_RELNAME}-svg
svg_LIB= libQt${_QT_LIBVER}Svg.so
testlib_PORT= devel/${_QT_RELNAME}-testlib
testlib_LIB= libQt${_QT_LIBVER}Test.so
uic_PORT= devel/${_QT_RELNAME}-uic
uic_PATH= ${UIC}
uic3_PORT= devel/${_QT_RELNAME}-uic3
uic3_PATH= ${QT_BINDIR}/uic3
uiplugin_PORT= x11-toolkits/${_QT_RELNAME}-uiplugin
uiplugin_PATH= ${QT_INCDIR}/QtUiPlugin/QtUiPlugin
uitools_PORT= devel/${_QT_RELNAME}-uitools
uitools_PATH= ${QT_LIBDIR}/libQt${_QT_LIBVER}UiTools.a
+virtualkeyboard_PORT= x11-toolkits/${_QT_RELNAME}-virtualkeyboard
+virtualkeyboard_PATH= ${QT_PLUGINDIR}/platforminputcontexts/libqtvirtualkeyboardplugin.so
+
webchannel_PORT= www/${_QT_RELNAME}-webchannel
webchannel_LIB= libQt${_QT_LIBVER}WebChannel.so
websockets_PORT= www/${_QT_RELNAME}-websockets
websockets_LIB= libQt${_QT_LIBVER}WebSockets.so
-webkit_PORT= www/webkit-${_QT_RELNAME}
+webkit_PORT= www/${_QT_RELNAME}-webkit
webkit_LIB= libQt${_QT_LIBVER}WebKit.so
widgets_PORT= x11-toolkits/${_QT_RELNAME}-widgets
widgets_LIB= libQt${_QT_LIBVER}Widgets.so
x11extras_PORT= x11/${_QT_RELNAME}-x11extras
x11extras_LIB= libQt${_QT_LIBVER}X11Extras.so
xml_PORT= textproc/${_QT_RELNAME}-xml
xml_LIB= libQt${_QT_LIBVER}Xml.so
xmlpatterns_PORT= textproc/${_QT_RELNAME}-xmlpatterns
xmlpatterns_LIB= libQt${_QT_LIBVER}XmlPatterns.so
xmlpatterns-tool_PORT= textproc/${_QT_RELNAME}-xmlpatterns-tool
xmlpatterns-tool_PATH= ${QT_BINDIR}/xmlpatterns
_USE_QT= ${USE_QT${_QT_VERSION:R:R}}
_USE_QT_ALL+= ${_USE_QT${_QT_VERSION:R:R}_ONLY}
# Iterate through components deprived of suffix.
. for component in ${_USE_QT:O:u:C/_.+//}
# Check that the component is valid.
. if ${_USE_QT_ALL:M${component}} != ""
# Skip meta-components (currently none).
. if defined(${component}_PORT) && (defined(${component}_PATH) || defined(${component}_LIB))
# Check if a dependency type is explicitly requested.
. if ${_USE_QT:M${component}_*} != "" && ${_USE_QT:M${component}} == ""
${component}_TYPE= # empty
. if ${_USE_QT:M${component}_build} != ""
${component}_TYPE+= build
. endif
. if ${_USE_QT:M${component}_run} != ""
${component}_TYPE+= run
. endif
. endif # ${_USE_QT:M${component}_*} != "" && ${_USE_QT:M${component}} == ""
# If no dependency type is set, default to full dependency.
. if !defined(${component}_TYPE)
${component}_TYPE= build run
. endif
# Set real dependencies.
. if defined(${component}_LIB) && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun}
LIB_DEPENDS+= ${${component}_LIB}:${${component}_PORT}
. else
${component}_PATH?= ${QT_LIBDIR}/${${component}_LIB}
${component}_DEPENDS= ${${component}_PATH}:${${component}_PORT}
. if ${${component}_TYPE:Mbuild} != ""
BUILD_DEPENDS+= ${${component}_DEPENDS}
. endif
. if ${${component}_TYPE:Mrun} != ""
RUN_DEPENDS+= ${${component}_DEPENDS}
. endif
. endif # ${${component}_LIB} && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun}
. endif # defined(${component}_PORT) && defined(${component}_PATH)
. else # ! ${_USE_QT_ALL:M${component}} != ""
IGNORE= cannot be installed: unknown USE_QT component '${component}'
. endif # ${_USE_QT_ALL:M${component}} != ""
. endfor
.if defined(QT_DIST) && ! ${_QT_VERSION:M4*}
. if ${QT_DIST} == "base"
# qtbase requires some tools to be symlinked to the build directory.
_QT_TOOLS= # empty
. if ${PORTNAME} != "qmake"
_QT_TOOLS+= ${QMAKE}
. endif
. if ${PORTNAME} != "buildtools"
_QT_TOOLS+= ${MOC} ${RCC}
. endif
. if ${PORTNAME} != "qdoc"
_QT_TOOLS+= qdoc
. endif
. if ${PORTNAME} != "dbus"
_QT_TOOLS+= qdbuscpp2xml qdbusxml2cpp
. endif
. if ${PORTNAME} != "widgets"
_QT_TOOLS+= ${UIC}
. endif
+# The list of QtBase components that need to be linked into WRKSRC/lib for
+# other QtBase ports. See below.
+_QT5_BASE= core dbus gui network sql widgets
+
pre-configure: qtbase-pre-configure
qtbase-pre-configure:
. for tool in ${_QT_TOOLS}
@${TEST} -e ${QT_BINDIR}/${tool:T} && \
${LN} -sf ${QT_BINDIR}/${tool:T} ${CONFIGURE_WRKSRC}/bin/${tool:T} || \
${TRUE}
. endfor
+# The following is a fix for the inplace upgrade problem we faced (see
+# QTBUG-40825 and ports bugs 194088, 195105 and 198720) previously,
+# which previously was adressed by making sure, that ${LOCALBASE}/lib, which
+# would often gets added by pkgconf for the dependencies, was passed after
+# ${WRKSRC}/lib.
+# * We fix the inplace upgrade problem by moving the Qt5 libraries into
+# ${LOCALBASE}/lib/qt5. Therefore a -L${LOCALBASE}/lib does no harm anymore.
+# * However, this means, that the ports belonging to the split up QtBase package
+# now no longer can find their depending QtBase libraries. We fix this by
+# linking these into ${CONFIGURE_WRKSRC}/lib if the given QtBase port depends
+# on them.
+. if ${QT_DIST:Mbase}
+. for basedep in ${_QT5_BASE}
+. if ${USE_QT5:M${basedep}}
+ ${LN} -sf ${QT_LIBDIR}/${${basedep}_LIB} ${CONFIGURE_WRKSRC}/lib
+. endif
+. endfor
+. endif
+
+#
+# **** THIS PART IS OBSOLETE FOR THE NEXT QT UPGRADE ****
+#
# Add ${LOCALBASE}/lib to DEFAULT_LIBDIRS, which we use to filter out
# certain paths from pkg-config calls (see the explanation in
# devel/qt5/files/patch-configure) as well as for setting
# QMAKE_DEFAULT_LIBDIR in mkspecs/qconfig.pri. Part of the solution for
# ports/194088.
post-patch: qtbase-post-patch
qtbase-post-patch:
${REINPLACE_CMD} -e "/DEFAULT_LIBDIRS=/ s,\\\\\"\\\\n,\\\\n${LOCALBASE}/lib&," \
${WRKSRC}/configure
. if ${PORTNAME} != "qmake"
_QMAKE= ${CONFIGURE_WRKSRC}/bin/qmake
post-configure: qmake-configure
. endif
. endif # ${QT_DIST} == "base"
pre-configure: qt5-pre-configure
qt5-pre-configure:
# Qt 5.3.2 introduced a check in mkspecs/features/create_cmake.prf that
# requires tests/auto/cmake to be present, otherwise the configure stage will
# fail.
# Since we cannot extract tests/auto/cmake/ and exclude tests/ at the same
# time, we have to disable the check in a cache file (the only way to get this
# value through to the configure script in qtbase).
${MKDIR} ${CONFIGURE_WRKSRC}
${ECHO_CMD} 'CMAKE_MODULE_TESTS = -' > ${CONFIGURE_WRKSRC}/.qmake.cache
+#
+# **** THIS PART IS OBSOLETE FOR THE NEXT QT UPGRADE ****
+#
# We piggyback on QMAKE_LIBDIR_FLAGS to make sure -L${WRKSRC}/lib is passed to
# the linker before -L/usr/local/lib. By default, the opposite happens, which
# is a problem when a Qt port is being upgraded, since an existing library
# would end up being picked up instead of those built in ${WRKSRC}/lib. Since
# qmake appends the value of QMAKE_LIBDIR to QMAKE_LIBDIR_FLAGS, we can use the
# latter to get the linker path order right. qmake is smart enough to strip
# occurrences of ${WRKSRC}/lib from .pc and .prl files when installing them.
# See QTBUG-40825 and ports bugs 194088, 195105 and 198720.
${ECHO_CMD} 'QMAKE_LIBDIR_FLAGS = -L${CONFIGURE_WRKSRC}/lib' >> ${CONFIGURE_WRKSRC}/.qmake.cache
post-install: qt-post-install
qt-post-install:
. if ${QT_DEFINES:N-*}
# We can't use SUB_FILES with a shared pkg-deinstall.in.
# We need it to be a script instead of a group of @unexecs, otherwise
# qconfig-modules.h cleanup will be run in pre-deinstall stage, which is
# useless. This will probably be replaced by a Keywords/ script in the future.
@${SED} -e 's,%%QT_MODNAME%%,${QT_MODNAME},g' \
-e 's,%%QT_INCDIR%%,${QT_INCDIR},g' \
${.CURDIR:H:H}/devel/${_QT_RELNAME}/${FILESDIR:T}/${PKGDEINSTALL:T}.in > \
${PKGDEINSTALL}
@${MKDIR} ${STAGEDIR}${QT_INCDIR}/QtCore/modules
@${ECHO_CMD} -n \
> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h
. for def in ${QT_DEFINES:N-*:O:u:C/=.*$//}
@${ECHO_CMD} "#if !defined(QT_${def}) && !defined(QT_NO_${def})" \
>> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h
${ECHO_CMD} "# define QT_${def}" \
>> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h
@${ECHO_CMD} "#endif" \
>> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h
@${ECHO_CMD} \
>> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h
. endfor
@${ECHO_CMD} "${PREFIX}/${QT_INCDIR_REL}/QtCore/modules/qconfig-${QT_MODNAME}.h" \
>> ${TMPPLIST}
@${ECHO_CMD} "@exec echo '#include <QtCore/modules/qconfig-${QT_MODNAME}.h>' >> ${PREFIX}/${QT_INCDIR_REL}/QtCore/qconfig-modules.h" \
>> ${TMPPLIST}
. endif # ${QT_DEFINES:N-*}
. if ${QT_CONFIG:N-*}
@${MKDIR} ${STAGEDIR}${QT_MKSPECDIR}/modules
${ECHO_CMD} "QT_CONFIG += ${QT_CONFIG:N-*:O:u}" \
> ${STAGEDIR}${QT_MKSPECDIR}/modules/qt_config_${QT_MODNAME}.pri
@${ECHO_CMD} "${PREFIX}/${QT_MKSPECDIR_REL}/modules/qt_config_${QT_MODNAME}.pri" \
>> ${TMPPLIST}
. endif # ${QT_CONFIG:N-*}
.endif # defined(QT_DIST) && ! ${_QT_VERSION:M4*}
.endif # defined(_POSTMKINCLUDED) && !defined(Qt_Post_Include)
Index: head/UPDATING
===================================================================
--- head/UPDATING (revision 434379)
+++ head/UPDATING (revision 434380)
@@ -1,14208 +1,14228 @@
This file documents some of the problems you may encounter when upgrading
your ports. We try our best to minimize these disruptions, but sometimes
they are unavoidable.
You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
+20170218:
+ AFFECTS: users of Qt 4 and Qt 5
+ AUTHOR: kde@FreeBSD.org
+
+ Following what is already done in Qt 5, the Qt 4 ports no longer install
+ their binaries into ${LOCALBASE}/bin (which is "/usr/local/bin" in most
+ cases). Additionally, the "-qt4" suffix has been dropped from the file names
+ of the binaries that had it, such as "qmake-qt4".
+
+ The new misc/qtchooser port is now used to choose whether a Qt 4 or Qt 5
+ version of a binary such as "moc", "qmake" or "designer" will be used. By
+ default, the Qt 5 versions are preferred, but that can be changed by setting
+ the QT_SELECT environment variable to "qt4".
+
+ qtchooser also allows one to seamlessly use other Qt installations for those
+ binaries, which is particularly beneficial to people working on Qt itself or
+ who need their own checkouts.
+
+ See qtchooser(1) for more information on how to configure qtchooser.
+
20170213:
AFFECTS: users of www/node*
AUTHOR: bradleythughes@fastmail.fm
The BUNDLED_SSL option is now enabled by default on FreeBSD 10, since
Node.js requires OpenSSL 1.0.2, and FreeBSD 10 is shipped with 1.0.1.
20170213:
AFFECTS: users of graphics/libGL, graphics/libEGL, graphics/libglesv2
AUTHOR: kwm@FreeBSD.org
The workaround for handling conflicting libraries between the
nvidia-driver, libGL, libEGL and libglesv2 ports was removed. If the
nvidia-driver port is updated before the other ports, it will remove
the libraries of said ports. This is a side effect of how the workaround
worked. If this happens reinstalling the affected port is enough.
pkg users can run: pkg install -f libGL libEGL libglesv2
20170211:
AFFECTS: users of x11-server/xorg-server
AUTHOR: rezny@FreeBSD.org
Xorg server has been updated to 1.18.4 and autodetection has changed.
The order in which drivers are now attempted is:
1) vendor/model specific driver according to PCI IDs
2) generic modesetting driver which requires a drm driver with KMS
3) scfb, the generic framebuffer driver
4) vesa (only if arch is x86)
This should minimize the need for xorg.conf files. It is recommended to
load the correct KMS driver (i915kms.ko or radeonkms.ko) via rc.conf,
i.e. kld_list="i915kms.ko", to ensure correct functionality. Although
the vendor drivers may attempt to load the correct drm driver, which
does not always work, the modesetting driver assumes the required KMS
driver is already loaded and will fail if there is none. The modesetting
driver is now recommended as an alternative to the Intel driver; the
performance is comparable and stability is better with modesetting. The
ATI driver continues to offer better performance than modesetting.
20170203:
AFFECTS: users of security/libressl-devel
AUTHOR: brnrd@FreeBSD.org
The version 2.5.1 bumps the libcrypto, libssl and libtls shared library
versions. You will have to rebuild all packages that depend on
libressl-devel. Check the 20160811 libressl entry for more detailed
guidance on rebuilding.
20170202:
AFFECTS: users of www/uwsgi
AUTHOR: feld@FreeBSD.org
The previous disruptive changes to uwsgi for security have been remediated
through creation of a dedicated uwsgi user/group and utilizing the
uwsgi feature to set socket ownership. The uwsgi daemon by default now
has the following properties:
* Process runs as uwsgi user and group (UID/GID 165)
* Socket mode is 660, still protecting unauthorized access from "other"
* Socket ownership is www:www, restoring compatibility
20170130:
AFFECTS: users of devel/ice, devel/py-ice, devel/php5-ice
AUTHOR: grembo@FreeBSD.org
Since __WORDSIZE as defined by <stdint.h> always reports 32 when using
C++98/03 (unless __STDC_LIMIT_MACROS is set explictly), Ice 3.6.3 used
"long long" for Int64 instead of "long" on 64-bit platforms by mistake.
A workaround has been added in version 3.6.3_2 of these three ports,
requiring to upgrade all of them at the same time and to rebuild all
custom code that links against them.
20170129:
AFFECTS: users of multimedia/motion
AUTHOR: jhale@FreeBSD.org
Version 3.x expected the configuration files to reside in:
${LOCALBASE}/etc
Version 4.x expects the configuration files to reside in:
${LOCALBASE}/etc/motion
This was unfortunately overlooked when the port was updated to 4.x, but it
has now been fixed to install the default configuration file in the new
location. The rc script now checks for motion.conf in the new location.
While you may be able to simply copy your old motion.conf to the new location,
it is recommended to review ${LOCALBASE}/etc/motion/motion.conf and make
changes to it based on your old ${LOCALBASE}/etc/motion.conf as some options
have been added and removed.
Further, if you use motion with multiple cameras and have
${LOCALBASE}/etc/thread[0-9].conf files, they should be moved to
${LOCALBASE}/etc/motion as well. These files are deprecated and should be
renamed to camera[0-9].conf and in motion.conf, lines like:
thread /usr/local/etc/thread1.conf
Should be converted to:
camera /usr/local/etc/motion/camera1.conf
20170127:
AFFECTS: users of www/uwsgi
AUTHOR: feld@FreeBSD.org
The default socket mode for uwsgi as 777 is a severe security concern.
This has been remediated by changing the rc script to default to 600.
The mode is configurable with rc.conf values: uwsgi_socket_mode="600"
or for a profile named "www", uwsgi_www_socket_mode="600".
20170121:
AFFECTS: users of security/tinc
AUTHOR: dinoex@FreeBSD.org
this version of tinc requires all nodes in the VPN to be linked with a
version of OpenSSL or LibreSSL that supports the AES256 and SHA256
algorithms.
20170120:
AFFECTS: users of databases/mysql56-server
AUTHOR: feld@FreeBSD.org
databases/mysql56-server was updated to 5.6.35 which included backported
rc script changes from the mysql57-server port. This broke mysql_optfile in
rc.conf and also forced a sample my.cnf if none existed. MySQL has
some parameters which cannot be changed after a database has been
created, so this caused MySQL to fail to start.
This change was reverted in mysql56-server-5.6.35_1
An additional change was made in mysql56-server-5.6.35_2 to prevent
automatic loading of a sample my.cnf which was causing issues for
users who were running without a my.cnf.
20170117:
AFFECTS: users of EoL'ed FreeBSD versions (<10.3, 11 prior to 11.0)
AUTHOR: amdmi3@FreeBSD.org
The ports system will now refuse to build anything if it's run on
outdated system version. This protects users from unexpected build
failures after code to support EoL'ed systems is removed from the
tree. You may define ALLOW_UNSUPPORTED_SYSTEM to override this and
allow builds, but no support will be provided in case of failures.
20170116:
AFFECTS: users of java/wildfly10
AUTHOR: olgeni@FreeBSD.org
The java/wildfly10 port has been updated to 10.1.0. To complete the
migration you must copy your existing configuration (directories
"appclient", "standalone", and "domain") from /usr/local/wildfly-10.0.0
to /usr/local/wildfly10.
20170115:
AFFECTS: users of net-mgmt/librenms
AUTHOR: dvl@FreeBSD.org
The following is recommended for /var/db/mysql/my.cnf
NOTE: these are global settings. Please read this first:
http://dev.mysql.com/doc/refman/5.7/en/sql-mode.html
[mysqld]
innodb_file_per_table=1
sql-mode=""
20170109:
AFFECTS: users of lang/ruby22
AUTHOR: swills@FreeBSD.org
The default ruby version has been updated from 2.2 to 2.3.
If you compile your own ports you may keep 2.2 as the default version by
adding the following lines to your /etc/make.conf file:
#
# Keep ruby 2.2 as default version
#
DEFAULT_VERSIONS+=ruby=2.2
If you wish to update to the new default version, you need to first stop any
software that uses ruby. Then, you will need to follow these steps, depending
upon how you manage your system.
If you use pkgng, simply upgrade:
# pkg upgrade
If you use portmaster, install new ruby, then rebuild all ports that depend
on ruby:
# portmaster -o lang/ruby23 lang/ruby22
# portmaster -R -r ruby-2.3
If you use portupgrade, install new ruby, then rebuild all ports that depend
on ruby:
# pkg delete -f ruby portupgrade
# make -C /usr/ports/ports-mgmt/portupgrade install clean
# pkg set -o lang/ruby22:lang/ruby23
# portupgrade -x ruby-2.3.\* -fr lang/ruby23
20170102:
AFFECTS: multimedia/ffmpeg
AUTHOR: jbeich@FreeBSD.org
OPTIMIZED_CFLAGS switched to only use vendor optimizations which
means -ffast-math -fno-finite-math-only are no longer applied. If
you did like the former behavior consider adding
# multimedia/ffmpeg/Makefile.local
OPTIMIZED_CFLAGS_CFLAGS += -ffast-math -fno-finite-math-only
or
# /etc/make.conf
.if ${.CURDIR:M*/multimedia/ffmpeg}
CFLAGS += -ffast-math -fno-finite-math-only
.endif
20161230:
AFFECTS: users of x11/xfce4-terminal
AUTHOR: olivierd@FreeBSD.org
The port has been updated to the latest stable version 0.8.2.
Please, don't active the hidden 'MiscSlimTabs' option in
~/.config/xfce4/terminal/terminalrc, it requires Gtk+ > 3.20.
20161228:
AFFECTS: users of multimedia/mlt
AUTHOR: avilla@FreeBSD.org
MLT Qt plugins have been moved to their own ports, mlt-qt4 and
mlt-qt5. Please, uninstall multimedia/mlt before you update:
# pkg delete mlt
20161227:
AFFECTS: users of security/openvpn, security/openvpn-polarssl
AUTHOR: Matthias Andree <mandree@FreeBSD.org>
The OpenVPN ports have been updated to the new upstream release v2.4,
and their predecessors preserved as openvpn23 and openvpn23-polarssl,
respectively. Note that for the new v2.4 release, the
openvpn-polarssl port has been renamed to openvpn-mbedtls to match the
upstream library's new name.
20161218:
AFFECTS: users of www/nghttp2
AUTHOR: sunpoet@FreeBSD.org
nghttp2 has been split into 2 ports: www/libnghttp2 for core library and
www/nghttp2 for the rest. Please uninstall nghttp2 before you update
this port.
20161216:
AFFECTS: mail/thunderbird, www/seamonkey
AUTHOR: gecko@FreeBSD.org
ENIGMAIL is no longer provided as part of the ports after upstream
dropped binary components in 1.9. Go to Tools -> Add-ons Manager
then type "enigmail" in the search box to install.
20161213:
AFFECTS: users of devel/skalibs, lang/execline, sysutils/s6
AUTHOR: Colin Booth <colin-ports@heliocat.net>
skalibs has undergone a major version bump and compatibility is not
guaranteed for software with a runtime dependency on
libskarnet.so.2.3.9.0. This will not affect lang/execline or
sysutils/s6 as those are statically linked against libskarnet.a.
execline has undergone a major version bump and compatibility is not
guaranteed for software with a runtime dependency on
libexecline.so.2.1.4.5. This will not affect sysutils/s6 as all s6
programs are statically linked against libexecline.a.
s6 has undergone a major version bump and compatibility is not
guaranteed for software with a runtime dependency on
libs6.so.2.2.4.3. Additionally, s6-applyuidgid and s6-setuidgid
have moved from $PREFIX/sbin to $PREFIX/bin. Any scripts calling
those utilities that are not relying on $PATH resolution to find
them will need to be rewritten.
20161207:
AFFECTS: users of www/node
AUTHOR: bradleythughes@fastmail.fm
The www/node port has been updated to node.js v7.2.0, the latest
upstream release. A new port, www/node6, has been created for the
v6.x LTS branch. Users wanting to stay on v6.x can replace www/node
with www/node6 with one of the following commands:
# pkg set -o www/node:www/node6
or
# portmaster -o www/node6 www/node
or
# portupgrade -o www/node6 www/node
20161202:
AFFECTS: Users of textproc/p5-Search-Elasticsearch
AUTHOR: tj@FreeBSD.org
As of the 5.01 release of ths package, the client libraries for older
versions of Elasticsearch have started to be shipped seperately. If you are
using this library to access a none 5.X server you will need to install one of
the textproc/p5-Search-Elasticsearch-Client-* ports.
20161126:
AFFECTS: Users of security/gpgme-*
AUTHOR: jhale@FreeBSD.org
Gpgme has been updated to 1.8.0.
With it comes the removal of libgpgme-pthread.so in favor of using
libgpgme.so itself as the thread-safe library. Ports that may have
linked to -lgpgme-pthread will now just link to -lgpgme. PORTREVISION
has been bumped on all ports with a dependency on security/gpgme.
The Python module provided by security/py-gpgme has been renamed
from pyme3 to gpg, as well.
Portmaster users:
portmaster -r gpgme
Portupgrade users:
portupgrade -fr security/gpgme
20161121:
AFFECTS: Users of graphics/tiff
AUTHOR: antoine@FreeBSD.org
The tiff port was updated to 4.0.7.
The following tools are removed from this release: bmp2tiff, gif2tiff, ras2tiff, rgb2ycbcr and thumbnail.
20161116:
AFFECTS: Users of sysutils/bareos-*
AUTHOR: rand@iteris.com
Bareos v1.6.x changed the configuration scheme, from one configuration
file per Bareos component (file daemon, storage daemon, and director)
to several configuration files, in several directories, for each
component. See http://doc.bareos.org/master/html/bareos-manual-main-reference.html
The new scheme will use all files named *.conf in the directory
hierarchies for each component:
/usr/local/etc/bareos/bareos-dir.d/
/usr/local/etc/bareos/bareos-fd.d/
/usr/local/etc/bareos/bareos-sd.d/
To retain the old configuration scheme of one file per component add
appropriate lines such as these to your /etc/rc.conf:
bareos_dir_config="/usr/local/etc/bareos/bareos-dir.conf"
bareos_fd_config="/usr/local/etc/bareos/bareos-fd.conf"
bareos_sd_config="/usr/local/etc/bareos/bareos-sd.conf"
20161113:
AFFECTS: users of devel/libosinfo
AUTHOR: novel@FreeBSD.org
The libosinfo port was separated into three different ports
to follow the upstream split:
- sysutils/osinfo-db-tools: contains the CLI tools
- misc/osinfo-db: contains database with OS data
- devel/libosinfo: the library
As osinfo-db-tools now ships binaries that previously were
part of libosinfo, it's required to delete the old libosinfo
package to prevent conflict because of same files installation:
# pkg delete libosinfo
And then install the new version.
20161112:
AFFECTS: users of security/heimdal
AUTHOR: hrs@FreeBSD.org
Heimdal in the base system and security/heimdal <= 1.5.3_6 use
Berkeley DB to store principals into /var/heimdal/heimdal.db and
the database format is version 3 by default. On the other hand,
security/heimdal 1.5.3_7 or newer use the newer version of
Berkeley DB and the database format is version 9.
These two versions are not compatible with each other. If there is
a mismatch between Heimdal utilities and its database format,
you will get an error like the following:
# /usr/local/sbin/kadmin -l dump
BDB0641 __db_meta_setup: /var/heimdal/heimdal.db: unexpected file type or format
kadmin: hdb_open: opening /var/heimdal/heimdal: Invalid argument
This mismatch can occur in the following three cases:
1. You used Heimdal in the base system and switch to use security/heimdal
after creating /var/db/heimdal.db.
2. You used security/heimdal >= 1.5.3_7 and switch to use one in the
base system.
3. You used security/heimdal < 1.5.3_7 and upgrade it to 1.5.3_7 or later.
To fix this mismatch, you need to dump contents of heimdal.db and
rebuild the database by using kadmin(8) utility.
If you use Heimdal in the base system or older versions of
security/heimdal, and plan to switch to use
security/heimdal >= 1.5.3_7, execute the following command
*after* creating a backup copy of /var/heimdal and installing
security/heimdal:
# /usr/bin/kadmin -l dump /var/heimdal/heimdal.db.dump
# rm /var/heimdal/heimdal.db
# /usr/local/sbin/kadmin -l load /var/heimdal/heimdal.db.dump
# rm /var/heimdal/heimdal.db.dump
The above example assumes security/heimdal is installed into
/usr/local. If your base system is compiled with WITHOUT_KERBEROS
use the following instead:
# db_dump185-5 /var/heimdal/heimdal.db | db_load-5 /var/heimdal/heimdal.db.new
# chown 0600 /var/heimdal/heimdal.db.new
# mv /var/heimdal/heimdal.db.new /var/heimdal/heimdal.db
db_dump and db_load utilitites are installed by database/db5 as
dependency of security/heimdal.
If you want to switch from security/heimdal to Heimdal in the base
system, use the following:
# /usr/local/sbin/kadmin -l dump /var/heimdal/heimdal.db.dump
# rm /var/heimdal/heimdal.db
# /usr/bin/kadmin -l load /var/heimdal/heimdal.db.dump
# rm /var/heimdal/heimdal.db.dump
20161105:
AFFECTS: users of security/heimdal
AUTHOR: hrs@FreeBSD.org
kadmin(8) in heimdal-1.5.3_5 and prior did not create a database
in /var/heimdal in Berkeley DB format which kdc(8) required. This
problem has been fixed in heimdal-1.5.3_6.
20161104:
AFFECTS: users of mail/mu4e and mail/mu4e-maildirs
AUTHOR: hrs@FreeBSD.org
The package name of mail/mu4e* have been changed from mu4e* to
mu4e*-emacsNN. When upgrading the older versions, this change can
cause the following error which prevents it from upgrading:
pkg-static: mu4e-emacs25-0.9.16 conflicts with mu4e-0.9.16 (installs files into the same place).
If this error occurs, please remove the old packages by using
"pkg delete" manually:
# pkg delete mu4e-0.9.16 mu4e-maildirs-0.8.20160126_1
20161103:
AFFECTS: users of lang/perl5*
AUTHOR: mat@FreeBSD.org
The default Perl version has been switched to Perl 5.24. If you are using
binary packages to upgrade your system, you do not have anything to do, pkg
upgrade will do the right thing. For the other people, assuming you are
migrating from 5.20 to 5.24, do:
First, add to /etc/make.conf:
DEFAULT_VERSIONS+= perl5=5.24
Portupgrade users:
portupgrade -o lang/perl5.24 -f lang/perl5.20
You can now remove the DEFAULT_VERSIONS line added earlier
from /etc/make.conf
Then you will need to rebuild everything that uses libperl.so, you
can do so with:
portupgrade -f `pkg shlib -qR libperl.so.5.20`
Portmaster users:
portmaster -o lang/perl5.24 lang/perl5.20
You can now remove the DEFAULT_VERSIONS line added earlier
from /etc/make.conf
Then you will need to rebuild everything that uses libperl.so, you
can do so with:
portmaster -f `pkg shlib -qR libperl.so.5.20`
20161102:
AFFECTS: users of security/acme-client
AUTHOR: brnrd@FreeBSD.org
The default configuration paths have changed from 'letsencrypt' to
'acme'. Rename the directories used accordingly
mv /usr/local/etc/letsencrypt /usr/local/etc/acme
mv /usr/local/etc/ssl/letsencrypt /usr/local/etc/ssl/acme
mv /usr/local/www/letsencrypt /usr/local/www/acme
Check your scripts to ensure proper operation.
20161030:
AFFECTS: users of mail/squirrelmail
AUTHOR: adamw@FreeBSD.org
For better php70 support, the squirrelmail port has switched from
PEAR database access to PDO. If you are using squirrelmail with
a database backend, you'll need to install a corresponding PDO
database module, such as php56-pdo_sqlite.
20161030:
AFFECTS: users of security/srm
AUTHOR: rakuco@FreeBSD.org
srm has been updated from 1.2.12 to 1.2.15. Since version 1.2.14,
srm defaults to using its "simple" mode to overwrite files (one pass
writing 0x00 to the files) instead of the 35-pass Gutmann method.
20161029:
AFFECTS: users of irc/quassel
AUTHOR: woodsb02@freebsd.org
Quassel is now split into two ports / packages; one for providing
the server backend (irc/quassel-core), and one for providing the
client front-end (irc/quassel). Alternatively, the irc/quassel
port can be built with the MONO option enabled to also install
the client and server combined into a single monolithic binary.
20161028:
AFFECTS: users of security/openssl and security/openssl-devel
AUTHOR: brnrd@freebsd.org
The shared library versions of OpenSSL have been bumped to avoid
issues with ports' and base's OpenSSL not being binary compatible.
Please rebuild all ports that depend on OpenSSL if you use OpenSSL
from ports.
If you use portmaster:
portmaster -r openssl
If you use portupgrade:
portupgrade -fr security/openssl
20161026:
AFFECTS: users of net-p2p/deluge
AUTHOR: rm@FreeBSD.org
Deluge port has been split out onto CLI part and GUI part. So if user
only needs deluged, net-p2p/deluge-cli should be installed. For full
deluge installation, including GTK+ GUI client, net-p2p/deluge should
be installed as a usual.
Old deluge package should be removed manually first:
# pkg delete deluge
After that install preferred deluge package as usual.
20161018:
AFFECTS: users of x11/xfce4-terminal
AUTHOR: olivierd@FreeBSD.org
The port has been updated to the latest stable version 0.8.0.
A warning appears each time we open new tab:
Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate
widget with...
This issue will disappear with Gtk > 3.21.
20161014:
AFFECTS: users of lang/python3
AUTHOR: antoine@FreeBSD.org
The default version of python3 has changed from 3.4 to 3.5.
If you wish to stick with older version, add "python3=3.4" to your
DEFAULT_VERSIONS variable in /etc/make.conf. To upgrade:
If using portupgrade:
# portupgrade -o lang/python35 lang/python34
If using portmaster:
# portmaster -o lang/python35 lang/python34
20161011:
AFFECTS: Users of net-im/ejabberd
AUTHOR: ashish@FreeBSD.org
Before upgrading ejabberd to 16.09, please make sure to backup your
ejabberd data using:
% sudo -u ejabberd -H ejabberdctl backup /path/to/backup/file
In some cases, ejabberd may fail to start, for which a workaround is to
remove the schema.DAT file from /var/spool/ejabberd before starting, and
then restoring everything from the backup using:
% sudo -u ejabberd -H ejabberdctl restore /path/to/backup/file
For more details:
https://github.com/processone/ejabberd/issues/1305
20161005:
AFFECTS: Users of audio/squeezeboxserver (now audio/logitechmediaserver)
AUTHOR: woodsb02@FreeBSD.org
With the rename of the audio/squeezeboxserver port to
audio/logitechmediaserver, the server and database are now installed in
different locations by default (/usr/local/share/logitechmediaserver and
/var/db/logitechmediaserver respectively).
If you were an existing user of audio/squeezeboxserver, you should
consider backing up you server configuration files and database before
upgrading to audio/logitechmediaserver. If you wish to override the
default locations for storing the server and database, you can set the
SLIMDIR and SLIMDBDIR variables in your /etc/make.conf when building
the audio/logitechmediaserver port.
20161004:
AFFECTS: mail/roundcube-carddav
AUTHOR: gahr@FreeBSD.org
There is no upgrade path from the 1.0 version. You'll need to:
1. Log off from Roundcube.
2. Manually drop all carddav_* tables from your db backend.
3. Upgrade the mail/roundcube-carddav port.
The new tables will be created upon login. The CardDAV plugin will need to be
reconfigured.
If you are running php < 7.0.0, you'll need to set the plugin option:
$prefs['_GLOBAL']['suppress_version_warning'] = true;
See https://github.com/blind-coder/rcmcarddav/issues/165 for details.
20160927:
AFFECTS: emulators/ppsspp
AUTHOR: jbeich@FreeBSD.org
Qt* GUI was split into separate ports:
emulators/ppsspp-qt4
emulators/ppsspp-qt5
20160927:
AFFECTS: sysutils/android-file-transfer
AUTHOR: jbeich@FreeBSD.org
Qt* GUI was split into separate ports:
sysutils/android-file-transfer-qt4
sysutils/android-file-transfer-qt5
20160922:
AFFECTS: users of databases/pglogical, databases/pglogical-output
AUTHOR: matthew@FreeBSD.org
As of version 1.2.0, databases/pglogical-output has been merged into
databases/pglogical. portmaster or portupgrade users should delete
pglogical-output manually before upgrading.
20160921:
AFFECTS: users of mail/sieve-connect
AUTHOR: alexey@renatasystems.org
Version 0.88 contains two breaking changes:
1. If the Sieve server does not offer STARTTLS, then connections should now
fail.
2. When deriving a remote script name from the local filename, use the
basename and strip off directories.
For additional information see:
http://mail.globnix.net/pipermail/sieve-connect-announce/2016/000012.html
20160919:
AFFECTS: users of net/vtun
AUTHOR: cy@FreeBSD.org
The VTUN_EXTENDED_MODE option has been replaced by -e command line
option.
20160914:
AFFECTS: users of www/nginx-devel
AUTHOR: osa@FreeBSD.org
Nginx now creates logs under /var/log/nginx/ and changes default log
names from "nginx-access.log" and "nginx-error.log" to "access.log" and
"error.log" respectively. This is important for the error log because
the location is encoded and touched by nginx during startup regardless
of the configured location for the error log.
See http://trac.nginx.org/nginx/ticket/147 for additional information
on why this happens.
20160914:
AFFECTS: users of deskutils/xfce4-volumed-pulse
AUTHOR: olivierd@FreeBSD.org
The port has been updated to the latest stable version 0.2.2.
Support of xfce4-mixer has been removed, so you can delete
its properties with the following command:
xfconf-query -c xfce4-mixer -p / -rR
20160910:
AFFECTS: users of security/letsencrypt.sh
AUTHOR: riggs@FreeBSD.org
The config filename has been changed upstream from "config.sh"
to "config". Users must rename the current config file manually.
In addition, the default WELLKNOWN location has been changed to
%%PREFIX%%/www/letsencrypt. In order to use the previous default
location, the config file must be updated manually as well.
20160907:
AFFECTS: users of math/galculator
AUTHOR: woodsb02@FreeBSD.org
galculator now uses GTK3 by default. An option exists in the port to revert
to GTK2 if desired.
20160906:
AFFECTS: uses of www/nginx
AUTHOR: marino@FreeBSD.org
Nginx now creates logs under /var/log/nginx/ and changes default log
names from "nginx-access.log" and "nginx-error.log" to "access.log" and
"error.log" respectively. This is important for the error log because
the location is encoded and touched by nginx during startup regardless
of the configured location for the error log.
See http://trac.nginx.org/nginx/ticket/147 for additional information
on why this happens.
20160905:
AFFECTS: users of databases/postgresql96-server
AUTHOR: girgen@FreeBSD.org
The default unix user used by the PostgreSQL daemon has changed to
`postgres' to reflect the long time upstream's convention. Any scripts
you have using the old `pgsql' unix user should be modified when upgrading to
PostgreSQL version 9.6. Older versions of PostgreSQL will continue using
`pgsql' until their end-of-life.
For users with UTF-8 locales in the database: The ICU patch is *activated by
default* for the PostgreSQL-9.6 server. For previous versions it was optional
and default off, but this has changed. Please read the entry here below from
20160811 and understand the consequences of changing between ICU and system
locale for database collation (short version: don't). pg_upgrade requires the
collation method to be the same (or a reindex), while pg_dump/restore does not.
Also, the default home directory for the postgres user is now
/var/db/postgres, and the default data directory for PostgreSQL 9.6 is
/var/db/postgres/data96.
20160829:
AFFECTS: users of x11/nvidia-driver
AUTHOR: cem@FreeBSD.org
The NVidia driver has been updated to version 367.35. Starting with
version 358.09, new kernel module was added, nvidia-modeset.ko. This
new driver component works in conjunction with the nvidia.ko kernel
module to program the display engine of the GPU.
Users that experience hangs when starting X11 server, or observe
(II) NVIDIA(0): Validated MetaModes:
(II) NVIDIA(0): "NULL"
messages in their /var/log/Xorg.0.log file should replace ``nvidia''
with ``nvidia-modeset'' in /boot/loader.conf or /etc/rc.conf files,
depending on how they prefer to load NVidia driver kernel module.
20160829:
AFFECTS: users of security/sshguard
AUTHOR: feld@FreeBSD.org
Sshguard has been updated to 1.7.0. There have been several changes to
this release. Notably the hosts and ipfilter backends are no longer
supported. If you need these backends to be supported and you missed
the survey sent out by upstream I urge you to contact upstream.
The hosts backend was previously served by security/sshguard directly.
The additional backends were slave ports with package name suffixes. I
have opted to keep the master/slave port relationship but not choose a
specific backend for security/sshguard. Instead it is now a metaport
which will prompt you for which backend you prefer. If no backend is
configured it will depend on security/sshguard-ipfw, which is the
native FreeBSD firewall. This my be surprising to users who depended
on security/sshguard which only provided hosts/TCP Wrappers blocking,
but there is no replacement at this time.
I would also like to document that sshguard no longer accepts the -e
argument which allowed external scripts to run when sshguard finds a
match. As a result the null backend can no longer be used to create
custom blocking functionality; it only serves as a detection backend.
If the removed backends return due to user demand they will be added
as slave ports for consistency. I apologize for any inconvenience and
lack of notice on the deprecation of these features.
20160815:
AFFECTS: users of mail/rspamd*
AUTHOR: vsevolod@FreeBSD.org
Rspamd users should update Rspamd to 1.3.3 version as soon as possible
and ensure that '/usr/local/etc/rspamd/module.d/fuzzy_check.conf` has
the line `algorithm = "mumhash";` for the "rspamd.com" rule. The more
detailed information could be found on
https://rspamd.com/announce/2016/08/15/rspamd-1.3.3.html
20160815:
AFFECTS: users of dns/powerdns*
AUTHOR: junovitch@FreeBSD.org
PowerDNS Authoritative Server and Recursor 4.0.0+ introduce significant
changes to the configuration files, which need to be handled before
restarting the services. As from the Recursor changelog, "The Lua hook
infrastructure was redone using LuaWrapper; old scripts will no longer
work, but new scripts are easier to write under the new interface."
20160811:
AFFECTS: users of security/libressl
AUTHOR: brnrd@FreeBSD.org
The port has been updated to the latest stable version 2.4 of LibreSSL.
The shared library versions of the libraries have been bumped.
With this update, the patch for the OPENSSL_VERSION_NUMBER has been
removed. This causes issues with a number of ports. Patches for all
ports for which this issues is known can be found on
https://wiki.freebsd.org/LibreSSL/Ports#OPENSSL_VERSION_NUMBER
After upgrading, manually update all packages that depend on any of the
libraries provided by LibreSSL (libssl, libcrypto and libtls) since the
versions of these libraries have changed. Normally, you can obtain the
list of dependent software by running the following command:
# pkg info -r libressl
Then you should rebuild all ports depending on libressl to avoid dangling
shared library dependencies. Poudriere and pkg handle this correctly,
portmaster and portupgrade users can use the following to rebuild all
dependent ports.
Portmaster users:
portmaster -r libressl
Portupgrade users:
portupgrade -fr security/libressl
20160811:
AFFECTS: users of databases/postgresqlNN-server with ICU patch
AUTHOR: girgen@FreeBSD.org
The ICU patch is added to the PostgreSQL-9.5 server. Please note that you
must never change between using the ICU patch and using system locale for
the same database cluster without REINDEXing all TEXT/VARCHAR columns, or
dump and restore your database. Failing to do so will result in corrupted
indexes due to the differences between the locale definitions. ICU will
always be the better choice for speed and correctness.
Also, the ICU patch used to support other Unicode encodings than UTF-8,
but that has been removed due to lack of demand and the complicated testing
required. If you use another Unicode encoding and rely on ICU for collation,
please refrain from upgrading the postgresql server and instead contact the
author named above.
20160722:
AFFECTS: users of emulators/virtualbox-ose
AUTHOR: jkim@FreeBSD.org
VirtualBox has been updated to 5.0.26 and it is incompatible with old
kernel modules. You should upgrade emulators/virtualbox-ose-kmod and
load new kernel modules before starting new version, e.g.,
# service vboxnet restart
20160722:
AFFECTS: users of games/stonesoup-*
AUTHOR: lifanov@mail.lifanov.com
The WIZARD option has been renamed to NOWIZARD and is now an opt-out to
better reflect the upstream. If you run a shared game server and would
like the Wizard mode support disabled, please update port options.
20160718:
AFFECTS: users of www/awstats
AUTHOR: adamw@FreeBSD.org
The directory containing icons has changed from ".../icons" to ".../icon".
awstats has, in its suggested configuration file, contained an alias
from /awstatsicons. After applying the awstats-7.5 update, you must
update that alias to point to /usr/local/www/awstats/icon (just remove
the "s" at the end).
20160708:
AFFECTS: users of sysutils/screen
AUTHOR: cy@FreeBSD.org
GNU Screen was updated to version 4.4.0 (r417201). Note that there was
fix to screen message structure field responsible for $TERM handling,
making it impossible to attach to older versions.
20160704:
AFFECTS: users of databases/mysql57-*
AUTHOR: riggs@FreeBSD.org
The default location for my.cnf has changed from "/var/db/mysql/my.cnf"
to "/usr/local/etc/mysql/my.cnf". Existing my.cnf files must be merged
manually with the new default and moved to the new location. To
continue using the my.cnf file at the old location, set "mysql_optfile"
in /etc/rc.conf to point to the location of the existing my.cnf file.
20160701:
AFFECTS: users of www/node5
AUTHOR: bradleythughes@fastmail.fm
Node.js v5.x has reached end of life and has been removed. Users that
have not yet moved to v6.x should do so now by switching to the www/node
port.
20160627:
AFFECTS: users of sysutils/rsyslog7
AUTHOR: brd@FreeBSD.org
Rsyslog 7.x has reached end of life status and is being marked as
depreciated. Rsyslog 8 has been made the default.
20160626:
AFFECTS: users of www/calendarserver
AUTHOR: pi@FreeBSD.org
Please note that updating from the previous version (5.1) to the current
version (8.0) requires manual steps. Please consult the pkg-message for
details.
20160624:
AFFECTS: users of shells/zsh
AUTHOR: adamw@FreeBSD.org
zsh now looks for system-wide conf files in ${PREFIX}/etc, instead of
/etc. If you have files like zshrc, zshenv, zprofile, zlogin, or zlogout
in /etc, either move them to /usr/local/etc or rebuild zsh with the
ETCDIR option on.
Note that this change only affects system-wide conf files, which are not
installed or created by a default installation.
20160621:
AFFECTS: users of www/redmine
AUTHOR: tz@FreeBSD.org
Redmine was updated from 2.6.9 to 3.2.3. Since this an update over
major versions be careful with your update.
For further update instructions please have a look at:
https://www.redmine.org/projects/redmine/wiki/RedmineUpgrade
20160621:
AFFECTS: users of ftp/wget
AUTHOR: vd@FreeBSD.org
Wget 1.18 fixes a security vulnerability (CVE-2016-4971) and the fix
introduces a backward-incompatibility for HTTP->FTP redirects. Any script that
relies on the old behaviour must use --trust-server-names in order to trust
the HTTP response and redirect to the new filename.
20160619:
AFFECTS: users of databases/py-apsw
AUTHOR: rm@FreeBSD.org
SQLite 3.12 completely changed the semantics of VFS.xGetLastError() in an
incompatible way. This required a rewrite of the relevant C, Python and test
code. If you implement or use this method then you have to rewrite your code
too. Also note that running the test suite from an earlier version of APSW
against this or future SQLite versions will result in consuming all memory,
swap or address space (an underlying integer changed meaning).
20160616:
AFFECTS: users of security/openssl*, security/libressl*
AUTHOR: mat@FreeBSD.org
Previously, to tell the ports tree, you needed to set:
WITH_OPENSSL_PORT=yes
And if you wanted a port that was not security/openssl, you needed to add,
for example:
OPENSSL_PORT= security/libressl
Now, all you need to do is:
DEFAULT_VERSIONS+= ssl=libressl
Valid values are base, openssl, openssl-devel, libressl, and libressl-devel.
20160614:
AFFECTS: users of www/node, www/node5, and www/node4
AUTHOR: adamw@FreeBSD.org
node now prefers a few libraries from ports to the versions bundled
with node. However, node cannot use the libssl from LibreSSL. If you
are using LibreSSL as your SSL provider, you must enable the
"BUNDLED_SSL" option when building node.
20160611:
AFFECTS: users of textproc/xmlroff
AUTHOR: hrs@FreeBSD.org
The library part of xmlroff has been separated into textproc/libfo.
Remove the installed xmlroff first when upgrading it because older
xmlroff than 0.6.2_6 have files which libfo installs. A typical
error message is the following:
pkg-static: libfo-0.6.2 conflicts with xmlroff-0.6.2_5 (installs files into the same place). Problematic file: /usr/local/include/libfo-0.6/libfo/area/fo-area.h
20160610:
AFFECTS: users of databases/postgresql-repmgr
AUTHOR: bofh@FreeBSD.org
The port has been repocopied to databases/postgresql-repmgr2 and current
post has been updated to 3.x series. If anyone is still looking forward
to use the 2.x please upgrade as following.
# portmaster -o databases/postgresql-repmgr2 databases/postgresql-repmgr
or
# portupgrade -o databases/postgresql-repmgr2 databases/postgresql-repmgr
Otherwise if you want to move on with 3.x series just use
# portmaster -r databases/postgresql-repmgr
or
# portupgrade -fr databases/postgresql-repmgr
20160605:
AFFECTS: users of www/h2o
AUTHOR: junovitch@FreeBSD.org
File paths no longer have a trailing / appended to them. This enables
directing specific paths to a file but may break existing configurations.
Refer to https://h2o.examp1e.net/configure/file_directives.html and
revise your yaml config appropriately.
20160601:
AFFECTS: users of security/libressl-devel
AUTHOR: brnrd@FreeBSD.org
The port has been updated to the latest "unstable" version of LibreSSL.
The shared library versions of the libraries have been bumped.
With this update, the patch for the OPENSSL_VERSION_NUMBER has been
removed. This causes issues with a number of ports. Patches for many of
these issues can be found on
https://wiki.freebsd.org/LibreSSL/Ports#OPENSSL_VERSION_NUMBER
After upgrading to 2.4.0, manually update all packages that depend on
any of the libraries provided by LibreSSL (libssl, libcrypto and
libtls) since the versions of these libraries have changed. Normally,
you can obtain the list of dependent software by running the following
command:
# pkg info -r libressl-devel
Then you should rebuild all ports depending on libressl-devel to avoid
dangling shared library dependencies. Poudriere and pkg handle this
correctly, portmaster and portupgrade users can use the following to
rebuild all dependent ports.
Portmaster users:
portmaster -r libressl-devel
Portupgrade users:
portupgrade -fr security/libressl-devel
20160527:
AFFECTS: users of mail/opensmtpd-extras (any of them)
AUTHOR: adamw@FreeBSD.org
The invocation for extras has changed. Some extras might fail unless
you pass all options/arguments separated by quotes:
filter myfilter dnsbl "-c /var/chroot/dnsbl" "-h my.dnsbl.com"
Additionally, extras now run in a chroot. Either pass "-C" to skip the
chroot entirely (not recommended), or put all required config files,
resolv.conf, and external binaries into the chroot. For example:
# mkdir -p /var/chroot/dnsbl/etc
# cp /etc/resolv.conf /var/chroot/dnsbl/etc
And pass "-c /var/chroot/dnsbl" to the filter.
20160526:
AFFECTS: users of mail/opensmtpd
AUTHOR: brnrd@FreeBSD.org
Due to changes to the rc-script you must stop smtpd prior to upgrading
mail/opensmtpd to version 5.9.2
# service smtpd stop
Then upgrade OpenSMTPD to version 5.9.2.
Additionally version 5.9.2 changes the file mode bits for two directories.
To allow existing installations to start successfully you must apply the
following changes
# chown -R root:_smtpq /var/spool/smtpd/offline
# chmod -R 770 /var/spool/smtpd/offline
# chmod -R 700 /var/spool/smtpd/purge
After applying the changes, the smtpd daemon can successfully be started.
20160525:
AFFECTS: users of devel/qtcreator
AUTHOR: nolden@kde.org
QBS (Qt Build System) was previously shipped as part of qtcreator, now
it is independently available as devel/qbs. However, on upgrading
qtcreator to 3.6.1, the depends will detect qbs through a previously
installed qtcreator port and will not build/install correctly
(devel/qbs won't be installed automatically as depends)
The solution is to pkg remove qtcreator, then building works correctly.
20160523:
AFFECTS: users of databases/db6
AUTHOR: mandree@FreeBSD.org
The databases/db6 port has been updated to release 6.2.23.
This requires manual action in two places:
1. dependent applications need to be recompiled,
2. SQL databases, if any, need to be reindexed.
To obtain a list of ports needing a recompilation,
the following command should provide it:
# pkg info -r db6
Then rebuild db6 and the dependent ports. For pkg users, this should
be transparent.
Portmaster users:
# portmaster -r databases/db6
Portupgrade users:
# portupgrade -fr databases/db6
In order to reindex SQL databases, a db6-upgrade61.sh script is
provided in ${PREFIX}/bin, if and only if the port's SQL option is
enabled. For detailed reindexing instructions, see
http://docs.oracle.com/cd/E17076_05/html/installation/sqlite_ver61.html
and note that the FreeBSD port installs the upgrade61.sh script with a
db6- prefix that you need to add.
20160511:
AFFECTS: users of audio/clementine-player
AUTHOR: sbruno@FreeBSD.org
The audio/clementine-player port has been updated to v1.3.1, the latest
upstream release. The music database code now has a hard dependency on
databases/sqlite having the FTS3_TOKENIZER option enabled. This has
been made the default option in databases/sqlite.
Without this option, clementine-player will crash on startup.
20160510:
AFFECTS: users of biology/seqan
AUTHOR: junovitch@FreeBSD.org
The biology/seqan port has been split into biology/seqan (only the
library) and biology/seqan-apps for the programs based on SeqAn. Both
ports are based on version 2.1.1 of the SeqAn repository. There is a new
biology/seqan1 port with version 1.3 of SeqAn for backwards compatibility,
but this port will likely be deprecated in the next year so please update
your software to SeqAn2.
20160505:
AFFECTS: users of www/node
AUTHOR: bradleythughes@fastmail.fm
The www/node port has been updated to node.js v6.0.0, the latest
upstream release. Users of node.js v5.x are encouraged to upgrade as
soon as possible, as upstream support will end two months from now.
The www/node5 port has been created to aid users transition. Use one of
the following commands to continue using node.js v5.x:
# pkg install node5
or
# portmaster -o www/node5 www/node
or
# portupgrade -o www/node5 www/node
20160503:
AFFECTS: users of security/libressl
AUTHOR: brnrd@FreeBSD.org
LibreSSL 2.3 has removed SSLv3 support completely which leads to issues
with a number of ports. Patches for many of these issues can be found
on https://wiki.freebsd.org/OpenSSL/No-SSLv3
After upgrading to 2.3.4, manually update all packages that depend on
any of the libraries provided by LibreSSL (libssl, libcrypto and
libtls) since the versions of these libraries have changed. Normally,
you can obtain the list of dependent software by running the following
command:
# pkg info -r libressl
Then you should rebuild all ports depending on libressl to avoid dangling
shared library dependencies. Poudriere and pkg handle this correctly,
portmaster and portupgrade users can use the following to rebuild all
dependent ports.
Portmaster users:
portmaster -r libressl
Portupgrade users:
portupgrade -fr security/libressl
20160501:
AFFECTS: users of mail/dspam
AUTHOR: junovitch@FreeBSD.org
dspam has been modified to no longer run as root:mail by default.
Existing configuration must be adjusted to reflect using a non-privileged
port and the /var/run/dspam directory for PID and socket files. If you
need dspam to run as root for your mail setup, you can use the SETUID
config option to enable the old insecure behavior.
20160229:
AFFECTS: users of www/nginx and www/nginx-devel
AUTHOR: osa@FreeBSD.org
The ${MODULESDIR}, default directory for dynamic modules, has been
changed from ${ETCDIR}/modules to ${PREFIX}/libexec/${PORTNAME}.
It's highly recommended to review existing configuration files of
nginx, i.e. ${PREFIX}/etc/nginx/nginx.conf.
20160424:
AFFECTS: users of net-mgmt/icinga2
AUTHOR: lme@FreeBSD.org
The creation of Icinga2 directories and files in /var is now controlled
by the /etc/rc.conf variable icinga2_mkvar. Earlier ports always
created the /var entries, but could slow startup significantly when /var
was a normal disk rather than a RAM disk. icinga2_mkvar defaults to
"NO".
20160415:
AFFECTS: users of audio/chromaprint
AUTHOR: jhale@FreeBSD.org
chromaprint has been updated to version 1.3.1 and includes a shared
library bump. PORTREVISIONS have been bumped on affected ports.
If you are using binary pkg, 'pkg upgrade' will do the right thing.
Users of portmaster/portupgrade must rebuild all ports which depend
on chromaprint.
Portmaster users:
portmaster -w -r chromaprint
Portupgrade users:
portupgrade -fr audio/chromaprint
20160414:
AFFECTS: users of www/tt-rss
AUTHOR: thierry@FreeBSD.org
Tiny Tiny RSS can use a database running on a separate server.
Previously, in this case, you had to set the option DBLOCAL; this option
has been removed and replaced by a settable run-time flag: now you
should set
ttrssd_local_db="NO"
in your /etc/rc.conf .
20160414:
AFFECTS: users of graphics/kipi-plugin-googledrive and graphics/kipi-plugin-picasaweb
AUTHOR: kde@FreeBSD.org
DigiKam and its related ports have been updated to 4.14.0, the latest
stable upstream release.
The graphics/kipi-plugin-googledrive and graphics/kipi-plugin-picasaweb
have both been merged into the new graphics/kipi-plugin-googleservices
following a move done upstream.
Those two ports must be removed, and graphics/kipi-plugin-googleservices
should be used instead.
20160413:
AFFECTS: users of www/node-devel
AUTHOR: bradleythughes@fastmail.fm
www/node-devel was outdated and has been removed. Upstream no longer
releases a development version. You can use the www/node port to get
node.js 5.x by running one of the following commands:
# pkg install node
or
# portmaster -o www/node www/node-devel
or
# portupgrade -o www/node www/node-devel
20160413:
AFFECTS: multimedia/x264
AUTHOR: jbeich@FreeBSD.org
LSMASH replaced GPAC by default. If you use BATCH=y in /etc/make.conf
and hit below error make sure to re-run "make config".
====> You cannot select multiple options from the MP4 radio
*** Error code 1
20160412:
AFFECTS: users of net/samba42 and net/samba/43
AUTHOR: timur@FreeBSD.org
Samba 4.2.x and 4.3.x ports have been updated to address
BadLock(http://badlock.org) vulnerability, as well as few other
discovered.
Please note that Samba 4.1.x and older versions are also affected by
the issues fixed with this release but are not supported anymore. It is
strongly recommend to upgrade to a recent version at your earliest
convenience.
The security updates include new smb.conf options and a number of
stricter behaviours to prevent Man in the Middle attacks. Between these
changes, compatibility with a large number of older software versions
has been lost in the default configuration.
For more information about the related behaviour changes and the
security issues please visit:
https://www.samba.org/samba/latest_news.html#4.4.2
https://www.samba.org/samba/history/samba-4.3.8.html
https://www.samba.org/samba/history/samba-4.2.11.html
20160411:
AFFECTS: users of databases/influxdb
AUTHOR: cheffo@freebsd-bg.org
To upgrade to InfluxDB 0.12, you must be on version 0.10 and all shards must
be in TSM format (the default storage engine starting with InfluxDB 0.10).
See the 0.10 documentation [1] for how to convert b1 and bz1 shards to TSM. If
any b1 or bz1 shards are present, InfluxDB 0.12 will not start.
Next, you need to update your metastore *before updating to 0.12.* [2]
[1] https://docs.influxdata.com/influxdb/v0.10/administration/upgrading/#convert-b1-and-bz1-shards-to-tsm1
[2] https://docs.influxdata.com/influxdb/v0.12/administration/upgrading/
20160406:
AFFECTS: users of www/pecl-http
AUTHOR: bofh@FreeBSD.org
www/pecl-http has been updated to the latest 3.x stable release, which
supports php70+ and a new port www/pecl-http2 has been created for the
2.x branch.
Should users want to continue to use version 2.x, replace www/pecl-http with
www/pecl-http2 as follows:
Using packages:
# pkg delete pecl-http
# pkg install pecl-http2
Using ports:
# portupgrade -o www/pecl-http2 www/pecl-http
OR
# portmaster -o www/pecl-http2 www/pecl-http
20160404:
AFFECTS: users of lang/ruby21
AUTHOR: swills@FreeBSD.org
The default ruby version has been updated from 2.1 to 2.2.
If you compile your own ports you may keep 2.1 as the default version by
adding the following lines to your /etc/make.conf file:
#
# Keep ruby 2.1 as default version
#
DEFAULT_VERSIONS+=ruby=2.1
If you wish to update to the new default version, you need to first stop any
software that uses ruby. Then, you will need to follow these steps, depending
upon how you manage your system.
If you use pkgng, simply upgrade:
# pkg upgrade
If you use portmaster, install new ruby, then rebuild all ports that depend
on ruby:
# portmaster -o lang/ruby22 lang/ruby21
# portmaster -R -r ruby-2.2
If you use portupgrade, install new ruby, then rebuild all ports that depend
on ruby:
# pkg delete -f ruby portupgrade
# make -C /usr/ports/ports-mgmt/portupgrade install clean
# pkg set -o lang/ruby21:lang/ruby22
# portupgrade -x ruby-2.2.\* -fr lang/ruby22
20160404:
AFFECTS: mail/spamassassin
AUTHOR: adamw@FreeBSD.org
Support for SSLv3 has been removed from SpamAssassin, because
SSLv3 is a Bad Idea. No direct option is provided to re-enable it.
If your setup requires use of SSLv3, some instructions are available
in FreeBSD PR 208225.
20160331:
AFFECTS: security/clamav-unofficial-sigs
AUTHOR: lukasz@wasikowski.net, sf@maxempire.com
This version of clamav-unofficial-sigs is eXtremeSHOK's fork.
Configuration file location has changed from
%PREFIX%/clamav-unofficial-sigs.conf to
%PREFIX%/clamav-unofficial-sigs/
master.conf and os.conf hold default values, local changes should
be placed in user.conf.
20160324:
AFFECTS: print/ghostscript9-base
AUTHOR: tijl@FreeBSD.org
The default Ghostscript port has changed from print/ghostscript9-base,
which is no longer developed, to print/ghostscript9-agpl-base. Package
users will upgrade automatically. Ports users can stick with the old
port by adding "DEFAULT_VERSIONS+=ghostscript=9" to /etc/make.conf, or
move to the new port with:
portmaster -o print/ghostscript9-agpl-base ghostscript9-base
or: portupgrade -o print/ghostscript9-agpl-base print/ghostscript9-base
And if you have ghostscript9-x11 installed:
portmaster -o print/ghostscript9-agpl-x11 ghostscript9-x11
or: portupgrade -o print/ghostscript9-agpl-x11 print/ghostscript9-x11
Note that print/ghostscript9-agpl-base is licensed under the AGPLv3
while print/ghostscript9-base is licensed under the GPLv3.
20160317:
AFFECTS: security/openvas-client
AUTHOR: tijl@FreeBSD.org
The OpenVAS ports have been updated from version 2 to version 8. All
components have been renamed and rearranged. The old OpenVAS client
no longer exists. Instead there is a web interface provided by
security/greenbone-security-assistant or a command-line interface
provided by security/openvas-cli.
20160311:
AFFECTS: print/hplip
AUTHOR: tijl@FreeBSD.org
HPLIP has been updated to verion 3.16.2. As part of the update support
for the hpijs/foomatic-rip filter has been dropped. This has long been
unsupported upstream. If you used this filter with your printer you'll
have to remove the printer with HP Device Manager and then add it back as
a new device.
20160311:
AFFECTS: print/cups-base, print/cups-client, print/cups-image
AUTHOR: tijl@FreeBSD.org
The cups-base, cups-client and cups-image packages have been combined
into one cups package.
If you build your own ports the easiest way to update is to delete these
packages first and then build and install print/cups.
If you are using binary packages, depending on the packages installed on
your system, pkg(8)'s solver might get confused. In this case do not proceed
with the upgrade but delete first the packages:
pkg delete -fg "cups*"
Then usual upgrade process: pkg upgrade
The device URI of USB printers has changed so you have to adjust the
printer configuration. Go to http://localhost:631/printers/. Click on
your printer and select "Modify Printer" in the Administration drop-down.
You should then be able to select the new URI of the printer. The web
interface requires cookies and JavaScript to function properly so make
sure your browser does not block them.
The package also installs a devd(8) configuration file now that gives
cups access to USB printers. Unless you have any special needs you can
remove any devd(8), devfs.conf(5) or devfs.rules(5) configuration related
to cups that you may have added in the past.
20160306:
AFFECTS: net-mgmt/yaf
AUTHOR: pi@FreeBSD.org
YAF is updated to version 2.8.1 with many new OPTIONS. Please use
the default options to get same behavior as previous version.
20160302:
AFFECTS: audio/alsa-utils, www/firefox, www/firefox-esr, www/seamonkey
AUTHOR: jbeich@FreeBSD.org
ALSA backend in libcubeb as used by Firefox has an unresolved issue
with the OSS patch in audio/alsa-plugins. To avoid excessive CPU
usage when playing HTML5 videos rebuild the port with BUFSZ_P2
option enabled or reset options to default.
However, with BUFSZ_P2 enabled alsa-utils may crash:
$ aplay test.wav
Playing WAVE 'test.wav' : Signed 16 bit Little Endian, Rate 48000 Hz, Stereo
Assertion failed: (err >= 0), function set_params, file aplay.c, line 1289.
Aborted by signal Abort trap...
20160229:
AFFECTS: users of security/openssh-portable-devel
AUTHOR: bdrewery@FreeBSD.org
openssh-portable-devel has been removed since it is stale, insecure and
not worth maintaining any longer.
Users should switch back to openssh-portable.
Using packages:
# pkg delete openssh-portable-devel
# pkg install openssh-portable
Using ports:
# portmaster -o security/openssh-portable openssh-portable-devel
OR
# portupgrade -o security/openssh-portable security/openssh-portable-devel
20160228:
AFFECTS: users of mail/postfix
AUTHOR: ohauer@FreeBSD.org
Postfix has been updated to version 3.1, VDA and native SPF is no
longer supported.
- if VDA support is needed, users should stay on mail/postfix211
- SPF support can be added to postfix via one of the mail/*spf* ports
The Dovecot SASL OPTION was removed, Dovecot SASL support is always given
from now on. In addition, for each mail/postfix* port there is now a
mail/postfix*-sasl slave port providing Cyrus SASL as default.
To stay on postfix-2.11.x run the command:
# pkg set -o mail/postfix:mail/postfix211
20160217:
AFFECTS: users of www/nginx-devel
AUTHOR: osa@FreeBSD.org
Dynamic modules support has been enabled for the following third-party
modules, in case of usage of these modules please update nginx
configuration file for load these modules:
load_module "modules/ngx_dynamic_upstream_module.so";
load_module "modules/ngx_http_small_light_module.so";
20160214:
AFFECTS: users of www/nginx-devel
AUTHOR: osa@FreeBSD.org
Dynamic modules support has been enabled for the following third-party
modules, in case of usage of these modules please update nginx
configuration file for load these modules:
load_module "modules/ngx_http_echo_module.so";
load_module "modules/ngx_http_headers_more_filter_module.so";
load_module "modules/ngx_http_eval_module.so";
load_module "modules/ngx_http_lua_module.so";
load_module "modules/ngx_http_set_misc_module.so";
20160213:
AFFECTS: users of www/nginx-devel
AUTHOR: osa@FreeBSD.org
Dynamic modules support has been enabled. In case of usage following
modules please update nginx configuration file for load these modules:
load_module "modules/ngx_http_geoip_module.so";
load_module "modules/ngx_http_image_filter_module.so";
load_module "modules/ngx_http_xslt_filter_module.so";
load_module "modules/ngx_mail_module.so";
load_module "modules/ngx_stream_module.so";
See https://www.nginx.com/blog/dynamic-modules-nginx-1-9-11/ for details.
20160127:
AFFECTS: users of net-im/uTox
AUTHOR: amdmi3@FreeBSD.org
Before upgrading uTox port, please set maximum font scale in the
program options.
20160119:
AFFECTS: users of security/tor, security/tor-devel
AUTHOR: amdmi3@FreeBSD.org
The tor ports now create /var/log/tor subdirectory for tor logs. If
you've used /var/log/tor as a log _file_, you'll need to update your
torrc and move the file before updating the port.
20160118:
AFFECTS: users of mail/rspamd and mail/rmilter
AUTHOR: vsevolod@FreeBSD.org
Rspamd has been updated to the version 1.1.0. If you have used per user
statistics, then please consult changelog for details: your configuration
should be changed.
Rmilter has been updated to the version 1.7.0. Support of SPF and Spamassassin
has been dropped from this project completely. You might also consider
migration from memcahched to redis in this version.
20160113:
AFFECTS: users of sysutils/ansible
AUTHOR: lifanov@mail.lifanov.com
Ansible 2.0.0 introduces a number of incompatible configuration changes.
Please read changelog and migrate current configuration:
https://raw.githubusercontent.com/ansible/ansible/v2.0.0.0-1/CHANGELOG.md
Ansible 1.9.* will be provided as sysutils/ansible1 until the next update
of 2.0 branch.
20160111:
AFFECTS: users of security/easy-rsa
AUTHOR: mandree@FreeBSD.org
The port has been upgraded to version 3. This incurs major changes,
please see ${PREFIX}/share/doc/easy-rsa/doc/EasyRSA-Upgrade-Notes.md
for details.
The old version 2.2.2 has been retained as security/easy-rsa2.
20151227:
AFFECTS: users of games/nethack34
AUTHOR: glewis@FreeBSD.org
The port name and installation location of games/nethack34 have changed
to allow for a port of NetHack 3.6.0. To preserve your save and bones
files do the following after updating:
# sudo cp -p ${LOCALBASE}/share/nethack/save/* ${LOCALBASE}/share/nethack34/save/
# sudo cp -p ${LOCALBASE}/share/nethack/bon* ${LOCALBASE}/share/nethack34/
After verifying the files were copied correctly, remove the playground
directory (as these files are incompatible with NetHack 3.6.0).
# sudo rm -r ${LOCALBASE}/share/nethack
20151219:
AFFECTS: users of net/samba4, net/samba41
AUTHOR: timur@FreeBSD.org
Given version of Samba were marked as deprecated. Please, consider to upgrade.
Samba4 was giving wrong builds with recent version of p5-Parse-Pidl. It was
converted to use bundled version instead and to conflict with the given package.
If you still intend to build net/samba4 - remove p5-Parse-Pidle first.
20151217:
AFFECTS: users of security/tor, security/tor-devel
AUTHOR: amdmi3@FreeBSD.org
Tor rc.d script no longer overrides or forces logfile configuration,
you now need to setup logging by hand. To preserve old behavior, add
the following line to /usr/local/etc/tor/torrc:
Log notice file /var/log/tor
20151215:
AFFECTS: all users of www/node
AUTHOR: koobs@FreeBSD.org
www/node has been updated to the latest 5.x stable release, and a new port
www/node4 has been created for the 4.x LTS branch.
Should users want to continue to use version 4.x, replace www/node with
www/node4 as follows:
Using packages:
# pkg delete node
# pkg install node4
Using ports:
# portupgrade -o www/node4 www/node
OR
# portmaster -o www/node4 node
20151210:
AFFECTS: users of comms/gammu
AUTHOR: vanilla@FreeBSD.org
The python binding of comms/gammu were split from the main port. To get them you
need to install comms/py-gammu.
20151206:
AFFECTS: users of mail/postfixadmin
AUTHOR: riggs@FreeBSD.org
Caveat when updating to version 2.93: If you have an existing
configuration and are NOT using the recommended practice of putting your
settings changes in config.local.php:
Copy config.inc.php to config.local.php prior to upgrading, then revise
config.local.php for the current version afterward.
Postfixadmin will not function correctly unless correct and complete
data structures are placed in config.inc.php. Therefore the file must be
upgraded as part of the package and any changes to config.inc.php will
be overwritten.
Detailed information regarding this procedure is provided in step 3 of
the installation instructions in ${DATADIR}/INSTALL.TXT (by default
/usr/local/share/postfixadmin/INSTALL.TXT).
20151205:
AFFECTS: users of devel/ncurses
AUTHOR: bapt@FreeBSD.org
ncurses has been updated to 6.0.
If you are using binary pkg, 'pkg upgrade' will do the right thing.
Users of portmaster/portupgrade must rebuild all ports which depend
on ncurses.
Portmaster users:
portmaster -w -r ncurses
Portupgrade users:
portupgrade -fr devel/ncurses
20151203:
AFFECTS: users of x11-toolkits/qt4-gui or x11-toolkits/qt5-gui
AUTHOR: kde@FreeBSD.org
Back in mid-2012, pkg-message was added to the port suggesting changes to the
default shared memory limits in loader.conf(5). Since then, the default
limits have been changed and the values suggested by the port are no longer
sensible. If you have changed the following values in loader.conf(5) due to
qt4-gui's or qt5-gui's pkg-message, please considering removing them and
using the default settings:
* kern.ipc.shmall
* kern.ipc.shmmni
* kern.ipc.shmseg
See base r209037 and ports PR 202927 for more context.
20151203:
AFFECTS: users of sysutils/logstash
AUTHOR: junovitch@FreeBSD.org
Logstash has been updated to the 2.1.0 release. The embedded ElasticSearch
instance is no longer supported. If in use, end users must update
logstash.conf to point to the URL of an ElasticSearch instance.
20151130:
AFFECTS: users of net/samba43
AUTHOR: timur@FreeBSD.org
A new version of Samba server that has better integration with Windows 10.
This is still experimental and there were reports that rolling upgrade from
previous version of Samba fails to work.
Please, backup all relevant files from /var/db/samba4/ directory, as well
as configuration files.
Follow https://wiki.samba.org/index.php/Updating_Samba for the upgrade path.
20151130:
AFFECTS: users of net/samba4, net/samba41, net/samba42
AUTHOR: timur@FreeBSD.org
Recent versions of devel/talloc, devel/tevent, database/tdb, database/ldb
contained infinit recursive call to the strtol* set of replacement functions,
which lead to coredumps. Unofficial patch was added meanwhile, but now
official version of the fixed libs were released. If your version of
net/samba4 works fine you don't need to recompile it. Other ports were also
upgraded and some bugs were fixed in upstream.
20151122:
AFFECTS: users of audio/audacity
AUTHOR: riggs@FreeBSD.org
Audacity has been upgraded to version 2.1.1. Changes in its settings
processing may prevent it from starting. If this happens, removing its
user-specific configuration directory ~/.audacity-data resolves this.
20151118:
AFFECTS: users of mail/rmilter
AUTHOR: vsevolod@FreeBSD.org
Rmilter now has switched from user postfix to user _rmilter for security
and sanity purposes. You might want to fix the ownership of
/var/run/rmilter to user _rmilter and group mail.
20151105:
AFFECTS: users of deskutils/egroupware
AUTHOR: danilo@FreeBSD.org
EGroupware 1.8 was deprecated and removed from sourceforge.net.
To upgrade to the new version (14.3), make a backup of all files and
database, remove all files from ${PREFIX}/www/eg:
# pkg remove egroupware
# rm -rf ${PREFIX}/www/eg
Install the new egroupware:
# pkg install egroupware
or
# make -C /usr/ports/deskutils/egroupware install clean
Access the setup page on your browser and run the upgrade process
(eg: http://<server>/eg/setup).
20151101:
AFFECTS: users of www/codeigniter
AUTHOR: junovitch@FreeBSD.org
CodeIgniter has been updated to the 3.0.x release branch. End users
must ensure their web applications are compliant with the guidance
in the "Upgrading From a Previous Version" document.
http://www.codeigniter.com/user_guide/installation/upgrade_300.html
CodeIgniter 2.2.x has reached EOL as of 31 October 2015 but may be
installed in the interim from the www/codeigniter22 port.
20151020:
AFFECTS: users of security/keepassx2
Due to a package name change, first remove the existing package
and then reinstall it:
# pkg delete security/keepassx2
# portmaster security/keepassx2
20151019:
AFFECTS: users of www/varnish4
AUTHOR: feld@FreeBSD.org
Varnish has been updated to 4.1.0. As part of the update an effort has
been made to increase the security of the varnish daemons by utilizing
separate UIDs. Users who upgrade will likely run into a permissions
issue as a result. The simplest solution is to delete files varnish
will recreate with the correct permissions and to adjust permissions
of existing log files.
The following changes will allow you to start varnishd, varnishlog,
and varnishncsa successfully:
# rm -r /usr/local/varnish/$(hostname)
# rm /var/run/varnishlog.pid
# rm /var/run/varnishncsa.pid
# chown varnishlog /var/log/varnish.log
# chown varnishlog /var/log/varnishncsa.log
Please also note that the syntax for binding to additional IPs has
changed in 4.1.0. Multiple listening addresses are now specified by
using multiple -a arguments. In rc.conf it would look like this:
varnishd_listen="x.x.x.x:80 -a y.y.y.y:80"
20151015:
AFFECTS: users of devel/subversion, its bindings and www/mod_dav_svn
AUTHOR: lev@FreeBSD.org
The subversion upgdate to 1.9 branch introduces new "old" subversion
port devel/subversion18.
If you don't want to update your subversion installation, run
pkg set -n subversion:subversion18
and add
WITH_SUBVERSION_VER=18
to your /etc/make.conf
20151013:
AFFECTS: users of security/sshguard-ipfw
AUTHOR: feld@FreeBSD.org
The sshguard update to 1.6.2 introduces a rewritten IPFW backend. The
previous approach was to insert individual block rules with a
predefined numbered range. This does not scale well and is not
flexible so the design was scrapped. The new approach utilizes IPFW
tables. The sshguard IPFW backend now inserts offenders into hardcoded
table 22.
To continue blocking the attackers effectively you will need to add a
block rule like the following:
ipfw add deny all from 'table(22)' to any
The release announcement can be found here:
http://sourceforge.net/p/sshguard/mailman/message/34534861/
20151011:
AFFECTS: users of emulators/qemu-sbruno, emulators/qemu-user-static
AUTHOR: sbruno@FreeBSD.org
The Jemalloc update at svn r286871 introduced some TLS enhancements
for MIPS targets that require a bit of workaround. Users who want
to build MIPS packages should update their host systems past r286871
prior to upgrading their qemu-user-static/qemu-sbruno ports.
Discussion about this can be found here:
https://lists.freebsd.org/pipermail/freebsd-mips/2015-October/004018.html
20151006:
AFFECTS: users of www/firefox, www/seamonkey
AUTHOR: gecko@FreeBSD.org
Firefox since 41.0 and SeaMonkey since 2.38 require databases/sqlite3
port built with DBSTAT option enabled (default). Re-run "make config"
if the port(s) fail to build as described in ports/200853.
20150921:
AFFECTS: users of mail/rspamd
AUTHOR: vsevolod@FreeBSD.org
rspamd has been updated to the version 1.0.
For migration from the previous releases, please read the following document:
https://rspamd.com/doc/migration.html
20150919:
AFFECTS: users of multimedia/ffmpeg
AUTHOR: riggs@FreeBSD.org
ffmpeg has been updated to the version 2.8.
If you are using binary pkg, 'pkg upgrade' will do the right thing.
Users of portmaster/portupgrade must rebuild all ports which depend
on ffmpeg.
Portmaster users:
portmaster -w -r ffmpeg
Portupgrade users:
portupgrade -fr multimedia/ffmpeg
20150916:
AFFECTS: users of graphics/jpeg
AUTHOR: antoine@FreeBSD.org
Default implementation of jpeg has been switched from graphics/jpeg to
graphics/jpeg-turbo. To perform the upgrade, use instructions below.
If using binary packages: 'pkg upgrade' will do the right thing. If it
doesn't and complains about 'Cannot solve problem using SAT solver', run
'pkg delete -f jpeg' before 'pkg upgrade'.
If using portmaster:
# portmaster -o graphics/jpeg-turbo jpeg
If using portupgrade:
# portupgrade -f -o graphics/jpeg-turbo graphics/jpeg
If you compile your ports and want to keep using IJG's jpeg implementation,
add this line to your /etc/make.conf file:
JPEG_PORT=graphics/jpeg
20150914:
AFFECTS: users of lang/perl5*
AUTHOR: mat@FreeBSD.org
Binary package users can ignore this.
The way lang/perl5* ports install themselves has changed. From now on, only
the default Perl port (currently 5.20), or the version listed in
DEFAULT_VERSIONS, will install /usr/local/bin/perl.
If you are NOT using the default version of Perl (as of right now, it is
5.20) you MUST add a line setting the version you are using to your
/etc/make.conf, to preserve /usr/local/bin/perl:
DEFAULT_VERSIONS+= perl5=5.xx
If your Perl package name is not called perl5-5.xx.y but perl5.xx-5.xx.y,
you will need to rename it so that portupgrade and portmaster do not get
confused:
pkg set -n perl5.xx:perl5
After this date, to migrate from one Perl version to the other, you must
first put the DEFAULT_VERSIONS line in your make.conf, and then, for example,
if you want to move from 5.20 to 5.22, do:
pkg set -o lang/perl5.20:lang/perl5.22
portmaster `pkg shlib -qR libperl.so.5.20`
If you do not do that, you will replace your default Perl 5.20 installation
(one that has /usr/local/bin/perl) with an installation that does not have
/usr/local/bin/perl, and it will break everything.
20150908:
AFFECTS: users of print/texlive-base
AUTHOR: hrs@FreeBSD.org
pdfclose and pdfopen utilities in print/texlive-base are now in a separate
port print/xpdfopen. While upgrading print/texlive-base, a conflict may
occur between pdfclose utility installed by an old print/texlive-base and
one being installed by print/xpdfopen. If it occurred on your system,
remove the installed print/texlive-base first by using the following
command:
# pkg delete -f texlive-base
20150901:
AFFECTS: users of editors/libreoffice
AUTHOR: jkim@FreeBSD.org
editors/libreoffice has been updated to 5.0.1. However, FreeBSD 9.x is
no longer supported because it requires C++11-capable library installed
in the base. If you cannot upgrade your system or still want 4.3.x for
some reason, use editors/libreoffice4.
20150822:
AFFECTS: users of print/ghostscript*
AUTHOR: hrs@FreeBSD.org
print/ghostscript{7,8,9,9-agpl} have been split into
print/ghostscript{7,8,9,9-agpl}-{base,x11}.
print/ghostscript*-nox11 ports have been removed.
The -base installs Ghostscript binaries, libgs, and other data files
and it depends on no X11 library. The -x11 installs a small shared
library to enable x11* devices in the installed -base package.
In most cases, Ghostscript is installed as a dependency. A port/package
which requires Ghostscript will automatically pick up -base, and
when x11* devices required it will pick up -x11 in addition.
If one wants to install Ghostscript manually and full compatibility
with the previous versions, just install -x11 because it installs
-base as a dependency. Combination of the two provides the same
functionality as before.
20150821:
AFFECTS: users of security/openssh-portable
AUTHOR: bdrewery@FreeBSD.org
OpenSSH 7.0 disables support for:
* SSH protocol 1
* 1024-bit diffie-hellman-group1-sha1 key exchange
* ssh-dss, ssh-dss-cert-* host and user keys
* legacy v00 cert format
See http://www.openssh.com/txt/release-7.0 for more information and
http://www.openssh.com/legacy.html for how to re-enable some of these
algorithms.
20150820:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: haskell@FreeBSD.org
The Glorious Glasgow Haskell Compiler has been updated to version
7.10.2 and Haskell Platform has been removed. As a result, it is
recommended to rebuild or reinstall all the dependent ports and the
lang/ghc port itself in one of the following ways:
# portmaster -w -r ghc
or
# portupgrade -fr lang/ghc
In case of pkg(8), it is probably safer to remove all the GHC-dependent
packages along with GHC and reinstall everything from scratch. For
example:
# pkg query "%ro" ghc > ghc-pkgs.txt
# pkg delete -y lang/ghc
In ghc-pkgs.txt, check and remove all the packages that have been moved,
then:
# pkg install -y `cat ghc-pkgs.txt`
20150818:
AFFECTS: users of sysutils/s6
AUTHOR: Colin Booth <colin@heliocat.net>
s6-notifywhenup has been removed as of v2.2.0.0. Any run scripts
using readyness notification must be updated to use a notification
fd instead.
s6-svc options have changed for sending syncronous up/down timeouts.
Any management or wrapper scripts using those options will need to
be updated.
20150817:
AFFECTS: everybody who still uses <UNIQUENAME>_SET/UNSET in make.conf
AUTHOR: mat@FreeBSD.org
The use of <UNIQUENAME>_SET/UNSET has been deprecated for a long time,
replaced by <OPTIONS_NAME>_SET/UNSET. It is now not supported any more.
A warning will be issued telling you what to do, for example:
$ make
/!\ WARNING /!\
You are using perl_SET which is not supported any more, use:
lang_perl5.20_SET= DEBUG
20150816:
AFFECTS: users of sysutils/s6
AUTHOR: Colin Booth <colin@heliocat.net>
s6-notifywhenup is deprecated and will be removed in the next version
of s6. Any run scripts depending on that program should be updated to
use an in-servicedir notification-fd file as described under
"Readyness notification support" in s6-supervise.html.
20150812:
AFFECTS: users of net-mgmt/icinga and net-mgmt/icinga2
AUTHOR: lme@FreeBSD.org
The Icinga port has been split into two ports: net-mgmt/icinga-core
which contains the Icinga 1.x backend and net-mgmt/icinga-classicweb
which contains the Icinga classic web (CGI) interface. The latter can
be both used with Icinga 1.x and the Icinga 2 port (net-mgmt/icinga2).
A new meta-port net-mgmt/icinga was added which depends on both new
ports, so updating the Icinga port should be transparent.
20150812:
AFFECTS: users of sysutils/moosefs-master and other moosefs packages
AUTHOR: feld@FreeBSD.org
MooseFS ports have been updated to 2.0.72-1. Upstream has been
providing a private package repository to distribute newer releases of
MooseFS. These changes have now made it into the ports tree. This has
resulted in splitting up the sysutils/moosefs-master port into several
new ports:
sysutils/moosefs-cli
sysutils/moosefs-cgi
sysutils/moosefs-cgiserv
sysutils/moosefs-metalogger
sysutils/moosefs-netdump
You may need to install these additional ports/packages to restore the
complete functionality of your MooseFS cluster. Please review the
upstream documentation.
http://moosefs.com/documentation/moosefs-2-0.html
20150809:
AFFECTS: users of sysutils/xfce4-power-manager
AUTHOR: olivierd@FreeBSD.org
After upgrading to 1.5.2, by default a label is displayed next to the
panel icon (it shows percentage and remaining time).
To hide this label, a new property /xfce4-power-manager/show-panel-label
must be created:
xfconf-query -c xfce4-power-manager \
-p /xfce4-power-manager/show-panel-label -n -t int -s 0
Possible values are:
- 0 -> does not display label
- 1 -> displays only percentage
- 2 -> displays only remaining time
- 3 -> displays only percentage and remaining time (default value)
20150806:
AFFECTS: users of security/libressl
AUTHOR: brnrd@FreeBSD.org
After upgrading to 2.2.2, manually update all packages that depend on
any of the libraries provided by LibreSSL (libssl, libcrypto and
libtls) since the versions of these libraries have changed. Normally,
you can obtain the list of dependent software by running the following
command:
# pkg info -r libressl
Then you should rebuild all ports depending on libressl to avoid dangling
shared library dependencies. Poudriere and pkg handle this correctly,
portmaster and portupgrade users can use the following to rebuild all
dependent ports.
Portmaster users:
portmaster -r libressl
Portupgrade users:
portupgrade -fr security/libressl
20150805:
AFFECTS: users of sysutils/tracker
AUTHOR: kwm@FreeBSD.org
The new tracker version does not build if the old version is installed.
# pkg delete -f tracker
After use your upgrade tool of choice.
20150802:
AFFECTS: users of mail/opensmtpd
AUTHOR: ashish@FreeBSD.org
After upgrading, you will need to review all your configuration, as
there are some configuration changes between 5.4.x and 5.7.1.
20150726:
AFFECTS: users of ukrainian/monacofonts
AUTHOR: mi@aldan.algebra.com
The destination-directory used by monacofonts port was altered.
The fonts-location changed from koi8u-monaco/ to koi8-u-monaco/
Users are advised to modify the path set in their xorg.conf files.
20150720:
AFFECTS: users of print/texlive-base and other TeXLive packages
AUTHOR: hrs@FreeBSD.org
TeXLive in Ports Collection has been updated to TL2015. To upgrade
installed old packages, upgrading of "tex-*" packages is required.
If you have a problem with upgrading, please send it to
freebsd-tex@FreeBSD.org and/or file a PR.
20150711:
AFFECTS: users of graphics/gdal
AUTHOR: sunpoet@FreeBSD.org
Due to changes in header files, please deinstall gdal first while updating
from 1.x to 2.0.
20150708:
AFFECTS: users of security/libressl
AUTHOR: brnrd@FreeBSD.org
After upgrading to 2.2.1, manually update all packages that depend on
any of the libraries provided by LibreSSL (libssl, libcrypto and
libtls) since the versions of these libraries have changed. Normally,
you can obtain the list of dependent software by running the following
command:
pkg query -e '%n = libressl' %ro
Then you should rebuild all ports depending on libressl to avoid dangling
shared library dependencies.
20150707:
AFFECTS: users of net-mgmt/netmagis-*
AUTHOR: pgollucci@FreeBSD.org
Netmagis-* ports have been upgraded to 2.3.0. Upgrading from
previous version require a database schema upgrade.
See http://netmagis.org/upgrade.html
20150702:
AFFECTS: users of multimedia/ffmpeg
AUTHOR: riggs@FreeBSD.org
ffmpeg has been updated to the latest version from the 2.7 branch.
If you are using binary pkg, 'pkg upgrade' will do the right thing.
Users of portmaster/portupgrade must rebuild all ports that depend
on it.
Portmaster users:
portmaster -w -r ffmpeg
Portupgrade users:
portupgrade -fr multimedia/ffmpeg
20150702:
AFFECTS: users of net/ptpd2-devel
AUTHOR: skreuzer@FreeBSD.org
net/ptpd2 has been upgraded to version 2.3.1
net/ptpd2-devel is now deprecated and has been removed
If using portupgrade:
# portupgrade -o net/ptpd2 net/ptpd2-devel
If using portmaster:
# portmaster -o net/ptpd2 net/ptpd2-devel
20150628:
AFFECTS: users of www/varnish, www/pecl-varnish,
www/varnish-libvmod-header, www/varnish-nagios
AUTHOR: feld@FreeBSD.org
Varnish 3.x has reached End of Life status and has been removed from
the ports tree. If you were using www/varnish we urge you to to update
to www/varnish4. The upgrade guide can be found here:
https://www.varnish-cache.org/docs/trunk/whats-new/upgrade-4.0.html
www/varnish-libvmod-header and www/varnish-nagios have been updated to
versions that work with Varnish 4.x. You should not lose access to
this software.
www/pecl-varnish was updated to the latest release which has added
support for Varnish 4.x. Please note that it appears some
functionality has been lost. This is unfortunate but out of our
control. Details can be found here:
http://pecl.php.net/package-changelog.php?package=varnish
If for some reason you need www/varnish to exist in your ports tree
for a bit longer you may consider instead following the 2015Q2 branch.
Do note however that Varnish 3.x will not be receiving updates or
security patches from upstream.
20150624:
AFFECTS: users of devel/p5-Test-Tester and devel/p5-Test-use-ok
AUTHOR: adamw@FreeBSD.org
The Test::Tester and Test::use::ok modules have been rolled into
devel/p5-Test-Simple, and are included in perl 5.22. The p5-Test-Tester
and p5-Test-use-ok modules will be removed in one month.
If you use either of those ports and have perl-5.22 installed:
pkg delete p5-Test-Tester p5-Test-use-ok
If you use either of those ports and have perl-5.20 or lower installed:
portmaster -o devel/p5-Test-Simple p5-Test-Tester
portmaster -o devel/p5-Test-Simple p5-Test-use-ok
20150615:
AFFECTS: users of security/libressl
AUTHOR: brnrd@FreeBSD.org
After upgrading libressl, manually update all packages that depend on
this library since its version has changed. Normally, you can obtain the
list of dependent software by running the following command:
pkg query -e '%n = libressl' %ro
Then you should rebuild all ports depending on libressl to avoid dangling
shared library dependencies.
20150614:
AFFECTS: users of audio/libmusicbrainz5
AUTHOR: jhale@FreeBSD.org
libmusicbrainz5 has been updated to 5.1.0. Please rebuild all ports that
depend on it. PORTREVISIONS have been bumped on dependent ports.
If you use portmaster:
portmaster -w -r libmusicbrainz5
If you use portupgrade:
portupgrade -fr audio/libmusicbrainz5
20150613:
AFFECTS: users of multimedia/avidemux26-*
AUTHOR: riggs@FreeBSD.org
avidemux26 has been renamed to avidemux
If you are using binary pkg, 'pkg upgrade' will do the right thing.
Users of portmaster/portupgrade have to take a manual step:
Portmaster users:
portmaster -o multimedia/avidemux multimedia/avidemux26
Portupgrade users:
portupgrade -o multimedia/avidemux multimedia/avidemux26
20150610:
AFFECTS: users of databases/postgresql84-server
AUTHOR: girgen@FreeBSD.org
PostgreSQL-8.4 EOL was reached in July 2014. To upgrade to a later version of
choice, you need to do a dump+restore of the database.
Please follow the instructions at:
http://www.postgresql.org/docs/8.4/static/install-upgrading.html
20150527:
AFFECTS: users of sysutils/xfce4-power-manager
AUTHOR: olivierd@FreeBSD.org
Before upgrading, you must stop xfce4-power-manager daemon:
xfce4-power-manager --quit
20150519:
AFFECTS: users of sysutils/webmin and sysutils/usermin
AUTHOR: olgeni@FreeBSD.org
After upgrading to Perl 5.20 the /usr/bin/perl link will no longer
be available. You will have to check your perl-path files and
change the path of the Perl interpreter to "/usr/local/bin/perl":
/usr/local/etc/webmin/perl-path
/usr/local/etc/usermin/perl-path
20150513:
AFFECTS: users of lang/perl5*
AUTHOR: mat@FreeBSD.org
The default Perl version has been switched to Perl 5.20. If you are using
binary packages to upgrade your system, you do not have anything to do, pkg
upgrade will do the right thing. For the other people, assuming you are
migrating from 5.18 to 5.20, do:
Portupgrade users:
portupgrade -o lang/perl5.20 -f lang/perl5.18
portupgrade -f `pkg shlib -R libperl.so.5.18|tail +2`
Portmaster users:
portmaster -o lang/perl5.20 lang/perl5.18
portmaster -f `pkg shlib -R libperl.so.5.18|tail +2`
NOTE:
Perl has been removed from base more than ten years ago, so it was way past
time for the /usr/bin/perl symlink to be removed from the port. If for
some strange reason, you still need it, you will have to create it
manually.
IMPORTANT:
In case you have not updated your system in a while, and specifically,
followed the 20141126 instructions regarding the new Perl layout, you
should follow those more extensive instructions rather than the
conservative presented here.
20150510:
AFFECTS: users of mail/postfix mail/postfix-current
AUTHOR: ohauer@FreeBSD.org
The following OPTIONS where renamed to match the default used in most all other ports
- SASL2 -> SASL
- OPENLDAP -> LDAP
If any of the old OPTIONS was enabled before, please re-run "make config".
20150508:
AFFECTS: users of www/iojs
AUTHOR: linpct@gmail.com
iojs has been updated to 2.0.0. The binary modules may need to be
rebuilt due to V8 version ABI change.
20150506:
AFFECTS: users of net/asterisk13 with PJSIP (default on) and SRTP (default off) options enabled
AUTHOR: madpilot@FreeBSD.org
This applies ONLY TO USERS COMPILING FROM PORTS:
To avoid dependency problems, you must remove the pjsip port
before upgrading asterisk13.
# pkg delete pjsip
# portmaster -a
These steps are unnecessary for those using binary packages.
Please see the 20150323 entry for background about this problem.
20150501:
AFFECTS: users of graphics/qgis
AUTHOR: brd@FreeBSD.org
Following OPTIONS have been renamed in 2.8.1_1 to match upstream:
- MAPSERVER to SERVER
20150427:
AFFECTS: users of mail/opensmtpd
AUTHOR: ashish@FreeBSD.org
Following OPTIONS are being removed in 5.4.5p1:
- LDAP
- SQLITE
- MYSQL
- PGSQL
- REDIS
They are disabled/removed in upstream since 5.4.4p1, but did not get removed
from port.
20150420:
AFFECTS: users of devel/icu
AUTHOR: bapt@FreeBSD.org
icu has been updated to 55.1. Please rebuild all ports that depends on it
If you use portmaster:
portmaster -w -r icu
If you use portupgrade:
portupgrade -fr devel/icu
20150419:
AFFECTS: users of emulators/wine-devel
AUTHOR: gerald@FreeBSD.org
The COMPHOLIO option in emulators/wine-devel has been renamed to
STAGING to align with the upstream evolution of that project.
20150417:
AFFECTS: users of audio/bcg729
AUTHOR: tijl@FreeBSD.org
The Mediastreamer plugin included in this package has been separated into
a new port audio/msbcg729.
20150409:
AFFECTS: users of security/sguil
AUTHOR: feld@FreeBSD.org
security/sguil was erroneously provisioned a UID that conflicted with
the dns/dnscrypt-proxy port. A new UID and GID of 991 has been issued.
Existing users will be able to upgrade the sguil packages without
issue. The existing UID will continue to be used. If you do a clean
install of security/sguil on a new server and migrate files or
intentionally delete the sguil user and group and reinstall you may
run into permissions issues.
Examples include the /var/run/sguild and /usr/local/etc/sguild directories.
20150406:
AFFECTS: users of emulators/xen emulators/xl and sysutils/xen-tools
AUTHOR: bapt@FreeBSD.org
sysutils/xen-tools has been renamed sysutils/xen-guest-tools
emulators/xl has been renamed sysutils/xen-tools
emulators/xen has been renamed emulators/xen-kernel
A new emulators/xen has been introduced, it is a metaport that depends on
emulators/xen-kernel and sysutils/xen-tools
20150403:
AFFECTS: users of irc/rbot
AUTHOR: bdrewery@FreeBSD.org
Ruby Bot now has a new upstream maintainer. The project has been updated
to work with Ruby 2.0+. Some migration is needed to move away from
BDB regristry files. The guide for that is at
https://github.com/ruby-rbot/rbot/wiki/MigrationGuide
rbotdb can be used to backup a BDB database and then restore it to a working
format for the new rbot. Update your conf.yaml after with 'core.db: tc'
once converted.
20150331:
AFFECTS: users of www/mod_dav_svn
AUTHOR: ohauer@FreeBSD.org
Subversion modules are no longer activated in httpd.conf!
To activate the subversion apache modules a dedicated file
will be installed as modules.d/220_subversion.conf
20150324:
AFFECTS: users of dns/bind9*
AUTHOR: mat@FreeBSD.org
This is only for FreeBSD 10.0+.
BIND auto chroot has been added back to the named rc script. As enabling it
by default would most certainly break people's setup, it is not. To enable
it, and chroot it in /var/named, add the following line to your rc.conf file:
named_chrootdir="/var/named"
On first launch, the rc script will move the /usr/local/etc/namedb directory
into the chroot, and create a symlink to it.
Note that, if you're running from within a jail, you need to have a
/var/named/dev devfs created beforehand, with the null and random devices.
20150323:
AFFECTS: users of net/asterisk* and net/pjsip ports
AUTHOR: madpilot@FreeBSD.org
Due to conflicts between base OpenSSL and ports provided OpenSSL
library, which is required by net/libsrtp, the srtp support has
to be removed from the default asterisk13 port configuration,
otherwise a not working binary would be generated.
To get SRTP support working in the asterisk ports make sure all
dependencies are linked against the same SSL library implementation
to avoid runtime conflicts. On 10.1 everything will work fine
unless ports SSL libraries are explicitly installed. On older OS
versions(10.0 and earlier) you will need to compile all ports
with WITH_OPENSSL_PORT=yes.
To get working SRTP support in asterisk13 with the pjsip backend
it is also needed to enable the EXTSRTP option in the pjsip port.
If the CURL option is enabled also make sure the ftp/curl port
is using a GSSAPI implementation linking to the same SSL
implementation the other ports are using (BASE or NONE if you're
using base OpenSSL, GSSAPI_HEIMDAL GSSAPI_MIT otherwise). If an
incompatible option is being used the curl module will cause
asterisk to fail on startup due to mixing calls to OpenSSL from
base and from ports.
20150322:
AFFECTS: users of security/openssh-portable
AUTHOR: bdrewery@FreeBSD.org
The port now uses VersionAddendum for the port version string. Setting
the value to "none" in your sshd_config and restarting openssh will allow
removing the version from the banner.
20150321:
AFFECTS: users of x11-servers/xorg-server and other X servers
AUTHOR: bapt@FreeBSD.org
All fonts ports have been modified to respect XDG and install in
share/fonts
The Xorg servers now are looking there by default
If you experience font related issues, view the output of
# fc-list
If the list appears incomplete or has fonts still pointing to
/usr/local/lib/X11/fonts you may forcibly update the font cache:
# fc-cache -fs
20150317:
AFFECTS: users of editors/openoffice-4 and editors/openoffice-devel
AUTHOR: truckman@FreeBSD.org
Contrary to what is stated in pkg-message, openoffice-4 and
openoffice-devel have stored user settings in ~/.openoffice.org-devel/4
since r325370 (2013-08-25). This update expects user settings to reside
in the more standard ~/.openoffice.org/4.
To preserve your user settings, rename or copy them from
~/.openoffice.org-devel/4 to ~/.openoffice.org/4. when installing this
update to apache-openoffice-4.1.1_7 or
apache-openoffice-devel-4.2.1652526_2,3.
20150313:
AFFECTS: users of net/serviio
AUTHOR: netchild@FreeBSD.org
The Java Polling Watch Service used in Serviio 1.5.1 is fixed. If you
unchecked "Keep library automatically updated" with 1.5 (as recommended
in the 20150206 entry) you can enable it again.
20150309:
AFFECTS: users of net-mgmt/netdisco
AUTHOR: dgeo@centrale-marseille.fr
netdisco version has been upgraded to netdisco2
After upgrading, you will need to review all your configuration, as
this new version won't read old config files.
You'll be able to keep your data though netdisco-deploy command
20150305:
AFFECTS: users of x11-wm/xfce4 and multimedia/xfce4-parole
AUTHOR: olivierd@FreeBSD.org
Xfce 4.12 has been imported. Please use the following instructions to
upgrade.
For package users:
# pkg upgrade
For ports users:
# portmaster -a
# portmaster x11-wm/xfce4
GStreamer 1.0 is enabled by default in Parole media player.
Xfce 4.12 now depends of Adwaita icon theme. If you are upgrading from
Xfce 4.10 you probably still have the Tango or GNOME theme selected.
Open the Settings Manager and select Appearance. Inside dialog box switch
to the Icons tag and select the "Adwaita" entry in the list.
20150304:
AFFECTS: users of security/libressl
AUTHOR: vsevolod@highsecure.ru
After upgrading of libressl you should manually update all packages that
depending on this library since its version has been changed. Normally,
you could obtain the list of dependent software by running the following
command:
pkg query -e '%n = libressl' %ro
Then you should rebuild all ports depending on libressl to avoid dangling
shared library dependencies.
20150301:
AFFECTS: users of lang/ruby20
AUTHOR: swills@FreeBSD.org
The default ruby version has been updated from 2.0 to 2.1.
If you compile your own ports you may keep 2.0 as the default version by
adding the following lines to your /etc/make.conf file:
#
# Keep ruby 2.0 as default version
#
DEFAULT_VERSIONS+=ruby=2.0
If you wish to update to the new default version, you need to first stop any
software that uses ruby. Then, you will need to follow these steps, depending
upon how you manage your system.
If you use pkgng, simply upgrade:
# pkg upgrade -f
If you use portmaster, install new ruby, then rebuild all ports that depend
on ruby:
# portmaster -o lang/ruby21 lang/ruby20
# portmaster -R -r ruby-2.1
If you use portupgrade, install new ruby, then rebuild all ports that depend
on ruby:
# pkg delete -f ruby portupgrade
# make -C /usr/ports/ports-mgmt/portupgrade install clean
# pkg set -o lang/ruby20:lang/ruby21
# portupgrade -x ruby-2.1.\* -fr lang/ruby21
20150227:
AFFECTS: users of games/trigger
AUTHOR: makc@FreeBSD.org
games/trigger has been split and renamed to games/trigger-rally
and games/trigger-data ports. Deinstall previous version
before upgrading.
20150224:
AFFECTS: users of devel/qt4-linguist
AUTHOR: makc@FreeBSD.org
Linguist tools have been moved from qt4-linguist port to new
devel/qt4-linguisttools port. Deinstall qt4-linguist before
upgrading.
20150224:
AFFECTS: users of lang/ruby19
lang/ruby19 has reached its end-of-life and has been removed. The
default version has been 2.0 for a while. Other available versions
are Ruby 2.1 and Ruby 2.2.
Users who have DEFAULT_VERSIONS=ruby=1.9 in their /etc/make.conf are
encouraged to remove it or change it to an available version.
20150224:
AFFECTS: users of net-p2p/bitcoin (cli utilities)
The bitcoin-cli and bitcoin-tx utilities have been re-packaged into
a separate port. If you require these programs, or use the bitcoin-cli
program to access the daemon or the GUI, install net-p2p/bitcoin-utils
to reinstall them.
20150220:
AFFECTS: users of PHP
The default PHP version has been updated from 5.4 to 5.6.
If you use binary packages you should make a list of php packages
before running 'pkg upgrade':
# pkg info php5\* > ~/installed-php-ports-list
After the upgrade, check with such list if all your php extensions
are still installed, and reinstall them if needed.
20150213:
AFFECTS: users who upgraded from FreeBSD 7.x or older with "make world" but never ran "make delete-old"
AUTHOR: antoine@FreeBSD.org
Dependency registration has been reworked.
If you encounter the following error, you may have stale magic files
for file(1):
===> bar-x depends on shared library: libfoo.so - not found
You can remove the stale /usr/share/misc/magic.mime{,.mgc} files
manually or run "make delete-old" in ${SRCDIR}.
20150207:
AFFECTS: users of mail/opensmtpd-devel
AUTHOR: ashish@FreeBSD.org
MYSQL, PGSQL, LDAP, and REDIS options are removed from port, as
they're moved upstream to a separate project, which is yet to
release snapshots. If you need those options, then please install
"mail/opensmtpd" port instead. To do that:
If using portupgrade:
# portupgrade -o mail/opensmtpd mail/opensmtpd-devel
If using portmaster:
# portmaster -o mail/opensmtpd mail/opensmtpd-devel
20150206:
AFFECTS: users of net/serviio
AUTHOR: netchild@FreeBSD.org
The java dependency changed from java 7 (java/openjdk7 if you haven't
installed another java 7 implementation) to java 8 (e.g. java/openjdk8).
If serviio is the only reason that java 7 is installed, you can delete
java 7 after the update to serviio 1.5.0.
The Java Polling Watch Service used in Serviio 1.5 aggressively searches
for file system updates. Until the Serviio poller is re-enabled in 1.5.1,
consider unchecking "Keep library automatically updated" if you have a
large media collection or are concerned about CPU/disk usage.
20150204:
AFFECTS: users of databases/mysql55-(server|client)
AUTHOR: ale@FreeBSD.org
The default MySQL version has been updated from 5.5 to 5.6.
If you compile your own ports you may keep 5.5 as the default version by
adding the following lines to your /etc/make.conf file:
#
# Keep MySQL 5.5 as default version
#
DEFAULT_VERSIONS+=mysql= 5.5
If you wish to update to the new default version, you need to first stop any
running server instance. Then, you will need to follow these steps, depending
on installed packages.
# pkg set -o databases/mysql55-client:databases/mysql56-client
# pkg set -o databases/mysql55-server:databases/mysql56-server
# pkg upgrade
20150118:
AFFECTS: users of www/thttpd
AUTHOR: danfe@FreeBSD.org
thttpd was updated to version 2.26, which brings several user-noticeable
changes to the port:
- Default WWW root was changed from ${PREFIX}/www/data to more expected
(and standard) ${WWWDIR} (${PREFIX}/www/thttpd), be sure to check and
adjust your thttpd configuration file and/or web layout accordingly;
- Default CGI pattern was changed to "/cgi-bin/*"; this goes better in
line with default installation;
- Default data MIME type was changed to "application/octet-stream";
- thttpd's own htpasswd(1) program, which was previously installed as
thttpdpasswd(1) to avoid conflict with other webservers, is now being
renamed to thtpasswd(1); this not just makes it shorter, but is more
consistent with popular GNU/Linux distributions;
- Index pages for directories are not generated by default from now on
for security reasons; an option (INDEXES) is provided to turn them
back on if they are wanted;
- IPREAL option (to respect (pass on) "X-Forwarded-For" header) is now
turned on by default: it is often required when thttpd is used as a
CGI server behind nginx (http://wiki.nginx.org/ThttpdCGI).
20150113:
AFFECTS: users of www/pecl-http
AUTHOR: vanilla@FreeBSD.org
The pecl-http has been upgraded to version 2.1.4, and the new version is
not compatible with the old one. If you need the "old" 1.7.6, you can
find it in www/pecl-http1.
20150111:
AFFECTS: users of lang/python3
AUTHOR: demon@FreeBSD.org
The default version of python3 has changed from 3.3 to 3.4.
If you wish to stick with older version, add "python3=3.3" to your
DEFAULT_VERSIONS variable in /etc/make.conf. To upgrade:
If using portupgrade:
# portupgrade -o lang/python34 lang/python33
If using portmaster:
# portmaster -o lang/python34 lang/python33
20150109:
AFFECTS: users of audio/speex
AUTHOR: tijl@FreeBSD.org
The audio/speex port has been updated to 1.2rc2 and one of the libraries
it installed has been split off into a new port audio/speexdsp. Before
you can update audio/speex you must first delete the old package using
"pkg del -f speex".
20150101:
AFFECTS: users of net/unison and net/unison-nox11
AUTHOR: madpilot@FreeBSD.org
Unison has been upgraded to version 2.48, which uses a different wire
protocol than 2.40 did. In order to support synchronization with
other computers where Unison is still at version 2.40, a new port
net/unison240 has been created. It provides unison240 and if that is
GTK2-enabled, also unison240-text. This unison240 port can be
installed in parallel with the existing net/unison port.
20141230:
AFFECTS: users of deskutils/xpad
AUTHOR: jgh@FreeBSD.org
deskutils/xpad has been moved to deskutils/xpad3, since 4.x has been around
for a while.
Should you wish to stick with legacy branch at this time;
# portmaster -o deskutils/xpad deskutils/xpad3
20141225:
AFFECTS: users of graphics/png
AUTHOR: antoine@FreeBSD.org
The PNG library has been updated to version 1.6.16. Please rebuild all
ports that depend on it.
If you use portmaster:
portmaster -r png
If you use portupgrade:
portupgrade -fr graphics/png
20141224:
AFFECTS: users of lang/neon29
AUTHOR: ohauer@FreeBSD.org
The port www/neon29 was renamed to www/neon and updated to version 0.30.1
If you use pkg, simply upgrade:
# pkg upgrade
If you use portmaster, rebuild ports that depend on neon:
# portmaster -o www/neon www/neon29
# portmaster -R -r neon
20141219:
AFFECTS: users of x11/xorg and all xorg ports
AUTHOR: dumbbell@FreeBSD.org
The X.Org server (x11-servers/xorg-server) is updated to 1.14. All
ports which provide X.Org drivers must be updated simultaneously, i.e.
x11-drivers/xf86-*, emulators/virtualbox-ose-additions, net/tigervnc,
etc.
The input device autodetection backend is switched from HAL to devd.
If you configure your keyboard layout through HAL .fdi files, you need
to migrate this configuration to plain X.Org configuration files.
Up-to-date instructions and a description of the changes brought by
this update are detailed in a blog post:
http://blogs.freebsdish.org/graphics/2014/11/19/xserver-1-14-update-ready/
20141219:
AFFECTS: users of net-mgmt/xymon-server
AUTHOR: feld@FreeBSD.org
Xymon has been updated to 4.3.18. A major change is the replacement of
the individual cgi shell scripts with symlinks to a cgi program written
in C. This is to mitigate shellshock on Linux systems where the
/bin/sh -> /bin/bash. FreeBSD users were not exposed except in the
most unusual and unsupported circumstances. However, this is an
important update for security. This change could break your
configuration as Henrik describes here:
> NOTE: Replacing the shell script wrappers means that the cgioptions.cfg
> file is no longer processed as a shell script. The new wrapper works
> fine with the default version of cgioptions.cfg, but it you have
> modified it in a way that it relies on being processed by a shell, then
> it will break.
20141219:
AFFECTS: users of audio/abcde
AUTHOR: gblach@FreeBSD.org
In audio/abcde dependency has been changed from audio/py-eyed3-06
to audio/py-eyed3. Before updating audio/abcde to 2.6 you must manually
deinstall audio/py-eyed-06:
# pkg delete -f py\*-eyed3-06
20141218:
AFFECTS: users of security/openssh-portable
AUTHOR: bdrewery@FreeBSD.org
OpenSSH 6.7 disables some insecure ciphers by default, such as arcfour
and blowfish. You may have clients using these over LAN where security is
considered less important for the connection. For these cases you may need
to update your Ciphers entry in your sshd_config to enable them again.
See http://mgalgs.github.io/2014/10/22/enable-arcfour-and-other-fast-ciphers-on-recent-versions-of-openssh.html
20141217:
AFFECTS: users of lang/perl5.*
AUTHOR: mat@FreeBSD.org
Perl now links all .so it builds with libperl.so, it makes upgrading from one
Perl major version to another way easier. For binary package users, it means
pkg upgrade will detect the libperl.so.x.yy change, and reinstall the
affected packages. For users using ports, it will save rebuild time as it's
easier to detect what ports really need to be rebuilt.
Ports users are encouraged to rebuild ports that install files in SITE_ARCH.
If using Perl 5.18, run:
With portupgrade:
portupgrade -f `find /usr/local/lib/perl5/site_perl/mach/5.18 -name '*.so'|xargs pkg which -qo|sort -u`
With portmaster:
portmaster `find /usr/local/lib/perl5/site_perl/mach/5.18 -name '*.so'|xargs pkg which -qo|sort -u`
20141216:
AFFECTS: users of security/openssh-portable, security/openssh-portable66
AUTHOR: bdrewery@FreeBSD.org
All patches have been fixed for version 6.7. It is no longer required to use
the security/openssh-portable66 port.
The LPK option was removed from security/openssh-portable as it has been
deprecated since May 2013. Use AuthorizedKeysCommand as a replacement.
20141215:
AFFECTS: users of comms/spandsp-devel
AUTHOR: pawel@FreeBSD.org
comms/spandsp has been upgraded to version 0.0.6
comms/spandsp-devel is now deprecated and set for removal, all ports using
it were converted to use newer comms/spandsp. Before upgrade you must
remove comms/spandsp-devel so that ports can pick up new dependency:
# pkg delete -f spandsp-devel
20141215:
AFFECTS: users of emulators/linux_base-f10 and emulators/linux_base-c6
AUTHOR: sbruno@FreeBSD.org
The CentOS ports are now the default for stable/10 (after revision 275807).
See UPDATING entry 20141209 for details on migration of systems.
20141214:
AFFECTS: users of TeXLive
AUTHOR: hrs@FreeBSD.org
Several scripts in print/texlive-base have been moved to
devel/tex-kpathsea. Upgrading them can fail because texlive-base
depends on tex-kpathsea, and the new tex-kpathsea tries to install
files which were installed by the old texlive-base. The following
error message indicates this situation:
pkg-static: tex-kpathsea-6.2.0_1 conflicts with texlive-base-20140525_3 (installs files into the same place). Problematic file: /usr/local/bin/kpsewhere
To solve this problem, remove both of tex-kpathsea and texlive-base first
and install the new versions:
# pkg delete -f tex-kpathsea texlive-base
20141209:
AFFECTS: users of emulators/linux_base-f10 and emulators/linux_base-c6
AUTHOR: xmj@FreeBSD.org
The CentOS ports infrastructure has replaced Fedora 10 as default.
1. Please delete all remaining f10 ports/packages:
# pkg delete -f linux_base-f10 linux-f10-\*
2. Persistently update the Linux kernel version in /etc/sysctl.conf:
compat.linux.osrelease=2.6.18
This step is necessary on all FreeBSD versions, apart from 11.0-CURRENT
(after revision 271982).
3. Reinstall all software depending on Linux emulation.
As an example, reinstall linux-firefox:
# portmaster -r linux-firefox
or
# portupgrade -f www/linux-firefox
or
# pkg install linux-firefox
If difficulties are encountered, please follow the UPDATING entry 20140922
but skip step 2 (OVERRIDE_LINUX_BASE_PORT and OVERRIDE_LINUX_NONBASE_PORTS
in /etc/make.conf). In case these steps do not fix the issues, please submit
an issue report in Bugzilla and send an email to FreeBSD's emulation@ mailing
list.
Users who need to continue using Fedora 10 base and userland should do the
following instead:
1. Add these lines to /etc/make.conf:
OVERRIDE_LINUX_BASE_PORT=f10
OVERRIDE_LINUX_NONBASE_PORTS=f10
2. Downgrade the Linux kernel version in /etc/sysctl.conf on FreeBSD versions
newer than and including 11.0-CURRENT (after revision 271982).
compat.linux.osrelease=2.6.16
This is all that is needed to continue using an existing Fedora 10 Linux base
and userland.
20141208:
AFFECTS: users of ports-mgmt/poudriere, ports-mgmt/poudriere-devel
AUTHOR: bdrewery@FreeBSD.org
8.4 jails created with Poudriere 3.1, or poudriere-devel-3.0.99.20141117
should be recreated with 'jail -d' and 'jail -c'. This fixes pkg(8)
crashes.
20141208:
AFFECTS: users of databases/postgresql??-(server|client)
AUTHOR: marino@FreeBSD.org
PostgreSQL version 9.3 is now the default. To upgrade from a version
lower than 9.3, follow the instructions on the PostgreSQL.org website.
http://www.postgresql.org/docs/9.3/interactive/upgrading.html
Please note that the pg_upgrade program is installed by the
databases/postgresql93-contrib port
When using binary packages, if you only use the client port, you can
issue the following command to follow the default version:
# pkg set -o databases/postgresql92-client:databases/postgresql93-client
20141205:
AFFECTS: users of polish/kadu
AUTHOR: pawel@FreeBSD.org
Before running kadu 1.x for the first time upstream developers
advise to backup your ~/.kadu directory.
20141203:
AFFECTS: users of ports-mgmt/poudriere
AUTHOR: bdrewery@FreeBSD.org
Poudriere has been updated to 3.1.0. See the release notes at
https://github.com/freebsd/poudriere/wiki/release_notes_31 for
information on changed features and required setup.
20141130:
AFFECTS: users of devel/gettext (close to everyone)
AUTHOR: tijl@FreeBSD.org
The devel/gettext port has been split up in devel/gettext-runtime, a
lightweight package containing runtime libraries, and devel/gettext-tools,
a package containing developer tools. The devel/gettext port still exists
as a metaport.
You must first delete the existing installation of gettext and then
reinstall it. This will break sudo, so you *must* do this in a root
shell (sudo -i) if you use sudo.
# pkg delete -f gettext
# portmaster devel/gettext
Or for portupgrade users:
# pkg delete -f gettext
# portinstall devel/gettext
Or for binary users:
# pkg delete -f gettext
# pkg upgrade
20141127:
AFFECTS: users of lang/perl5.*
AUTHOR: mat@FreeBSD.org
There was a nasty bug introduced in the update below, it was introduced in
SVN revision 373476 and corrected in 373485. If you get errors looking like
this one:
===> Registering installation for p5-Params-Util-1.07_1 as automatic
pkg-static: lstat(/usr/ports/devel/p5-Params-Util/work/stage/usr/local/./usr/local/lib/perl5/site_perl/mach/5.16/auto/Params/Util/.packlist): No such file or directory
*** [fake-pkg] Error code 74
You will have to wipe your ports tree clean. If using portsnap, with:
portsnap extract
If using subversion:
svn revert -R
20141127:
AFFECTS: users of lang/perl5.*
AUTHOR: mat@FreeBSD.org
The .packlist files are back, if you upgraded all your p5- ports yesterday
and need them, you will need to reinstall them again, see yesterday's update
for instructions.
20141126:
AFFECTS: users of multimedia/x264
AUTHOR: xmj@FreeBSD.org
With the recent split of multimedia/x264 in library and binary and library
components, if an application that uses libx264 is updated before x264 itself,
multimedia/libx264 will conflict with the existing x264 package. Delete
this package before continuing any update that depends on it:
# pkg delete -f x264
Install the updated x264 and/or upgrade the other applications that
depend on libx264, such as ffmpeg.
20141126:
AFFECTS: users of lang/perl5.*
AUTHOR: mat@FreeBSD.org
The directories where Perl modules are installed has changed. All
affected ports' PORTREVISION have been bumped, so upgrading should
be as painless as possible. The old directories have been kept in
the default Perl @INC to make it even more painless.
The default Perl has been switched to lang/perl5.18. These examples
are for switching from lang/perl5.16, if you are running a different
version, replace lang/perl5.16 with the origin of the Perl you have
installed.
Binary package users:
# pkg upgrade -f
Portupgrade users:
0) Fix pkgdb.db (for safety):
pkgdb -Ff
1) Reinstall new version of Perl (5.18):
portupgrade -o lang/perl5.18 -f lang/perl5.16
2) Reinstall everything that depends on Perl:
portupgrade -fr lang/perl5.18
Portmaster users:
portmaster -o lang/perl5.18 lang/perl5.16
Conservative:
portmaster p5-
Comprehensive (but perhaps overkill):
portmaster -r perl5-
Note: If the "perl5-" glob matches more than one port you will need to specify
the name of the installed Perl package explicitly. You can get its name
by running: pkg info perl5
20141125:
AFFECTS: users of EFL libraries
AUTHOR: gblach@FreeBSD.org
EFL libraries has been merged into one port. Before installing devel/efl
you must deinstall old EFL libraries:
# pkg delete -f eina eet evas evas-\* ecore\* eio efreet embryo edje \
ethumb emotion
# make -C /usr/ports/devel/efl install clean
20141125:
AFFECTS: users of x11-wm/e17-module*
AUTHOR: gblach@FreeBSD.org
Enlightenment has been updated to 0.19.1. Some of e-modules can't be build
with updated Enlightenment, these modules has been marked as broken.
E-modules which work with new Enlightenment has been renamed to
x11-wm/e-module-*. To update these modules you must call the following
commands (substituting the name of module in place *):
# portmaster -o x11-wm/e-module-* x11-wm/e17-module-*
# portmaster -o x11-wm/e-modules x11-wm/e17-modules
or
# portupgrade -fo x11-wm/e-module-* x11-wm/e17-module-*
# portupgrade -fo x11-wm/e-modules x11-wm/e17-modules
20141123:
AFFECTS: users of security/heimdal
AUTHOR: hrs@FreeBSD.org
The header and library files have been moved from PREFIX/{include,lib} to
PREFIX/{include,lib}/heimdal at r373047 to fix a library dependency
confusion when software attempts to link a Heimdal library in base and
an external library in LOCALBASE/lib at the same time.
All of packages which depend on security/heimdal have to be recompiled
and reinstalled because of this library location change.
20141119:
AFFECTS: users of x11/gnome2, graphics/clutter and lang/vala
AUTHOR: kwm@FreeBSD.org
GNOME 3.14 was imported. Because this is a big change some manual help is
needed. Please use the following instructions to update.
Make a list of the installed ports:
# pkg info > ~/installed-ports-list
Delete the old and conflicting packages:
# pkg delete clutter gnome-utils gnome-panel gnome-keyring vala-vapigen \
guile gcalctool gnome-media libgnomekbd gnome-themes at-spi
# pkg delete gnome-screensaver gnome-applets bug-buddy \
evolution-exchange evolution-webcal gnome-system-tools \
seahorse-plugins gnome-control-center
For package users the following lines will be enough:
# pkg upgrade
# pkg install gnome3
For ports users should do the following:
# portmaster -a
# portmaster x11/gnome3
After these steps, check with the list we made earlier if your favorite
ports are still installed, and reinstall them if needed.
20141117:
AFFECTS: users of security/openssh-portable
AUTHOR: bdrewery@FreeBSD.org
Most of the optional patches for OpenSSH do not apply to the 6.7 update yet.
The 6.6 version has been copied to security/openssh-portable66 if you require
the use of one of the optional ports.
20141109:
AFFECTS: users of multimedia/mediabrowser
AUTHOR: woodsb02@gmail.com
The default MediaBrowser database/configuration/logs/media metadata
storage directory has moved from /usr/local/mediabrowser to
/var/db/mediabrowser. Users are advised either to move the contents of
the old directory to the new location, or to add a mediabrowser_data_dir
entry to /etc/rc.conf.
20141029:
AFFECTS: users of devel/libvirt
AUTHOR: jgh@FreeBSD.org
Application state and resource information has been changed from older
path of /usr/local/var to /var. Users are advised to copy over contents
of old var directory to new location if they wish to preserve resources
from the old setup.
20141019:
AFFECTS: users of x11/kde4-runtime
AUTHOR: kde@FreeBSD.org
KDE SC ports have been updated to 4.14.2. Several files have been
moved between packages, therefore the following action is required
before running any pkg/port upgrade utility:
# pkg delete -f kde-runtime-4\*
20141008:
AFFECTS: users of lang/ruby19
AUTHOR: swills@FreeBSD.org
The default ruby version has been updated from 1.9 to 2.0.
If you compile your own ports you may keep 1.9 as the default version by
adding the following lines to your /etc/make.conf file:
#
# Keep ruby 1.9 as default version
#
DEFAULT_VERSIONS+=ruby=1.9
If you wish to update to the new default version, you need to first stop any
software that uses ruby. Then, you will need to follow these steps, depending
upon how you manage your system.
If you use pkgng, simply upgrade:
# pkg upgrade
If you use portmaster, install new ruby, then rebuild all ports that depend
on ruby:
# portmaster -o lang/ruby20 lang/ruby19
# portmaster -R -r ruby-2.0
If you use portupgrade, install new ruby, then rebuild all ports that depend
on ruby:
# pkg delete -f ruby ruby-iconv portupgrade
# make -C /usr/ports/ports-mgmt/portupgrade install clean
# pkg set -o lang/ruby19:lang/ruby20
# portupgrade -x ruby-2.0.\* -fr lang/ruby20
20141003:
AFFECTS: xorg users
AUTHOR: bapt@FreeBSD.org
The WITH_NEW_XORG setting has been activated by default on all versions
of FreeBSD, which allows us to have packages for xorg 1.12 and kde4.
Please be aware that on systems that only support syscons
switching virtual terminals or exiting X
results in a black screen or the last image of their desktop
(like a screenshot) being presented. Commands can still be typed blindly.
Most, if not all, systems should be using vt(4) and this can be enabled
by setting kern.vty=vt in /boot/loader.conf and reboot to activate.
20141001:
AFFECTS: xorg users
AUTHOR: bapt@FreeBSD.org
The WITH_NEW_XORG setting has been activated by default on FreeBSD 10.0
and above, which allows us to have packages for xorg 1.12 and kde4.
Please be aware that on systems that only support syscons
switching virtual terminals or exiting X
results in a black screen or the last image of their desktop
(like a screenshot) being presented. Commands can still be typed blindly.
Most, if not all, systems should be using vt(4) and this can be enabled
by setting kern.vty=vt in /boot/loader.conf and reboot to activate.
20140930:
AFFECTS: users of mail/maildrop
AUTHOR: madpilot@FreeBSD.org
Due to the way pkg works please note that the configuration
variables MAILDROP_SUID and MAILDROP_SGID, despite keeping their
old names, are now required to contain a valid username and
groupname existing on the system in which the package will be
installed, while in the past numeric uids and gids worked fine.
Wrong values will cause pkg to skip installing the setuid binaries
on the system.
Please check your configuration.
20140929:
AFFECTS: users of comms/usbmuxd
AUTHOR: avilla@FreeBSD.org
libusbmuxd.so was split from comms/usbmuxd into comms/libusbmuxd.
Remove usbmuxd before upgrading to avoid conflicts:
# pkg delete -f usbmuxd
If you need the daemon usbmuxd(1), you can reinstall the package
after the upgrade.
20140928:
AFFECTS: users of deskutils/calibre
AUTHOR: madpilot@FreeBSD.org
The dependency on graphics/py-imaging in calibre has been changed
to using the graphics/py-pillow port.
Due to this change automatic updating of the port will not work
correctly.
It is suggested to remove calibre and py-imaging from the system
and then reinstall calibre again using binary packages or ports.
20140927:
AFFECTS: users of net/foreman-proxy
AUTHOR: mm@FreeBSD.org
In version 1.6 Foreman Smart Proxy splits its configuration into multiple
ruby files located in PREFIX/etc/foreman-proxy/settings.d.
The configuration of each service (dhcp, dhs, bmc, etc.) has been moved
into a dedicated file.
You can use a bundled script to convert your old settings to new settings:
PREFIX/share/foreman/extra/migrate_settings.rb
20140926:
AFFECTS: users of shells/bash
AUTHOR: bdrewery@FreeBSD.org
Bash supports a feature of exporting functions in the environment with
export -f. Running bash with exported functions in the environment will
then import those functions into the environment of the script being ran.
This resulted in security issues CVE-2014-6271 and CVE-2014-7169, commonly
known as "shellshock". It also can result in poorly written scripts being
tricked into running arbitrary commands.
To fully mitigate against this sort of attack we have applied a non-upstream
patch to disable this functionality by default. You can execute bash
with --import-functions to allow it to import functions from the
environment. The default can also be changed in the port by selecting the
IMPORTFUNCTIONS option.
20140926:
AFFECTS: users of net/asterisk and net/asterisk11
AUTHOR: madpilot@FreeBSD.org
The asterisk ports have been modified to have the LUA option
turned on by default to make such functionality available to users
of binary packages.
Some care should be taken before upgrading by people not using Lua
to avoid the sample extensions.lua file from being loaded on reload
after updating the asterisk port/pkg.
Users compiling from ports not interested in LUA support are advised
to disable the option before updating.
People using binary packages(or not wanting to disable the LUA
option in the port) not using the Lua functionality should add:
noload => pbx_lua.so
to the PREFIX/etc/asterisk/modules.conf file, if using the
autoload=yes option in that same file. People not autoloading
modules don't need to perform any special action.
If asterisk is rebooted and the pbx_lua module gets loaded on a
system were it should not, it will load the example extensions.lua
configuration file adding unexpected logic to your dialplan. In
such a case following the above steps and reloading asterisk will
fix the problem.
20140922:
AFFECTS: users of emulators/linux_base-f10 and emulators/linux_base-c6
AUTHOR: xmj@FreeBSD.org
The complete drop-in replacement linux-c6 port infrastructure is in
ports and will shortly replace the current linux-f10- ports as default.
To switch to the linux-c6 infrastructure:
0. Back up all your vital information!
1. Remove the current linux base port and all linux-f10- ports:
# pkg delete -f linux_base-f10 linux-f10-\*
2. Add these lines to /etc/make.conf:
OVERRIDE_LINUX_BASE_PORT=c6
OVERRIDE_LINUX_NONBASE_PORTS=c6
3. Make sure no Linux application is running.
4. Update the Linux kernel version in /etc/sysctl.conf:
compat.linux.osrelease=2.6.18
Make it take effect immediately:
# sysctl compat.linux.osrelease=2.6.18
5. Install emulators/linux-c6.
These steps are usually sufficient. If there are difficulties, expand
step 1 to:
1a. Remove all ports which depend on the linux base port.
1b. Remove the linux base port.
1c. Clean the /compat/linux/ directory.
If there are any other difficulties not fixed by these extended steps,
please submit an issue report in Bugzilla and send an email to
FreeBSD's emulation@ mailing list.
20140909:
AFFECTS: users seeing build errors about missing *.la files
AUTHOR: tijl@FreeBSD.org
We are in the process of adjusting or, if possible, removing libtool archives
(*.la files) from all ports because they can otherwise cause overlinking
between packages. This is the problem where in the dependency chain A->B->C
an extra link is added from A to C even if A does not use C directly. This
makes some updates to port C expensive because then both A and B have to be
rebuilt instead of just B.
This is mostly behind the scenes work that you won't notice. In fact most
ports have already been converted. You may however run into build errors
about missing *.la files if a port update in the past went wrong and left
behind *.la files with references to other *.la files that are no longer
there. In this case, please run the following command:
find /usr/local/lib -name '*.la' | xargs grep -l 'libfoo\.la' | xargs pkg which
(Replace libfoo\.la with the *.la file that is missing.)
This command will print a list of *.la files that refer to the missing *.la
file and what package they belong to. First, where it says "not found in
the database", remove the *.la file. After removing all such files, where
it says "installed by package X", rebuild X. Eventually the list printed by
that command will be empty and the build error should be gone.
20140826:
AFFECTS: users of ports-mgmt/pkg, ports-mgmt/pkg-devel
AUTHOR: bdrewery@FreeBSD.org
Pkg has been updated to 1.3.7. This fixes registration and tracking of
shared libraries. All earlier versions of Pkg incorrectly marked some
shared libraries and used the wrong name for some.
Please note announcement for special instructions at:
http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000086.html
- Users need to run 'pkg update -f' and 'pkg check -Ba' after upgrading to
pkg-1.3.7 and before updating any other packages. This avoids needing to
reinstall anything not needed due to changed shlibs.
For binary package users:
# pkg install ports-mgmt/pkg
# pkg update -f
# pkg check -Ba
# pkg upgrade
For port users:
# make -C /usr/ports/ports-mgmt/pkg build deinstall install clean
# pkg check -Ba
- People building packages for serving to other systems need to rebuild
all packages with 1.3.7.
20140823:
AFFECTS: users of graphics/libjpeg-turbo
AUTHOR: adamw@FreeBSD.org
libjpeg-turbo installs its own unique library (libturbojpeg.so) and
a drop-in replacement for libjpeg.so. The drop-in replacement has been
split off into graphics/jpeg-turbo; libjpeg-turbo now installs only
libturbojpeg.so.
If you were using the libjpeg.so from graphics/libjpeg-turbo, you
should install graphics/jpeg-turbo AFTER upgrading the libjpeg-turbo
port.
20140823:
AFFECTS: users of TeXLive
AUTHOR: hrs@FreeBSD.org
TeXLive in Ports Collection has been updated to TL2014.
When upgrading print/texlive-base on a system which has
TL2012 packages, the following error may occur:
pkg-static: texlive-base-20140525 conflicts with texlive-texmf-20120701_4
Please remove texlive-texmf-20120701_4 first in that case.
If you still get a similar "conflict of install files" error,
please remove all of tex-* and texlive-* packages and then
see if ${PREFIX}/share/texmf-dist directory are empty. If not,
installing TeXlive can fail. Removing files in the directory
manually will fix the installation problem.
20140821:
AFFECTS: users of databases/db4, databases/db4[1-7]*
AUTHOR: mandree@FreeBSD.org
HEADS UP: for some applications that store their data in Berkeley DB
databases, you may have to export the data before the upgrade and
reload it afterwards. Detailed instructions are at
<https://wiki.freebsd.org/Ports/BerkeleyDBCleanup>.
The older databases/db4* ports providing versions 4.0 to 4.7
inclusively have been removed, and 4.8 has been deprecated.
The default Berkeley DB version is now 5.3.
(6.x has a different license, but will be eligible as default on
systems that build ports from source and have db6 installed.)
All enabled and working ports have been changed such that they use
Berkeley DB 4.8 or newer, and an -exp run has been made.
After you have performed the first steps from the Wiki documentation,
and have arrived at a step that reads "build all applications", then
type as privileged user and without the hash sign:
# Tools/scripts/BDB-upgrade-helper.sh
The helper script requires that ports-mgmt/portmaster or
.../portupgrade is installed, will try to upgrade your applications
with either of these tools (portmaster preferred), and if that succeeds,
it will attempt to delete the packages if confirmed interactively.
20140815:
AFFECTS: users of graphics/ilmbase and graphics/OpenEXR
AUTHOR: mandree@FreeBSD.org
The OpenEXR and ilmbase (Industrial Light and Magic) shared object
names have changed. You must rebuild all packages that require either
of these libraries, by using one of these commands:
# portmaster -r ilmbase -r OpenEXR
or
# portupgrade -fr graphics/ilmbase graphics/OpenEXR
The PORTREVISIONs of all ports that require ilmbase and/or OpenEXR
have been bumped.
20140810:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: haskell@FreeBSD.org
The Glorious Glasgow Haskell Compiler has been updated to version
7.8.3 and Haskell Platform to 2014.2.0.0. Hence it is recommended to
rebuild or reinstall all the dependent ports and the lang/ghc port
itself by one of the following commands:
# portmaster -w -r ghc
or
# portupgrade -fr lang/ghc
If you use pkg(8) then it is just safer to remove all the GHC-dependent
packages along with GHC and reinstall everything from scratch.
Something alone these lines may work:
# pkg query "%ro" > ghc-pkgs.txt
# pkg delete -y lang/ghc
# pkg install -y `cat ghc-pkgs.txt | grep -Ev "/hs-(haskeline|terminfo|transformers|xhtml)"
20140803:
AFFECTS: users of security/p5-openxpki
AUTHOR: wg@FreeBSD.org
The following ports have been integrated into security/p5-openxpki:
security/p5-openxpki-client
security/p5-openxpki-client-scep
security/p5-openxpki-deployment
Before update make sure to remove the old packages:
# pkg remove security/p5-openxpki-client
# pkg remove security/p5-openxpki-client-scep
# pkg remove security/p5-openxpki-deployment
20140802:
AFFECTS: users of astro/stellarium
AUTHOR: danfe@FreeBSD.org
Stellarium was updated to version 0.13.0. It's a new major release, and
it is based on Qt version 5 now. For those who are not comfortable with
upgrading to the new Qt, previous Stellarium version (0.12.4) was copied
over to `astro/stellarium-qt4' port.
20140731:
AFFECTS: users of www/ajaxplorer
AUTHOR: madpilot@FreeBSD.org
The ajaxplorer project was renamed to pydio.
Due to this update some manual steps will need to be performed
after updating the port.
IMPORTANT: Perform a backup of the ajaxplorer installation and
the databases backing it(if you're using that feature).
First manually remove the ajaxplorer port and install www/pydio
afterwards.
Further steps will be available in the pkg-message, which can
be shown with these commands:
# pkg info -D pydio
Please also read the upgrading notes at:
http://pyd.io/pydio-core-5.2.0#Upgrading
20140728:
AFFECTS: users of net/GeoIP
AUTHOR: adamw@FreeBSD.org
GeoIP no longer ships with the GeoIP database. To continue using GeoIP,
you MUST fetch the database after upgrading by running geoipupdate.sh.
20140727:
AFFECTS: users of comms/qpage
AUTHOR: marino@FreeBSD.org
The default configure file location has changed from
${LOCALBASE}/etc/qpage.cf to ${LOCALBASE}/etc/qpage.conf
You will likely want to move the old configure file to the new location
after updating if it contains custom settings.
20140725:
AFFECTS: users of cad/netgen
AUTHOR: stephen@FreeBSD.org
Before you update this port the old one should be removed. (This is
because the build may try to link to libraries that are in
${LOCALBASE}/lib rather than in ${WRKSRC}.)
20140724:
AFFECTS: users of dns/mydns-ng
AUTHOR: danilo@FreeBSD.org
The dns/mydns-ng port no longer has the suffix (-mysql|-pgsql). Before
you update this port the old one must be removed:
pkg remove mydns-ng-mysql
or
pkg remove mysql-ng-pgsql
20140723:
AFFECTS: users of devel/libevent
libevent1 has been replaced by libevent2 via the compatibility layer.
All applications that used libevent1 must be rebuilt.
Please remove libevent1 before upgrading, by running:
pkg delete -f libevent
20140723:
AFFECTS: users of security/scanlogd
AUTHOR: tgyurci@gmail.com
The security/scanlogd port now creates scanlogd user and group. Previous
scanlogd user and group must be removed before updating to not conflict
with the one created by the port:
pw userdel scanlogd
pw groupdel scanlogd
20140723:
AFFECTS: users of TeX
AUTHOR: bapt@FreeBSD.org
TeXLive is now the default teX provider.
Please remove all TeX-related packages based on teTeX.
20140722:
AFFECTS: users of mail/exim
AUTHOR: vsevolod@FreeBSD.org
The behaviour of expansion of arguments to math comparison functions (<,
<=, =, =>, >) was unexpected, expanding the values twice. Please update
your configuration if you have relied on such an expansion.
20140722:
AFFECTS: users of multimedia/mediainfo
AUTHOR: sunpoet@FreeBSD.org
mediainfo has been split into 3 ports: libzen, libmediainfo and mediainfo.
Please uninstall mediainfo before you update this port.
20140722:
AFFECTS: users of games/bsdgames
AUTHOR: adamw@FreeBSD.org
Please disregard any prior instructions about moving your game data to
/usr/local/var/games. If you have done this, please move it back to
/var/games.
20140714:
AFFECTS: users of databases/db6
AUTHOR: mandree@FreeBSD.org
Oracle Berkeley DB 6 has been upgraded to version 6.1.19. Since the
previous 6.0 version, the log file format has changed in 6.1.
Depending on applications used, you may need to take action BEFORE you
upgrade. For details, please see the online upgrade manual at
<http://docs.oracle.com/cd/E17076_04/html/upgrading/upgrade_process.html>
<http://docs.oracle.com/cd/E17076_04/html/installation/upgrade_61_toc.html>
Note: if you've got Apache installed and depending on db6, you may
need to upgrade it separately BEFORE upgrading other ports, such as
Apache modules.
After that, you must rebuild all applications that link to db6 because
the shared library name has changed with the upgrade. To do that:
If you use portmaster:
portmaster -w -r db6-
If you use portupgrade:
portupgrade -fr databases/db6
20140714:
AFFECTS: users of net/linphone-base
AUTHOR: tijl@FreeBSD.org
Linphone has been updated to version 3.7.0 and the linphone-base port
has been split into separate components. You must first delete the
linphone-base package before you can update ports that depend on it.
pkg del -f linphone-base
or
pkg_delete -f linphone-base\*
20140713:
AFFECTS: users of mail/postfix-current
AUTHOR: sahil@FreeBSD.org
This is a significant update; so, please carefully review the
RELEASE_NOTES to identify which incompatible changes impact your
environment. Of particular note are changes to the Postfix
build/install procedure.
Please backup main.cf, master.cf and any other important files
associated with your Postfix setup before updating.
20140713:
AFFECTS: users of www/apache22
AUTHOR: ohauer@FreeBSD.org
The default version was changed from www/apache22 to www/apache24,
pre-build apache modules and web applications will also reflect this!
In case ports are build by yourself and apache22 is required
use the following command to keep apache22 as default.
# echo "DEFAULT_VERSIONS+=apache=2.2" >> /etc/make.conf
20140710:
AFFECTS: users of lang/rust
AUTHOR: robak@FreeBSD.org
The lang/rust port was updated to 0.11 and is now only working on FreeBSD
versions 10 and 11 -- the 9.x support has been removed by upstream.
20140709:
AFFECTS: users of security/pam-pgsql
AUTHOR: tijl@FreeBSD.org
The pam_pgsql.so module is now installed in PREFIX/lib (/usr/local/lib)
instead of /usr/lib.
20140627:
AFFECTS: users of Java
AUTHOR: swills@FreeBSD.org
The default version of OpenJDK has been updated from 1.6 to 1.7. To update,
users of Java will need to rebuild all ports that depend on Java:
If you use pkg (regardless of if you build ports from source or install
binary packages):
# pkg set -o java/openjdk6:java/openjdk7
If you use portmaster to build ports from source:
# portmaster -o java/openjdk7 openjdk6
# portmaster -R -r openjdk
If you use portupgrade to build ports from source:
# portupgrade -fo java/openjdk7 java/openjdk6
If you use pkg to install prebuilt binary packages:
# pkg install -fR java/openjdk7
If you wish to keep the 1.6 version as default, add the following lines to
your /etc/make.conf file:
#
# Keep OpenJDK 1.6 as default version.
#
JAVA_PREFERRED_PORTS=JAVA_PORT_NATIVE_OPENJDK_JDK_1_6
20140627:
AFFECTS: users of security/amavisd-milter
AUTHOR: delphij@FreeBSD.org
The default working directory of security/amavisd-milter have been
changed to /var/run/amavis/. Users will have to adjust path to the
milter socket.
20140627:
AFFECTS: users of editors/emacs21 and editors/emacs22
AUTHOR: ashish@FreeBSD.org
editors/emacs21, and editors/emacs22 are removed as they were
unmaintained upstream for a while. Their dependent ports are removed
as well. Please switch to editors/emacs (Emacs 24 release), or
editors/emacs23 (Emacs 23 release), or editors/emacs-devel (Emacs
development branch) ports.
20140626:
AFFECTS: users of mail/qmail-spamcontrol
AUTHOR: bdrewery@FreeBSD.org
Spamcontrol has been updated to the 2.7 release.
It is advised to read the release notes as some features were removed and
others reworked.
http://www.fehcom.de/qmail/spamcontrol/RELEASE_27.spamcontrol
2.7 manual: http://www.fehcom.de/qmail/spamcontrol/README_spamcontrol.html
20140626:
AFFECTS: users of comms/smstools3
AUTHOR: madpilot@FreeBSD.org
The smstools3 startup screen has been modified to allow smsd to
change uid/gid by itself. The rc options smsd_logfile, smsd_user
and smsd_group are not supported anymore, user, group and log
filename should be specified in the configuration file.
The sample configuration file has been updated to have defaults
equivalent to the old ones.
20140624:
AFFECTS: users of databases/p5-Bucardo
AUTHOR: mat@FreeBSD.org
The bucardo_ctl script has been renamed to bucardo, so, to follow the naming,
the bucardo_ctl_enable rc variable has been renamed to bucardo_enable.
20140622:
AFFECTS: users of security/gpgme
AUTHOR: jhale@FreeBSD.org
If you have both security/gnupg AND security/gnupg1 installed, gpgme will
now automatically detect and use security/gnupg. Specifically, it will
search for gpgconf(1) first and use the paths for the binaries provided
by it. Failing that, it will search for a binary named "gpg".
It is no longer possible to specify the location of the gpg binary at
buildtime to differentiate between version 1.x and version 2.x. The port
options GNUPG1 and GNUPG2 now merely add their respective versions of gnupg
as build and runtime dependencies.
20140618:
AFFECTS: users of devel/m17n-* textproc/*m17n*
AUTHOR: Nikola Lecic <nikola.lecic@anthesphoria.net>
devel/m17n-db now incorporates a set of user-contributed input methods and
a conversion script, formerly available through textproc/m17n-contrib.
Delete textproc/m17n-contrib first and then update/install devel/m17n-db.
20140616:
AFFECTS: users of devel/subversion
AUTHOR: lev@FreeBSD.org
The subversion port has been overhauled. Some optional parts were extracted
into separate ports. These ports are:
www/mod_dav_svn
instead of option MOD_DAV_SVN.
security/subversion-gnome-keyring
instead of option GNOME_KEYRING.
security/subversion-kwallet
instead of option KDE_KWALLET.
If you used devel/subversion with one (or more) of these non-standard
options, you should install the appropriate port(s) after upgrading
subversion.
"mod_dontdothat" is installed unconditionally by www/mod_dav_svn port (it
depended on the TOOLS option before), but is not activated by default, you
may need to edit apache's configuration file.
The devel/subversion port now installs svndiff, svndiff3 and svndiff4
commands if TOOLS option is enabled. They was skipped before.
The official names "diff", "diff3" and "diff4" are prefixed with "svn" to
avoid conflicts with base and other diff versions.
All libraries and binaries are now stripped if the MAINTAINER_DEBUG
option is not selected (including all sub-ports, like bindings
and mod_dav_svn).
20140611:
AFFECTS: users of devel/icu
AUTHOR: bapt@FreeBSD.org
icu has been updated to 53.1. Please rebuild all ports that depend on it
If you use portmaster:
portmaster -w -r icu
If you use portupgrade:
portupgrade -fr devel/icu
20140610:
AFFECTS: users of www/firefox, www/seamonkey, mail/thunderbird, www/libxul
AUTHOR: gecko@FreeBSD.org
Gecko ports were switched to use more system libraries. Some of them
must be built with certain options unset (default). `audio/soundtouch'
has to be installed with INTEGER_SAMPLES option disabled.
20140604:
AFFECTS: users of dns/dnscrypt-proxy
AUTHOR: feld@FreeBSD.org
The 1.4.0 update to dns/dnscrypt-proxy introduced a privilege
separation capability utilizing the new _dnscrypt-proxy user.
The home directory for this user was misconfigured as /nonexistent.
The dnscrypt-proxy server will try to chroot to _dnscrypt-proxy's home
directory and fail to start. If you are affected you will need to
change _dnscrypt-proxy's home directory to /var/empty:
# pw usermod _dnscrypt-proxy -d /var/empty
20140603:
AFFECTS: users of net-p2p/zetacoin
AUTHOR: daniel@morante.net
The zetacoind process now runs as the zetacoin user. Please make sure that
this user has appropriate permissions to the blockchain database and wallet
directory.
If you are using the default path, run:
# chown -R zetacoin:zetacoin /var/db/zetacoin
# chown -R zetacoin:zetacoin /.zetacoin
20140529:
AFFECTS: users of databases/postgresql??-(server|client)
AUTHOR: mat@FreeBSD.org
PostgreSQL version 9.2 is now the default. To upgrade from a version
lower than 9.2, follow the instructions on the PostgreSQL.org website.
http://www.postgresql.org/docs/9.2/interactive/upgrading.html
When using binary packages, if you only use the client port, you can issue
the following command to follow the default version:
# pkg set -o databases/postgresql90-client:databases/postgresql92-client
20140528:
AFFECTS: users of security/calife & security/calife-devel
AUTHOR: roberto@FreeBSD.org
Calife 2.8.x is now officially EoL. Replace it with 3.0 (formerly
calife-devel).
For port builds system please follow the following instructions:
Please delete old version:
# pkg delete -f security/calife-devel
or
# pkg_delete security/calife-devel
and install security/calife.
Change origin if you had the old one:
# pkg set -o security/calife-devel:security/calife
20140527:
AFFECTS: users of databases/db6
AUTHOR: mandree@FreeBSD.org
Oracle BerkeleyDB 6.0 was upgraded to version 6.0.30. Databases that
use BLOBs need to be upgraded using db_upgrade-6.0 before they can be
accessed again. See the manual for details:
<http://docs.oracle.com/cd/E17076_03/html/api_reference/C/db_upgrade.html>
Databases that do not use BLOBs are unaffected.
20140526:
AFFECTS: users of lang/lua
lang/lua has been replaced by lang/lua51.
For port builds system please follow the following instructions:
# portmaster -o lang/lua51 lang/lua
or
# portupgrade -fo lang/lua51 lang/lua
or
# pkg set -o lang/lua:lang/lua51
20140525:
AFFECTS: users of devel/py-gobject3 and devel/py-dbus
AUTHOR: gnome@FreeBSD.org
py-gobject3 and py-dbus where split up in a common port (*-common),
python2 port (py-*) and python3 port (py3-*) port.
For port builds systems please follow the next following instructions:
Please delete the existing version to avoid conflicts.
# pkg delete -f py27-gobject3 py27-dbus
or
# pkg_delete devel/py-gobject3 devel/py-dbus
followed by:
# portmaster devel/py-gobject3 devel/py-dbus
or
# portinstall devel/py-gobject3 devel/py-dbus
20140521:
AFFECTS: users of databases/mariadb55*
AUTHOR: grembo@FreeBSD.org
The mariadb55-client and mariadb55-server port have been changed to
respect hier(7) and behave like the mysql ports. Therefore mysql-server
and mysql monitor will refuse to start if my.cnf exists in /etc or
/etc/mysql.
In case you're affected, please move /etc/my.cnf to /usr/local/etc and/or
/etc/mysql/my.cnf to /usr/local/etc/mysql.
20140520:
AFFECTS: users of security/dropbear
AUTHOR: ak@FreeBSD.org
security/dropbear port separator syntax was changed (again), now using
host^port instead of host%port.
You may need to update your config files while updating to 2014.63 from
the previous versions.
20140511:
AFFECTS: users of databases/firebird*
AUTHOR: bapt@FreeBSD.org
The default version of databases/firebird* have been changed to support
DEFAULT_VERSIONS variable
DEFAULT_VERSIONS=firebird=2.5
20140507:
AFFECTS: users of lang/open-cobol
AUTHOR: johans@FreeBSD.org
lang/open-cobol was moved to lang/gnu-cobol to match the new package
name. Please do the following according to package manager used.
# portmaster -o lang/gnu-cobol lang/open-cobol
or
# portupgrade -fo lang/gnu-cobol lang/open-cobol
or
# pkg set -o lang/open-cobol:lang/gnu-cobol
20140506:
AFFECTS: users of ports-mgmt/portshaker
AUTHOR: romain@FreeBSD.org
ports-mgmt/portshaker was updated to avoid creating an aditional 'ports'
subdirectory when merging to a poudriere_tree without ZFS, so that
portshaker's default location matches poudriere's default location.
Users of poudriere on non-ZFS systems should not anymore have to pass extra
options to poudriere for it to find the ports tree.
20140506:
AFFECTS: users of security/yassl
AUTHOR: gahr@FreeBSD.org
security/yassl was moved to security/cyassl to match the original package
name. Please do the following according to package manager used.
# portmaster -o security/cyassl security/yassl
or
# portupgrade -fo security/cyassl security/yassl
or
# pkg set -o security/yassl:security/cyassl
20140505:
AFFECTS: users of databases/libiodbc
AUTHOR: bapt@FreeBSD.org
libiodbc no longer provide the odbc compatibility
Rebuild all ports that are linked to libiodbc
# portmaster -r libiodbc
or
# portupgrade -r databases/libiodbc
20140503:
AFFECTS: users of science/hdf5* and science/netcdf*
AUTHOR: sunpoet@FreeBSD.org
There are major version changes in HDF5 and NetCDF ports:
- science/hdf5: updated from 1.6.9 to 1.8.12
- science/hdf5-18: replaced by science/hdf5
- science/netcdf: updated from 3.6.3 to 4.3.2
C++/Fortran binding moved into new ports (by upstream)
- science/netcdf-cxx: new port for C++ binding of NetCDF
- science/netcdf-fortran: new port for Fortran binding of NetCDF
- science/netcdf-ftn: replaced by science/netcdf-fortran
- science/netcdf3-ftn: replaced by science/netcdf-fortran
- science/netcdf4: replaced by science/netcdf
Please deinstall them before building the new versions.
20140428:
AFFECTS: users of java/openjdk7
AUTHOR: glewis@FreeBSD.org
The previous version of openjdk7 had a bug that will prevent it from
being able to bootstrap itself. Please deinstall openjdk7 before
building the new version.
20140427:
AFFECTS: users of graphics/gdal
AUTHOR: sunpoet@FreeBSD.org
Due to changes in header files, please deinstall gdal first while updating
from 1.9.x/1.10.x to 1.11.x.
20140420:
AFFECTS: users of net/samba4
AUTHOR: timur@FreeBSD.org
Samba4 port now re-uses the same logic and startup script as Samba41. So,
to get net/samba4 runing you need to rename samba4_enable in /etc/rc.conf
to the samba_sever_enable.
samba_server_enable="YES"
Startup script tries it's best to guess which out of samba/nmbd/smbd/winbindd
daemons have to be started, but you can fine tune this by specifying them in
rc.conf, just make sure that samba_server_enable is enabled(see entry for 20121022).
20140416:
AFFECTS: users of x11/xorg graphics/dri graphics/libGL and related ports
AUTHOR: x11@FreeBSD.org
The default xorg version has been switched on FreeBSD 10-STABLE and
FreeBSD 9-STABLE.
To upgrade graphics/libGL, graphics/dri and related MESA ports, it is
necessary to first remove the old versions of those ports.
No special upgrade procedure is needed for xorg ports but it is
necessary to recompile all xorg drivers (xf86-*) and other ports that
depend on the xserver version, including
emulators/virtualbox-ose-additions. Portrevisions have been bumped
where needed, but users of drivers not in the ports tree will need to
recompile those.
If it is important to stay on the old versions, it is possible to
specify WITHOUT_NEW_XORG= in /etc/make.conf to get the old xorg
distribution.
For users in need of working console when using KMS drivers (intel and
radeon graphics cards) please use the new vt(9) console driver.
For more information, see https://wiki.freebsd.org/Graphics and
https://wiki.freebsd.org/Newcons .
To update:
# pkg_delete -f libGL-\* dri-\*
or
# pkg delete -f libGL dri
followed by
# portmaster graphics/dri graphics/libGL
or
# portupgrade graphics/dri graphics/libGL
and then
# portmaster -a
or
# portupgrade -a
20140416:
AFFECTS: users of print/freetype2 textproc/libxml2 x11/pixman
x11/libxcb and graphics/freeglut
AUTHOR: x11@FreeBSD.org and gnome@FreeBSD.org
The library version of the above libraries has been brought in line
with what upstream expects. To do this all users of these ports need
to be rebuilt. Portrevisions have been bumped as a consequence.
# portmaster -r freetype2 -r libxml2 -r pixman -r freeglut -r libxcb
or
# portupgrade -rf freetype2 libxml2 pixman freeglut libxcb
20140415:
AFFECTS: users of mod_python3
AUTHOR: ohauer@FreeBSD.org
www/mod_python3 was renamed to www/mod_python33, additional www/mod_python35
with support for apache24 was added to the portstree.
To reflect the new port location use:
pkgng users:
# pkg set -o www/mod_python3:www/mod_python33
portmaster users:
# portmaster -o www/mod_python33 www/mod_python3
portupgrade users:
# portugrade -o www/mod_python33 www/mod_python3
20140414:
AFFECTS: users of dmd 1.X and dmd 2.x.
AUTHOR: cy@FreeBSD.org
lang/dmd and lang/dmd2 have switched places. Dmd 1.x is no longer supported
by digitalmars.com and is now the secondary dmd port in the collection.
Dmd2 is the primary port. What this means to dmd users is that dmd1 is now
used to invoke dmd 1.x and the dmd command (instead of dmd2) now invokes
dmd 2.x.
20140413:
AFFECTS: users of Python and pkg >= 1.2.7_1
AUTHOR: koobs@FreeBSD.org
There have been reports of the following error when upgrading Python ports:
pkg-static: Plist error, directory listed as a file: <name>.egg-info
The cause is an outdated or unpatched version of setuptools or distribute
installed by the user, or leftover from previous upgrades being used during
the `setup.py install` phase. pkg >= 1.2.7_1 now generates an error where
previously it did not.
Users should inspect their ${LOCALBASE}/lib/pythonX.Y/site-packages
directory, and remove any entries that reference versions of
setuptools or distribute *not* provided by ports or packages.
Examples of entries that may be removed are:
1) distribute-0.6.35-py2.7.egg
2) setuptools-0.6c11-py2.7.egg
3) *Any* version of setuptools directly from PyPI via pip or easy_install
More information is available here:
http://lists.freebsd.org/pipermail/freebsd-ports/2014-April/091618.html
20140410:
AFFECTS: users of mail/vpopmail
AUTHOR: bdrewery@FreeBSD.org
If you are storing limits in MySQL, the following schema changes must be made:
ALTER TABLE `limits` ADD `disable_maildrop` TINYINT(1) DEFAULT '0' NOT NULL AFTER `disable_spamassassin`;
ALTER TABLE `limits` MODIFY `diskquota` BIGINT UNSIGNED NOT NULL DEFAULT 0;
ALTER TABLE `limits` MODIFY `maxmsgcount` BIGINT UNSIGNED NOT NULL DEFAULT 0;
ALTER TABLE `limits` MODIFY `defaultquota` BIGINT UNSIGNED NOT NULL DEFAULT 0;
ALTER TABLE `limits` MODIFY `defaultmaxmsgcount` BIGINT UNSIGNED NOT NULL DEFAULT 0;
20140403:
AFFECTS: users of net/rabbitmq
AUTHOR: olgeni@FreeBSD.org
This release changes the behaviour of the default "guest" user.
Previously the guest user could be accessed from any network
location. In RabbitMQ 3.3.0 and later, the guest user can only
be accessed via localhost by default.
Any other users you create will not (by default) be restricted
in this way.
See http://www.rabbitmq.com/access-control.html for more information.
20140403:
AFFECTS: users of net/kdnssd
AUTHOR: kde@FreeBSD.org
KDE SC ports have been updated to 4.12.4. kdnssd package has been renamed
to match upstream naming. pkgng users need to update package origin
manually:
# pkg set -o net/kdnssd:net/zeroconf-ioslave
20140402:
AFFECTS: users of textproc/elasticsearch
AUTHOR: tj@FreeBSD.org
Elasticsearch has been updated to version 1.1.0. If you are updating
from a version prior to 1.0.0 you will need to do a full cluster
shutdown for this update as it can not be performed in a rolling
fashion.
20140401:
AFFECTS: users of security/gnutls3
AUTHOR: bdrewery@FreeBSD.org
Libdane support is no longer enabled by default. Rebuild the port with
the LIBDANE option if danetool is desired.
20140331:
AFFECTS: users of print/cups-client and print/cups-image
AUTHOR: bsam@FreeBSD.org
CUPS ports have been updated to version 1.7.1. A file has migrated from
cups-image port to cups-client. Before upgrading you should force the
removal of cups-image port, otherwise it will conflict with the new one.
pkg users:
# pkg delete -f cups-image\*
other users:
# pkg_delete -f cups-image\*
2. Install/upgrade other cups* packages.
If cups-filters complains about a missing cups/raster.h include,
try reinstalling the cups-client package.
20140327:
AFFECTS: users of lang/php5 and lang/php55 with Apache module
AUTHOR: ale@FreeBSD.org
The Apache PHP module has been separated from the main PHP port.
If you had the APACHE OPTION selected, you have to perform the
following steps:
1) update your lang/php* options (i.e. 'make config')
2) rebuild lang/php* port
3) install www/mod_php* port
It is *mandatory* to build both ports with the same DEBUG and ZTS
options, so if you have a threaded Apache (i.e. worker or event MPM)
you have to select the ZTS option in lang/php* port.
20140322:
AFFECTS: users of devel/apr1
AUTHOR: ohauer@FreeBSD.org
APR was updated to 1.5.0, BDB requirement was bumped to 48+
It is necessary to first remove the old version of devel/apr1.
Please rebuild all ports which are using functions from APR/APR-util
such as Apache, Subversion, etc.
# portmaster -r apr
or
# portupgrade -r devel/apr1
20140318:
AFFECTS: users of net/openldap24-server
AUTHOR: delphij@FreeBSD.org
Please note that Berkeley DB backend is now deprecated and will be removed
in a future version. Existing users should migrate data to the new MDB
backend when possible.
20140317:
AFFECTS: users of misc/ossp-uuid-perl
AUTHOR: culot@FreeBSD.org
misc/ossp-uuid-perl was replaced by misc/p5-OSSP-uuid. Please do the
following according to package manager used.
# portmaster -o misc/p5-OSSP-uuid misc/ossp-uuid-perl
or
# portupgrade -fo misc/p5-OSSP-uuid misc/ossp-uuid-perl
or
# pkg set -o misc/p5-OSSP-uuid:misc/ossp-uuid-perl
20140312:
AFFECTS: users of net/openistgt
AUTHOR: jpaetzel@FreeBSD.org
Between istgt supporting target reload, and iscsid using CTL there is no
point to this port. As such it has been deleted without warning, since
the support for it is as best questionable.
pkgng users:
# pkg set -o net/openistgt:net/istgt
portmaster users:
# portmaster -o net/istgt net/openistgt
# portmaster -r istgt
portupgrade users:
# portupgrade -o net/istgt -f net/openistgt
# portupgrade -fr net/istgt
20140310:
AFFECTS: users of mail/p5-Mail-SpamAssassin and japanese/p5-Mail-SpamAssassin
AUTHOR: ohauer@FreeBSD.org
The port mail/p5-Mail-SpamAssassin was renamed to mail/spamassassin and
the port japanese/p5-Mail-SpamAssassin was renamed to japanese/spamassassin.
To ease upgrading run the following set of commands:
pkgng users:
# pkg set -o mail/p5-Mail-SpamAssassin:mail/spamassassin
# pkg set -o japanese/p5-Mail-SpamAssassin:japanese/spamassassin
portmaster users:
# portmaster -o mail/spamassassin mail/p5-Mail-SpamAssassin
# portmaster -o japanese/spamassassin japanese/p5-Mail-SpamAssassin
20140307:
AFFECTS: users of devel/py-setuptools dependent ports
AUTHOR: sunpoet@FreeBSD.org
devel/py-setuptools is being used for every python ports (if USE_PYDISTUTILS
defined) since r336553. Due to PKGORIGIN limitation, we cannot build one
python port with python27 and the other with python33 since they require
different setuptools versions which have same PKGORIGIN. With the addition
of py-setuptools{27,32,33}, we could now have py27-foo and py33-bar coexist
in one system.
Note that this is only a short-term solution. It does not help if you need
coexistence of one port with different python versions, e.g. py27-foo and
py33-foo.
Please rebuild all ports that depend on devel/py-setuptools and use
devel/py-setuptools{27,32,33} instead.
XX represents python version (27, 32 or 33) in the following steps.
pkgng users:
# pkg set -o devel/py-setuptools:devel/py-setuptoolsXX
portmaster users:
# portmaster -o devel/py-setuptoolsXX devel/py-setuptools
# portmaster -r py\*setuptools
portupgrade users:
# portupgrade -o devel/py-setuptoolsXX -f devel/py-setuptools
# portupgrade -fr devel/py-setuptools
20140304:
AFFECTS: users of security/kwallet
AUTHOR: kde@FreeBSD.org
KDE SC ports have been updated to 4.12.3. kwallet package has been renamed
to match upstream naming. pkgng users need to update package origin
manually:
# pkg set -o security/kwallet:security/kwalletmanager
20140302:
AFFECTS: users of sysutils/ansible
AUTHOR: rm@FreeBSD.org
This is an major update and changes were introduced in ansible 1.5, that
are not backward compatible. Please refer changelog there before update:
https://raw.github.com/ansible/ansible/v1.5.0/CHANGELOG.md
20140223:
AFFECTS: users of net-mgmt/mk-livestatus
AUTHOR: ohauer@FreeBSD.org
livecheck was removed in 1.2.3.i5. It never was really stable, Nagios4
has something similar built in.
Please remove the "livecheck=..." directive from etc/nagios/nagios.cfg.
20140222:
AFFECTS: users of mail/courier-imap
AUTHOR: oliver@FreeBSD.org
When using SSL and updating from an older version, run mkdhparams(8) to
create the new TLS_DHPARAMS file which is needed for Courier IMAP 4.15
and up.
20140222:
AFFECTS: users of net-im/turpial
AUTHOR: olivierd@FreeBSD.org
Turpial has been updated to 3.0, due to changes in net-im/turpial port it
will be necessary to remove it before updating.
20140220:
AFFECTS: users of editors/vim
AUTHOR: sunpoet@FreeBSD.org
The editors/vim port has been reworked to simplify option handling. In UI
option group, a new option (CONSOLE) was added for users who do not need
GUI support. This option is off by default. You might encounter install
or package failures with "old" option setting. Please run "make config" to
modify your setting.
20140219:
AFFECTS: users of textproc/docbook*
AUTHOR: mat@FreeBSD.org
The textproc/docbook-* ports have been consolidated into two ports
textproc/docbook-sgml and textproc/docbook-xml.
Before upgrading you should force the removal of the existing ports, they
will conflict with the new ones.
pkg users can run:
pkg delete -f docbook-xml\* docbook-sk\* docbook\[2345\]\?\?-\* docbook-4\*
the other users can run:
pkg_delete -f docbook-xml\* docbook-sk\* docbook\[2345\]\?\?-\* docbook-4\*
20140218:
AFFECTS: users of KDE SC 4
AUTHOR: kde@FreeBSD.org
KDE SC ports have been updated to 4.12.2. kdeadmin, kdenetwork, kdesdk,
and kdetoys ports have been split due to upstream changes.
KDE Workspace port has been updated to 4.11.6. It requires modern
Mesa libraries, provided by WITH_NEW_XORG knob. To update Xorg ports
to newer version follow instructions at https://wiki.freebsd.org/Graphics
20140218:
AFFECTS: users of misc/kdehier4
AUTHOR: kde@FreeBSD.org
KDE4_PREFIX has been changed from /usr/local/kde4 to /usr/local.
All ports that depends on kdehier4 must be reinstalled.
PORTREVISION for affected ports has been increased, upgrading tools
(portmaster, pkg) should handle this update without manual intervention.
Please check /usr/local/kde4 for leftovers after upgrade. If you don't
have locally modified files, e.g. under /usr/local/kde4/etc, you may
safely remove /usr/local/kde4.
20140214:
AFFECTS: users of lang/perl5.12
AUTHOR: mat@FreeBSD.org
Perl 5.12 has been removed. The default Perl is lang/perl5.16.
pkg(8) users:
1) Update the origin to point to 5.16:
pkg set -o lang/perl5.12:lang/perl5.16
2) Upgrade perl and all dependencies:
pkg install -Rf lang/perl5.16
Portupgrade users:
0) Fix pkgdb.db (for safety):
pkgdb -Ff
1) Reinstall new version of Perl (5.16):
portupgrade -o lang/perl5.16 -f lang/perl5.12
2) Reinstall everything that depends on Perl:
portupgrade -fr lang/perl5.16
Portmaster users:
portmaster -o lang/perl5.16 lang/perl5.12
Conservative:
portmaster p5-
Comprehensive (but perhaps overkill):
portmaster -r perl-
Note: If the "perl-" glob matches more than one port specify the name of
the Perl directory in /var/db/pkg explicitly. Also, depending on when
perl 5.12 was installed last, the prefix may be perl-, perl5- or
perl5.12-.
20140211:
AFFECTS: users of lang/php* database/postgresql* database/mysql* www/apache*
AUTHOR: mat@FreeBSD.org
The default versions of lang/php*, databases/postgresql*,
databases/mysql* and www/apache* have been changed to support the
new DEFAULT_VERSIONS variable.
DEFAULT_APACHE_VER, DEFAULT_MYSQL_VER, DEFAULT_PGSQL_VER,
DEFAULT_FPC_VER and DEFAULT_PHP_VER are now deprecated. You can use
the new DEFAULT_VERSIONS variable like this:
DEFAULT_VERSIONS=php=5.5 mysql=5.6 apache=2.4
20140208:
AFFECTS: users of spamdyke
AUTHOR: bdrewery@FreeBSD.org
Spamdyke has been updated to 5.0.0. The behavior has changed from
4.x. Please see the upgrading notes at:
http://www.spamdyke.org/documentation/UPGRADING_version_4_to_version_5.txt
20140208:
AFFECTS: users of icu
AUTHOR: bapt@FreeBSD.org
icu has been updated to 52.1. Please rebuild all ports that depend on it
if you have the glib20 port built with COLLATION_FIX option activated
If you use portmaster:
portmaster -w -r icu
If you use portupgrade:
portupgrade -fr devel/icu
If you use pkgng with binary packages:
pkg install -fR devel/icu
20140201:
AFFECTS: users of net-mgmt/zabbix*
AUTHOR: koobs@FreeBSD.org
The login shell for the zabbix user in UIDs was changed from
/usr/sbin/nologin to /bin/sh to fix the zabbix-agent UserParameter
feature.
To update the existing user on your system, run:
# pw usermod zabbix -s /bin/sh
20140114:
AFFECTS: users of www/mod_authnz_external
AUTHOR: ohauer@FreeBSD.org
www/mod_authnz_external was moved to www/mod_authnz_external22
Please do the following according to package manager used.
# portmaster -o www/mod_authnz_external22 www/mod_authnz_external
or
# portupgrade -fo www/mod_authnz_external22 www/mod_authnz_external
or
# pkg set -o www/mod_authnz_external:www/mod_authnz_external22
20140113:
AFFECTS: users of net/samba41
AUTHOR: timur@FreeBSD.org
With the introduction of Samba 4.1 corresponding port lost SWAT support
and made WINBIND support mandatory. As samba4 introduced additional 'samba'
daemon to the tripplet of nmbd/smbd/winbindd to avoid confusion startup
script for samba41 was renamed to 'samba_server'. To start the whole band
up it's enough to add to the rc.conf:
samba_server_enable="YES"
Startup script tries it's best to guess which out of samba/nmbd/smbd/winbindd
daemons have to be started, but you can fine tune this by specifying them in
rc.conf, just make sure that samba_server_enable is enabled(see entry for 20121022).
20140112:
AFFECTS: users of devel/libical
AUTHOR: kwm@FreeBSD.org
The libical port was updated to 1.0.0. Due to the shared library bump
and the removal of the .la file, all ports that use libical need to be
rebuilt.
# portmaster -r libical
or
# portupgrade -fr libical
or
# pkg install -fR libical
20140111:
AFFECTS: users of lang/go
AUTHOR: jlaffaye@FreeBSD.org
Third party Go packages installed via the ports tree are no longer installed
in GOROOT (PREFIX/go) but in a specific path: PREFIX/share/go
Affected ports had their PORTREVISION bumped.
To reinstall these packages via the ports tree, it is needed to deinstall
them first (the build will fail if the `go` command detects that they
already exists in GOROOT).
If you are using these third party Go packages for local Go development,
you have to add this new path to your GOPATH environment variable.
20140107:
AFFECTS: users of Qt 4 ports
AUTHOR: makc@FreeBSD.org
Qt 4 ports framework has been reworked, several ports have been renamed.
To ease upgrading run the following set of commands:
# pkg set -o devel/qt4-declarative:x11-toolkits/qt4-declarative
# pkg set -o devel/qt4-qtestlib:devel/qt4-testlib
# pkg set -o textproc/qt4-clucene:textproc/clucene-qt4
# pkg set -o www/qt4-webkit:www/webkit-qt4
# pkg set -o x11/qt4-opengl:graphics/qt4-opengl
20140102:
AFFECTS: users of archivers/p7zip
AUTHOR: rakuco@FreeBSD.org
The MINIMAL and MODULES options have been removed from archivers/p7zip,
which now unconditionally installs the 7z, 7za and 7zr, as if the MINIMAL
option was previously unset.
The RAR decompression codec, whose source code has a more restrictive
license that forbids its use for creating RAR archives, has been moved to
a separate port, archivers/p7zip-codec-rar.
20131230:
AFFECTS: ports using Apache Software License 2.0
AUTHOR: ohauer@FreeBSD.org
The acronym for Apache Software License 2.0 was renamed to APACHE20
20131226:
AFFECTS: users of security/cyrus-sasl2
AUTHOR: ume@FreeBSD.org
The SASL GSSAPI authentication plugin was removed from
security/cyrus-sasl2 port and divided into new
security/cyrus-sasl2-gssapi port.
If you are using the SASL GSSAPI authentication, please install
security/cyrus-sasl2-gssapi port, in addition to upgrading
security/cyrus-sasl2 port.
20131218:
AFFECTS: users of news/cnews
AUTHOR: dinoex@FreeBSD.org
The default path for overview files has changed.
Rebuild your overview files after the update with:
su - news /usr/local/libexec/cnews/nov/initov
20131217:
AFFECTS: users of databases/ruby-bdb or ports-mgmt/portupgrade and databases/db5 or databases/db6
AUTHOR: mandree@FreeBSD.org
databases/db5 and databases/db6 have recently been updated to fix
bugs. This changed their patchlevel version.
However, ruby-bdb used to break during the db[56] upgrade due to a bug
described in <http://www.freebsd.org/cgi/query-pr.cgi?pr=184921>.
THEREFORE, YOU MUST MANUALLY UPGRADE databases/ruby-bdb INDIVIDUALLY
TO 0.6.6_2 OR NEWER WHEN USING portupgrade AGAINST databases/db[56]
PORTS. To achieve that, type:
# portupgrade databases/ruby-bdb
or
# portmaster -x 'db*' databases/ruby-bdb
before proceeding with other upgrades.
Should you have corrupted the portupgrade databases, or if ruby-bdb
refuses to work with the upgraded db* port with errors such as "DB
needs compatible versions of libdb & db.h", then rebuild the ruby-bdb
port manually, and fix the portupgrade databases:
# make -C /usr/ports/databases/ruby-bdb all deinstall install clean
# pkgdb -fu
# portupgrade -f db5 db6
This should return portupgrade to normal operation.
20131216:
AFFECTS: users of x11/xorg, graphics/libGL, graphics/dri, all xorg ports
AUTHOR: zeising@FreeBSD.org
The default xorg version has been switched on FreeBSD CURRENT.
To upgrade graphics/libGL, graphics/dri and related MESA ports, it is
necessary to first remove the old versions of those ports.
No special upgrade procedure is needed for xorg port but it is
necessary to recompile all xorg drivers (xf86-*) and other ports that
depend on the xserver version, including
emulators/virtualbox-ose-additions. Portrevisions have been bumped
where needed, but users of drivers not in the ports tree will need to
recompile those.
If it is important to stay on the old versions, it is possible to
specify WITHOUT_NEW_XORG= in /etc/make.conf to get the old xorg
distribution.
To update:
# pkg_delete -f libGL-\* dri-\*
or
# pkg delete -f libGL dri
followed by
# portmaster graphics/dri graphics/libGL
or
# portupgrade graphics/dri graphics/libGL
and then
# portmaster -a
or
# portupgrade -a
20131216:
AFFECTS: users of databases/db4*
AUTHOR: mandree@FreeBSD.org
Berkeley DB versions before and excluding 4.8 have been marked deprecated.
New port installations should be based on Berkeley DB 5 or 6.
Note that Oracle Berkeley DB 6 is under the more restrictive Affero GPL v3
license, be sure to review if using that fits your requirements.
You can add WITH_BDB_VER=5 or WITH_BDB_VER=6 to /etc/make.conf to have all
applications that get rebuilt use Oracle Berkeley DB 5 or 6, respectively.
DO NOT FORCE DELETE older BerkeleyDB packages, that breaks the upgrade
tools. Instead, first rebuild the ports that depend on it, then
remove the old Berkeley DB versions.
Berkeley DB ports should be able to build/install with an older and a
newer version version both installed if WITH_BDB_VER is set. If a
port then grabs the old Berkeley DB version, that is an issue with the
port that requires Berkeley DB, and should be reported to the
maintainer.
If you are interested in upgrading now already, we have instructions
at <https://wiki.freebsd.org/Ports/BerkeleyDBCleanup>.
20131209:
AFFECTS: users of dns/bind96, dns/bind98 and bind99 on FreeBSD 10.0
AUTHOR: erwin@FreeBSD.org
Bind versions before 9.6.3.2.ESV.R10_2, 9.8.6_2, and 9.9.4_2 on
FreeBSD 10.0 will replace named.conf on upgrade. Make sure to
backup any local changes before upgrading to the _2 versions.
20131208:
AFFECTS: users of java/subversion-java
AUTHOR: ohauer@FreeBSD.org
java/subversion-java was moved to java/java-subversion.
Please do the following according to package manager used.
# portmaster -o java/java-subversion java/subversion-java
or
# portupgrade -fo java/java-subversion java/subversion-java
or
# pkg set -o java/subversion-java:java/java-subversion
20131208:
AFFECTS: users of x11-toolkits/vte
AUTHOR: kwm@FreeBSD.org
The gnome-pty-helper program has been split off from the vte package
to allow both vte and vte3 to be installed at the same time. To update
after this change please do the following:
# pkg_delete -f vte\*
or
# pkg delete -fg vte\*
followed by
# portmaster x11-toolkits/vte
or
# portupgrade x11-toolkits/vte
20131207:
AFFECTS: users of mail/opensmtpd
AUTHOR: ashish@FreeBSD.org
There has been changes to the OpenSMTPD configuration. Please refer to
smtpd.conf(5), and use "smtpd -nf smtpd.conf" to validate.
20131203:
AFFECTS: users of graphics/opencv, graphics/opencv-core
AUTHOR: jhale@FreeBSD.org
OpenCV has been updated to 2.4.7. Due to movement of files between the
opencv port and the opencv-core port, it will be necessary to remove
both packages before updating.
# pkg_delete -f opencv\*
or
# pkg delete -fg opencv\*
followed by
# portmaster -a
or
# portupgrade -a
20131127:
AFFECTS: users of devel/py-distribute (i.e you)
AUTHOR: wg@FreeBSD.org
devel/py-distribute was replaced with devel/py-setuptools. Please do
the following according to package manager used. py-distribute port
will be removed shortly.
# portmaster -o devel/py-setuptools devel/py-distribute
or
# portupgrade -fo devel/py-setuptools devel/py-distribute
or
# pkg set -o devel/py-distribute:devel/py-setuptools
# pkg install -f devel/py-setuptools
20131125:
AFFECTS: users of www/mod_wsgi
AUTHOR: ohauer@FreeBSD.org
The port www/mod_wsgi moved to www/mod_wsgi2 to reflect the port version.
# portmaster -o www/mod_wsgi2 www/mod_wsgi
or
# portupgrade -fo www/mod_wsgi2 www/mod_wsgi
or
# pkg set -o www/mod_wsgi:www/mod_wsgi2
20131120:
AFFECTS: users of lang/perl5.12 lang/perl5.14 lang/perl5.16 and lang/perl5.18
AUTHOR: mat@FreeBSD.org
The THREADS option has been enabled by default in all Perl. If you're using
binary packages you need to do :
# pkg install -Rf perl5
If you're not using binary packages, and want to switch from non threaded
Perl to threaded Perl, you need to recompile and reinstall most ports
depending on Perl. Supposing you have Perl 5.16, you would do:
Portupgrade users:
0) Fix pkgdb.db (for safety):
pkgdb -Ff
1) Change the option in lang/perl5.16:
make -C /usr/ports/lang/perl5.16 config
2) Reinstall everything that depends on Perl:
portupgrade -fr lang/perl5.16
Portmaster users:
1) Change the option in lang/perl5.16:
make -C /usr/ports/lang/perl5.16 config
2) Reinstall everything that depends on Perl:
portmaster -r perl5-
Note: The installed Perl package was named perl and is now named perl5, if
you have not updated your installation in a long time, you may need to
use "perl-" here.
20131112:
AFFECTS: users of dns/nsd
AUTHOR: erwin@FreeBSD.org
dns/nsd was updated to the new 4.0.0 major release.
This version replaces the nsdc control program with nsd-control.
This requires some manual setup with nsd-control-setup and editing
of the config files. nsd-control is incompatible with nsdc so when
that is used in scripts, these should be adapted. More information:
http://www.nlnetlabs.nl/svn/nsd/tags/NSD_4_0_0_REL/doc/NSD-4-features
NSD version 3 is still supported in dns/nsd3. To keep the old
version:
# portmaster -o dns/nsd3 dns/nsd
or
# portupgrade -fo dns/nsd3 dns/nsd
or
# pkg set -o dns/nsd:dns/nsd3
20131112:
AFFECTS: users of dns/bind9*
AUTHOR: erwin@FreeBSD.org
All bind9 ports have been updated to support FreeBSD 10.x after
BIND was removed from the base system. It is now self-contained
in ${PREFIX}/etc/namedb, and chroot and symlinking options are
no longer supported out of the box.
For users of FreeBSD 9.x and earlier, the LINKS option is no longer
enabled by default, but still supported. No other changes should
affect those users, and updating without changing already set options
will keep the system in the same state.
20131103:
AFFECTS: users of security/libtasn1 and any port that depends on it
AUTHOR: novel@FreeBSD.org
libtasn1 has been updated to 3.3 and all shared libraries versions have
been bumped. So you need to rebuild all applications that depend on
libtasn1.
# portmaster -r libtasn1
or
# portupgrade -fr security/libtasn1
or
# pkg install -fR security/libtasn1
20131031:
AFFECTS: users of multimedia/rtmpdump
AUTHOR: hrs@FreeBSD.org
The library part of multimedia/rtmpdump is split into multimedia/librtmp.
multimedia/rtmpdump now depends on the library port.
A build error can occur if you built and installed old rtmpdump by
using stock OpenSSL, and then install security/openssl and try to build
multimedia/rtmpdump without deinstalling the installed one. Please
make sure if the old rtmpdump is removed before building the new version.
20131028:
AFFECTS: users of comms/dcf77pi
AUTHOR: rene@FreeBSD.org
As of version 1.0.5 the configuration file was renamed from
hardware.txt to config.txt and the format has been made more flexible.
If you have customized any parameters, be sure to copy them to
config.txt after which hardware.txt can be removed.
20131028:
AFFECTS: users of multimedia/ffmpeg1 and multimedia/ffmpeg-devel
AUTHOR: wg@FreeBSD.org
The port ffmpeg was updated, ffmpeg1 and ffmpeg-devel were removed in
favor of ffmpeg.
# portmaster -o multimedia/ffmpeg multimedia/ffmpeg1
or
# portupgrade -fo multimedia/ffmpeg multimedia/ffmpeg1
or
# pkg set -o multimedia/ffmpeg1:multimedia/ffmpeg
and
# portmaster -o multimedia/ffmpeg multimedia/ffmpeg-devel
or
# portupgrade -fo multimedia/ffmpeg multimedia/ffmpeg-devel
or
# pkg set -o multimedia/ffmpeg-devel:multimedia/ffmpeg
20131023:
AFFECTS: users of lang/perl5.12 lang/perl5.14
AUTHOR: mat@FreeBSD.org
The default Perl has been switched to lang/perl5.16. These examples
are for switching from lang/perl5.14, if you are running another
version, replace lang/perl5.14 with the origin of the Perl you have
installed.
Pkgng users:
# pkg set -o lang/perl5.14:lang/perl5.16
# pkg install -Rf lang/perl5.16
Portupgrade users:
0) Fix pkgdb.db (for safety):
pkgdb -Ff
1) Reinstall new version of Perl (5.16):
portupgrade -o lang/perl5.16 -f lang/perl5.14
2) Reinstall everything that depends on Perl:
portupgrade -fr lang/perl5.16
Portmaster users:
portmaster -o lang/perl5.16 lang/perl5.14
Conservative:
portmaster p5-
Comprehensive (but perhaps overkill):
portmaster -r perl-
Note: If the "perl-" glob matches more than one port you will need to specify
the name of the Perl directory in /var/db/pkg explicitly.
20131020:
AFFECTS: users of mail/squirrelmail
AUTHOR: adamw@adamw.org
The default location for user data files and attachments has changed.
This will only affect new installations, and upgrading SquirrelMail
WILL NOT break your current installation.
To make use of the new locations, do the following:
# cp -rp /var/spool/squirrelmail/pref/* /usr/local/www/squirrelmail/data
# cp -rp /var/spool/squirrelmail/attach/* /usr/local/www/squirrelmail/attach
and then run /usr/local/www/squirrelmail/configure and tell SM about
it ("Data Directory" and "Attachment Directory" under "General Options").
This version of SquirrelMail is a SNAPSHOT that brings in PHP 5.4 and 5.5
compatibility.
20131020:
AFFECTS: users of security/gpgme
AUTHOR: jhale@FreeBSD.org
The library version of security/gpgme has changed, and PORTREVISION has
been bumped in all dependent ports. If you have external software that
depends on gpgme, this software needs to be recompiled.
To recompile all software dependent on gpgme, run:
# portmaster -r gpgme
or
# portupgrade -rf gpgme
20131008:
AFFECTS: all users
AUTHOR: bapt@FreeBSD.org
A new USES has been added: compiler.mk, this uses allows porters to
select a compiler for a given port based on the features the port needs
By default this will always try to find Clang > 3.3.
If the user prefers using GCC then the following macro should be added
to user's make.conf: FAVORITE_COMPILER=gcc
20131004:
AFFECTS: users of net-mgmt/nrpe2
AUTHOR: ohauer@FreeBSD.org
The port nrpe2 was updated and moved to nrpe
# portmaster -o net-mgmt/nrpe net-mgmt/nrpe2
or
# portupgrade -fo net-mgmt/nrpe net-mgmt/nrpe2
or
# pkg set -o net-mgmt/nrpe2:net-mgmt/nrpe
20131003:
AFFECTS: users of lang/python* and ports
AUTHOR: mva@FreeBSD.org
The default versions of lang/python* have been changed to support the
new DEFAULT_VERSIONS variable.
PYTHON_DEFAULT_VERSION, PYTHON2_DEFAULT_VERSION and
PYTHON3_DEFAULT_VERSION are deprecated. If you have set them in your
make.conf, you should change them something like
DEFAULT_VERSIONS=python=2.7 python2=2.7 python3=3.3
20130929:
AFFECTS: users of x11/pixman
AUTHOR: zeising@FreeBSD.org
The library version of x11/pixman has changed, and PORTREVISION has
been bumped in all dependent ports. If you have external software that
depends on pixman, this software needs to be recompiled.
To recompile all software dependent on pixman, run:
# portmaster -r pixman
or
# portupgrade -rf pixman
20130929:
AFFECTS: users of graphics/libGL, graphics/dri and other MESA ports
AUTHOR: zeising@FreeBSD.org
The graphics/libGL, graphics/dri and related MESA ports have been
updated to 9.1 when compiled with WITH_NEW_XORG= set. It is necessary
to remove the old versions of both ports before updating.
# pkg_delete -f libGL-\* dri-\*
or
# pkg delete -f libGL dri
followed by
# portmaster -a
20130925:
AFFECTS: users of print/qpdf
AUTHOR: d.y.kazarov@mail.ru
Due to the changes in libqpdf.so, please deinstall qpdf first if you
are updating from 4.0.0 to 4.0.1+
20130920:
AFFECTS: users of ptlib, opal and/or ekiga
AUTHOR: kwm@FreeBSD.org
The ptlib26, opal3 and ekiga3 ports where updated to the latest version
and moved to the location of the old ports. If the ekiga (2.0) port is
installed the same line as for ekiga3 can be used except without the 3 at
the end.
# portmaster -o devel/ptlib devel/ptlib26
# portmaster -o net/opal net/opal3
# portmaster -o net/ekiga3 net-im/ekiga
or
# portupgrade -fo devel/ptlib devel/ptlib26
# portupgrade -fo net/opal net/opal3
# portupgrade -fo net/ekiga3 net-im/ekiga
or
# pkg set -o devel/ptlib26 devel/ptlib
# pkg set -o net/opal3 net/opal
# pkg set -o net/ekiga3 net-im/ekiga
20130920:
AFFECTS: users of ports
AUTHOR: bapt@FreeBSD.org
New way to override the default version of a language in the ports
tree.
The make variable, DEFAULT_VERSIONS, allows users to override the
default version defined by the ports tree.
For example, to declare specific versions for Perl, Ruby and Tcl/Tk,
it would be defined as:
DEFAULT_VERSIONS= perl5=5.18 ruby=2.0 tcltk=8.6
Today, this only is supported by Perl, Ruby, and Tcl/Tk.
20130920:
AFFECTS: users of ports
AUTHOR: bdrewery@FreeBSD.org
Optional Stack Protector [1] support has been added with the WITH_SSP_PORTS
knob.
WITH_SSP_PORTS= yes
This currently is only supported on FreeBSD 10 amd64/i386 and earlier
releases on amd64.
The default SSP_CLFAGS is -fstack-protector, but -fstack-protector-all
may optionally be set instead.
To enable support, add WITH_SSP_PORTS=yes to your make.conf and rebuild all
ports.
# portmaster -af
or
# portupgrade -af
[1] https://en.wikipedia.org/wiki/Buffer_overflow_protection
20130904:
AFFECTS: 10-CURRENT users with any port depending on converters/libiconv
AUTHOR: madpilot@FreeBSD.org
10-CURRENT after r254273 (committed on August 13, 2013) has an
implementation of iconv enabled by default in libc.
NOTE: after r341775 (committed on January 29, 2014) and other
following commits, a few ports, including devel/glib20, depend
on the converters/libiconv again due to missing functionality in the
base iconv implementation.
Due to this change some major overhauling of the ports tree has
been necessary to move the ports to using that implementation.
People using pkgng binary packages should have little problems,
"pkg upgrade" will update all software to not depend on libiconv
anymore, once updated packages are available. Please make sure to
perform a "pkg autoremove" after that and check that libiconv is
correctly removed by it.
If you are using ports the update requires some manual intervention.
The following procedure should be followed:
# pkg query %ro libiconv >ports_to_update
# pkg delete -f libiconv
# cat ports_to_update | xargs portmaster
or:
# pkg query %ro libiconv >ports_to_update
# pkg delete -f libiconv
# cat ports_to_update | xargs portupgrade -f
20130831:
AFFECTS: users of graphics/gdal
AUTHOR: sunpoet@FreeBSD.org
Due to changes in header files, please deinstall gdal first while updating
from 1.9.x to 1.10.x.
20130830:
AFFECTS: users of mail/meta1
AUTHOR: dinoex@FreeBSD.org
The on disk format has changed.
Please make sure that queue is empty before you update.
20130817:
AFFECTS: users of lang/python*
AUTHOR: mva@FreeBSD.org
The lang/python* ports do not install links to 2to3, idle, pydoc, python
and other binaries anymore. Those were moved into the lang/python2 and
lang/python3 ports respectively. This change brings us closer to the goal
of making Python ports usable with different Python versions at the same
time.
If you have lang/python2* or lang/python3* installed, please also install
the associated lang/python2 or lang/python3 port.
1. update lang/python2* and/or lang/python3*
2. install lang/python2 and/or lang/python3
3. install/update lang/python
20130816:
AFFECTS: users of graphics/opendx and math/octave-forge-octcdf
AUTHOR: stephen@FreeBSD.org
These two ports have changed the science/netcdf dependency to
science/netcdf4. It is recommended that the science/netcdf package
be deinstalled before rebuilding these ports, otherwise you are likely
to face port conflicts when building future ports.
20130806:
AFFECTS: users of devel/eric4
AUTHOR: bsam@FreeBSD.org
Since PKGVERSION=4.5.13_1 the default file destination has changed from
${PYTHON_SITELIBDIR}/eric4 to ${DATADIR}.
20130731:
AFFECTS: users of glib20
AUTHOR: kwm@FreeBSD.org
The devel/gio-fam-backend port was removed in the glib 2.36 update.
Since the gio-fam-backend port was used in USE_GNOME=glib20, all
dependencies need to be rebuilt. The removal of gio-fam-backend isn't
critical, glib20 using programs should work just fine if the port is still
installed. It is not clear however, if glib20 will use the new kqueue
backend or the old fam backend.
Note that users of pkg packages can just run the pkg delete command after
their next update.
# portmaster -r gio-fam-backend
# pkg_delete gio-fam-backend-\* (for pkgng: pkg delete gio-fam-backend)
# portmaster -a
or
# portupgrade -rf gio-fam-backend
# pkg_delete gio-fam-backend-\* (for pkgng: pkg delete gio-fam-backend)
# portupgrade -a
20130726:
AFFECTS: users of Qt 3 and KDE 3
AUTHOR: rene@FreeBSD.org
All ports based on Qt 3 (including KDE 3 but also ports which used Qt 3
as a graphical toolkit) expired on 20130701 because Qt 3 and KDE 3 were
no longer maintained upstream. These ports have been removed today.
Users of KDE 3 are advised to switch to another desktop environment
provided in the Ports Collection, e.g. KDE 4 or Xfce.
Users of Qt 3 are advised to upgrade to the Qt 4 counterpart(s).
20130725:
AFFECTS: users of net/openafs
AUTHOR: bjk@FreeBSD.org
The OpenAFS 1.6.5 release is a security release which requires substantial
configuration changes to the AFS servers in addition to the software update,
in order to be fully protected. The entry for OPENAFS-SA-2013-003 on
http://www.openafs.org/security/ has links to the upgrade documentation.
The procedure involves rekeying the cell to a non-DES krb5 key, stored in
a krb5 keytab named rxkad.keytab in PREFIX/etc/openafs/server/.
20130720:
AFFECTS: users of japanese/mozc-server and japanese/mozc-el
AUTHOR: hrs@FreeBSD.org
The bin/mozc_emacs_helper program is now built and installed by
japanese/mozc-server because the build processes are heavily
overlapped with each other and the helper program does not depend on
most of what mozc-server does actually. To upgrade them, please remove
mozc-el first to prevent a conflict with the installed bin/mozc_emacs_helper.
20130719:
AFFECTS: users of sysutils/bacula-server, sysutils/bacula-client, sysutils/bacula-bat
AUTHOR: dvl@FreeBSD.org
The configuration files for bacula have been moved to PREFIX/etc/bacula.
Move your existing configuration files to this directory after
upgrading.
20130718:
AFFECTS: users of security/logcheck
AUTHOR: glarkin@FreeBSD.org
The logcheck port now provides a configuration option controlling
installation of the crontab file. When installing the port interactively,
the port option is enabled by default to mimic previous behavior.
When the port is installed non-interactively (BATCH=yes) the crontab
file *will not* be installed automatically. If the EXAMPLES port option
is enabled, the crontab file can be installed manually at a later time
from EXAMPLESDIR/crontab.in.
20130718:
AFFECTS: users of www/zend-framework
AUTHOR: wg@FreeBSD.org
zend-framework has been updated to 2.2.1 and old 1.12.0 has been copied
to www/zend-framework1. If you wish to stay with the older version run:
# portmaster -o www/zend-framework1 www/zend-framework
or
# portupgrade -fo www/zend-framework1 www/zend-framework
or
# pkg set -o www/zend-framework:www/zend-framework1
20130714:
AFFECTS: users of net/avahi-gtk
AUTHOR: kwm@FreeBSD.org
Avahi was updated to 0.6.31, due to changes in the avahi-gtk port it will
be necessary to remove the avahi-gtk port before updating.
Users of pkg packages can skip this step.
# pkg_delete -f avahi-gtk\*
or
# pkg delete -f avahi-gtk
followed by
# portmaster net/avahi-gtk
or
# portupgrade net/avahi-gtk
20130711:
AFFECTS: users of dns/py-ldns
AUTHOR: mat@FreeBSD.org
The dns/py-ldns port now only installs the Python bits, and depends on
dns/ldns. Because of that, you cannot just do a regular upgrade, it
would install dns/ldns overwriting existing files and removing them when
removing the old version of dns/py-ldns.
# pkg_delete -f py-ldns-\*
# cd /usr/ports/dns/py-ldns && make clean && make install clean
or
# pkg delete -fg py-ldns-\*
# pkg install -f dns/py-ldns
20130707:
AFFECTS: users of www/ajaxplorer
AUTHOR: madpilot@FreeBSD.org
Ajaxplorer was updated to 5.0.1. This is a major update and some
manual intervention may be needed.
Before upgrading you should preserve the following files in WWWDIR
(defaults to PREFIX/www/ajaxplorer) if you have customized them:
conf/bootstrap_conf.php
conf/bootstrap_context.php
conf/bootstrap_plugins.php
conf/bootstrap_repositories.php
and put them back after the upgrade.
If you are using a database backend you will need to manually
update your database table using the sql script the port will
install at WWWDIR/conf/conf/4.2.3-5.0.0-db-upgrade.sql
Don't forget to check the documentation about upgrading from
version 4.x at:
http://ajaxplorer.info/ajaxplorer-5-0-0:/#Upgrade_from_4X_to_500
20130706:
AFFECTS: users of devel/apr1
AUTHOR: ohauer@FreeBSD.org
APR was updated to 1.4.8 and APR-util was updated to 1.5.2.
Please rebuild all ports which are using functions from APR/APR-util
such as Apache, Subversion, etc.
# portmaster -r apr
or
# portupgrade -r devel/apr1
or
# pkg install -fR devel/apr1
20130705:
AFFECTS: users of x11/kdelibs4
AUTHOR: kde@FreeBSD.org
The KDE Software Compilation 4.10.4 was committed a few days ago, and
version 4.10.5 was committed today.
They include better support for using clang as the compiler, but that
requires recompiling all KDE ports which depend on x11/kdelibs4. Most
ports which fall into this category are already part of the KDE Software
Compilation and have been updated to version 4.10.5, but those released
separately need to be rebuilt manually.
If you are building your KDE ports with clang, doing the following is
recommended:
# portmaster -r kdelibs-4\*
or
# portupgrade -fr x11/kdelibs4
or
# pkg install -fR x11/kdelibs4
Alternatively, to avoid rebuilding the ports which are part of the 4.10.5
update:
# portmaster -x \*-4.10.5\* -r kdelibs-4\*
or
# portupgrade -x \*-4.10.5\* -fr x11/kdelibs4
20130703:
AFFECTS: users of comms/trustedqsl and comms/tqsllib
AUTHOR: db@FreeBSD.org
Upstream have removed the need for a separate port for the library
formerly found in comms/tqsllib. Please remove tqsllib before installing
trustedqsl
20130627:
AFFECTS: users of ports-mgmt/portmaster
AUTHOR: bdrewery@FreeBSD.org
Since June 22nd, portmaster no longer relies on 'WITH_PKGNG' to be defined,
or ports to be checked out to enable pkgng support.
It now considers whether or not pkg is installed and registered with itself.
I.e., if this returns data, pkgng is considered in use:
# pkg info pkg
It's possible that you may have tested pkgng in the past, ran pkg2ng, and
never fully committed to it by setting WITH_PKGNG. If this is the case,
uninstall pkg with pkg_info/pkg_delete and also remove the stale database,
rm /var/db/pkg/local.sqlite.
This could manifest itself as portmaster -L showing the wrong versions, or
portmaster no longer detecting installed packages correctly.
Note that PORTS still require WITH_PKGNG=yes in make.conf if you are not
running CURRENT.
20130627:
AFFECTS: users of net/samba36
AUTHOR: timur@FreeBSD.org
Samba has updated format of it's printing tdbs (ntprinting.tdb, ntforms.tdb,
ntdrivers.tdb) to include character encoding. When updating from Samba 3.5
or earlier to Samba 3.6 or 4.0 these tdbs need to be migrated to new registry
based printing management. This implies also character conversion.
You have to specify the correct code page for the conversion, see iconv -l.
The mostly used one is Windows Latin1 which is CP1252.
You can correctly view the tdb with:
# net printing dump encoding=CP1252 /path/to/ntprinters.tdb
or migrate it with e.g.:
# net printing migrate encoding=CP1252 /path/to/ntprinters.tdb
If you migrate printers it is suggest to do it in the following order:
ntforms.tdb
ntdrivers.tdb
ntprinting.tdb
Don't forget to rename, move or delete these files in /var/db/samba after
the migration.
20130623:
AFFECTS: users of net-im/mikutter003
AUTHOR: tota@FreeBSD.org
net-im/mikutter003 has been removed from the ports tree because the
Twitter API version 1.0 was deprecated on 2013-05-07 and mikutter003,
which uses the API 1.0, won't work.
Please consider using net-im/mikutter instead of this.
1. deinstall mikutter003
2. upgrade Ruby to 1.9( or later) (see the entry 20130527)
3. install net-im/mikutter
20130623:
AFFECTS: users of www/magento
AUTHOR: melvyn@magemana.nl
Magento has been updated to 1.7.0.2 on 2013-06-03. With it a stricter file
system policy is enforced on the port. If you (or your customer) rely heavily
on Magento Connect via the backend to install extensions, your quickfix is:
# chown -R www: ${PREFIX}/www/magento
# chmod -R u+w ${PREFIX}/www/magento
The more conservative approach:
# chown -R www: ${PREFIX}/www/magento/app/code/{local,community} \
${PREFIX}/www/magento/app/{design,locale} \
${PREFIX}/www/magento/{downloader,skin}
# chmod -R u+w ${PREFIX}/www/magento/app/code/{local,community} \
${PREFIX}/www/magento/app/{design,locale} \
${PREFIX}/www/magento/{downloader,skin}
The conservative approach will alert you to extensions that try to write in
Magento core, while allowing clean extensions to install properly (corner
cases may exist).
20130619:
AFFECTS: users of devel/subversion
AUTHOR: ohauer@FreeBSD.org
devel/subversion has been upgraded from 1.7.10 to 1.8.0
If you want to upgrade, and use http/https access to repositories,
please check, that the SERF option is enabled, as NEON support
is gone. Also, mod_dontdothat and svnauthz_validate are
now enabled with one option TOOLS, among other new tools
and SVNMUCC is enabled always.
subversion-1.7.x is available as devel/subversion17
To stay on subversion-1.7.x set in /etc/make.conf
WITH_SUBVERSION_VER=17
and use the following command
# pkg set -o devel/subversion:devel/subversion17
or
# portmaster -o devel/subversion17 devel/subversion
20130614:
AFFECTS: users who set port options in make.conf
AUTHOR: tijl@FreeBSD.org
Configuring options in make.conf using variables like OPTIONS_SET and
OPTIONS_UNSET now also suppresses the option dialog for those options.
This means that when building a port the option dialog will only appear if
there are truly new options that have not been configured before using either
the dialog or make.conf. This allows you to set options like DOCS, NLS,
X11, etc. once for all ports and not have option dialogs pop up if those are
the only options. For a list of variables you can set in make.conf to
control options see Mk/bsd.options.mk.
20130612:
AFFECTS: users of lang/perl* and any port that depends on it
AUTHOR: az@FreeBSD.org
lang/perl5.12 has been upgraded from version 5.12.4 to 5.12.5
lang/perl5.14 has been upgraded from version 5.14.2 to 5.14.4
lang/perl5.16 has been upgraded from version 5.16.2 to 5.16.3
The directory structure where Perl is installed has also been modified:
"major.minor" is now used instead of "major.minor.patchlevel".
The "perl-after-upgrade" script has been removed.
Please rebuild all Perl ports and all ports that depend on it:
# portmaster -r perl
or
# portupgrade -rf perl
or
# pkg install -fR perl
20130609:
AFFECTS: users of audio/flac and any port that depends on it
AUTHOR: naddy@FreeBSD.org
FLAC has been updated to 1.3.0 and the shared library versions
have been bumped. Please rebuild all ports that depend on it:
# portmaster -r flac
or
# portupgrade -fr audio/flac
or
# pkg install -fR audio/flac
20130607:
AFFECTS: Nobody
AUTHOR: wxs@FreeBSD.org
FreeBSD 8.4 released.
20130604:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: haskell@FreeBSD.org
The Glorious Glasgow Haskell Compiler has been updated to version
7.6.3 and Haskell Platform to 2013.2.0.0. Hence it is recommended to
rebuild or reinstall all the dependent ports by one of the following
commands:
# portmaster -w -r ghc
or
# portupgrade -fr lang/ghc
or
# pkg install -fR lang/ghc
Note that prefixes used for hs- ports (Cabal packages) have been
changed to PREFIX/{lib,share,share/doc}/cabal/ghc-GHC_VERSION to
enable more seamless upgrades in the future.
20130603:
AFFECTS: users of dns/opendnssec
AUTHOR: wg@FreeBSD.org
Some database changes have been made between version 1.3 and 1.4,
upgrading needs to be done manually by running the following scripts:
For MySQL users:
PREFIX/share/opendnssec/migrate_adapters_1.mysql
For SQLite users:
PREFIX/share/opendnssec/migrate_adapters_1.sqlite3
For the full migration explanation see:
PREFIX/share/doc/opendnssec/MIGRATION
opendnssec 1.3 version was preserved as dns/opendnssec13 port.
20130601:
AFFECTS: users of textproc/ack
AUTHOR: rakuco@FreeBSD.org
ack has been updated to version 2.04. It is slightly incompatible with some
options present in ack1. For more information, see
http://beyondgrep.com/ack-2.0.
20130530:
AFFECTS: users of irc/inspircd
AUTHOR: swills@FreeBSD.org
The irc/inspircd port has been updated to 2.0.12. Some of the config option
names in the rc script have been changed. Check the script for more detail.
20130527:
AFFECTS: users of lang/ruby18
AUTHOR: swills@FreeBSD.org
The default ruby version has been updated from 1.8 to 1.9. First, stop any
software that uses ruby. Then, you'll need to rebuild all ports that depend
on ruby:
If you use portmaster:
# portmaster -o lang/ruby19 lang/ruby18
# portmaster -R -r ruby-1.9
If you use portupgrade:
# portupgrade -f lang/ruby18
# portupgrade -f lang/ruby19 # if you have it installed
# portupgrade -f ports-mgmt/portupgrade
# portupgrade -x ruby-1.8.\* -fr lang/ruby18
After these steps are complete, you can pkg_delete ruby 1.8 if you
no longer need it.
If you use pkgng:
# pkg set -o lang/ruby18:lang/ruby19
# pkg install -fR lang/ruby19
If you wish to keep the 1.8 version as default, add the following lines
to your /etc/make.conf file:
#
# Keep ruby 1.8 as default version.
#
RUBY_DEFAULT_VER=1.8
20130525:
AFFECTS: users of sysutils/rsyslog5*
AUTHOR: brd@FreeBSD.org
Rsyslog 5.x has reached end of life status and has therefore been removed.
While sysutils/rsyslog6* exists, please consider migrating to
sysutils/rsyslog7 as that is the currently supported release.
20130525:
AFFECTS: users of mail/postgrey
AUTHOR: Darren Pilgrim <ports.maintainer@evilphi.com>
The RC script for postgrey has been modified. If you use the
default value for postgrey_flags this does not affect you.
If you have postgrey listening on a Unix socket or set any optional
values, please read the comments in the RC scripts and check your
settings in rc.conf prior to restarting postgrey.
20130525:
AFFECTS: users of x11/xorg and all xorg ports
AUTHOR: zeising@FreeBSD.org
X.Org, including libraries and some drivers, was updated. If you are
running the default X.Org distribution, no special upgrade procedure
should be necessary.
If you are running with WITH_NEW_XORG= make sure to update and rebuild
all installed drivers since xorg-server has been updated.
20130520:
AFFECTS: users of textproc/elasticsearch
AUTHOR: tj@FreeBSD.org
This is the first stable release based on Lucene 4. We recommend testing
the upgrade before doing it in production.
Upgrading from 0.20 requires a full cluster restart.
In order to be able to downgrade, stop indexing new data, issue a flush
request, do the upgrade and only enable indexing of new data once you
are certain that you no longer need to downgrade. Once new data has
been indexed, downgrading is no longer possible. To be extra safe, back
up your data before upgrading.
20130519:
AFFECTS: users of net/activemq
AUTHOR: tj@FreeBSD.org
The JVM used by activemq has changed to OpenJDK 7. You will need to
make sure javavmwrapper is configured to use the installed
java/openjdk7 JVM.
20130512:
AFFECTS: users of devel/hs-git-annex
AUTHOR: haskell@FreeBSD.org
On FreeBSD, git-annex incorrectly calculated SHA256 hashes for files
added to the annex repository due to the BSD-style output of
/sbin/sha256. The result of this is silent data corruption.
This problem has been fixed, but every file stored in an annex
repository will fail a `git-annex fsck` after the upgrade. Thus,
before updating, it is wise to issue the command below and restore the
files.
$ git-annex uninit
Corruptions can then be found by finding all files with the same hash.
Note that only files that were mishashed to the same location are a
problem.
20130511:
AFFECTS: users of TeX
AUTHOR: hrs@FreeBSD.org
One can now choose TeXLive or teTeX by using TEX_DEFAULT.
Specifying TEX_DEFAULT=texlive, almost all of ports which use TeX
will install and depend on TeXLive-based ones. Note that the
default value is still "tetex" and the two cannot coexist. You need
to remove all of the TeX-related packages based on teTeX to try
TeXLive.
20130507:
AFFECTS: users of comms/usbmuxd or comms/libimobiledevice
AUTHOR: avilla@FreeBSD.org
libusbmuxd and libimobiledevice versions have changed. Please, rebuild
all the ports that depend on them:
# portmaster -r usbmuxd
or
# portupgrade -fr comms/usbmuxd
or
# pkg install -fR comms/usbmuxd
20130507:
AFFECTS: users of devel/libplist
AUTHOR: avilla@FreeBSD.org
libplist Python bindings were split from the main port. To get them you
need to install devel/py-libplist.
20130506:
AFFECTS: users of TeX
AUTHOR: hrs@FreeBSD.org
TeXLive ports have been imported. Although most of ports still depend
on teTeX at this moment, they will be converted to use TeXLive.
The directory layout of them is as follows. Please use print/texlive-full
if you are not familiar with how each component works. Finer-grained
ports will be added (specifically, meta ports for smaller installation
and so on). Note that the full installation needs around 3GB of disk space.
teTeX-based ports and TeXLive are mutually exclusive. This means TeXLive
ports cannot be installed when teTeX is already installed. You need
to remove all of the TeX-related packages based on teTeX to try TeXLive.
Migration procedure will be announced when conversion of the port
dependency is completed.
* Meta port
- print/texlive-full: meta port to install all of the TeXLive components
* Libraries
- devel/tex-kpathsea: kpathsea library
- devel/tex-web2c: WEB2C toolchain and TeX engines
- print/tex-ptexenc: character code conversion library for pTeX
* Base part of the TeXLive
- print/texlive-base: binary programs in TeXLive
- print/texlive-texmf: macro and font data in TeXLive
- print/texlive-infra: tlmgr dependency (Perl modules)
- print/tex-formats:
* TeX Formats
- print/tex-formats: TeX, LaTeX, PDFTeX, AMSTeX, ConTeXT, CSLaTeX,
EplainTeX, METAFONT, MLTeX, PDFTeX, TeXsis
- print/tex-aleph: Aleph/Lambda
- print/tex-xetex: XeTeX
- print/tex-luatex: LuaTeX
- print/tex-jadetex: JadeTeX
- print/tex-xmltex: XMLTeX
- japanese/tex-ptex: pTeX
* DVI ware
- print/tex-xdvik: XDvi
20130503:
AFFECTS: users of security/libgcrypt and any port that depends on it
AUTHOR: ehaupt@FreeBSD.org
The libgcrypt port has been updated to 1.5.2 and all shared libraries
versions have been bumped. So you need to rebuild all applications that
depend on libgcrypt. Do something like:
# portmaster -r libgcrypt
or
# portupgrade -rf libgcrypt
Alternatively, you may install sysutils/bsdadminscripts, run pkg_libchk and
rebuild all detected ports:
# pkg_libchk | tee /tmp/rebuild
# awk -F':' '/libgcrypt.so/ {print $1}' /tmp/rebuild | sort | uniq \
| xargs portmaster -D
20130502:
AFFECTS: users of ports-mgmt/pkg, ports-mgmt/poudriere, ports-mgmt/tinderbox
AUTHOR: bdrewery@FreeBSD.org
This only affects people who are _building_ binary packages for pkgng. If you
are building from ports please ignore this. This step is optional.
It is recommended to rebuild all packages and then have your users run 'pkg
check -Ba' and 'pkg upgrade' on their servers once. This will allow the new
shlib tracking to reinstall packages that have changed shlib requirements.
20130427:
AFFECTS: users of print/a2ps-{a4,letter}, print/c2ps-{a4,letter}, print/lprps-{a4,letter}, or graphics/jpeg2ps-{a4,letter}
AUTHOR: hrs@FreeBSD.org
The affected ports have been converted to use libpaper for the default paper
size as print/psutils did. For more detail, see 20130424 below.
20130424:
AFFECTS: users of print/psutils-a4 or print/psutils-letter
AUTHOR: hrs@FreeBSD.org
print/psutils-a4 and print/psutils-letter have been merged into a single port
print/psutils. The default paper size in psnup(1), psresize(1), and
pstops(1) is now selected via an environment variable and/or a configuration
file of libpaper(3). For more detail, see papersize(5) and paperconfig(8)
manual page. If you prefer A4 or letter size by default as the old
version did, please install print/papersize-default-a4 or
print/papersize-default-letter, which installs a papersize configuration
file without manual configuration.
20130423:
AFFECTS: users of mail/postfix
AUTHOR: sahil@FreeBSD.org
This is a significant update; so, please carefully review the
RELEASE_NOTES to identify which incompatible changes impact your
environment.
20130408:
AFFECTS: users of astro/libkgeomap, graphics/digikam-kde4, graphics/kipi-plugins-kde4
AUTHOR: makc@FreeBSD.org
Digikam ports have been updated and split. Previous versions have
to be deinstalled before upgrade:
# pkg_delete -f digikam-2\* kipi-plugins-2\* libkgeomap-2\*
or
# pkg delete -fg digikam-2\* kipi-plugins-2\* libkgeomap-2\*
20130403:
AFFECTS: users of mail/thunderbird-esr*
AUTHOR: flo@FreeBSD.org
Mozilla stopped providing 2 versions of thunderbird. The only one lives
in mail/thunderbird if you are using thunderbird-esr please switch to
thunderbird by running on of the following commands.
# portupgrade -o mail/thunderbird mail/thunderbird-esr
# portupgrade -o mail/thunderbird-i18n \
mail/thunderbird-esr-i18n (if installed)
or
# portmaster -o mail/thunderbird mail/thunderbird-esr
# portmaster -o mail/thunderbird-i18n \
mail/thunderbird-esr-i18n (if installed)
20130331:
AFFECTS: users of */hs-*
AUTHOR: haskell@FreeBSD.org
Due to some unexpected dynamic linking problems, Haskell Cabal ports with
binaries that link to their own libraries may not work. With default
configuration, the following ports are known to have this problem:
Agda, BNFC, pandoc, and uuagc. (Their port revision are now bumped.)
In general, it is recommended to rebuild the port if you are
experiencing that the corresponding binary will not start, e.g.:
% agda
Shared object "libHSAgda-2.3.2-ghc7.4.2.so" not found, required by "agda"
20130329:
AFFECTS: users of ports-mgmt/portmaster
AUTHOR: bdrewery@FreeBSD.org
Portmaster 3.15 should be skipped if you are not using pkgng and are on
9.1, 8-STABLE, 9-STABLE, or CURRENT. It may require manual upgrading to
3.16:
# make -C /usr/ports/ports-mgmt/portmaster build deinstall install clean
20130329:
AFFECTS: users of net/kio-upnp-ms
AUTHOR: avilla@FreeBSD.org
A wrong setting in x11/kdelibs4 was causing some unlisted files to
be installed. Remember to delete them after updating x11/kdelibs4 to
4.10.1_1:
# rm /usr/local/kde4/bin/upnpmstest
# rm /usr/local/kde4/bin/stattest
# rm /usr/local/kde4/bin/recursive_upnp
20130327:
AFFECTS: users of mail/opensmtpd
AUTHOR: ashish@FreeBSD.org
Privilege separation is enabled in OpenSMTPD port from 5.3,1. Users
upgrading from version 201303011853 or earlier are required to follow
the instructions in pkg-message to fix the filesystem permissions on
OpenSMTPD spool directories.
20130327:
AFFECTS: users of KDE SC 4
AUTHOR: kde@FreeBSD.org
KDE SC ports have been updated to 4.10.1. kdelibs4 does no longer
directly use aspell or hspell, to regain their functionality enable
corresponding option in textproc/enchant.
A number of ports have been split and must be deinstalled before
upgrading:
# pkg_delete -f kdegames-4\* kde-workspace-4\* kde-wallpapers-4\*
or
# pkg delete -fg kdegames-4\* kde-workspace-4\* kde-wallpapers-4\*
20130326:
AFFECTS: users of deskutils/strigi
AUTHOR: makc@FreeBSD.org
Strigi port has been split on libraries, client, daemon, and utilities.
Manual update is required:
# cd /usr/ports/deskutils/strigi && make deinstall && \
make clean && make install clean
or
# pkg delete -f strigi && pkg upgrade && pkg install deskutils/strigi
20130323:
AFFECTS: users of archivers/libarchive
AUTHOR: glewis@FreeBSD.org
The archivers/libarchive port has been updated to 3.1.2. The shared library
version has changed from 12 to 14. Please rebuild all ports that depend on
it:
# portmaster -r libarchive
or
# portupgrade -fr archivers/libarchive
or
# pkg install -fR archivers/libarchive
20130319:
AFFECTS: users of ports
AUTHOR: bdrewery@FreeBSD.org
Ports now use ports-mgmt/dialog4ports to render and interact with the
options dialog in 'make config'. This will be automatically built and
installed on the first use.
dialog4ports provides a new UI able to represent all the features provided
by the new options framework.
20130319:
AFFECTS: users of net/freerdp
AUTHOR: fluffy@FreeBSD.org
The net/freerdp package was changed API and require to deinstall previous
version first to avoid build conflicts.
20130317:
AFFECTS: users of graphics/poppler
AUTHOR: gnome@FreeBSD.org
The graphics/poppler has been updated to 0.22.2. The shared library version
has changed from 18 to 34. Please rebuild all ports that depends on it:
# portmaster -r poppler-0
or
# portupgrade -fr graphics/poppler
or
# pkg install -fR graphics/poppler
20130317:
AFFECTS: users of devel/protobuf
AUTHOR: vanilla@FreeBSD.org
The devel/protobuf has been updated to 2.5.0. The shared library version
has changed from 7 to 8. Please rebuild all ports that depends on it:
# portmaster -r protobuf
or
# portupgrade -fr devel/protobuf
or
# pkg install -fR devel/protobuf
20130316:
AFFECTS: users of converters/libiconv and devel/gettext
AUTHOR: bapt@FreeBSD.org
libiconv now handles the lib/charset.alias file instead of devel/gettext.
If you are using pkgng 'and' upgrading from source with portupgrade or
portmaster, first delete gettext, upgrade libiconv, then reinstall gettext.
This will break sudo, so you *must* do this in a root shell (sudo -i)
if you use sudo.
# pkg delete -f devel/gettext
# portmaster converters/libiconv devel/gettext
or
# pkg delete -f devel/gettext
# portupgrade converters/libiconv devel/gettext
20130308:
AFFECTS: users of net-im/folks and devel/libgee
AUTHOR: kwm@FreeBSD.org
folks and libgee have been repocopied net-im/folks04 and devel/libgee06
respectively. Please do the following according to package manager used.
# portmaster -o devel/libgee06 devel/libgee
# portmaster -o net-im/folks04 net-im/folks
or
# portupgrade -fo devel/libgee06 devel/libgee
# portupgrade -fo net-im/folks04 net-im/folks
or
# pkg set -o devel/libgee:devel/libgee06
# pkg set -o net-im/folks:net-im/folks04
20130307:
AFFECTS: users of textproc/elasticsearch
AUTHOR: tj@FreeBSD.org
textproc/elasticsearch has been updated to 0.20.5. This update also
changes the required JDK to OpenJDK 7 as there are known issues when
running on a Java 1.6 JDK.
20130307:
AFFECTS: users of audio/liblastfm
AUTHOR: nivit@FreeBSD.org
The audio/liblastfm has been updated to 1.0.6. The shared library version
has changed from 0 to 1. Please rebuild all ports that depends on it:
If you use portmaster:
portmaster -r liblastfm
If you use portupgrade:
portupgrade -fr audio/liblastfm
If you use pkgng with binary packages:
pkg install -fR audio/liblastfm
20130305:
AFFECTS: users of devel/py-setuptools (i.e you)
AUTHOR: rm@FreeBSD.org
devel/py-setuptools was replaced with devel/py-distribute. Please do
the following according to package manager used. py-setuptools port
will be removed shortly.
# portmaster -o devel/py-distribute devel/py-setuptools
or
# portupgrade -fo devel/py-distribute devel/py-setuptools
or
# pkg set -o devel/py-setuptools:devel/py-distribute
# pkg install -f devel/py-distribute
20130226:
AFFECTS: users of textproc/apache-solr
AUTHOR: vanilla@FreeBSD.org
textproc/apache-solr has been repocopied to textproc/apache-solr3.
If you need to continue with the old stable version please run
# portmaster -o textproc/apache-solr3 textproc/apache-solr
or
# portupgrade -fo textproc/apache-solr3 textproc/apache-solr
or
# pkg set -o textproc/apache-solr:textproc/apache-solr3
20130218:
AFFECTS: users of net/samba4-devel
AUTHOR: timur@FreeBSD.org
The port was renamed into net/samba4 and is going to replace older
development version of Samba4. You can upgrade it with:
# portmaster -o net/samba4 net/samba4-devel
In case you want to upgrade from net/samba36 make sure, that you've
made backup of /usr/local/etc/smb.conf and the content of /var/db/samba/
directory.
There is no direct upgrade path from Samba3 to Samba4, but you can
always try:
# portmaster -o net/samba4 net/samba36
Make sure you've read instructions from the supplied README.FreeBSD
file and read all the relevant pages on http://wiki.samba.org/
We still miss necessary support for Samba4 from base ntpd and bind9,
port versions are also are not ready yet, but been worked on.
Please note, that Samba4 is still in it's early days, so there are
bugs both from my side and it's own, so be careful with placing it
into production.
20130206:
AFFECTS: users of sysutils/boxbackup
AUTHOR: bdrewery@FreeBSD.org
The default location of the configuration files changed from
/usr/local/etc/box to /usr/local/etc/boxbackup. Move your
configuration after upgrading:
mv /usr/local/etc/box /usr/local/etc/boxbackup
20130206:
AFFECTS: users of x11/wbar
AUTHOR: nivit@FreeBSD.org
wbar has been updated to 2.3.4. The new version uses a different icon
for the dock background, so you have to replace the old one in your
config file ~/.wbar
Replace
i: /usr/local/share/pixmaps/wbar/osxbarback.png
with
i: /usr/local/share/pixmaps/wbar/dock.png
20130206:
AFFECTS: users of security/libtasn1 and any port that depends on it
AUTHOR: novel@FreeBSD.org
libtasn1 has been updated to 2.14 and all shared libraries versions have
been bumped. So you need to rebuild all applications that depend on
libtasn1.
If you use portmaster:
portmaster -r libtasn1
If you use portupgrade:
portupgrade -fr security/libtasn1
If you use pkgng with binary packages:
pkg install -fR security/libtasn1
20130206:
AFFECTS: users of Tcl/Tk
AUTHOR: gahr@FreeBSD.org
The following ports have been removed, as threads and modules are
now included in the main ports:
- lang/tcl84-thread
- lang/tcl85-thread
- lang/tcl86-thread
- lang/tcl-modules
- x11-toolkits/tk84-thread
- x11-toolkits/tk85-thread
- x11-toolkits/tk86-thread
Please remove them ...
If you use pkgng:
pkg delete -f <port>
If you use pkg_* tools
pkg_delete -f <port>
... before rebuilding all ports that depend on them:
If you use portmaster:
portmaster -w -r <port>
If you use portupgrade:
portupgrade -Ofr <origin/port>
If you use pkgng with binary packages:
pkg install -fR <origin/port>
20130205:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: haskell@FreeBSD.org
Note that the recent devel/libffi update caused some breakage in the Haskell
ports with the DYNAMIC option enabled. The problem has been identified and
fixed since then. All Haskell ports have been updated to their latest stable
versions or bumped as DYNAMIC is enabled by default.
Hence it is recommended to rebuild or reinstall all ports depending on GHC
by one of the following commands:
# portmaster -w -r ghc
or
# portupgrade -fr lang/ghc
or
# pkg install -fR lang/ghc
20130205:
AFFECTS: users of editors/libreoffice
AUTHOR: bapt@FreeBSD.org
LibreOffice has been updated to 3.6.5 with a bundle version of libcmis. The
build will fail if you sill have net/libcmis 0.1 installed. Before upgrading
LibreOffice you should either first remove libcmis from your system or upgrade
it to version 0.3.
20130205:
AFFECTS: users of security/gnutls and any port that depends on it
AUTHOR: novel@FreeBSD.org
gnutls has been updated to 2.12.23 and all shared libraries versions have
been bumped. So you need to rebuild all applications that depend on
gnutls.
If you use portmaster:
portmaster -r gnutls
If you use portupgrade:
portupgrade -fr security/gnutls
If you use pkgng with binary packages:
pkg install -fR security/gnutls
20130204:
AFFECTS: users of sysutils/zfstools
AUTHOR: bdrewery@FreeBSD.org
The zfstools package has dropped the 'rubygem-' prefix and now installs
its binary files to PREFIX/sbin instead of PREFIX/bin.
20130204:
AFFECTS: users of multimedia/qt4-phonon, multimedia/qt4-phonon-gst
AUTHOR: makc@FreeBSD.org
qt4-phonon has been deprecated in favour of multimedia/phonon. Remove
WITH_QT_PHONON from your make.conf and replace qt4-phonon with
multimedia/phonon:
# portmaster -o multimedia/phonon multimedia/qt4-phonon
# portmaster -o multimedia/phonon-gstreamer multimedia/qt4-phonon-gst
20130204:
AFFECTS: users of lang/perl5.8 and lang/perl5.10
AUTHOR: az@FreeBSD.org
lang/perl5.8 and lang/perl5.10 have been removed since they've
been EOL by upstream. You will have to recompile all perl dependant
ports after updating your ports tree. Please see entry 20110517 for help.
20130204:
AFFECTS: users of dns/poweradmin
AUTHOR: Edmondas Girkantas <eg@fbsd.lt>
Some database changes have been made between version 2.1.5 and 2.1.6,
upgrading needs to be done manually by running the following SQL:
For MySQL users:
ALTER TABLE users MODIFY username VARCHAR(64) NOT NULL DEFAULT '0';
ALTER TABLE users MODIFY password VARCHAR(128) NOT NULL DEFAULT '0';
For PostgreSQL users:
ALTER TABLE users ALTER COLUMN username TYPE VARCHAR(64);
ALTER TABLE users ALTER COLUMN password TYPE VARCHAR(128);
20130203:
AFFECTS: users of KDE SC 4
AUTHOR: kde@FreeBSD.org
KDE SC ports have been updated to 4.9.5. kdemultimedia4, kdenetwork4,
kde-runtime and kde-workspace ports have been split, they must be
deinstalled before running any port upgrade tool:
# pkg_delete -f kdemultimedia-4\* kdenetwork-4\* \
kde-workspace-4\* kde-runtime-4\*
20130202:
AFFECTS: users of net-p2p/deluge
AUTHOR: rm@FreeBSD.org
deluge port had switched to using libtorrent-rasterbar 0.16 as backend. Since
both of the versions of libtorrent are conflicting with each other, you need
to deinstall libtorrent-rasterbar-15 and libtorrent-rasterbar-15-python first
and then update deluge as usual. Please also keep in mind, that deluge does
not work via http-proxy when libtorrent-rasterbar 0.16 is used.
20130131:
AFFECTS: users of devel/boost-libs
AUTHOR: bapt@FreeBSD.org
boost has been updated to 1.52.0. Please rebuild all ports that depends
on it:
If you use portmaster:
portmaster -w -r boost-libs
If you use portupgrade:
portupgrade -fr devel/boost-libs
If you use pkgng with binary packages:
pkg install -fR devel/boost-libs
20130129:
AFFECTS: users of textproc/elasticsearch
AUTHOR: tj@FreeBSD.org
elasticsearch has been updated to 0.20.4. This upgrade requires a
full cluster restart after installation.
Upgrade steps:
1) Shutdown all cluster nodes
2) Install elasticsearch update
3) Start all cluster nodes
20130128:
AFFECTS: users of libffi
AUTHOR: jkim@FreeBSD.org
libffi has been updated to 3.0.11. Please rebuild all ports that
depends on it:
If you use portmaster:
portmaster -w -r libffi
If you use portupgrade:
portupgrade -fr devel/libffi
If you use pkgng with binary packages:
pkg install -fR devel/libffi
20130121:
AFFECTS: users of mail/opensmtpd
AUTHOR: ashish@FreeBSD.org
Please flush your mail queue before updating to version 201301191220.
20130116:
AFFECTS: users of games/py-anki
AUTHOR: araujo@FreeBSD.org
games/py-anki has been removed upstream and merged with games/anki.
Users of games/py-anki, from now must use games/anki.
20130114:
AFFECTS: users of www/hiawatha
AUTHOR: cs@FreeBSD.org
php-fcgi has been removed upstream from hiawatha and is not supported anymore.
It is recommended to move to another FastCGI implementation, e.g. PHP-FPM
(lang/php5).
20130113:
AFFECTS: users of security/openvpn*
AUTHOR: mandree@FreeBSD.org
security/openvpn has been upgraded to the IPv6-capable v2.3.0.
This upgrade moves easy-rsa into a separate package in
security/easy-rsa that is pre-selected as default run-time dependency,
and changes installed file layout a bit.
security/openvpn22 retains the prior OpenVPN 2.2.2 version.
If you want to continue using this version, use one of these commands:
# portmaster -o security/openvpn22 security/openvpn
or
# portupgrade -o security/openvpn22 security/openvpn
or
# pkg set -o security/openvpn:security/openvpn22
security/openvpn20 has been marked deprecated and to be removed
in half a year's time. Please migrate to a newer version soonish.
20130110:
AFFECTS: everyone using csup(1), net/cvsup, or cvs(1) to update the
ports tree
AUTHOR: wblock@FreeBSD.org
On February 28, 2013, the CVSup and CVS services will end:
http://lists.freebsd.org/pipermail/freebsd-ports-announce/2012-September/000026.html
csup(1), net/cvsup, and cvs(1) will no longer be able to update the
ports tree. Please switch to one of the alternate update methods of
portsnap(8) or devel/subversion before that time. The Handbook has
information on using these update methods:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html
20130108:
AFFECTS: users of devel/libvanessa_socket, mail/perdition
AUTHOR: jhale@FreeBSD.org
The update of devel/libvanessa_socket to 0.0.12 (used by Perdition)
adds IPv6 support. If the hostname in bind_address has both IPv4 and
IPv6 addresses in DNS, then Perdition will ONLY listen on IPv6.
If you prefer to continue to use IPv4, you need to change the
bind_address in /usr/local/etc/perdition/perdition.conf to use an
explicit IPv4 address. This can be in addition to, or instead of,
the current hostname, depending on whether you want to use IPv6 or
not. If your Perdition server does not have an IPv6 address
listed in DNS, this change does not affect you.
20130108:
AFFECTS: users of sysutils/cfengine*
AUTHOR: gjb@FreeBSD.org
sysutils/cfengine has been created as a master port for the set of
sysutils/cfengine* ports. Users interested in tracking the latest
stable branch of cfengine should update their port origins to use
the new port, for example:
# portmaster -o sysutils/cfengine sysutils/cfengine33
or
# portupgrade -fo sysutils/cfengine sysutils/cfengine33
or
# pkg set -o sysutils/cfengine33:sysutils/cfengine
Users that switch their port origin and later wish to remain on
a particular cfengine release can override the default version by
adding CFENGINE_VERSION to /etc/make.conf, where CFENGINE_VERSION
is a value from:
# make -V VERSIONS
20130103:
AFFECTS: users of textproc/docproj*
AUTHOR: doceng@FreeBSD.org
textproc/docproj no longer requires WITH_JADETEX to be set to 'yes' or
'no', and by default, will enable the JADETEX dependencies.
The textproc/docproj-jadetex port has been removed as a result of this
change.
Users that have installed textproc/docproj and have set
WITH_JADETEX=no during compile time should update the package origin
to use textproc/docproj-nojadetex:
# portmaster -o textproc/docproj textproc/docproj-nojadetex
or
# portupgrade -fo textproc/docproj textproc/docproj-nojadetex
or
# pkg set -o textproc/docproj-nojadetex:textproc/docproj
Users that have installed textproc/docproj-jadetex should update the
package origin to use the textproc/docproj port:
# portmaster -o textproc/docproj textproc/docproj-jadetex
or
# portupgrade -fo textproc/docproj textproc/docproj-jadetex
or
# pkg set -o textproc/docproj-jadetex:textproc/docproj
Users that have installed textproc/docproj and have set
WITH_JADETEX=yes will not need to make any changes.
20130103:
AFFECTS: users of audio/baresip
AUTHOR: crees@FreeBSD.org
Baresip is tightly linked to the versions of audio/re and audio/rem, and
will not build against different versions.
To update without problems, the -R flag for portupgrade is mandatory, or
build will fail. Portmaster and pkgng will handle this correctly.
20130103:
AFFECTS: users of emulators/virtualbox-ose
AUTHOR: decke@FreeBSD.org
VirtualBox has been updated and does now depend on devel/kBuild instead
of devel/kBuild-devel. Both are in conflict with each other so this has
to be resolved manually. kBuild is only a build dependency so it is safe
to remove installed kBuild before updating.
# pkg_delete -f kBuild-\*
20130102:
AFFECTS: users of mail/opensmtpd
AUTHOR: ashish@FreeBSD.org
OpenSMTPD port has been updated to the latest portable snapshot. There
has been several changes to the configuration between the last version
and this version, which requires configuration file need to be reviewed.
20121230:
AFFECTS: Nobody
AUTHOR: wxs@FreeBSD.org
FreeBSD 9.1 released.
20121229:
AFFECTS: users of devel/libical
AUTHOR: gnome@FreeBSD.org
The devel/libical has been updated to 0.48. The shared library version has
been changed from 44 to 0. Please rebuild all ports that depends on it:
If you use portmaster:
portmaster -r libical
If you use portupgrade:
portupgrade -fr devel/libical
If you use pkgng with binary packages:
pkg install -fR devel/libical
20121228:
AFFECTS: users of databases/innotop, multimedia/zoneminder
net-mgmt/netdot, ports-mgmt/tinderbox, ports-mgmt/tinderbox-devel
sysutils/watchmen, www/MT
The above mentioned ports were converted to depend on
databases/p5-DBD-mysql. That will cause messages like
===> p5-DBD-mysql-4.021 conflicts with installed package(s):
p5-DBD-mysql55-4.021
To prevent this run one of the following commands to fix the
dependencies.
# portmaster -o databases/p5-DBD-mysql databases/p5-DBD-mysql55
or
# portupgrade -fo databases/p5-DBD-mysql databases/p5-DBD-mysql55
or
# pkg set -o databases/p5-DBD-mysql55:databases/p5-DBD-mysql
20121220:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: haskell@FreeBSD.org
Note that the Glorious Glasgow Haskell Compiler has been updated to
version 7.4.2.
Please rebuild or reinstall all dependent ports by issuing one of the
following commands, depending on the tool used:
# portmaster -w -r ghc
or
# portupgrade -fr lang/ghc
or
# pkg install -fR lang/ghc
20121218:
AFFECTS: users of icu
AUTHOR: bapt@FreeBSD.org
icu has been updated to 50.1. Please rebuild all ports that depend on it:
If you use portmaster:
portmaster -w -r icu
If you use portupgrade:
portupgrade -fr devel/icu
If you use pkgng with binary packages:
pkg install -fR devel/icu
20121212:
AFFECTS: users of openldap24-client who uses SASL
AUTHOR: Xin Li <delphij@FreeBSD.org>
There is a change in the openldap24-client port which removes the SASL
option. If the user previously install openldap24-client, but enabled
SASL from the config menu, the user would have to replace it with
openldap24-sasl-client.
Note that this only affects those who manually set SASL from the menu,
most of the users are not affected.
If you use portmaster:
portmaster -o net/openldap24-sasl-client openldap24-client
If you use portupgrade:
portupgrade -fo net/openldap24-sasl-client openldap24-client
If you use pkgng with binary packages:
pkg set -o net/openldap24-client:net/openldap24-sasl-client
20121212:
AFFECTS: users of horde-* applications
AUTHOR: Martin Matuska <mm@FreeBSD.org>
Horde3 has reached EOL and to make place for new horde application versions
all old horde3 applications have been renamed to use the "horde3-" prefix.
20121211:
AFFECTS: users of graphics/ImageMagick
AUTHOR: bdrewery@FreeBSD.org
The ImageMagick library has been updated to version 6.8.0-7. Please
rebuild all ports that depend on it.
If you use portmaster:
portmaster -w -r ImageMagick
If you use portupgrade:
portupgrade -fr graphics/ImageMagick
If you use pkgng with binary packages:
pkg install -fR graphics/ImageMagick
20121211:
AFFECTS: users of devel/pcre
AUTHOR: bdrewery@FreeBSD.org
The pcre library has been updated to version 8.32. Please
rebuild all ports that depend on it.
If you use portmaster:
portmaster -w -r pcre
If you use portupgrade:
portupgrade -fr devel/pcre
If you use pkgng with binary packages:
pkg install -fR devel/pcre
20121210:
AFFECTS: users of security/cyrus-sasl2
AUTHOR: ume@FreeBSD.org
The cyrus-sasl2 library has been updated to version 2.1.26. Please
rebuild all ports that depend on it.
If you use portmaster:
portmaster -w -r cyrus-sasl-
If you use portupgrade:
portupgrade -fr security/cyrus-sasl2
20121202:
AFFECTS: users of www/owncloud
AUTHOR: crees@FreeBSD.org
www/owncloud includes the entire WWWDIR directory structure in pkg-plist.
This means that if you upgrade it, your config files are added to pkg-plist,
and are then removed on the next deinstall.
This issue has been fixed, but you must back up your install of owncloud and
reinstall to avoid data loss;
# cd /usr/ports/www/owncloud
# tar cfC /tmp/owncloud.tar `make -VWWWDIR` .
# make deinstall
# tar xfC /tmp/owncloud.tar `make -VWWWDIR`
# make install clean && rm /tmp/owncloud.tar
20121201:
AFFECTS: users of www/typo3
AUTHOR: Helmut Ritter <freebsd-ports@charlieroot.de>
www/typo3 has been repocopied to www/typo347. If you need to continue with
the old stable version please run
# portmaster -o www/typo347 www/typo3
or
# portupgrade -fo www/typo347 www/typo3
or
# pkg set -o www/typo3:www/typo347
20121128:
AFFECTS: users of irc/znc
AUTHOR: jase@FreeBSD.org
znc has been updated to 1.0. This introduces some major changes to its
functionality. As a result, if you are upgrading from a previous version
you need to be aware that znc will automatically modify your
configuration file to incorporate support for the new functionality.
Users are recommended to take a backup of their configuration file
before running this new version.
The SASL option has been renamed to CYRUS following a rename of the
associated module. Additionally, a number of modules have been removed
or renamed in this release.
Modules that were classed as Extra modules in previous versions are now
built as standard. The EXTRA option has been removed accordingly.
Please refer to the following URL for detailed information regarding all
changes in this release:
http://wiki.znc.in/ChangeLog/1.0
20121128:
AFFECTS: users of www/opera
AUTHOR: itetcu@FreeBSD.org
If you are running KDE and you are using KDE's File dialog toolkit, and if
your Opera crashes on start with a 'libpng error: incorrect data check'
you can work around it by setting 'Dialog Toolkit=4' in your
.opera/operaprefs.ini [File Selector] section.
20121112:
AFFECTS: users of devel/git
AUTHOR: wxs@FreeBSD.org
The git-daemon(1) process now runs as the git_daemon user. Please make
sure that this user has appropriate permissions to the repositories.
20121109:
AFFECTS: FreeBSD < 9.1 users of syslog-ng >= 3.3.6
AUTHOR: cy@FreeBSD.org
Syslog-ng version 3.3.6 changed the way how /dev/kmsg is read. If you
don't use the system() source (which configures it automatically),
please make sure, that in the kmsg related line follow-freq(1) is used
instead of the previously default follow-freq(0).
20121109:
AFFECTS: users of devel/py-liblarch_gtk deskutils/gtg
AUTHOR: rm@FreeBSD.org
Code of py-liblarch_gtk has been merged into py-liblarch 2.1.0. To avoid
any conflicts, user need to remove py-liblarch_gtk before the update of
py-liblarch.
20121105:
AFFECTS: users of mail/postfix-current
AUTHOR: sahil@FreeBSD.org
With this version of Postfix, the default master.cf now uses "unix"
instead of "fifo" for the pickup and qmgr services. In addition, a
new smtpd_relay_restrictions feature has been introduced for mail
relay control. For sites that do not define this parameter in
main.cf, the upgrade process will add an entry to main.cf. Please
read the RELEASE_NOTES to understand this new feature, how it may
affect your site, and backwards compatibility options.
20121104:
AFFECTS: users of lang/perl5.16
AUTHOR: az@FreeBSD.org
lang/perl5.16 has been updated to 5.16.2. You should update everything
that depends on perl. The easiest way to do that is to use
"perl-after-upgrade" script supplied with lang/perl5.16.
Please see its manual page for details.
If you are using binary packages with pkgng, not ports, do this instead of
"perl-after-upgrade":
# pkg install -fR perl
20121102:
AFFECTS: users of shells/bash-completion
AUTHOR: adamw@FreeBSD.org
The bash completion library has been updated to 2.0, and the mechanism
for activating the library has changed. To use the library, you must:
source /usr/local/share/bash-completion/bash_completion.sh
from your .bashrc file. See the pkg-message or README for a more
graceful invocation.
20121101:
AFFECTS: users of graphics/tesseract
AUTHOR: bf@FreeBSD.org
The trained English and OSD language data that were distributed in
graphics/tesseract have been moved to graphics/tesseract-data. The
latter port includes all available trained language data by default;
as before, users who desire a subset of languages may build smaller
packages by defining TESSERACT_LANGS during a build.
20121031:
AFFECTS: users of dns/ldns
AUTHOR: ak@FreeBSD.org
There is a binary incompatibility in ldns 1.6.14 which is fixed with an
emergency release of ldns 1.6.15.
Warning!
If you have compiled ldns using software with ldns-1.6.14, then this new
version will be binary incompatible with your installed version. You
will have to recompile the software together with ldns-1.6.15.
Was the software compiled with ldns-1.6.13 or earlier, then you will not
have this problem and can safely install ldns-1.6.15.
20121030:
AFFECTS: users of www/squid31
AUTHOR: flo@FreeBSD.org
The WITH_SQUID_ECAP option was removed from the port. If you use ECAP
you need to update to www/squid32, you can do so by running one of the
following commands:
# portmaster -o www/squid32 www/squid31
or
# portupgrade -fo www/squid32 www/squid31
20121025:
AFFECTS: users of net/activemq
AUTHOR: tj@FreeBSD.org
After reinstalling the port, if you wish to use the datastore used before
or have any undelivered persistent messages add the following to rc.conf:
activemq_data=/usr/local/activemq
20121022:
AFFECTS: users of net/samba36
AUTHOR: timur@FreeBSD.org
Startup rc.d/samba script was modified to address some problems with the
fine control of supplementary daemons. As a side effect now it's always
necessary to specify in rc.conf:
samba_enable=YES
to get the script working. You can still control each of the daemons
individually, by disabling/enabling them with:
nmbd_enable=NO
smbd_enable=NO
winbindd_enable=YES
20121015:
AFFECTS: users of ports-mgmt/portmaster
AUTHOR: bdrewery@FreeBSD.org
Portmaster now supports pkgng. To use pkgng, enable the patch in the port,
enable pkgng in your make.conf, and convert your existing /var/db/pkg
database. Also see UPDATING entry 20121010 if you are on a recent CURRENT
and do not want to use pkg.
This is optional and not currently required.
# make -C /usr/ports/ports-mgmt/pkg install clean
# make -C /usr/ports/ports-mgmt/portmaster config build deinstall install clean
# echo 'WITH_PKGNG=yes' >> /etc/make.conf
# pkg2ng
20121015:
AFFECTS: users of ports-mgmt/portupgrade
AUTHOR: bdrewery@FreeBSD.org
Portupgrade now supports pkgng. To use pkgng, enable it in your make.conf,
and convert your databases.
This is optional and not currently required.
# make -C /usr/ports/ports-mgmt/pkg install clean
# echo 'WITH_PKGNG=yes' >> /etc/make.conf
# pkg2ng
# pkgdb -fu
20121010:
AFFECTS: users of mail/enigmail*
AUTHOR: gecko@FreeBSD.org
Enigmail has been integrated into the Thunderbird / SeaMonkey build and
is available as option ENIGMAIL (enabled by default)
Before upgrading Thunderbird or SeaMonkey delete all installed enigmail
ports by running e.g.
# pkg_delete -f seamonkey-enigmail-1.4.3 thunderbird-esr-enigmail-1.4.3 \
thunderbird-enigmail-1.4.3
20121010:
AFFECTS: users of CURRENT (OSVERSION >= 1000017)
AUTHOR: bapt@FreeBSD.org
The ports tree is now using pkgng as the default package manager
for HEAD. This only affects users of CURRENT -- users of other
branches need not take any action.
To keep pkg_install as the default package manager, use the new
WITHOUT_PKGNG knob in make.conf
To make the switch:
1) Set WITHOUT_PKGNG=yes in make.conf and upgrade all your ports to
the latest available versions using your favourite tools.
2) Install ports-mgmt/pkg
3) Remove WITHOUT_PKGNG from make.conf and run:
# pkg2ng
20121009:
AFFECTS: users of multimedia/vdpau-video
AUTHOR: madpilot@FreeBSD.org
vdpau-video has been renamed upstream to libva-vdpau-driver. The
port has been changed accordingly.
Please update the port origins as follows:
# portmaster -o multimedia/libva-vdpau-driver multimedia/vdpau-video
or
# portupgrade -fo multimedia/libva-vdpau-driver multimedia/vdpau-video
or
# pkg set -o multimedia/vdpau-video:multimedia/libva-vdpau-driver
20121008:
AFFECTS: users of mail/squirrelmail
AUTHOR: adamw@FreeBSD.org
The locale data, including translations and associated help files,
have been moved to mail/squirrelmail-translations. If you or your
users are using Squirrelmail in anything other than en_US, you should
install that port.
20121007:
AFFECTS: users of lang/mit-scheme
AUTHOR: olgeni@FreeBSD.org
The lang/mit-scheme port was converted to OptionsNG, and now uses
the standard PGSQL knob rather than POSTGRESQL. Be sure to check
your configuration before rebuilding.
20121006:
AFFECTS: users of devel/geany-plugins
AUTHOR: makc@FreeBSD.org
devel/geany-plugins has been updated to 1.22 and split into numerous
devel/geany-plugin-* ports. geany-plugins must be deinstalled before
running any port upgrade utility.
20121002:
AFFECTS: users of devel/clanlib
AUTHOR: jhale@FreeBSD.org
devel/clanlib has been updated to 2.3.6 and the legacy version has been
moved to devel/clanlib1 and updated to 1.0.0. Although both versions
may be installed at the same time, you should update your port origins
first since many ports that depend on clanlib will not work with the
new version.
Update your port origins as follows:
# portmaster -o devel/clanlib1 devel/clanlib
or
# portupgrade -fo devel/clanlib1 devel/clanlib
or
# pkg set -o devel/clanlib:devel/clanlib1
20120928:
AFFECTS: users of mail/maildrop
AUTHOR: madpilot@FreeBSD.org
With the update to 2.6.0 of mail/maildrop the following executable
files:
bin/deliverquota -> bin/maildrop-deliverquota
bin/maidirmake -> bin/maildrop-maildirmake
have been renamed to avoid colliding with files installed from
other ports. Man pages and HTML files in DOCSDIR relating to these
files have also been renamed accordingly.
20120925:
AFFECTS: users of www/linux-f10-flashplugin11
AUTHOR: eadler@FreeBSD.org
After reinstalling the port make sure to run nspluginwrapper -v -a -u
for each user that uses the plugin.
20120924:
AFFECTS: users of textproc/aspell
AUTHOR: bapt@FreeBSD.org
textproc/aspell no longer installs the English dictionary. If you need it
please install textproc/en-aspell.
20120919:
AFFECTS: users of net-mgmt/better-cacti-templates
AUTHOR: Bryan Drewery <bdrewery@FreeBSD.org>
better-cacti-templates has been renamed as the upstream has merged
with Percona Monitoring Plugins.
Update your port origins as follows:
# portmaster -o net-mgmt/percona-monitoring-plugins net-mgmt/better-cacti-templates
or
# portupgrade -fo net-mgmt/percona-monitoring-plugins net-mgmt/better-cacti-templates
or
# pkg set -o net-mgmt/better-cacti-templates:net-mgmt/percona-monitoring-plugins
20120916:
AFFECTS: users of german/webalizer2, japanese/webalizer, polish/webalizer2, portuguese/webalizer-pt_BR, portuguese/webalizer-pt_PT, ukrainian/webalizer, www/geolizer, www/webalizer
AUTHOR: dinoex@FreeBSD.org
The default Berkeley DB has changed, so existing DNS caches needs to be
rebuild or choose the option BDB1 in the port.
20120913:
AFFECTS: users of sysutils/bacula-server, sysutils/bacula-client
AUTHOR: rm@FreeBSD.org
If you have both sysutils/bacula-server and sysutils/bacula-client
installed, you need to pkg_delete them both prior to this update.
20120910:
AFFECTS: users of www/libxul
AUTHOR: gecko@FreeBSD.org
The www/libxul has been updated to 10.0 and the older version 1.9.2
has moved to www/libxul19.
If you want to stay with 1.9.2 please run the following command:
# portmaster -o www/libxul19 www/libxul
or
# portupgrade -o www/libxul19 www/libxul
or
# pkg set -o www/libxul:www/libxul19
20120909:
AFFECTS: users of www/testlink
AUTHOR: tota@FreeBSD.org
Testlink 1.9.4 was released. Before updating, you should read carefully
the included README file or go to www.teamst.org (Forum: TestLink 1.9.4
News, changes, etc) because this release requires a manual update of the
database scheme.
20120908:
AFFECTS: users of irc/bitlbee, irc/irssi-otr, net-im/climm, net-im/mcabber, net/kdenetwork4, security/kopete-otr, security/py-otr
AUTHOR: Doug Barton <dougb@FreeBSD.org>
The libotr library has been bumped in version 4.0.0, and the new version is
not compatible with the old. In order to make it possible for both versions
to coexist in the short term the old version has been moved to a new port.
If you are currently using pidgin-otr:
# pkg_delete -f pidgin-otr\*
Then:
# portmaster -o security/libotr3 security/libotr
# portmaster -r libotr
or
# portugrade -o security/libotr3 security/libotr
# portugrade -r libotr
or
# pkg set -o security/libotr:security/libotr3
20120902:
AFFECTS: users of www/apache22, www/apache22-event-mpm, www/apache22-itk-mpm, www/apache22-peruser-mpm, www/apache22-worker-mpm
AUTHOR: ohauer@FreeBSD.org
The port use now the options NG framework, this means WITH_xxx
directives are no longer valid.
Additional:
- APR only specific options like THREADS, MYSQL, PGSQL, SQLITE,
BDB and IPV6 where removed.
- PKGNAME has changed from apache-2... to apache22-2...
- PROXY is now a MULTI directive which means at last one additional
PROXY_(AJP|BALANCER|CONNECT|FTP|HTTP|SCGI) module is required.
- CGI is only a valid option for MPM prefork, peruser and itk.
20120902:
AFFECTS: users of devel/apr1
AUTHOR: ohauer@FreeBSD.org
APR was updated to 1.4.6 and APR-util was updated to 1.4.1.
Please rebuild all ports which are using functions from
APR/APR-util such as apache, subversion ...
# portmaster -r apr
or
# portupgrade -r devel/apr1
or
# pkg install -fR devel/apr1
20120902:
AFFECTS: users of math/cantor and math/kalgebra
AUTHOR: kde@FreeBSD.org
If you have both cantor and kalgebra installed, chances are that
your cantor installation is corrupted. If the file
${KDE4_PREFIX}/lib/kde4/cantor_kalgebrabackend.so is missing on
your system, rebuild cantor after updating kalgebra to 4.8.4_1 (or
later).
20120822:
AFFECTS: users of net/asterisk16, net/asterisk16-addons
AUTHOR: Florian Smeets <flo@FreeBSD.org>
asterisk16 has been unsupported upstream for a while now and has known
security vulnerabilities, therefore it was removed from the ports tree.
People still running net/asterisk16 should upgrade to net/asterisk.
First delete the asterisk addons, as they are part of asterisk now.
# pkg_delete -f asterisk16-addons\*
after that you can run one of the following
# portmaster -o net/asterisk net/asterisk16
or
# portupgrade -o net/asterisk net/asterisk16
or
# pkg set -o net/asterisk16:net/asterisk
After that you need to update your configuration. Take a look at the following
URL for the changes between 1.6 and 1.8
http://svnview.digium.com/svn/asterisk/branches/1.8/UPGRADE.txt
20120820:
AFFECTS: users of ports-mgmt/portupgrade-devel
AUTHOR: bdrewery@FreeBSD.org
Due to a bug introduced in 20120601, portupgrade is unable to
upgrade itself on FreeBSD 7.x. This has been fixed in 20120820.
ports-mgmt/portupgrade is not affected. To upgrade, execute the following:
# make -C /usr/ports/ports-mgmt/portupgrade-devel all deinstall install clean
20120817:
AFFECTS: users of games/unnethack
AUTHOR: knu@FreeBSD.org
The place for variable files has changed from
$PREFIX/share/unnethack to $PREFIX/var/games/unnethack. To keep
your saved files and game records, please manually move the
following files and directories to the new directory after
upgrading.
logfile
perm
record
xlogfile
bones/
level/
saves/
20120816:
AFFECTS: users of sysutils/cfengine*
AUTHOR: gjb@FreeBSD.org
The sysutils/cfengine* ports have been renamed as follows:
o sysutils/cfengine -> sysutils/cfengine22
o sysutils/cfengine3-legacy -> sysutils/cfengine32
o sysutils/cfengine3 -> sysutils/cfengine33
Users are reminded to update the port origins, for example:
# portmaster -o sysutils/cfengine22 sysutils/cfengine
or
# portupgrade -fo sysutils/cfengine22 sysutils/cfengine
or
# pkg set -o sysutils/cfengine:sysutils/cfengine22
20120815:
AFFECTS: users of lang/erlang
AUTHOR: olgeni@FreeBSD.org
The lang/erlang port was updated to R15B01. Some port options
were updated, so be sure to run "make config" in the port directory
and check your configuration before upgrading.
To upgrade Erlang and rebuild all of the dependent ports under
the new environment:
# portmaster -r erlang
or
# portupgrade -r lang/erlang
20120815:
AFFECTS: users of lang/erlang-lite
AUTHOR: olgeni@FreeBSD.org
The lang/erlang-lite port uses the same default options as
lang/erlang, which were changed some time ago.
The couchdb, rabbitmq, freeswitch-core and freeswitch-core-devel
ports have been updated to use lang/erlang rather than lang/erlang-lite.
Please check that your lang/erlang options are configured as you
wish (especially X11 support), then follow the instructions below
to update your dependencies.
# portmaster -o lang/erlang lang/erlang-lite
or
# portupgrade -fo lang/erlang erlang-lite
20120810:
AFFECTS: users of net-p2p/transmission-gtk2
AUTHOR: crees@FreeBSD.org
Unfortunately Transmission 2.61 moved the requirement for GTK to version
3.2.0, which is not yet in our tree.
Those who wish to have a graphical client can either choose transmission-qt4
in the meantime, or switch to the transmission25 ports.
A script to generate appropriate commands can be found at:
http://people.FreeBSD.org/~crees/scripts/transmission25.sh
20120808:
AFFECTS: users of www/libmicrohttpd
AUTHOR: bdrewery@FreeBSD.org
libmicrohttpd has been updated to version 0.9.21, with a shared library bump.
This requires dependent ports to be rebuilt.
# portmaster -r libmicrohttpd
or
# portupgrade -r www/libmicrohttpd
or
# pkg install -fR www/libmicrohttpd
20120804:
AFFECTS: users of graphics/libglut
AUTHOR: x11@FreeBSD.org
The libglut library is replaced by the freeglut library.
Due to shlib version bump all glut users should be rebuild.
Please follow the instructions below to upgrade.
# portmaster -o graphics/freeglut graphics/libglut
# portmaster -r freeglut
or
# env DISABLE_CONFLICTS=1 portupgrade -fo graphics/freeglut libglut\*
# portupgrade -frx freeglut freeglut
or
# pkg set -o graphics/libglut:graphics/freeglut
# pkg install -Rf graphics/freeglut
20120801:
AFFECTS: users of editors/emacs
AUTHOR: ashish@FreeBSD.org
GNU Emacs port is updated to 24.1. Emacs 23 is moved to editors/emacs23.
If you prefer to stick with Emacs 23, please specify EMACS_PORT_NAME=emacs23
in /etc/make.conf, and do:
# portmaster -o editors/emacs23 editors/emacs
or
# env DISABLE_CONFLICTS=1 portupgrade -fo editors/emacs23 editors/emacs
or
# pkg set -o editors/emacs:editors/emacs23
20120726:
AFFECTS: users of www/firefox, www/seamonkey, mail/thunderbird, www/libxul
AUTHOR: gecko@FreeBSD.org
Gecko ports were switched to use system libraries. Some of them
must be built with certain options set (default).
- graphics/png has to be installed with APNG option
- databases/sqlite3 has to be installed with SECURE_DELETE, THREADSAFE,
FTS3, UNLOCK_NOTIFY options
20120726:
AFFECTS: users of devel/pkg-config
AUTHOR: bapt@FreeBSD.org
devel/pkg-config has been replaced by devel/pkgconf
# portmaster -o devel/pkgconf devel/pkg-config
or
# portupgrade -fo devel/pkgconf pkg-config-\*
pkgng:
# pkg set -o devel/pkg-config:devel/pkgconf
# pkg install -f devel/pkgconf
20120725:
AFFECTS: users of chinese/fcitx
AUTHOR: lichray@gmail.com
The textproc/fcitx-keyboard port is merged into chinese/fcitx.
Before updating, be sure to
# pkg_delete -f fcitx-keyboard-\*
And make sure you have at least one keyboard layout based input method
enabled in fcitx-configtool, to keep the activation/deactivation of IM
panel working.
And, since chinese/fcitx-sunpinyin depends on an update to
chinese/sunpinyin
20120725:
AFFECTS: users of www/py-beautifulsoup
AUTHOR: rm@FreeBSD.org
Current www/py-beautifulsoup has been moved to www/py-beautifulsoup32,
since 4.1.1 is now current stable version.
If you prefer to stick with 3.2.0 do:
# portmaster -o www/py-beautifulsoup32 www/py-beautifulsoup
20120723:
AFFECTS: users of security/snort
AUTHOR: zi@FreeBSD.org
The database output modules have been deprecated. If you need this
functionality please look at the security/barnyard2 port.
20120723:
AFFECTS: users of graphics/ImageMagick and graphics/ImageMagick-nox11
AUTHOR: mm@FreeBSD.org
The options for ImageMagick have been changed to match commonly used
option names. If you are using a customized build, please reconfigure
your port options with "make config".
20120720:
AFFECTS: users of net/spread and net/spread4
AUTHOR: ohauer@FreeBSD.org
The ports net/spread and net/spread4 are using now the
reserved UID/GID 282 instead (user|group)next.
20120722:
AFFECTS: users of mail/mutt
AUTHOR: crees@FreeBSD.org
mail/mutt-devel has been moved to mail/mutt, since 1.5 has been around
for a while.
Should you wish to stick with version 1.4 at this time;
# portmaster -o mail/mutt14 mutt
20120721:
AFFECTS: users of audio/libogg
AUTHOR: naddy@FreeBSD.org
There is a new version of libogg (1.3.0) and the shared library version
has been bumped (ogg.7 to ogg.8). All ports that have an identifiable
direct dependency on this library have had their PORTREVISIONs bumped.
However, some ports that pull in the library indirectly may continue to
look for the old version. To ensure that all are updated, perform this
step:
# portmaster -r libogg
or
# portupgrade -rf libogg
20120717:
AFFECTS: users of ftp/proftpd
AUTHOR: mm@FreeBSD.org
The options of ProFTPD have been made much more user-friendly.
As the modules are all shared libraries, all possible modules are built
and installed. The following modules are now in separate slave ports:
databases/proftpd-mod_sql_odbc: mod_sql_odbc
databases/proftpd-mod_sql_sqlite: mod_sql_sqlite
databases/proftpd-mod_sql_tds: mod_sql_tds
net/proftpd-mod_ldap: mod_ldap and mod_quotatab_ldap
20120716:
AFFECTS: users of www/lighttpd
AUTHOR: mm@FreeBSD.org
The following port options have been reorganized:
The OPENLDAP option has been renamed to LDAP.
The MAGNET and CML options have been withdrawn in favor of new LUA option.
20120716:
AFFECTS: users of mail/postfix-current
AUTHOR: sahil@FreeBSD.org
The postscreen-to-smtpd protocol has changed. To avoid "cannot
receive connection attributes" warnings and dropped connections,
execute the command "postfix reload".
20120716:
AFFECTS: Nobody
AUTHOR: beat@FreeBSD.org
The FreeBSD ports tree switched from CVS to Subversion. A Subversion
to CVS exporter is in place to continue the support of CVSup.
20120709:
AFFECTS: users of math/metis
AUTHOR: bf@FreeBSD.org
The older version of metis has been moved to math/metis4, and
math/metis has been updated to 5.0.2. Dependent ports still use
the old API, and the different versions of metis cannot coexist, so
most users should update with:
# portmaster -o math/metis4 math/metis
# portmaster -r math/metis4
or the equivalent.
20120702:
AFFECTS: users of databases/couchdb
AUTHOR: crees@FreeBSD.org, Adam Strohl <adams-ports@ateamsystems.com>
The couchdb port has an unfortunate side effect; versions before 1.2.0
will clobber local.ini. The port will refuse to build if that file is
present and an earlier version is installed, however no such protection
can be afforded to package installation.
To upgrade from 1.1.0 and earlier, simply move PREFIX/etc/couchdb/local.ini
out of the way until the upgrade is complete.
20120702:
AFFECTS: users of net-im/mikutter
AUTHOR: tota@FreeBSD.org
The net-im/mikutter has been updated to 0.1.1.810 which is required
Ruby 1.9.2 or later. Before upgrading this port, please see the entry
20110822 in this file to upgrade Ruby to 1.9.
If you want to stay with 0.0.3 (requires Ruby 1.8.7, 1.9.2 or later),
please run the following command:
# portmaster -o net-im/mikutter003 net-im/mikutter
or
# portupgrade -o net-im/mikutter003 net-im/mikutter
20120630:
AFFECTS: users of lang/perl*
AUTHOR: skv@FreeBSD.org
lang/perl5.16 is out. If you want to switch to it from, for example
lang/perl5.12, that is:
Portupgrade users:
0) Fix pkgdb.db (for safety):
pkgdb -Ff
1) Reinstall new version of Perl (5.16):
env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.16 -f perl-5.12.\*
2) Reinstall everything that depends on Perl:
portupgrade -fr perl
Portmaster users:
portmaster -o lang/perl5.16 lang/perl5.12
Conservative:
portmaster p5-
Comprehensive (but perhaps overkill):
portmaster -r perl-
Note: If the "perl-" glob matches more than one port you will need to
specify the name of the Perl directory in /var/db/pkg explicitly.
The default version for Perl has also been changed from 5.12 to 5.14.
20120623:
AFFECTS: users of sysutils/xfce4-utils
AUTHOR: xfce@FreeBSD.org
The port has been discontinued, and installs files that conflict with
the new versions of misc/xfce4-appfinder and x11-wm/xfce4-session.
# pkg_delete -f xfce4-utils-\*
# portmaster misc/xfce4-appfinder x11-wm/xfce4-session
20120618:
AFFECTS: users of databases/db5
AUTHOR: mandree@FreeBSD.org
The databases/db5 port has been upgraded to BerkeleyDB 5.3. This
entails a shared library bump.
Before upgrading this port, check if your applications use
transactional data bases, and if they do, prepare them for a log file
format upgrade. YOU MUST DO THIS BEFORE YOU UPGRADE THE DB5 PORT! See:
http://docs.oracle.com/cd/E17076_02/html/upgrading/upgrade_process.html
All packages that depend on db5 need to be rebuilt due to the shared
library version change. The full changelog is at
http://download.oracle.com/otndocs/products/berkeleydb/html/changelog_5_3.html
To upgrade the packages that need Berkeley DB 5, please
issue one of the following commands (depending on your preferred tool):
# portmaster -r db5-5
or
# portupgrade -fr databases/db5
20120616:
AFFECTS: users of www/lighttpd
AUTHOR: mm@FreeBSD.org
The lighttpd startup script has been changed and is now compatible to the
apache startup script. The "reload" subcommand now sends a SIGHUP to the
process and triggers cycling of log files. The new command "graceful"
performs a graceful restart (similar to former "reload") and "gracefulstop"
performs a graceful stop. The "check" command has been replaced with
the "configtest" command.
20120615:
AFFECTS: users of databases/akonadi
AUTHOR: kde@FreeBSD.org
The latest Akonadi update includes critical bug fixes. Manual
intervention is required for people using local MySQL database (the
default configuration) as backend:
$ akonadictl stop
Wait a bit, and make sure that akonadiserver and akonadi_control are
not running. Kill them if needed. Then, you have two alternatives:
$ mysql_install_db --force \
--defaults-file=~/.local/share/akonadi/mysql.conf \
--datadir=~/.local/share/akonadi/db_data \
--basedir=$(dirname `dirname $(which mysql_install_db)`)
$ rm ~/.local/share/akonadi/mysql.conf
...or...
$ rm -r ~/.local/share/akonadi
In the latter case, Akonadi will have to recache your personal data
(might take a while). Akonadi is only a cache, no data will be lost.
Then:
$ akonadictl start
20120613:
AFFECTS: users of graphics/djvulibre and graphics/djvulibre-nox11
AUTHOR: bf@FreeBSD.org
DjVuLibre been updated to 3.5.25.3. The Qt 3.x GUI support that was in
graphics/djvulibre has been removed (users of this GUI should consider
switching to the new Qt 4.x GUI in graphics/djview4), and
graphics/djvulibre-nox11 has been merged back into graphics/djvulibre.
To update DjVuLibre, you can use:
# pkg_delete djvulibre-\?.\*
# portmaster -o graphics/djvulibre djvulibre-nox11
You should then update any installed ports that link to the djvulibre shared
library: converters/pdf2djvu, graphics/djview4, graphics/okular, and --
if optional djvulibre support was enabled -- graphics/ImageMagick,
graphics/apvlv, and graphics/evince.
20120612:
AFFECTS: users of databases/postgresql-libpqxx
AUTHOR: avilla@FreeBSD.org
postgresql-libpqxx has been updated to 4.0. If you want to stick
with version 3, install postgresql-libpqxx30:
# portmaster -o databases/postgresql-libpqxx30 postgresql-libpqxx
20120612:
AFFECTS: users of graphics/gdal
AUTHOR: sunpoet@FreeBSD.org
Language bindings (Perl, PHP, Python, and Ruby) were moved to separate
ports. Please install them if required. The new ports are:
Perl binding: graphics/p5-Geo-GDAL
PHP binding: graphics/php-gdal
Python binding: graphics/py-gdal
Ruby binding: graphics/ruby-gdal
20120605:
AFFECTS: users of net/p5-ZConf
AUTHOR: vvelox@vvelox.net
Please append '.set' to all sets for the FS backend. This was done to prevent
collisions between config and set names. Previously the config
"someConfig/default" would collide with the set "default" for "someConfig".
20120603:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: haskell@FreeBSD.org
Note that The Glorious Glasgow Haskell Compiler and the Haskell Platform
have been updated to versions 7.4.1 and 2012.2.0.0, respectively. At the
same time, all Haskell ports have been updated to their latest working
versions.
To follow the changes, please issue one of the following commands
(depending on the tool used):
# portmaster -r ghc
or
# portupgrade -fr lang/ghc
20120531:
AFFECTS: users of graphics/png
AUTHOR: dinoex@FreeBSD.org
The PNG library has been updated to version 1.5.10. Please rebuild all
ports that depend on it.
If you use portmaster:
portmaster -r png-
If you use portupgrade:
portupgrade -fr graphics/png
20120531:
AFFECTS: users of editors/koffice-kde4
AUTHOR: kde@FreeBSD.org
KOffice 2 has been replaced by Calligra. You are encouraged to
deinstall any KOffice port and install equivalent Calligra ones:
# pkg_delete \*koffice\*
# portmaster editors/calligra <additional l10n ports>
20120530:
AFFECTS: users of databases/postgresql*-server
AUTHOR: jgh@FreeBSD.org
Affected users are those who use the crypt(text, text) function with
DES encryption in the optional pg_crypto module. Passwords affected
are those that contain characters that cannot be represented with
7-bit ASCII. If a password contains a character that has the most
significant bit set (0x80), and DES encryption is used, that character
and all characters after it will be ignored.
20120530:
AFFECTS: users of net/nss-pam-ldapd
AUTHOR: scheidell@FreeBSD.org
The net/nss-pam-ldapd port no longer provides an option for SASL. This has
been sourced out to the new net/nss-pam-ldapd-sasl port, to accommodate
users using packages (see ports/162240). Users with openldap-sasl-client
installed are encouraged to change the port's origin to:
net/nss-pam-ldapd-sasl using their favorite ports management tool.
Example for portmaster:
portmaster -o net/nss-pam-ldapd-sasl nss-pam-ldapd
20120527:
AFFECTS: users of x11-toolkits/qt4-gui
AUTHOR: kde@FreeBSD.org
Qt started using the raster graphics system engine, which relies on
shared memory. Be sure to check pkg-message.
20120525:
AFFECTS: users of deskutils/kdepim4, deskutils/kdepim4-runtime
AUTHOR: kde@FreeBSD.org
kdepim4 has been updated to 4.8.3. For those who prefer old
kdepim-4.4.11.1 deskutils/kdepim44* ports have been added.
To stay with kdepim-4.4.11.1 run the following commands:
# portmaster -o deskutils/kdepim44-runtime kdepim-runtime-4\*
# portmaster -o deskutils/kdepim44 kdepim-4\*
20120525:
AFFECTS: users of KDE SC 4
AUTHOR: kde@FreeBSD.org
KDE SC ports have been updated to 4.8.3. Several ports were split,
thus manual intervention into update procedure is required:
# pkg_delete -f kde-runtime-\* ruby\*-kdebindings-korundum\* \
kalgebra-4\* kdeaccessibility-4\* kdeutils-4\* kde-baseapps-\* \
plasma-applet-icontasks\*
# portmaster -a
20120518:
AFFECTS: users of dns/poweradmin
AUTHOR: Edmondas Girkantas <eg@fbsd.lt>
Some database changes have been made between version 2.1.4 and 2.1.5,
upgrading needs to be done manually by running the following SQL:
For MySQL users:
ALTER TABLE `zones` ADD `zone_templ_id` INT( 11 ) NOT NULL;
ALTER TABLE zones ENGINE = InnoDB;
ALTER TABLE zone_templ ENGINE = InnoDB;
ALTER TABLE zone_templ_records ENGINE = InnoDB;
For PostgreSQL users:
ALTER TABLE zones ADD zone_templ_id INT DEFAULT NULL;
Source: https://www.poweradmin.org/trac/wiki/ReleaseNotes/2.1.5
20120516:
AFFECTS: users of lang/php5
AUTHOR: ale@FreeBSD.org
PHP has been updated to 5.4. Suhosin patch has been disabled until the
new version will be released (soon). Suhosing extension will take more
time. LINKTHR option is now enabled by default, be sure to flag it if
you are updating using an old saved configuration. sqlite2 extension
has been permanently removed.
If you want to remain at PHP 5.3, a new port (lang/php53) has been
created for such purpose.
20120513:
AFFECTS: users of net-mgmt/smokeping
AUTHOR: lth@FreeBSD.org
Smokeping has been updated to 2.6.7, and the web server configuration
has changed. FastCGI is now preferred. Please check the documentation
that your web server configuration is OK.
20120512:
AFFECTS: users of textproc/p5-XML-SAX
AUTHOR: crees@FreeBSD.org
p5-XML-SAX (X-S) was split into p5-XML-SAX-Base (X-S-B) and p5-XML-SAX for
version 0.99. Since X-S-B now installs some files formerly installed by X-S
the package for X-S must be deinstalled before updating X-S.
# pkg_delete -fx p5-XML-SAX
# portmaster textproc/p5-XML-SAX
(users of pkgng can substitute pkg_delete with pkg delete)
20120511:
AFFECTS: users of graphics/xpdf
AUTHOR: cy@FreeBSD.org
In order to allow graphics/xpdf and graphics/poppler-utils to coexist,
graphics/xpdf binaries have been moved from ${LOCALBASE}/bin to
${LOCALBASE}/lib/xpdf. The symlink ${LOCALBASE}/bin/xpdf points to
${LOCALBASE}/lib/xpdf/xpdf. However the other utilities installed by
the xpdf port conflict with poppler-utils, no symlinks are maintained.
Applicaions and scripts which use the pdf* utilities provided by
graphics/xpdf must reference them using their new location, specify
${LOCALBASE}/lib/xpdf in $PATH, or use the same utilities provided by
graphics/poppler-utils.
20120510:
AFFECTS: users of devel/gitolite
AUTHOR: milki@rescomp.berkeley.edu
gitolite has been split into two ports: devel/gitolite for 3.x and
devel/gitolite2 for 2.x
gitolite 3.x is NOT "API" compatible with gitolite 2.x and requires
additional manual migration steps which can be found in the online
documentation.
http://sitaramc.github.com/gitolite/install.html#migr
Current users wishing to continue using gitolite 2.x should run:
# portmaster -o devel/gitolite2 gitolite
or
# portupgrade -o devel/gitolite2 gitolite
20120508:
AFFECTS: users of www/node and www/node-devel
AUTHOR: sunpoet@FreeBSD.org
npm is a package manager for node. Starting with node 0.6.17 (www/node) and
node 0.7.8 (www/node-devel), we do not install bundled npm but provide a
separate port (www/npm). Please install www/npm if you need it.
20120430:
AFFECTS: users of www/py-google-api-python-client
AUTHOR: nivit@FreeBSD.org
The port has been updated to 1.0.b8. This new version has important
changes which might break your code:
* apiclient.anyjson has moved to oauth2client.anyjson.
* Some calls, for example, taskqueue().lease() used to require
a parameter named body. In this new release only methods that
really need to send a body require a body parameter, and so
you may get errors about an unknown 'body' parameter in your call.
The solution is to remove the unneeded body={} parameter
See http://code.google.com/p/google-api-python-client/wiki/PyDoc for
more information.
20120426:
AFFECTS: users of editors/libreoffice
AUTHOR: bapt@FreeBSD.org
LOCALIZED_LANG option has gone, localized packages are now available
separately, you can also use editors/libreoffice-i18n to pick the
localization you want.
20120425:
AFFECTS: users of mail/postfix, mail/postfix2[6-8]
AUTHOR: sahil@FreeBSD.org
The latest update to these ports adds support to turn off
the TLSv1.1 and TLSv1.2 protocols introduced in OpenSSL 1.0.1.
These protocols are known to cause inter-operability issues
with certain services, e.g. hotmail. If using TLS with Postfix,
please consult the RELEASE_NOTES for information about possible
workarounds.
20120423:
AFFECTS: users of astro/boinc-astropulse
AUTHOR: rene@FreeBSD.org
Astropulse has been updated to 6.01, which is a different application
than version 5.06. You need to have Astropulse v6 enabled in your
account under SETI@home preferences. It is also advisable to finish
and report existing Astropulse units before updating.
20120421:
AFFECTS: users of x11/xorg
AUTHOR: x11@FreeBSD.org
The default mesa has been updated to 7.6.1 and the default xorg-server
to 1.7.7.
A switch is available for people that want to use mesa 7.11.x and
xorg-server 1.10.6. This requires an nvidia card or Intel+KMS support.
If you have an intel card and can try these experimental KMS support
patches:
10/head with a patch: http://people.freebsd.org/~kib/drm/
FreeBSD stable/9 and releng/9.0:
http://lists.freebsd.org/pipermail/freebsd-x11/2012-April/011640.html
20120419:
AFFECTS: users of security/openssl
AUTHOR: dinoex@FreeBSD.org
The OpenSSL port has been updated to 1.0.1a. Please rebuild all
ports that depend on it.
If you use portmaster:
portmaster -r openssl
Or, if you would prefer a more gradual approach:
portmaster -w openssl (check the man page for more information)
If you use portupgrade:
portupgrade -fr security/openssl
20120418:
AFFECTS: Nobody
AUTHOR: wxs@FreeBSD.org
FreeBSD 8.3 released.
20120418:
AFFECTS: users of www/firefox and mail/thunderbird
AUTHOR: gecko@FreeBSD.org
Firefox and Thunderbird have been updated to 11.0. If you want to
stay with the Extended Support Release please use the new -esr
ports.
Firefox:
# portupgrade -o www/firefox-esr www/firefox
# portupgrade -o www/firefox-esr-i18n www/firefox-i18n (if installed)
or
# portmaster -o www/firefox-esr www/firefox
# portmaster -o www/firefox-esr-i18n www/firefox-i18n (if installed)
Thunderbird:
# portupgrade -o mail/thunderbird-esr mail/thunderbird
# portupgrade -o mail/thunderbird-esr-i18n \
mail/thunderbird-i18n (if installed)
or
# portmaster -o mail/thunderbird-esr mail/thunderbird
# portmaster -o mail/thunderbird-esr-i18n \
mail/thunderbird-i18n (if installed)
20120418:
AFFECTS: users of www/chpasswd
AUTHOR: madpilot@FreeBSD.org
Previous version of the chpasswd port put the configuration file
in the pkg-plist, causing it to be removed on deinstall.
Users are advised to make a backup copy of the configuration file
before upgrading. This has been fixed and will not happen anymore
in future updates.
20120415:
AFFECTS: users of irc/ircd-ratbox
AUTHOR: scheidell@FreeBSD.org
Ircd-ratbox has been updated to follow the current stable release
branch (3.0.x). All previous branches are no longer supported by the
ratbox team.
Users of ircd-ratbox are advised to create new ircd configuration
files based on the examples provided.
20120404:
AFFECTS: users of net-mgmt/net-snmp
AUTHOR: zi@FreeBSD.org
The net-snmp startup script now specifies a new pid_file to avoid a
conflict that existed with bsnmpd. As a result, the startup script
cannot find currently running versions of snmpd.
You will need to either stop the daemon before upgrading or locate the
PID of snmpd and manually kill it after upgrade. Then, start the daemon
as you normally would.
20120326:
AFFECTS: users of www/tomcat7
AUTHOR: ale@FreeBSD.org
Tomcat 7 startup script now uses 'jsvc' to monitor the daemon's process.
A few rc.conf variables has been changed, be sure to adapt your
configuration, if needed.
20120318:
AFFECTS: users of mail/dbmail
AUTHOR: rm@FreeBSD.org
dbmail 3.0 is now available.
There are a number of significant changes including Dependencies,
Config, Schema and Server changes.
Without required modifications, dbmail will not run and you will
no longer have access to your emails. See UPGRADING for details.
Don't forget to backup and fully test before upgrading.
To stick with version 2.2.x run:
# portupgrade -o mail/dbmail22 mail/dbmail
or
# portmaster -o mail/dbmail22 mail/dbmail
20120313:
AFFECTS: users of x11-toolkits/qt4-gui
AUTHOR: kde@FreeBSD.org
MIT-SHM problem (blank windows in Marble and KDE-Games) has been
fixed, kern.ipc.shm_allow_removed=1 is not needed anymore to
workaround it.
20120311:
AFFECTS: users of lang/perl5.8 and lang/perl5.10
AUTHOR: linimon@FreeBSD.org
lang/perl5.8 and lang/perl5.10 have been restored from the Attic
in order to give a FreeBSD-style deprecation cycle. However, users
are advised to upgrade to perl5.12 as soon as feasible.
20120308:
AFFECTS: users of lang/perl5.8 and lang/perl5.10
AUTHOR: pgollucci@FreeBSD.org
lang/perl5.8 and lang/perl5.10 have been removed since they've
been EOL upstream for 3yrs and 2yrs respectively. The default
of lang/perl5.12 has not changed (yet). Conditional checks for
perl < 5.12 have been removed. UNLESS you have PERL_VERSION=5.8.x
or PERL_VERSION=5.10.x in /etc/make.conf you need take no action.
If you do, you will have to recompile all perl dependant ports after
updating your ports tree. Please see entry 20110517 for help.
20120225:
AFFECTS: users of archivers/libarchive
AUTHOR: glewis@FreeBSD.org
libarchive has been updated to version 3.0.3, with a shared library bump.
This requires dependent ports to be rebuilt.
# portmaster -r libarchive
or
# portupgrade -r archivers/libarchive
20120221:
AFFECTS: users of emulators/virtualbox-ose
AUTHOR: decke@FreeBSD.org
virtualbox-ose has been updated to 4.1.8 and requires the latest
devel/kBuild-devel now. It is only a build dependency so it is safe
to remove it before updating.
# pkg_delete -f kBuild-\*
20120220:
AFFECTS: users of graphics/libungif
AUTHOR: dinoex@FreeBSD.org
libungif is obsolete, please deinstall it and rebuild all ports using
it with graphics/giflib.
# portmaster -o graphics/giflib graphics/libungif
# portmaster -r giflib
or
# portupgrade -o graphics/giflib graphics/libungif
# portupgrade -rf giflib
20120216:
AFFECTS: users of multimedia/libvpx
AUTHOR: ashish@FreeBSD.org
libvpx has been updated to version 1.0.0, with a shared library bump.
This requires dependencies to be rebuilt.
# portmaster -r libvpx
or
# portupgrade -r multimedia/libvpx
20120214:
AFFECTS: users of net/libexosip2
AUTHOR: jgh@FreeBSD.org
libexosip2 has been updated with a shared library bump.
This requires dependencies to be rebuilt.
# portmaster -r libexosip2
or
# portupgrade -rf libexosip2-3.\*
20120214:
AFFECTS: users of devel/pcre
AUTHOR: dougb@FreeBSD.org
Until all dependent ports have been updated you should update pcre in
a manner that will preserve its old shared library. For example:
# portmaster -w devel/pcre
or
# portupgrade devel/pcre
20120213:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: pgj@FreeBSD.org
GHC has been updated to version 7.0.4, and Haskell Platform to version
2011.4.0.0, and other Haskell ports are also updated to their Haskell
Platform versions or latest versions.
To update all affected ports:
# portmaster -r lang/ghc
or
# portupgrade -r lang/ghc
20120210:
AFFECTS: users of mail/postfix
AUTHOR: Sahil Tandon <sahil@FreeBSD.org>
Postfix 2.9.0 contains several major changes, some of which could
result in incompatible or unexpected behavior. Regardless of the
version from which you are upgrading, please carefully review the
RELEASE_NOTES before proceeding.
20120126:
AFFECTS: users of ftp/proftpd and ftp/proftpd-mysql
AUTHOR: Martin Matuska <mm@FreeBSD.org>
The proftpd port has been updated to 1.3.4 and changed to use
dynamically loadable modules. Please add corresponding LoadModule
directives to your configuration file, like in the following example:
LoadModule mod_tls.c
The modules mod_sql_mysql and mod_sql_postgres are now outside of the
main proftpd port:
databases/proftpd-mod_sql_mysql
databases/proftpd-mod_sql_postgres
The proftpd-mysql port has been removed, use the alternative port:
databases/proftpd-mod_sql_mysql
20120121:
AFFECTS: users of multimedia/vdr
AUTHOR: Juergen Lock <nox@FreeBSD.org>
The vdr ports have been updated to 1.7.22 which involves at least
two changes:
- svdrpsend.pl is now called svdrpsend.
- The ttxtsubs channels.conf format has changed so if you use that
plugin you need to edit /usr/local/etc/vdr/channels.conf for the
channels you want to receive teletext subtitles on - see:
/usr/local/share/doc/vdr-plugin-ttxtsubs/HISTORY
20120116:
AFFECTS: users of mail/postfix-current
AUTHOR: Sahil Tandon <sahil@FreeBSD.org>
From the upstream RELEASE_NOTES:
Instead of terminating immediately with a "fatal" message when a
database file can't be opened, a Postfix daemon program now logs
an "error" message, and continues execution with reduced
functionality.
Specify "daemon_table_open_error_is_fatal = yes" to get the
historical behavior (immediate termination with "fatal" message).
Logfile-based alerting systems may need to be updated to look for
"error" messages in addition to "fatal" messages.
By default the Postfix SMTP server no longer reports transcripts
of sessions where a client command is rejected because a table is
unavailable. To receive such reports, add the new "data" class to
the notify_classes parameter value. The reports will be sent to the
error_notice_recipient address as before. This class is also used
by the Postfix SMTP client to report about sessions that fail
because a table is unavailable.
20120116:
AFFECTS: users of x11/xcb-util
AUTHOR: garga@FreeBSD.org
x11/xcb-util was updated to 0.3.8 and was split in new modules.
Dependencies were adjusted but main port symbols were moved to a single
library, xcb-util.so. For this reason, all dependent ports must be
recompiled.If you use portmaster, run:
# portmaster -R -r xcb-util-0
Or for portupgrade:
# portupgrade -r xcb-util-0\*
20120112:
AFFECTS: Nobody
AUTHOR: wxs@FreeBSD.org
FreeBSD 9.0 released.
20120109:
AFFECTS: users of www/p5-WWW-GitHub-Gist
AUTHOR: lbr@FreeBSD.org
gist command was moved into new www/p5-App-gist port.
20120109:
AFFECTS: ports using Apache Software License 2.0
AUTHOR: tabthorpe@FreeBSD.org
The correct acronym for Apache Software License 2.0 is really AL2.
20120109:
AFFECTS: users of graphics/inkscape:
AUTHOR: bsam@FreeBSD.org
Before updating graphics/inkscape to version 0.48.2 one should deinstall
the port graphics/libwpg01.
20120108:
AFFECTS: users of devel/p5-CPAN-Meta and devel/p5-Version-Requirements
AUTHOR: sunpoet@FreeBSD.org
Author of Version::Requirements (devel/p5-Version-Requirements) merged
its function to CPAN::Meta::Requirements (part of devel/p5-CPAN-Meta).
As a result, devel/p5-Version-Requirements is marked DEPRECATED.
Please run the following commands to update p5-CPAN-Meta and remove
p5-Version-Requirements:
# portmaster -o devel/p5-CPAN-Meta devel/p5-Version-Requirements
# pkg_delete p5-Version-Requirements-\*
20120104:
AFFECTS: users of devel/thrift, py-thrift, php5-thrift, p5-thrift
AUTHOR: scheidell@FreeBSD.org
Users upgrading thrift from 0.6.1, please take note: library structure
and versions have changed, and are not compatible with 0.7.0+
20111231:
AFFECTS: users of lang/newlisp
AUTHOR: olgeni@FreeBSD.org
In lang/newlisp, the MYSQL5 and MYSQL51 options have been unified into
MYSQL, which will pick the correct MySQL version using the standard
MySQL selection logic. MySQL users will have to run "make config" and
select the MYSQL option.
Tinderbox users will have to update their options files with the new
MYSQL option, and possibly change their Tinderbox environment to select
a specific MySQL version.
20111229:
AFFECTS: users of ftp/proftpd{-devel,-mysql}
AUTHORS: delphij@FreeBSD.org, mm@FreeBSD.org
Due to the nature of the way FreeBSD-SA-11:07.chroot is implemented,
users have to update to latest -STABLE, -CURRENT, or supported
security branch to use the chroot functionality in these ports.
Please see the security advisory for more details.
20111219:
AFFECTS: users of lang/perl5.14
AUTHOR: skv@FreeBSD.org
lang/perl5.14 has been updated to 5.14.2. You should update everything
that depends on perl. The easiest way to do that is to use
"perl-after-upgrade" script supplied with lang/perl5.14.
Please see its manual page for details.
If you want to switch to lang/perl5.14 from lang/perl5.{8,10,12} please
follow instructions in the entry 20110517 in this file.
20111205:
AFFECTS: users of ruby-gnome ports
AUTHOR: swills@FreeBSD.org
ruby-gnome has been updated to 1.0.3. Some of them have been removed
since they are no longer included upstream. The meta port is
now x11/ruby-gnome2. To update run the following command:
# portmaster -o x11/ruby-gnome2 x11/ruby-gnome2-all
You may also wish to remove the old ports using:
# portmaster -s
20111130:
AFFECTS: users of dns/nsd
AUTHOR: zi@FreeBSD.org
The database format of nsd.db has changed as of version 3.2.9.
Before you run nsd, you must convert the existing database:
# nsdc rebuild
20111123:
AFFECTS: users of net-im/kopete or net-im/libjingle
AUTHOR: kde@FreeBSD.org
kopete and libjingle are now depending on a newer oRTP from
linphone-base. To correctly switch to the new port, you need to deinstall
ortp prior to the update:
# pkg_delete -f ortp-\*
20111123:
AFFECTS: users of databases/redis
AUTHOR: osa@FreeBSD.org
The redis configuration file, redis.conf, have been changed, some options
removed in newer versions (>=2.4). In some cases, redis-server with
older configuration might does not run at startup.
If you run into startup problems, re-edit configuration file.
20111101:
AFFECTS: users of x11/kde4-workspace
AUTHOR: kde@FreeBSD.org
If your KDM fails with the message
'X server "/usr/bin/X" cannot be executed'
you need to delete its configuration file and restart it:
# rm /usr/local/kde4/share/config/kdm/kdmrc
# service kdm4 restart
20111101:
AFFECTS: users of graphics/poppler-gtk
AUTHOR: Koop Mast <kwm@FreeBSD.org>
Poppler was update to 0.18.0, and the gtk slave port was renamed to
match the library it installs. Please run the following command to migrate.
# portmaster -o graphics/poppler-glib poppler-gtk-0.16.7
20111031:
AFFECTS: users of textproc/py-creole
AUTHOR: Stanislav Svirid <count@211.ru>
Some API is changed: replace 'parser_kwargs' and 'emitter_kwargs'
with separate arguments. More information on new API:
http://code.google.com/p/python-creole/wiki/API
20111025:
AFFECTS: users of print/flpsed or www/dillo2
AUTHOR: bf@FreeBSD.org
The new versions of flpsed and dillo have switched from
x11-toolkits/fltk2 to the new fltk 1.3.0 from x11-toolkits/fltk.
Users who have customizations specific to fltk2 may need to consult
the fltk 1.3 documents in order to adjust their local settings. For
dillo, some commonly-used key bindings have changed, and new
configuration options are available: consult dillorc.dist and
keysrc.dist for details.
20111019:
AFFECTS: users of mail/thunderbird or www/seamonkey with lightning
plugin installed.
AUTHOR: gecko@FreeBSD.org
To get an up to date version of lightning you should use the new
LIGHTNING option in mail/thunderbird or www/seamonkey. This option
is not enabled by default so you have to run "make config" prior
to the build. The old deskutils/lightning-thunderbird and
deskutils/lightning ports should no longer be used and will be
removed very soon.
Like other XPIs ports, lightning now registers itself as a global
extension and doesn't create the XPI to be installed manually.
Upgrading users should remove lightning from their profile before
installing Thunderbird or SeaMonkey the first time with the new
LIGHTNING option enabled.
20111018:
AFFECTS: users of mail/postfix-current
AUTHOR: Sahil Tandon <sahil@FreeBSD.org>
The default smtp_address_preference value is now "any" instead
of "ipv6", meaning choose randomly between IPv6 and IPv4. With
this the Postfix SMTP client will have more success delivering
mail to sites that have problematic IPv6 configurations.
20111016:
AFFECTS: users of devel/p5-subversion-freebsd
AUTHOR: wxs@FreeBSD.org
devel/p5-subversion-freebsd has been removed as it is no longer necessary.
If you have it installed please run the following to switch to
devel/p5-subversion:
portmaster -o devel/p5-subversion p5-subversion-freebsd
Please also see the second entry below (20111016) if haven't upgraded
subversion yet.
20111016:
AFFECTS: users of KDE SC 4
AUTHOR: kde@FreeBSD.org
KDE SC has been updated to 4.7.2. A number of files were moved between
packages and several ports were split, thus manual intervention into
update procedure is required:
# pkg_delete -f raptor-1\* kdelibs-4\* kdebase-\*4\* \
kdeaccessibility-4\* kdeedu-4\* kdegames-4\* kdegraphics-4\* \
kdesdk-4\* kdeutils-4\* konq-plugins-4\* ktts\* nepomukcontroller\* \
ruby\*-kdebindings\* kdebindings-smoke\*
# pkg_delete -f kdehier4\*
# mv /usr/local/kde4/etc/pam.d/* \
/usr/local/etc/pam.d/
# mv /usr/local/kde4/etc/rc.d/* \
/usr/local/etc/rc.d/
# mv /usr/local/kde4/share/dbus-1/services/* \
/usr/local/share/dbus-1/services/
# mv /usr/local/kde4/share/dbus-1/system-services/* \
/usr/local/share/dbus-1/system-services/
# rmdir /usr/local/kde4/etc/pam.d /usr/local/kde4/etc/rc.d \
/usr/local/kde4/share/dbus-1/*services
# rm -r /var/tmp/kdecache-*
# portmaster misc/kdehier4
If you have - or plan to install - net/kdenetwork4, also run:
# portmaster -o net/linphone-base ortp
Finally:
# portmaster -a
Also, remove /usr/local/kde4/etc/rc.d from local_startup in rc.conf(5).
Failure to do this will cause all enabled scripts in /usr/local/etc/rc.d
to be started twice.
Remember to check for missing ports, bearing in mind that x11/kdebase4*
ports were replaced by x11/kde4-* ones, ktts was replaced by jovie, while
konq-plugins-kde4 and nepomukcontroller were removed. Then:
# portmaster --check-depends
You're also encouraged to run `pkg_cutleaves` or similar to check for
orphaned ports.
Please, note that `pkg_add -r kde4` will not install Plasma scriptengines
and printer utilities by default anymore, and `pkg_add -r kdegames4` will
not install Kajongg. This was made to avoid depending by default on
kdebindings.
20111016:
AFFECTS: users of devel/subversion, devel/subversion-freebsd,
devel/p5-subversion, devel/py-subversion,
devel/ruby-subversion and java/subversion-java and
all dependand ports.
AUTHOR: Lev Serebryakov <lev@FreeBSD.org>
Subversion was updated to version 1.7.0 and port was reworked.
Now there is no "devel/subversion-freebsd" port. All FreeBSD-specific patches
are incorporated into main subversion port as options, which are turned ON by
default.
These options are:
P4_STYLE_MARKERS -- change conflict markers to P4 style,
established for FreeBSD projects.
This is not mandatory for working with
FreeBSD sources.
ENHANCED_KEYWORD -- Support for custom keywords, like
$ FreeBSD $ in sources.
This is MANDATORY for working with
FreeBSD sources.
FREEBSD_TEMPLATE -- Standard FreeBSD commit template.
It is RECOMMENDED for working with
FreeBSD sources.
Also, subversion 1.7.0 changes the working copy format,
and a working copy can not be shared between
subversion 1.7.0 and 1.6.x. Please, think twice before
upgrading.
Additional the port "devel/subversion16" was created to
support subversion 1.6.x. Subversion 1.7.x and 1.6.x
can not be installed simultaneously!
Binding ports can be built with Subversion 1.7.0 (Default)
or with Subversion 1.6.x. To build bindings with subversion 1.6.x
you should set variable WITH_SUBVERSION_VER to "16".
There are several ways to upgrade, depending on what you used
before and what you want to get after upgrade.
(a) You use devel/subversion without FreeBSD patches and, maybe,
some bindings. You want fresh'n'new subversion 1.7.0.
Please, run:
# cd /usr/ports/devel/subversion && make config
<deselect first three options described above, if you want it>
# portupgrade -r devel/subversion
or
# portmaster -R -r subversion-1.6
(b) You use devel/subversion-freebsd and, maybe, some
bindings. You want fresh'n'new subversion 1.7.0, again
with FreeBSD patches.
Please, run:
# cd /usr/ports/devel/subversion && make config
<make sure that first three options are selected>
# portupgrade -o devel/subversion devel/subversion-freebsd
# portupgrade -r devel/subversion
or
# portmaster -o devel/subversion devel/subversion-freebsd
# portmaster -R -r subversion-1.7
(c) You use devel/subversion without FreeBSD patches and, maybe,
some bindings. You want good old subversion 1.6.x, again
without again.
Please, run:
# cd /usr/ports/devel/subversion16 && make config
<deselect first three options described above, if you want it>
# portupgrade -o devel/subversion16 devel/subversion
# portupgrade -m "WITH_SUBVERSION_VER=16" -r devel/subversion16
or
# portmaster -o devel/subversion16 devel/subversion
# portmaster -m "WITH_SUBVERSION_VER=16" -R -r subversion-1.6
(d) You use devel/subversion-freebsd and, maybe, some bindings.
You want good old subversion 1.6.x, with FreeBSD patches.
Please, run:
# cd /usr/ports/devel/subversion16 && make config
<make sure, that first three options are selected>
# portupgrade -o devel/subversion16 devel/subversion-freebsd
# portupgrade -m "WITH_SUBVERSION_VER=16" -r devel/subversion16
or
# portmaster -o devel/subversion16 devel/subversion-freebsd
# portmaster -m "WITH_SUBVERSION_VER=16" -R -r subversion-1.6
20111005:
AFFECTS: users of lang/erlang
AUTHOR: Jimmy Olgeni <olgeni@FreeBSD.org>
Following the R14B04 upgrade the JAVA, X11, WX and ODBC port
options have been set to OFF by default; this will allow to replace
lang/erlang-lite with lang/erlang for headless operation in the
near future.
If you need any of these options, run "make config" in lang/erlang
before upgrading, or set your make.conf accordingly.
20111003:
AFFECTS: users of math/qhull
AUTHOR: Stephen Montgomery-Smith <stephen@FreeBSD.org>
The port math/qhull has been moved to math/qhull5, and math/qhull has been
updated to a version that is incompatible with all ports previously using
math/qhull. If you are upgrading a port that has math/qhull as a dependency,
please delete the port math/qhull first, so that math/qhull5 is properly
made as a dependency.
20110929:
AFFECTS: users of net/py-zope.proxy, devel/py-zope.testing and
devel/py-zope.interface
AUTHOR: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Several Zope ports have been renamed for consistency with their
upstream distributions. Please run the following commands to update
your local installations:
If you use portmaster run:
# portmaster -o devel/py-zope.interface devel/py-zopeInterface
# portmaster -o net/py-zope.proxy net/py-zopeproxy
# portmaster -o devel/py-zope.testing devel/py-zopetesting
If you use portupgrade run:
# portupgrade -o devel/py-zope.interface devel/py-zopeInterface
# portupgrade -o net/py-zope.proxy net/py-zopeproxy
# portupgrade -o devel/py-zope.testing devel/py-zopetesting
20110928:
AFFECTS: users of 10-current
AUTHOR: eadler@FreeBSD.org
There are known issues installing ports on FreeBSD 10+ due to
bogus assumptions by various build scripts. This will not be fixed
until 9-RELEASE is released.
There are two workarounds:
1) Set UNAME_r=9.9-CURRENT in your environment
2) Set REVISION="9.9" in ${SRCDIR}/sys/conf/newvers.sh
20110928:
AFFECTS: users of www/nginx-devel
AUTHOR: osa@FreeBSD.org
Note: 1.1.4 release introduces several API changes which may affect
third-party modules.
20110925:
AFFECTS: users of lang/python*
AUTHOR: lwhsu@FreeBSD.org
The HUGE_STACK_SIZE option has been removed, now Python will use default
thread stack size of the system. If you want to change it, specify it
with -DTHREAD_STACK_SIZE=<size> in CFLAGS.
20110925:
AFFECTS: users of net/openldap*
AUTHOR: ume@FreeBSD.org
The security/cyrus-sasl2 was updated to 2.1.25. If the SASL option
is enabled (disabled by default), net/openldap* must be recompiled
after upgrading cyrus-sasl2.
20110921:
AFFECTS: users of devel/maven2 and devel/maven3
AUTHOR: hq@FreeBSD.org
The devel/maven2 and devel/maven3 now rely on a wrapper port:
devel/maven-wrapper. If you plan to upgrade the devel/maven[23] ports, you
will have to uninstall all of them before reinstalling them.
20110917:
AFFECTS: users of misc/tvbrowser
AUTHOR: lme@FreeBSD.org
From version 3.0.2 on TV-Browser doesn't include any plugins any longer. You
are supposed to download the plugins manually, this also means that you need
to download the appropriate channel sources plugin for your country. After
installing it your previously configured channels are visible again. To do so,
select "Tools -> Install / Update Plugins..." and choose the plugins you need.
20110915:
AFFECTS: users of dns/unbound
AUTHOR: sem@FreeBSD.org
unbound supports GOST from version 1.4.12 but only if dns/ldns was build
with GOST support too. There is no way to check the option when unbound
builds, so you should make sure the option is on in both unbound and lds.
20110914:
AFFECTS: users of www/asterisk-stat
AUTHOR: flo@FreeBSD.org
asterisk-stat depends on asterisk16 now, you will need to update asterisk
and asterisk-addons to 1.6. Instructions on upgrading your configuration
files are here:
http://svnview.digium.com/svn/asterisk/branches/1.6.2/UPGRADE-1.6.txt
If you use portmaster run:
# portmaster -o net/asterisk16 net/asterisk14
# portmaster -o net/asterisk16-addons net/asterisk14-addons
If you use portupgrade run:
# portupgrade -o net/asterisk16 net/asterisk14
# portupgrade -o net/asterisk16-addons net/asterisk14-addons
20110909:
AFFECTS: users of net/p5-SOAP-Lite
AUTHOR: az@FreeBSD.org
SOAP::Transport::TCP is not a part of net/p5-SOAP-Lite
distribution since version 0.714. If you need SOAP::Transport::TCP
you should install net/p5-SOAP-Transport-TCP manually.
20110901:
AFFECTS: users of databases/db51
AUTHOR: mandree@FreeBSD.org
The databases/db51 port (Oracle Berkeley DB version 5.1) has been
removed. Version 5.2 of the package is available in databases/db5.
Users of ports that depend on the removed 5.1 versions are advised
to rebuild the affected ports.
20110830:
AFFECTS: users of lang/racket
AUTHOR: olgeni@FreeBSD.org
Racket has been upgraded to version 5.1.3. Due to the recent rewrite of
the Racket graphics handling code, it is no longer possible to build
this port without X11.
The WITHOUT_X11 switch now controls if X11 is brought in as
USE_GNOME/LIB_DEPENDS or BUILD_DEPENDS.
In the latter case you will be able to build a Racket package that can
then be deployed on a headless server.
20110829:
AFFECTS: users of security/maia
AUTHOR: Janky Jay, III <ek@purplehat.org>
There have been many changes to the maia port, including renaming the rc
script and variables from maia to maiad. You will need to replace any
instances of maia with maiad in /etc/rc.conf, as well as renaming /var/amavisd
to /var/maiad. The 'vscan' user's home directory also needs to be changed to
/var/maiad.
These can be done by:
# mv /var/amavisd /var/maiad
# sed -i.bak -e "s/^maia_/maiad_/" /etc/rc.conf
# pw usermod vscan -d /var/maiad
20110828:
AFFECTS: users of print/cups-{base,client,image}
AUTHOR: sahil@FreeBSD.org
During the update to 1.4.8, the GNUTLS option was changed from ON to
OFF by default. Because old configuration options are saved, users
should re-run 'make config' and explicitly deselect the GNUTLS option
before upgrading.
20110823:
AFFECTS: users of lang/ruby
AUTHOR: swills@FreeBSD.org
The default ruby version has been reverted from 1.9 to 1.8. If you followed
the procedure in the 20110822 entry, you may need to follow these steps:
If you use portmaster:
# portmaster -o lang/ruby18 lang/ruby19
# portmaster -R -r ruby-1.8
If you use portupgrade:
# portupgrade -f lang/ruby19
# portupgrade -f lang/ruby18 # if you have it installed
# portupgrade -f ports-mgmt/portupgrade
# portupgrade -x ruby-1.9.\* -fr lang/ruby19
If you wish to keep the 1.9 version as default, add the following lines
to your /etc/make.conf file:
#
# Keep ruby 1.9 as default version.
#
RUBY_DEFAULT_VER=1.9
20110823:
AFFECTS: users of devel/libnotify and net/libproxy
AUTHOR: gnome@FreeBSD.org
libnotify and libproxy are updated with shared library bumps.
This requires dependancies to be rebuild.
# portmaster -r libnotify-0
# portmaster -r libproxy-0
# portmaster -a
or
# portupgrade -rf libnotify-0.\* libproxy-0.\*
# portupgrade -aR
20110822:
AFFECTS: users of lang/ruby
AUTHOR: stas@FreeBSD.org
The default ruby version has been updated to 1.9. Please rebuild all ports that
depends on it.
If you use portmaster:
# portmaster -o lang/ruby19 lang/ruby18
# portmaster -R -r ruby-1.9
If you use portupgrade:
# portupgrade -f lang/ruby18
# portupgrade -f lang/ruby19 # if you have it installed
# portupgrade -f ports-mgmt/portupgrade
# portupgrade -x ruby-1.8.\* -fr lang/ruby18
After these steps are complete, you can pkg_delete ruby 1.8 if you
no longer need it.
If you wish to keep the 1.8 version as default, add the following lines
to your /etc/make.conf file, and rebuild lang/ruby18 after that.
#
# Keep ruby 1.8 as default version.
#
RUBY_DEFAULT_VER=1.8
20110822:
AFFECTS: users of graphics/opencv
AUTHOR: mm@FreeBSD.org
OpenCV python module was moved to own port: graphics/py-opencv
20110820:
AFFECTS: users of www/apache* and depending ports
AUTHOR: ohauer@FreeBSD.org
The default apache version changed from www/apache13 to www/apache22.
Users who will continue with apache13 should create the following entry
in /etc/make.conf
APACHE_PORT= www/apache13
20110818:
AFFECTS: users of mail/enigmail-* ports
AUTHOR: ale@FreeBSD.org
Like other XPIs ports, enigmail now registers itself as a global
extension and doesn't create the XPI to be installed manually.
Upgrading users should remove enigmail from their profile before
installing the new port.
20110815:
AFFECTS: users of sysutils/swapexd
AUTHOR: crees@FreeBSD.org
swapexd used to clobber its config file on deinstall, unfortunately this will
not be fixed in installed packages. Back up your config before updating, or
you will lose it!
# cp /usr/local/etc/swapexd/swapexd.conf ~/swapexd.conf.bak
20110808:
AFFECTS: users of net-mgmt/zenoss
AUTHOR: pphillips@experts-exchange.com
Some functionality of zenoss requires a valid shell. The FreeBSD port until
now was installing a user account without a shell. To fix your existing
installation, please run the following command as root:
# pw usermod zenoss -s /bin/sh -d /usr/local/zenoss
20110808:
AFFECTS: users of dns/powerdns
AUTHOR: tremere@cainites.net
The port has been updated to PowerDNS 3.0, which includes support for DNSSEC.
Before upgrading please read the following:
http://doc.powerdns.com/upgrades.html#from2.9to3.0
Make sure to read the documentation and wiki on http://powerdnssec.org/ on
how to enable DNSSEC mode in the configuration-file and for the necessary
database changes.
Take note that not all backends support DNSSEC. The ones that do are BIND,
SQLite3 and Generic MySQL and PgSQL.
20110808:
AFFECTS: users of security/amavisd-new
AUTHOR: sahil@FreeBSD.org
Along with new features and bug fixes, amavisd-new 2.7.0 introduces some
incompatibilities with previous releases. Several variable defaults, SQL
schemas, and other changes warrant a careful review of the RELEASE_NOTES.
Also note that helper programs amavis.c and amavis-milter.c are no longer
distributed with this package; for milter functionality, please shift to
the dedicated security/amavisd-milter port.
20110731:
AFFECTS: users of lang/guile
AUTHOR: jlaffaye@FreeBSD.org
guile has been updated to version 1.8.8. Please rebuild all ports that
depends on it.
If you use portmaster:
# portmaster -r guile
If you use portupgrade:
# portupgrade -fr lang/guile
20110731:
AFFECTS: users of www/typo3
AUTHOR: Helmut Schneider <jumper99@gmx.de>
www/typo3 has been repocopied to www/typo345. If you need to continue with
the old stable version please run
# portmaster -o www/typo345 www/typo3
or
# portupgrade -o www/typo345 www/typo3
Please remember to change the path of your config files too.
20110730:
AFFECTS: users of x11-toolkits/gtk20
AUTHOR: gnome@FreeBSD.org
The gtk-update-icon-cache utility has been split out of the gtk20 port.
Use the following instructions to update your system.
# pkg_delete -f gtk-2.\*
# portmaster x11-toolkits/gtk20
# portmaster -a
20110726:
AFFECTS: users of devel/msp430-gcc
AUTHOR: lev@FreeBSD.org
msp430-gcc was updated to lates gcc-4.5.3 version.
If you want to use old gcc-3.4.4, run command:
# portmaster -o devel/msp430-gcc3 devel/msp430-gcc
or
# portupgrade -o devel/msp430-gcc3 devel/msp430-gcc
before updating devel/msp430-libc port.
20110721:
AFFECTS: users of games/megaglest
AUTHOR: smoeller@nichthelfer.de
If you upgraded from version 3.4.0, your personal settings are stored in
~/.megaglest3.4.0. If you copy glestuser.ini and glestuserkeys.ini to
~/.megaglest, you will have your old settings again.
20110721:
AFFECTS: users of security/gpgme
AUTHOR: jlaffaye@FreeBSD.org
gpgme has been updated to version 1.3.1. Please rebuild all ports that depends
on it.
If you use portmaster:
# portmaster -r gpgme
If you use portupgrade:
# portupgrade -fr security/gpgme
20110718:
AFFECTS: users of hungarian/hunspell
AUTHOR: jlaffaye@FreeBSD.org
The hunspell port has been moved to textproc/hunspell.
To update the installed port run the command
# portmaster -o textproc/hunspell hungarian/hunspell
or
# portupgrade -o textproc/hunspell hungarian/hunspell
20110711:
AFFECTS: users of java/openjdk6
AUTHOR: jkim@FreeBSD.org
java/openjdk6 has been updated to b23 and "WEB" option (for web browser
plug-in and Java Web Start) has been deprecated. If you need the same
functionality, rebuild the port with "ICEDTEA" option first, then install
a new port java/icedtea-web with "PLUGIN" option (default). Also, if you
have a symlink to the previous IcedTeaPlugin.so in ~/.mozilla/plugins,
for example, you need to remove it. Note system-wide symlinks are now
automatically created by java/icedtea-web for your convenience.
20110711:
AFFECTS: users of www/p5-libwww
AUTHOR: mandree@FreeBSD.org
portmaster cannot process the upgrade of www/p5-libwww from version
5 to version 6. To upgrade p5-libwww, use portupgrade instead, or
deinstall p5-libwww before reinstalling:
If you use portmaster:
# pkg_delete -f 'p5-libwww-5*' ; portmaster www/p5-libwww
If you use portupgrade, no special treatment is necessary.
20110711:
AFFECTS: users of devel/icu
AUTHOR: bapt@FreeBSD.org
icu has been updated to version 4.8. Please rebuild all ports that depends
on it.
If you use portmaster:
# portmaster -r icu
If you use portupgrade:
# portupgrade -fr devel/icu
20110706:
AFFECTS: users of multimedia/zoneminder
AUTHOR: bsam@FreeBSD.org
RC script was renamed from zm to zoneminder. So do variables at
/etc/rc.conf[.local]. One should fix the latter file.
20110705:
AFFECTS: users of security/libgcrypt and any port that depends on it
AUTHOR: swills@FreeBSD.org
The libgcrypt port has been updated to 1.5.0 and all shared libraries
versions have been bumped. So you need to rebuild all applications that
depend on libgcrypt. Do something like:
# portmaster -r libgcrypt
or
# portupgrade -rf libgcrypt
20110703:
AFFECTS: users of print/lyx and print/lyx-devel
AUTHOR: makc@FreeBSD.org
print/lyx has been updated to 2.0. print/lyx16 has been added to ports tree
for those who prefers to stick with the last stable in lyx-1.6.x series.
20110630:
AFFECTS: users of math/octave-forge* and benchmarks/octave-forge-benchmark
AUTHOR: stephen@FreeBSD.org
The octave-forge* port structure has been completely redesigned. This was
to make them compatible with portmaster and other port installation tools.
Before using the new octave-forge* ports, the old octave-forge* ports must
be completely removed with, for example, the command:
# pkg_delete "octave-forge*"
20110630:
AFFECTS: users of mail/thunderbird
AUTHOR: gecko@FreeBSD.org
The mail/thunderbird port has been updated to 5.0. If you want to stay with
Thunderbird 3.1 please run:
# portupgrade -o mail/thunderbird3 mail/thunderbird
# portupgrade -o mail/thunderbird3-i18n mail/thunderbird-i18n (if installed)
or
# portmaster -o mail/thunderbird3 mail/thunderbird
# portmaster -o mail/thunderbird3-i18n mail/thunderbird-i18n (if installed)
Do not select the OPTIMIZED_CFLAGS option on a system with less then
2 GB of RAM otherwise you will run out of memory during the build.
Please make sure all your addons are compatible with Thunderbird 5.0 and
backup your ~/.thunderbird directory prior to the first launch of Thunderbird
5.0.
20110630:
AFFECTS: users of x11/wbar
AUTHOR: nivit@FreeBSD.org
x11/wbar has been updated to 2.2.2. Before launching the program, please
backup your configuration file (~/.wbar), and then use the command wbar-config
to set your preferences and change the path of the old icons (in particular
the Bar image).
20110629:
AFFECTS: users of graphics/opencv
AUTHOR: mm@FreeBSD.org
OpenCV was updated to version 2.3.0rc and to avoid circular dependencies
split into two ports: graphics/opencv-core and graphics/opencv
Before updating please uninstall the graphics/opencv port first because
the new dependency graphics/opencv-core contains conflicting files with
the old port graphics/opencv.
20110626:
AFFECTS: users of mail/p5-Mail-SpamAssassin
AUTHOR: wxs@FreeBSD.org
mail/p5-Mail-SpamAssassin has been updated to version 3.3.2. Prior to
starting spamd you must run sa-update, or spamd will fail to start.
20110624:
AFFECTS: users of deskutils/opengoo
AUTHOR: acm@FreeBSD.org
desktutils/opengoo has been renamed to deskutils/fengoffice, because
The OpenGoo name was changed to Feng Office Community Edition.
If you want migrate from opengoo to fengoffice, please see upgrading
section at:
http://fengoffice.com/web/wiki/doku.php/installation
20110623:
AFFECTS: users of databases/py-sqlalchemy
AUTHOR: nivit@FreeBSD.org
The version 0.6 of SQLAlchemy has been moved to databases/py-sqlalchemy06,
while the port databases/py-sqlalchemy now holds the series 0.7.X.
To update the installed port run the command
# portmaster -o databases/py-sqlalchemy06 databases/py-sqlalchemy
or
# portupgrade -o databases/py-sqlalchemy06 databases/py-sqlalchemy
20110622:
AFFECTS: users of lang/perl5.12
AUTHOR: skv@FreeBSD.org
lang/perl5.12 has been updated to 5.12.4. You should update everything
that depends on perl. The easiest way to do that is to use
"perl-after-upgrade" script supplied with lang/perl5.12.
Please see its manual page for details.
If you want to switch to lang/perl5.12 from lang/perl5.{8,10} please
follow instructions in the entry 20100715 in this file.
20110620:
AFFECTS: users of net/samba35
AUTHOR: timur@FreeBSD.org
A bug, introduced by local patch to pam_winbind.so, that made it coredump
was spotted by Martin Minkus. It is fixed in the 3.5.9 version of the port.
So, if pam_winbind.so started to work for you - send him kudos.
20110619:
AFFECTS: users of irc/ezbounce and irc/ezbounce-devel
AUTHOR: flo@FreeBSD.org
irc/ezbounce-devel was moved to irc/ezbounce as the version previously in
irc/ezbounce has been broken for some time and the distfile is not available
anymore.
If you are upgrading from a 1.0X version make sure to verify that your config
still works. There is basic compatibility for old config files but a lot has
changed, see http://linuxftw.com/ezbounce/files/CHANGES
If you run irc/ezbounce-devel you need to run one of the following commands:
# portmaster -o irc/ezbounce irc/ezbounce-devel
or
# portupgrade -o irc/ezbounce irc/ezbounce-devel
20110619:
AFFECTS: users of lang/perl5.14
AUTHOR: skv@FreeBSD.org
lang/perl5.14 has been updated to 5.14.1. You should update everything
that depends on perl. The easiest way to do that is to use
"perl-after-upgrade" script supplied with lang/perl5.14.
Please see its manual page for details.
If you want to switch to lang/perl5.14 from lang/perl5.{8,10,12} please
follow instructions in the entry 20110517 in this file.
20110618:
AFFECTS: users of mail/mailscanner
AUTHOR: crees@FreeBSD.org
mail/mailscanner no longer requires running of any renew-* targets to
update the config files / wrapper scripts; it is now automatically
performed as the port is installed -- these targets have been removed.
As an added bonus, the binary package now performs these steps as well,
in case you don't have a portstree handy.
Before upgrading, please backup your PREFIX/etc/MailScanner,
PREFIX/share/MailScanner and PREFIX/libexec/MailScanner if you
have customised any of these directories, just in case.
20110608:
AFFECTS: users of security/amavisd-milter
AUTHOR: delphij@FreeBSD.org
A change have been made to rc.d script for amavisd-milter makes it to
specify -s explicitly. If you used to override the location of listening
socket by specifying -s, please migrate to the new way (specify
amavisd_milter_socket in /etc/rc.conf).
20110607:
AFFECTS: users of devel/p5-Moose and devel/p5-Class-MOP
AUTHOR: az@FreeBSD.org
p5-Moose has been updated to 2.0007. Now p5-Class-MOP is a part of the
p5-Moose distribution. Manual intervention of the update procedure is
required:
# portmaster -o devel/p5-Moose devel/p5-Class-MOP
# portmaster -R -r p5-Moose-\*
or do the same things with portupgrade.
To check everything went fine you can run:
# perl -Moose\ 999
and
# perl -MClass::MOP\ 999
in both cases you should see output:
version 999 required--this is only version 2.0007
20110606:
AFFECTS: users of mail/sympa
AUTHOR: crees@FreeBSD.org
Sympa previously used to install to ${PREFIX}/sympa, which goes against
the general rules for hierarchy. Most files which were previously found
in ${PREFIX}/sympa should now be found in ${PREFIX}/libexec/sympa.
Any configuration in httpd.conf files etc will need to be updated to the
new directory.
Before upgrade, it is advisable to back up configuration files
${PREFIX}/etc/sympa.conf and wwsympa.conf since previous versions wipe these
out on deinstall.
20110606:
AFFECTS: users of databases/mariadb
AUTHOR: dougb@FreeBSD.org
The mariadb port has been split into -client, -scripts, and -server ports
ala mysql. You can now install only the parts that you need.
If you have devel/libevent installed along with mariadb you should do
something like:
pkg_delete mariadb\*
portmaster devel/libevent
20110605:
AFFECTS: users of security/gnutls and any port that depends on it
AUTHOR: novel@FreeBSD.org
gnutls has been updated to 2.12.6.1 and all shared libraries versions have
been bumped. So you need to rebuild all applications that depend on
gnutls. Do something like:
portupgrade -rf gnutls
portmaster -r gnutls
20110605:
AFFECTS: users of sysutils/zfsnap
AUTHOR: Aldis Berjoza <aldis@bsdroot.lv>
There is an issue with zpool v28 (currently only on 9-CURRENT, or
8-STABLE systems that have been manually patched) that affects
zfSnap. If you are using v28 make sure to use the -zpool28fix flag
with zfsnap to work around the problem.
For more information please see:
http://wiki.bsdroot.lv/zfsnap#zpool_v28_zfs_destroy_-r_bug
20110602:
AFFECTS: users of net/freeradius
AUTHOR: Sevan Janiyan <venture37@geeklan.co.uk>
Freeradius no longer runs as nobody. It now runs as the freeradius
user. Please ensure that the following paths are owned by freeradius:
/var/run/radiusd
/var/log/radacct
/var/log/radius.log
20110529:
AFFECTS: users of textproc/*kmfl*
AUTHOR: nikola.lecic@anthesphoria.net
KMFL keyboard ports are now shared between IBus and SCIM KMFL IMEngines
(textproc/ibus-kmfl and textproc/scim-kmfl-imengine). Thus, the prefix
'scim-' is dropped from keyboard ports names.
Similar to m17n, both engines now search engine-neutral locations,
${LOCALBASE}/share/kmfl/ and ~/.kmfl/. Users have to move their local
keyboard files from ~/.scim/kmfl/ to ~/.kmfl/.
20110523:
AFFECTS: users of www/mod_perl2
AUTHOR: ohauer@FreeBSD.org
mod_perl2 was updated to version 2.0.5, this version includes
p5-Apache-Reload again. The ports p5-Apache-Reload is now marked as
conflict for mod_perl2.
To update your mod_perl2 with portmaster use the commands
# portmaster -o www/mod_perl2 www/p5-Apache-Reload
# portmaster -R -r mod_perl2
20110522:
AFFECTS: users of emulators/virtualbox-ose
AUTHOR: vbox@FreeBSD.org
The emulators/virtualbox-ose port has been updated to 4.0.8. If you
want to stay with VirtualBox 3.2.x please run:
# portmaster -o emulators/virtualbox-ose-kmod-legacy emulators/virtualbox-ose-kmod
# portmaster -o emulators/virtualbox-ose-legacy emulators/virtualbox-ose
or
# portupgrade -o emulators/virtualbox-ose-kmod-legacy emulators/virtualbox-ose-kmod
# portupgrade -o emulators/virtualbox-ose-legacy emulators/virtualbox-ose
The emulators/virtualbox-ose-legacy port will always include the
latest legacy version as a fallback if you hit a serious regression
in the latest version.
20110517:
AFFECTS: users of lang/perl*
AUTHOR: skv@FreeBSD.org
lang/perl5.14 is out. If you want to switch to it from, for example
lang/perl5.12, that is:
Portupgrade users:
0) Fix pkgdb.db (for safety):
pkgdb -Ff
1) Reinstall new version of Perl (5.14):
env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.14 -f perl-5.12.\*
2) Reinstall everything that depends on Perl:
portupgrade -fr perl
Portmaster users:
portmaster -o lang/perl5.14 lang/perl5.12
Conservative:
portmaster p5-
Comprehensive (but perhaps overkill):
portmaster -r perl-
Note: If the "perl-" glob matches more than one port you will need to
specify the name of the Perl directory in /var/db/pkg explicitly.
20110516:
AFFECTS: users of net/skype, net/skype-devel, net-im/skype, net-im/skype-devel
AUTHOR: Ion-Mihai Tetcu <itetcu@FreeBSD.org>
All skype ports were moved to net-im/:
- skype12: unchanged, very old version (for FreeBSD 6)
- skype20: last version with OSS support, that used to live in net/skype; the
DISTFILE is gone from the vendor but if you happen to have it, it would be a
way of having sound w/o needing to upgrade your base OS
- [RECOMMENDED] skype: currently at 2.1.0.81 and the best supported
- skype-devel: currently at 2.2.0.25, sounds is OK, video doesn't work
To run either skype or skype-devel with fully working sound you need:
- to run fc10 (most probably, please report what you can do with fc4):
(OVERRIDE_LINUX_BASE_PORT=f10,OVERRIDE_LINUX_NONBASE_PORTS=f10
in /etc/make.conf for systems that doesn't have it as default)
- In order for Skype to work OK, you need your kernel and modules to be:
- post 2011-05-03 in on HEAD
- post 2011-05-08 in on 7,8-STABLE
The port tries to catch if your system version is too old, but there's a
~3months window where because of a lack of OSVERSION bump, this is not
possible. So please check; and PLEASE READ THE PKGMESSAGE for setup details.
For how to update your kernel/world, see:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html
IF YOUR OSVERSION IS NOT NEW ENOUGH, SOUND (ESPECIALLY MIC) WON'T WORK.
If you run into problems, at very least we need to know the output of:
$ uname -a; sysctl compat.linux | head -2; \
grep OVERRIDE_LINUX_ /etc/make.conf; \
cat /compat/linux/etc/alsa/pcm/pcm-oss.conf
the skype version you are using and hardware details (eg. webcam, if related)
I most probably will ignore any mail not containing this info since without
it it's impossible to help.
Please test your sound /video setup outside skype before blaming skype /
mailing me.
20110516:
AFFECTS: users of audio/musicpd
AUTHOR: Chris Rees <utisoft@gmail.com>
Musicpd now installs the binary for the server as bin/musicpd, rather than
mpd, to remove a conflict with net/mpich2; before upgrade you should run:
# /usr/local/etc/rc.d/musicpd stop
Likewise, mpd.conf has been renamed musicpd.conf-- if you want to keep it
as mpd.conf then place MPDCONF="mpd.conf" into /etc/make.conf, otherwise
after upgrade run:
# mv /usr/local/etc/mpd.conf /usr/local/etc/musicpd.conf
20110514:
AFFECTS: users of sysutils/gksu, sysutils/libgksu, sysutils/libgksuui
AUTHOR: bsam@FreeBSD.org
sysutils/gksu has been updated to 2.0.2. sysutils/libgksuui has been
deprecated since it has become a part of sysutils/libgksu.
Before upgrading remove sysutils/libgksuui.
20110511:
AFFECTS: users of editors/emacs
AUTHOR: ashish@FreeBSD.org
Due to a bug when upgrading from 23.2 or later versions, everything
installed by other ports in "${PREFIX}/share/emacs" gets removed.
Before upgrading:
* Please backup custom configurations in "${PREFIX}/share/emacs".
* After upgrading reinstall any ports that may have had files in the
"${PREFIX}/share/emacs" directory.
20110509:
AFFECTS: users of lang/ghc and */hs-*
AUTHOR: ashish@FreeBSD.org
GHC has been updated to version 7.0.3 and other Haskell ports are also
updated to their Haskell Platform versions or latest versions.
To update all affected ports:
# portmaster -r lang/ghc
or
# portupgrade -r lang/ghc
20110506:
AFFECTS: users of lang/perl*
AUTHOR: skv@FreeBSD.org
Default version of Perl was bumped to 5.12.
If you already have lang/perl5.10 or lang/perl5.8 installed, and want to
switch to lang/perl5.12 please follow instructions in the entry 20100715
in this file.
20110503:
AFFECTS: users of www/codeigniter and www/codeigniter-devel
AUTHOR: glarkin@FreeBSD.org
www/codeigniter has been renamed to www/codeigniter17 to track the
legacy 1.7.* branch of Codeigniter development. www/codeigniter-devel
has been renamed to www/codeigniter to track the recommended 2.0.*
branch of Codeigniter development.
If you have Codeigniter 1.7.x installed and would like to continue using
it, please run one of the following commands to update its origin:
# portmaster -o www/codeigniter17 www/codeigniter
or
# portupgrade -o www/codeigniter17 www/codeigniter
If you have Codeigniter 2.0.x installed, please run one of the following
commands to update its origin:
# portmaster -o www/codeigniter www/codeigniter-devel
or
# portupgrade -o www/codeigniter www/codeigniter-devel
20110427:
AFFECTS: users of mail/ezmlm-idx
AUTHOR: glarkin@FreeBSD.org
1) Please consult the instructions for upgrading to version 7.1.1 from
the earlier 0.444 version in the ports tree:
Online: https://github.com/bruceg/ezmlm-idx/blob/master/UPGRADE
Local: /usr/local/share/doc/ezmlm-idx/UPGRADE
2) SQLite3 has been added as a supported database plugin. Note that the
MySQL, PgSQL and SQLite options are mutually exclusive, and the first
selected option takes precedence if multiple options are selected.
20110421:
AFFECTS: users of multimedia/webcamd
AUTHOR: kwm@FreeBSD.org
Webcamd now creates device nodes with 0660 permission and webcamd:webcamd
ownership. To get access to the webcamd devices just add yourself to the
webcamd group.
20110409:
AFFECTS: users of japanese/asterisk-sounds
AUTHOR: tota@FreeBSD.org
The japanese/asterisk-sounds has been updated to 1.8.
If you want to stay with ja-asterisk14-sounds, please run:
# portmaster -o japanese/asterisk14-sounds japanese/asterisk-sounds
or
# portupgrade -o japanese/asterisk14-sounds japanese/asterisk-sounds
See also 20101128 net/asterisk entry.
20110406:
AFFECTS: users of lang/ocaml and related libraries/applications
AUTHOR: stas@FreeBSD.org
Ocaml compiler and libraries suite has been updated to 3.12.
There appears to be an ABI incompatibility with .cmi files
generated by previous compiler versions. Though these should
only affect the linking process, if some application you're
using start to misbehave after the lang/ocaml updated you're
advised to rebuild this applications using the new ocaml version.
20110402:
AFFECTS: users of net-mgmt/xymon-client and net-mgmt/xymon-server
AUTHOR: dinoex@FreeBSD.org
Loginname, path, scripts and config files have been renamed in 4.3.0
Steps to update:
1. Stop and deinstall the old version.
2. Copy the remaining config files to the new location.
3. Read the instructions
4. merge your old config with the upgrade430.sh script
5. fix the hobbit_*_enable lines in /etc/rc.conf
# /usr/local/etc/rc.d/hobbit-server stop
# /usr/local/etc/rc.d/hobbit-client stop
# pkg_delete /var/db/pkg/xymon-*
# pkg_add xymon-client-4.3.0.tbz
# pkg_add xymon-server-4.3.0.tbz
# cp /usr/local/www/hobbit/server/etc/* /usr/local/www/xymon/server/etc/
# less /usr/local/www/xymon/server/www/help/upgrade-to-430.txt
# /usr/local/www/xymon/server/bin/bbcmd /usr/local/www/xymon/server/bin/upgrade430.sh
# sed -i '' -e 's|hobbit|xymon' /etc/rc.conf
# /usr/local/etc/rc.d/xymon-client start
# /usr/local/etc/rc.d/xymon-server start
20110328:
AFFECTS: users of net/openldap24-client
AUTHOR: delphij@FreeBSD.org
OpenLDAP has been upgraded to 2.4.25. In this version, certain library
routines were moved from liblutil to libldap. If you previously built
the library with "FETCH" support, this would cause libldap to depend on
FreeBSD's libfetch.so library.
As of 20110402, a local change have been introduced so OpenLDAP libraries
link against libfetch.so when FETCH is enabled. Normally, no further user
interaction would be required.
For new installations, the FETCH option have been turned off by default.
20110324:
AFFECTS: users of KDE SC 4
AUTHOR: kde@FreeBSD.org
KDE SC ports have been updated to 4.6.1. As usual a number of files were
moved between packages, manual intervention into update procedure is
required:
# pkg_delete -f kdehier4\* kdebase-runtime-4\* kdebase-workspace-4\*
# pkg_delete -f kdeedu-4\* kdeutils-4\*
# portmaster -a
20110322:
AFFECTS: users of www/firefox
AUTHOR: gecko@FreeBSD.org
The www/firefox port has been updated to 4.0. If you want to stay with
Firefox 3.6 please run:
# portupgrade -o www/firefox36 www/firefox
# portupgrade -o www/firefox36-i18n www/firefox-i18n (if installed)
or
# portmaster -o www/firefox36 www/firefox
# portmaster -o www/firefox36-i18n www/firefox-i18n (if installed)
Do not select the OPTIMIZED_CFLAGS option on a system with less then
2 GB of RAM otherwise you will run out of memory during the build.
Please make sure all your addons are compatible with Firefox 4.0 and
backup your ~/.mozilla directory prior to the first launch of Firefox
4.0.
The startup script has been renamed from firefox3 to firefox.
20110319:
AFFECTS: users of databases/mysql55-client
AUTHOR: ale@FreeBSD.org
The shared library version of the client library was increased to reflect
ABI changes, and avoid compatibility problems with the client library
in MySQL 5.1, so client programs that use the 5.5 client library should
be recompiled against the 5.5.10 client library.
This can be achieved with:
# portmaster -r mysql-client-5.5
or
# portupgrade -fr mysql-client-5.5
20110318:
AFFECTS: users of www/node and www/node-devel
AUTHOR: araujo@FreeBSD.org
The port www/node was merged with www/node-devel since there is no longer a
development version. Also www/node has not followed the stable upstream
prior to this update.
To keep www/node updated in your applications, from now on you must use
www/node instead of www/node-devel. If you have been using the www/node-devel,
you must run one of the following commands to upgrade:
# portmaster -o www/node www/node-devel
or
# portupgrade -o www/node www/node-devel
20110317:
AFFECTS: users of www/uzbl
AUTHOR: Klaus Aehlig <aehlig@linta.de>
The port has been updated to version as of 2011/02/15. This introduces
the following incompatabilities.
- $UZBL_FIFO, $UZBL_TITLE are available to scripts as environment variables,
but not as command-line arguments.
- environment variables are no longer expanded by the config parser
- download handling has changed
- cookie daemons are no longer supported
Users are advised to change their personal configuration files/scripts accordingly.
20110316:
AFFECTS: users of sysutils/duplicity
AUTHOR: peter.schuller@infidyne.com
sysutils/duplicity has been upgraded to 0.6.11. The old version
(0.5.20) is retained as sysutils/duplicity05. Duplicity 0.6 should
be generally compatible, but pay special attention to the new meaning
of the --archive-dir command. In particular, the archive dir is now
mandatory and defaults to ~/.cache/duplicity. You may have to
--exclude accordingly. In addition, it is recommended you consult
the CHANGELOG, specifically the "New in v0.6.00 (2009/06/08)" section
which details the checkpoint/restore feature (enabled by default) and
its implications.
20110313:
AFFECTS: users of astro/boinc-setiathome-enhanced
AUTHOR: rene@FreeBSD.org
The setiathome client has been updated to version 6.12. Before you
update, finish and report your current workunits to avoid losing them.
20110304:
AFFECTS: users of lang/python* and py-*
AUTHOR: miwi@FreeBSD.org
The default version of Python has been changed from 2.6.x to 2.7.x.
If you have 2.6.x installed, perform an upgrade of lang/python26 to
lang/python27 with one of the following commands:
If using portupgrade:
# portupgrade -o lang/python27 lang/python26
If using portmaster:
# portmaster -o lang/python27 lang/python26
If you want to retain 2.6.x as default Python version, set the
PYTHON_DEFAULT_VERSION variable to 'python2.6' (without quotes) in
/etc/make.conf, then go to lang/python and perform the following
command:
# portupgrade -R python
Once the installed Python has been updated to 2.7, by using the
method above, it is required to run the upgrade-site-packages target in
lang/python to assure that site-packages are made available to the new
Python version.
If using portupgrade:
# cd /usr/ports/lang/python && make upgrade-site-packages
If using portmaster:
# cd /usr/ports/lang/python && make upgrade-site-packages -DUSE_PORTMASTER
The portmaster case can take quite some time to complete due to the lack of
cached information that the portupgrade suite uses (specifically pkg_which).
This is not the fault of portmaster.
20110301:
AFFECTS: users of databases/jasperserver
AUTHOR: jhelfman@experts-exchange.com
(taken from release notes of 4.0 from vendor)
If you are upgrading from an older JasperServer version such as 3.5 then
you must first upgrade to JasperServer 3.7 before upgrading to 4.0.
Upgrading directly from JasperServer 3.5 to 4.0 is not a "certified"
(i.e. fully QA tested) procedure.
The steps to carry out this operation are fully documented in the
JasperReports Server Installation Guide for the 3.7 release. You will
need to download the JasperServer 3.7 release package to get the relevant
files and documentation. To download the JasperServer 3.7 WAR file
distribution zip package, go to the JasperForge.org website and to the
JasperServer project.
http://jasperforge.org/projects/jasperserver
20110228:
AFFECTS: users of devel/ccache
AUTHOR: Emanuel Haupt <ehaupt@FreeBSD.org>
ccache now allows the use of non-default compilers such as clang. This
requires adjustments of the ccache make glue.
Please (re)read the following document after updating ccache to
ccache-3.1.4_1:
/usr/local/share/doc/ccache/ccache-howto-freebsd.txt
20110227:
AFFECTS: users of net/unison and net/unison-devel
AUTHOR: mandree@FreeBSD.org
Unison has been upgraded to version 2.40, which uses a different wire
protocol than 2.32 did. In order to support synchronization with
other computers where Unison is still at version 2.32, a new port
net/unison232 has been created. It provides unison232 and if that is
GTK2-enabled, also unison232-text. This unison232 port can be
installed in parallel with the existing net/unison port.
20110224:
AFFECTS: users of x11-drivers/xf86-video-ati
AUTHOR: miwi@FreeBSD.org
X.Org has been updated to 7.5.1. For all ATI users the driver
was updated to 6.14.0 but the old one is still available in
x11-drivers/xf86-video-ati613. See radeon(5) for options
available.
20110224:
AFFECTS: users of net/openldap24-{client,server}
AUTHOR: delphij@FreeBSD.org
OpenLDAP has been upgraded to 2.4.24, which requires a shared library
version bump. Therefore, you need to reinstall all ports that depend on
it. Please do something like:
# portupgrade -fr net/openldap24-client
or
# portmaster -r net/openldap24-client
20110224:
AFFECTS: Nobody
AUTHOR: wxs@FreeBSD.org
FreeBSD 8.2 and 7.4 released.
20110209:
AFFECTS: users of www/testlink
AUTHOR: tota@FreeBSD.org
Testlink 1.9.1 was released. Before updating, you should read carefully
the included README file because this release requires a manual update
of the database scheme.
20110125:
AFFECTS: users of lang/perl5.12
AUTHOR: skv@FreeBSD.org
lang/perl5.12 has been updated to 5.12.3. You should update everything
that depends on perl. The easiest way to do that is to use
"perl-after-upgrade" script supplied with lang/perl5.12.
Please see its manual page for details.
If you want to switch to lang/perl5.12 from lang/perl5.{8,10} please
follow instructions in the entry 20100715 in this file.
20110124:
AFFECTS: users of mail/postfix
AUTHOR: sahil@FreeBSD.org
Postfix 2.8 introduces minor incompatibilities with previous versions.
Alias expansion, dns lookups, TLS support, milters and other features
are affected. To avoid surprises, carefully review the RELEASE_NOTES.
If you upgrade from Postfix 2.6 or earlier, you must execute "postfix
stop" and "postfix start" before you can use the postscreen(8) daemon.
This is needed because the Postfix 2.6 "pass" master service type did
not work reliably on some systems. If you upgrade from Postfix 2.7, or
from Postfix 2.8 before July 25, 2010, you must "postfix reload" (or
"postfix stop" followed by "postfix start"). This is needed because
the queue manager to delivery agent protocol has changed.
Also note that the optional SPF and VDA patches have not been updated
for Postfix 2.8; as a result, they are currently disabled.
20110111:
AFFECTS: users of www/redmine
AUTHOR: decke@FreeBSD.org
If you use 3rd party plugins that are incompatible with i18n >= 0.5.0
(eg. variables in yml files as {{variable}}) then you need to
install an older i18n version manually.
# gem install -v=0.4.2 i18n
Then upgrade the database as usual:
# rake db:migrate RAILS_ENV=production
20110107:
AFFECTS: users of mail/exim
AUTHOR: rea@FreeBSD.org
[POSSIBLE CONFIG BREAKAGE] The default value for system_filter_user
is now the Exim run-time user, instead of root.
[POSSIBLE CONFIG BREAKAGE] ALT_CONFIG_ROOT_ONLY is no longer
optional and is forced on. This is mitigated by the new build
option TRUSTED_CONFIG_LIST which defines a list of configuration
files which are trusted; one per line. If a config file is owned
by root and matches a pathname in the list, then it may be invoked
by the Exim build-time user without Exim relinquishing root
privileges.
[POSSIBLE CONFIG BREAKAGE] The Exim user is no longer automatically
trusted to supply -D<Macro[=Value]> overrides on the command-line.
Going forward, we recommend using TRUSTED_CONFIG_LIST with shim
configs that include the main config. As a transition mechanism,
we are temporarily providing a work-around: the new build option
WHITELIST_D_MACROS provides a colon-separated list of macro names
which may be overriden by the Exim run-time user. The values of
these macros are constrained to the regex ^[A-Za-z0-9_/.-]*$
(which explicitly does allow for empty values).
Upgrading users are encouraged to fully study
ftp://exim.inode.at/exim/ChangeLogs/NewStuff-4.73
and
ftp://exim.inode.at/exim/ChangeLogs/ChangeLog-4.73
20110103:
AFFECTS: users of textproc/libwpd and graphics/libwpg
AUTHOR: fluffy@FreeBSD.org
LibWPD and LibWPG is now using new API, partially incompatible with
previous versions.
For correct upgrade procedure please upgrade LibWPD and LibWPG first
as described, than follow usual upgrade procedure
# portmaster -o textproc/libwpd08 libwpd
# portmaster -o graphics/libwpg01 libwpg
substitute 'portupgrade' for 'portmaster' accordingly if that's your
your upgrade tool of choice.
20101230:
AFFECTS: users of databases/postgresql??-(server|client)
AUTHOR: ohauer@FreeBSD.org
PostgreSQL version 8.4 is now the default. To upgrade from a version
lower than 8.4, follow the instructions on the PostgreSQL.org website.
http://www.postgresql.org/docs/8.4/interactive/install-upgrading.html
20101230:
AFFECTS: users of net-mgmt/pnp
AUTHOR: rea@FreeBSD.org
Starting from 0.6.10_1 config.php is no longer preserved across
upgrades; PNP way is to put all modifications into config_local.php.
Existing config.php will be saved as config.php.orig and you should
review your deviations from defaults and place them into
config_local.php.
20101227:
AFFECTS: users of databases/mysql55-server
AUTHOR: ale@FreeBSD.org
MySQL 5.5 has been updated to 5.5.8 GA release. Since layout is
changed you should remove mysql55-{client/server/scripts} ports
before upgrading. The build system is changed too, so expect
failures.
20101227:
AFFECTS: users of security/opensc
AUTHOR: ale@FreeBSD.org
opensc has been updated to 0.12.0 release. Only one backend can be
choosen at compile-time: PC/SC is now the default one.
opensc doesn't export anymore its internal library, PKCS#11 is the
recommended interface.
20101220:
AFFECTS: users of net-mgmt/flowd
AUTHOR: ohauer@FreeBSD.org
flowd use now a fix UID/GID (id 542) instead the next free UID.
Before updating the port use the command "pw userdel _flowd"
20101216:
AFFECTS: users of security/libksba
AUTHOR: glarkin@FreeBSD.org
libksba has been updated to 1.1.0, and the shared library version has
increased from .17 to .18.
Directly- and indirectly-dependent ports have had their PORTREVISION
bumped to facilitate rebuilding. Please rebuild the dependent ports
with your preferred upgrading tool:
# portupgrade -rf security/libksba
-or-
# portmaster -w -r security/libksba
If there are still ports on your system that require ksba.so.17 (either
in ${LOCALBASE}/lib/compat/pkg, or non-existent), _please_ file a PR so
that a correct direct dependency can be added.
Once you are satisfied that no ports still depend on the old shared
library version (libksba.so.17), you can safely delete it from the
${LOCALBASE}/lib/compat/pkg directory if it is present there.
20101216:
AFFECTS: users of databases/akonadi
AUTHOR: avilla@FreeBSD.org
With SQLite 3 installed, Akonadi used to build its plugin and
install it in a wrong place, without it being listed in plist. To
remove the orphaned file, run the following commands PRIOR TO the
Akonadi upgrade:
# cd /usr/ports/databases/akonadi
# rm `make -V KDE4_PREFIX`/`make -V QT_PLUGINDIR_REL`/sqldrivers/libqsqlite3.so
# rmdir `make -V KDE4_PREFIX`/`make -V QT_PLUGINDIR_REL`/sqldrivers \
`make -V KDE4_PREFIX`/`make -V QT_PLUGINDIR_REL` \
`make -V KDE4_PREFIX`/`make -V QT_LIBDIR_REL`
20101214:
AFFECTS: users of devel/icu
AUTHOR: bapt@FreeBSD.org
icu has been updated to version 4.6. Please rebuild all ports that depends
on it.
If you use portmaster:
# portmaster -r icu
If you use portupgrade:
# portupgrade -fr devel/icu
Note that devel/icu4 is now deprecated consider replacing it by devel/icu
# portmaster -o devel/icu devel/icu4
or
# env DISABLE_CONFLICTS=1 portupgrade -o devel/icu -f icu-4\*
20101211:
AFFECTS: users of devel/bugzilla, japanese/bugzilla and russian/bugzilla-ru
AUTHOR: tota@FreeBSD.org
Bugzilla and its language packs are installed to
WWWDIR (defaults to PREFIX/www/bugzilla).
BUGZILLADIR (that defaulted to PREFIX/www/data/bugzilla) is deprecated.
20101211:
AFFECTS: users of databases/mysql-proxy
AUTHOR: Florian Smeets <flo@smeets.im>
The parameters --admin-username and --admin-password are mandatory now.
Add something like the following to rc.conf
mysql_proxy_args="--admin-username admin --admin-password somepassword"
20101210:
AFFECTS: users of multimedia/avidemux2
AUTHOR: nox@FreeBSD.org
The port has been updated to 2.5.4 which now installs plugins separately
and I had to make a slave port for them, multimedia/avidemux2-plugins.
So you'll now have to install that port too for the app to become useful.
20101208:
AFFECTS: autotools
AUTHOR: autotools@FreeBSD.org
Another stage in the autotools cleanup that reduces tree churn whilst
updating components, a number of ports have now moved to non-versioned
locations since there is now only the concept of legacy and current
versions.
# portmaster -o devel/autoconf devel/autoconf268
# portmaster -o devel/automake devel/automake111
# portmaster -o devel/libtool devel/libtool22
# portmaster -o devel/libltdl devel/libltdl22
substitute 'portupgrade' for 'portmaster' accordingly if that's your
your upgrade tool of choice.
20101205:
AFFECTS: users of www/py-flexget
AUTHOR: lioux@FreeBSD.org
Database schema changes. Please run:
$ sqlite3 db-config.sqlite "ALTER TABLE thetvdb_favorites ADD series_id VARCHAR;"
$ sqlite3 db-config.sqlite "ALTER TABLE imdb_movies ADD updated DateTime;"
$ sqlite3 db-config.sqlite "ALTER TABLE imdb_movies ADD mpaa_rating VARCHAR;"
inside flexget configuration directory (~/.flexget) for each
sqlite database you might have.
Replace "db-config.sqlite" with the appropriate name for your
sqlite database file.
20101204:
AFFECTS: users of audio/libmpcdec
AUTHOR: lioux@FreeBSD.org
audio/libmpcdec has been removed in favor of audio/musepack; which
has a higher shared library version. You will have to rebuild all
ports that depend on audio/libmpcdec. Do this:
Portmaster users:
# portmaster -o audio/musepack audio/libmpcdec
# portmaster -r musepack-
Portupgrade user:
# env DISABLE_CONFLICTS=1 portupgrade -o audio/musepack -f libmpcdec-\*
# pkgdb -Ff
# portupgrade -rf musepack-\*
20101204:
AFFECTS: autotools
AUTHOR: autotools@FreeBSD.org
The next stage in the ongoing cleanup of autotools-using ports is
a refactoring of bsd.autotools.mk so that version numbers are no longer
needed within the USE_AUTOTOOLS stanza. There is either
autoconf213/autoconf or automake14/automake (for the legacy versions,
and the currently available versions). This will considerably reduce
the amount of tree-wide patching in future on an update.
IMPORTANT: if you have either devel/autoconf-wrapper or
devel/automake-wrapper installed on your system (and you most likely do)
PLEASE update these ports to their new versions before updating anything
else -- Bad Things[tm] are likely to happen otherwise.
20101202:
AFFECTS: users of multimedia/gstreamer-plugins
AUTHOR: multimedia@FreeBSD.org
If during the upgrade of gstreamer-plugins the following error happens:
GstAudio-0.10.gir: Incompatible version 1.0 (supported: 1.2)
Use the following command to upgrade:
cd ports/multimedia/gstreamer-plugins && make deinstall clean install
20101202:
AFFECTS: users of www/wordpress
AUTHOR: sunpoet@FreeBSD.org
WordPress is now installed to WWWDIR (defaults to PREFIX/wordpress)
instead of WORDPRESS (defaults to PREFIX/www/data/wordpress).
20101129:
AFFECTS: users of sysutils/radmind
AUTHOR: ohauer@FreeBSD.org
The radmind user and group is created automatically during installation.
The owner of $RADMIND_BASE_DIR changes from root to radmind.
20101128:
AFFECTS: users of net/asterisk, net/asterisk-addons
AUTHOR: Florian Smeets <flo@smeets.im>
If you want to upgrade to 1.8.0 first remove asterisk-addons by running
# pkg_delete -f asterisk-addons\*
after that you can run one of the following
# portmaster asterisk
or
# portupgrade asterisk
You need to update your config files as the step from 1.4.x to 1.8.x is
quite big. First you need to look at what changed between 1.4 and 1.6
http://svnview.digium.com/svn/asterisk/branches/1.8/UPGRADE-1.6.txt
After that you also need to take into account what chagne between
1.6 and 1.8
http://svnview.digium.com/svn/asterisk/branches/1.8/UPGRADE.txt
If you want to stay with asterisk 1.4.x please run
# portmaster -o net/asterisk14 net/asterisk
# portmaster -o net/asterisk14-addons net/asterisk-addons
or
# portupgrade -o net/asterisk14 net/asterisk
# portupgrade -o net/asterisk14-addons net/asterisk-addons
20101127:
AFFECTS: users of mail/postfix, mail/postfix2[56]
AUTHOR: sahil@FreeBSD.org
As of Postfix 2.7.2, 2.6.8, 2.5.11:
Postfix no longer automatically appends the system default CA
(certificate authority) certificates, when it reads the CA
certificates specified with {smtp, lmtp, smtpd}_tls_CAfile or
with {smtp, lmtp, smtpd}_tls_CApath. This prevents third-party
certificates from getting mail relay permission with the
permit_tls_all_clientcerts feature. Unfortunately, this change
may cause compatibility problems with configurations that rely
on certificate verification for other purposes. To get the old
behavior, specify "tls_append_default_CA = yes".
20101124:
AFFECTS: users of www/py-flexget
AUTHOR: lioux@FreeBSD.org
metainfo_series is no longer a builtin. This should only affect
you if you aren't using one of the series plugins (series,
all_series, thetvdb_favorites, or series_premiere.) If you need
to enable metainfo_series manually for a feed it can be done like
so:
metainfo_series: yes
20101120:
AFFECTS: users of x11-toolkits/gtk20 and x11-toolkits/gtkmm24
AUTHOR: FreeBSD GNOME Team <gnome@FreeBSD.org>
In the GNOME 2.32 release. gdk-pixbuf2 has been split off from gtk20,
and atkmm has been split off from gtkmm24. To upgrade please use the
following instructions:
Portmaster users:
# pkg_delete -f gtkmm-2.20\* gtk-2.20\*
# portmaster -a
Portupgrade users:
# pkgdb -fF
# pkg_deinstall -fO gtkmm-2.20\* gtk-2.20\*
# portupgrade -aOW
20101118:
AFFECTS: users of editors/emacs-devel
AUTHOR: Ashish SHUKLA <ashish@FreeBSD.org>
Due to a bug when upgrading from 24.0.50.101606, everything
installed by other ports in "${PREFIX}/share/emacs" gets removed.
Before upgrading:
* Please backup custom configurations in "${PREFIX}/share/emacs".
* After upgrading reinstall any ports that may have had files in the
"${PREFIX}/share/emacs" directory.
Apologies for this inconvenience.
20101117:
AFFECTS: users of net-p2p/transmission-cli and net-p2p/transmission-gtk
AUTHOR: Mezz <mezz@FreeBSD.org>
Transmission has been updated to 2.12. The following name of binaries and
manpages have been renamed:
transmissioncli -> transmission-cli
transmission -> transmission-gtk
20101117:
AFFECTS: users of devel/ccache
AUTHOR: Emanuel Haupt <ehaupt@FreeBSD.org>
Updated instructions on how to workaround a buildworld failure have been
committed. Please (re)read the following document after updating ccache to
3.1.1_1:
/usr/local/share/doc/ccache/ccache-howto-freebsd.txt
20101110:
AFFECTS: users of databases/mysql55-server
AUTHOR: Alex Dupre <ale@FreeBSD.org>
If you are upgrading from a previous MySQL release, the server will exit
during startup after finding that the proxies_priv table is missing.
To create the table, start the server with the --skip-grant-tables
option to cause it to skip the normal grant table checks, then run
mysql_upgrade. Then stop the server and restart it normally.
You can do this by temporarly setting the following line in rc.conf:
mysql_args="--skip-grant-tables --skip-networking"
20101108:
AFFECTS: users of databases/py-bsddb3
AUTHOR: wen@FreeBSD.org
py-bsddb3 update to 5.1.0. This release drops support for Berkeley
DB 4.1, and adds support for Berkeley DB version 5.1, brand new. If
you need Berkeley DB 4.1 support, keep using pybsddb 5.0.0. If you
want support for Berkeley DB 5.1, remember to install the BDB library
before installing these bindings.
20101030:
AFFECTS: users of www/xshttpd-devel
AUTHOR: johans@FreeBSD.org
The default XS-httpd configuration file locations have changed:
The main configuration file is now $PREFIX/etc/xshttpd/httpd.conf
and other configuration file are stored in that same directory.
Existing configurations should be moved over manually.
Log files now appear in /var/log/xshttpd/ by default.
20101029:
AFFECTS: users of ports-mgmt/portmaster
AUTHOR: Doug Barton <dougb@FreeBSD.org>
The changes to bsd.port.mk in 1.652 require all portmaster users to
upgrade to version 3.1 or later. The best method to do this will be
to use the port, rather than portmaster itself:
# pkg_delete -f portmaster\*
# cd /usr/ports/ports-mgmt/portmaster && make clean && make install clean
20101026:
AFFECTS: users of net/samba35
AUTHOR: Timur Bakeyev <timur@FreeBSD.org>
This is the latest stable release of the Samba3 distribution. It has
been extended with the experimental support of the NFS4-like ACLs on
ZFS partitions, thanks to the sysutils/libsunacl library by Edward
Tomasz Napierala(trasz). This support haven't been tested thoroughly,
so try it on your own risk.
This port reverted back to the pre- net/samba34 layout of the
directories and now they are again $PREFIX/etc/samba, /var/run/samba,
/var/log/samba, /var/db/samba and /var/spool/samba respectively.
In case, you are upgrading from net/samba34, please rename
corresponding samba34/ subdirectories into samba/ ones. Upgrades from
older versions of Samba and fresh installations should be seamless.
20101015:
AFFECTS: users of devel/llvm-devel who use clang
AUTHOR: Brooks Davis <brooks@FreeBSD.org>
The clang portion of devel/llvm-devel has been split out and now
resides in lang/clang-devel. If you have devel/llvm-devel installed
in order to use clang, you will need to install the clang-devel port
when upgrading.
20101003:
AFFECTS: users of www/typo3
AUTHOR: Helmut Schneider <jumper99@gmx.de>
www/typo3 has been repocopied to www/typo343. If you need to continue with
the old stable version please run
# portmaster -o www/typo343 www/typo3
or
# portupgrade -o www/typo343 www/typo3
Please remember to change the path of your config files too.
20101003:
AFFECTS: users of net-mgmt/kismet
AUTHOR: bf@FreeBSD.org
This update includes major changes in how Kismet works and is configured.
Clients, servers, drones, and configuration files must be updated to work
with the new version. Map support has not yet been added.
See the kismet README for details.
20100929:
AFFECTS: users of sysutils/zfsnap
AUTHOR: Aldis Berjoza <aldis@bsdroot.lv>
Since timestamp format changed you need to use -o option with -d
option in order to be able to delete old snapshots. Note however that
you don't need -o when creating new snapshots, unless you want to keep
using the old timestamp format.
See http://wiki.bsdroot.lv/zfsnap for more info.
20100927:
AFFECTS: users of mail/postfix-current
AUTHOR: ohauer@FreeBSD.org
Incompatibility with snapshot 20100912
======================================
- If your DNSBL queries have a "secret" in the domain name, you must
now censor this information from the postscreen(8) SMTP replies.
- The postscreen "continue" action is now called "ignore". The old
name is still supported but no longer documented.
- The postscreen_hangup_action parameter was removed. Postscreen
now always behaves as if "postscreen_hangup_action = drop".
- The postscreen_cache_retention_time default was increased from
1d to 7d, to avoid deleting results from expensive deep SMTP
protocol tests too quickly.
Incompatibility with snapshot 20100827
======================================
- The Postfix SMTP client no longer appends the local domain when
looking up a DNS name without ".".
Specify "smtp_dns_resolver_options = res_defnames" to get the old
behavior, which may produce unexpected results.
20100924:
AFFECTS: users of x11/nvidia-driver
AUTHOR: makc@FreeBSD.org
nvidia-driver does not install vdpau library and headers anymore, they
are now provided by multimedia/libvdpau port. To avoid conflict, please
rebuild nvidia-driver port before upgrading your ports and before
installing multimedia/libvdpau.
20100921:
AFFECTS: users of p5-Compress-Zlib, p5-IO-Compress-*
AUTHOR: mm@FreeBSD.org
The p5-Compress-Zlib, p5-IO-Compress-Base, p5-IO-Compress-Zlib and
p5-IO-Compress-Bzip2 ports have been replaced by p5-IO-Compress.
Users of Perl 5.10 and higher do not need to install this module
because it is already included in the standard perl distribution.
20100920:
AFFECTS: users of security/stunnel
AUTHOR: roam@FreeBSD.org
In stunnel-4.34, the DH support is no longer configurable by the user,
but always enabled when OpenSSL supports it instead. This means that
it will now most probably be enabled on the supported versions of FreeBSD.
If this leads to problems with old SSL clients, I will look into making
it configurable at build time again.
20100917:
AFFECTS: users of sysutils/cdrtools-cjk
AUTHOR: marius@FreeBSD.org
sysutils/cdrtools-cjk port has been removed, as the required functionality is
now available in cdrtools 3.0.0 in the standard sysutils/cdrtools port.
20100915:
AFFECTS: autoconf, automake
AUTHOR: autotools@FreeBSD.org
autoconf has been updated from 2.62 to 2.67 -- all ports depending on
autoconf-2.62 have had their PORTREVISIONs update, so a standard
port updating method will suffice.
USE_GETTEXT has been extended to also accept 'build' and 'run' for
ports which need devel/gettext as a BUILD- or RUN-time dependency only.
No port should now be directly depending on devel/gettext in Makefiles.
20100915:
AFFECTS: users of sysutils/cdrtools-cjk
AUTHOR: marius@FreeBSD.org
Version 3.00 of sysutils/cdrtools breaks but at the same time also
obsoletes sysutils/cdrtools-cjk as mkisofs now employs iconv for
character conversion. Consequently sysutils/cdrtools-cjk is marked
BROKEN and the use of USE_CDRTOOLS=cjk as well as USE_CDRTOOLS together
with the WITH_CJK knob left in a broken state until bsd.port.mk is
updated by portmgr@ accordingly. Once USE_CDRTOOLS is updated to no
longer refer to sysutils/cdrtools-cjk the latter will be removed.
Previous users of sysutils/cdrtools-cjk should switch to using
sysutils/cdrtools instead, which might require not using the WITH_CJK
knob until said update of bsd.port.mk has happened.
20100915:
AFFECTS: users of lang/perl5.12
AUTHOR: skv@FreeBSD.org
lang/perl5.12 has been updated to 5.12.2. You should update everything
that depends on perl. The easiest way to do that is to use
"perl-after-upgrade" script supplied with lang/perl5.12.
Please see its manual page for details.
If you want to switch to lang/perl5.12 from lang/perl5.{8,10} please
follow instructions in the entry 20100715 in this file.
20100912:
AFFECTS: ftp/curl
AUTHOR: roam@FreeBSD.org
With version 7.21.1, the cURL port is built with stricter compiler
checking by default (the -Werror flag is passed to the C compiler,
making it treat any warnings as fatal errors). If you experience
problems building cURL, re-run "make config" in the ftp/curl
directory and disable the WERROR knob.
20100912:
AFFECTS: www/tdiary-devel, japanese/tdiary-devel
AUTHOR: tota@FreeBSD.org
The stable tDiary ports, www/tdiary and japanese/tdiary, have been
updated to 3.0.0. The development versions of tDiary have been merged
from www/tdiary-devel to www/tdiary and from japanese/tdiary-devel to
japanese/tdiary, respectively.
If you have been using the www/tdiary-devel or japanese/tdiary-devel,
you run one of the following commands to upgrade:
- www/tdiary-devel
# portmaster -o www/tdiary www/tdiary-devel
or
# portupgrade -o www/tdiary www/tdiary-devel
- japanese/tdiary-devel
# portmaster -o japanese/tdiary japanese/tdiary-devel
or
# portupgrade -o japanese/tdiary japanese/tdiary-devel
Before upgrading, please read the following for more details:
http://www.tdiary.org/20100828.html (written in Japanese)
20100907:
AFFECTS: sysutils/pecl-fileinfo
AUTHOR: ale@FreeBSD.org
If you are using php 5.3 (lang/php5) and fileinfo extension, you
should switch to sysutils/php5-fileinfo port:
portmaster -o sysutils/php5-fileinfo sysutils/pecl-fileinfo
20100904:
AFFECTS: net/netcat
AUTHOR: pgollucci@FreeBSD.org
Rename nc to netcat to prevent /usr/bin/nc shadowing /usr/local/bin/nc
20100902:
AFFECTS: users of KDE 4
AUTHOR: kde@FreeBSD.org
KDE SC ports has been updated to 4.5.1. A number of files were moved
between packages, manual intervention into update procedure is required:
# pkg_delete -f kdehier4\* kdelibs-4\* kdebase-4\* kdebase-runtime-4\* kdebase-workspace-4\*
# rm -rf /usr/local/kde4/share/PolicyKit/policy
# cd /usr/ports/misc/kdehier4 && make install clean
# portmaster -a
20100901:
AFFECTS: users of www/rubygem-rails
AUTHOR: pgollucci@FreeBSD.org
Rails has been updated to 3.0.0. As always, make sure you check the
changes at http://weblog.rubyonrails.org/.
20100817:
AFFECTS: users of www/lighttpd
AUTHOR: mm@FreeBSD.org
The modules mod_geoip and mod_h264_streaming have been moved into slave
ports: www/lighttpd-mod_geoip and www/lighttpd-mod_h264_streaming
20100818:
AFFECTS: users of www/lighttpd
AUTHOR: mm@FreeBSD.org
The default lighttpd configuration file locations have changed.
The main configuration file is now: $PREFIX/etc/lighttpd/lighttpd.conf
and includes other configuration files from $PREFIX/etc/lighttpd/
For compatibility with old-style configurations, if the lighttpd_conf
variable is not set in /etc/rc.conf, $PREFIX/etc/lighttpd.conf takes
precedence over $PREFIX/etc/lighttpd/lighttpd.conf
20100815:
AFFECTS: users of databases/redis and databases/redis-devel
AUTHOR: osa@FreeBSD.org
The redis configuration file, redis.conf, have been changed, some options
removed in newer versions (>=2.0). In some cases, redis-server with
older configuration might does not run at startup.
If you run into startup problems, re-edit configuration file.
20100813:
AFFECTS: www/opera
AUTHOR: dinoex@FreeBSD.org
If you run opera without gtk or kde4, the browser might crash on shutdown.
In this case go to about:config and change "Dialog Toolkit" from 0 to 4.
20100811:
AFFECTS: multimedia/mpeg4ip-libmp4v2
AUTHOR: makc@FreeBSD.org
multimedia/mpeg4ip-libmp4v2, which is not maintained upstream, has been
replaced with new port, multimedia/mp4v2. The shared library version
has been changed with this update, thus all ports that depends on
mp4v2 library must be rebuilt:
portmaster -o multimedia/mp4v2 multimedia/mpeg4ip-libmp4v2
portmaster -a
20100731:
AFFECTS: users of devel/ccache
AUTHOR: ehaupt@FreeBSD.org
Users upgrading from 2.4 release should clear the old cache directory with:
# ccache --clear
20100730:
AFFECTS: users of www/neon28 and www/neon29
AUTHOR: mezz@FreeBSD.org
Makes neon29 our default neon library in the ports tree. The www/neon28
has been removed and www/neon29's shared library version has been changed.
You will have to rebuild all ports that depend on www/neon29. Do this:
Portmaster users:
portmaster -o www/neon29 www/neon28
portmaster -r neon29-
Portupgrade user:
env DISABLE_CONFLICTS=1 portupgrade -o www/neon29 -f neon28-\*
pkgdb -Ff
portupgrade -rf neon29-\*
20100728:
AFFECTS: users of textproc/nltk
AUTHOR: clsung@FreeBSD.org
Nltk has been upgraded to 2.0b8 which depends on devel/py-yaml now.
You need to deinstall nltk before upgrading, since the previous port
will delete files installed from py-yaml during its deinstall phase.
Use, for example:
# pkg_delete nltk-2.0b7,1
# portsnap fetch update
# cd /usr/ports/textproc/nltk/
# make install clean
20100727:
AFFECTS: users of security/libgcrypt
AUTHOR: wxs@FreeBSD.org
libgcrypt has been upgraded to 1.4.6 which has a shared library version
bump. You need to reinstall all ports that depend on it. Use something
like this:
portupgrade -rf libgcrypt
portmaster -r libgcrypt
20100722:
AFFECTS: users of net/rabbitmq
AUTHOR: Phillip <pneumann@gmail.com>
The database schema and the format in which persistent messages are
stored have both changed since the last release (1.7.2). When
starting, the RabbitMQ server will detect the existence of an old
database and will move it to a backup location, before creating a
fresh, empty database, and will log a warning.
20100715:
AFFECTS: users of lang/perl*
AUTHOR: skv@FreeBSD.org
lang/perl5.12 is out. If you want to switch to it from, for example
lang/perl5.10, that is:
Portupgrade users:
0) Fix pkgdb.db (for safety):
pkgdb -Ff
1) Reinstall new version of Perl (5.12):
env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.12 -f perl-5.10.\*
2) Reinstall everything that depends on Perl:
portupgrade -fr perl
Portmaster users:
portmaster -o lang/perl5.12 lang/perl5.10
Conservative:
portmaster p5-
Comprehensive (but perhaps overkill):
portmaster -r perl-
Note: If the "perl-" glob matches more than one port you will need to
specify the name of the Perl directory in /var/db/pkg explicitly.
20100626:
AFFECTS: users of japanese/ibus-mozc
AUTHOR: daichi@FreeBSD.org
The japanese/ibus-mozc port has been updated to version 0.11.383.102,
and separated into 5 ports to cope with upcoming new port
japanese/scim-mozc.
o japanese/mozc-server
o japanese/mozc-tool
o japanese/mozc-additions
o japanese/ibus-mozc
o devel/py-gyp-devel
You can not upgrade with portupgrade or portmaster. To upgrade, you
must deinstall japanese/ibus-mozc first and then install the new
japanese/ibus-mozc.
For example:
# pkg_delete ja-ibus-mozc-0.11.365.102_1
# portsnap fetch update
# cd /usr/ports/japanese/ibus-mozc/
# make install clean
20100617:
AFFECTS: users of security/{dirmngr|gnupg}
AUTHOR: dougb@FreeBSD.org
The security/libassuan port has been updated to version 2.0.0, and
the applications listed above have been updated to use it as of versions
1.1.0 and 2.0.15 respectively. If you HAVE NOT updated your libassuan
port as described in the 20100613 entry, you can simply update all 3
ports together (libassuan, dirmngr if installed, and gnupg) using your
normal upgrade path. If you HAVE updated to libassuan-1, then you need
to do the following before upgrading dirmngr and gnupg.
If you use portupgrade:
portupgrade -f -o security/libassuan security/libassuan-1
If you use portmaster:
portmaster -o security/libassuan libassuan-1
If you use neither:
pkg_delete -f libassuan*
Please note, libassuan version 2.0.0 is now a shared library, so unlike
the previous version it is now a runtime dependency and cannot be deleted
after you are done building dirmngr and/or gnupg.
20100613:
AFFECTS: users of deskutils/kdepim4, and security/{gpa|opensc}
AUTHOR: dougb@FreeBSD.org
The security/libassuan port has been updated to version 2.0.0, however,
the applications listed above are not yet compatible with it. Therefore
security/libassuan-1 has been created until they can be updated, and the
ports listed above have been updated to depend on it. You must first
replace your existing libassuan with version 1 in the new location, then
you can update the ports listed above normally.
If you use portupgrade:
portupgrade -f -o security/libassuan-1 security/libassuan
If you use portmaster:
portmaster -o security/libassuan-1 libassuan
If you use neither:
pkg_delete -f libassuan*
20100609:
AFFECTS: users of audio/libogg and audio/libao
AUTHOR: naddy@FreeBSD.org
There are new versions of libogg (1.2.0) and libao (1.0.0) and the
shared library versions have been bumped (ogg.6 to ogg.7, ao.3 to ao.4).
All ports that have an identifiable direct dependency on these libraries
have had their PORTREVISIONs bumped. However, some ports that pull in
the libraries indirectly may continue to look for the old versions. To
ensure that all are updated, perform this step:
If you use portupgrade:
portupgrade -rf libogg libao
If you use portmaster:
portmaster -r libogg libao
20100605:
AFFECTS: users of multimedia/gstreamer-plugins-good and
multimedia/gstreamer-plugins-bad
AUTHOR: kwm@FreeBSD.org
Certain plugins were moved from the -bad port to the -good port. Please
follow instructions below before proceeding with normal update steps:
If you use portmaster:
portmaster gstreamer-plugins-bad
If you use portupgrade:
portupgrade -R multimedia/gstreamer-plugins-bad
20100602:
AFFECTS: users of lang/mono
AUTHOR: romain@FreeBSD.org
Starting with Mono 2.6, the Moonlight compiler and assemblies are not
installed by the lang/mono port anymore. They are however provided by
the multimedia/moonlight port.
If you are doing some Silverlight development, install multimedia/moonlight
after updating lang/mono.
20100530:
AFFECTS: users of devel/gettext (i.e.: YOU)
AUTHOR: ade@FreeBSD.org
Another version of gettext (0.18), and another shared library version
bump (from intl.8 to intl.9), so:
All ports that have an identifiable known direct dependency on gettext
have had their PORTREVISIONs bumped. If after upgrading:
# portupgrade -rf gettext
# portmaster -w -r gettext
The upgrade of devel/gobject-introspection may fail because it is looking
for libintl.so.8. In this case, do the following:
# cd /usr/ports/devel/gobject-introspection
# make clean
# make deinstall
# make install clean
Then continue your upgrade procedure normally.
If there are still ports on your system that are looking for libintl.so.8
(either in ${LOCALBASE}/lib/compat/pkg, or non-existent), _please_ file
a PR so that a correct direct dependency can be added.
Once you are satisfied that no ports still depend on the old versions (such
as libgettextpo.so.4 and libintl.so.8) you can safely delete them from the
${LOCALBASE}/lib/compat/pkg directory if they are present there.
20100524:
AFFECTS: users of devel/darcs, ports-mgmt/porte, textproc/pandoc,
x11/xmobar, x11-wm/xmonad, x11-wm/xmonad-contrib
AUTHOR: pgj@FreeBSD.org
The following ports have been renamed to improve consistency among Haskell
Cabal ports:
- devel/darcs -> devel/hs-darcs
- ports-mgmt/porte -> ports-mgmt/hs-porte
- textproc/pandoc -> textproc/hs-pandoc
- x11/xmobar -> x11/hs-xmobar
- x11-wm/xmonad -> x11-wm/hs-xmonad
- x11-wm/xmonad-contrib -> x11-wm/hs-xmonad-contrib
Please follow these steps below to update Haskell ports that you have
installed:
1) Reinstall the renamed Haskell port dependencies (see previous entry).
Note that this will possibly require that you remove the affected leaf
(aforementioned) ports as well;
2) Reinstall the renamed application(s) you use.
20100524:
AFFECTS: users of hs-* ports
AUTHOR: pgj@FreeBSD.org
The following Haskell ports have been renamed in order to bring them in
sync with the naming scheme used at HackageDB. Please follow these steps
below to update your installation:
1) Delete the following ports (if you have any of them installed):
- hs-zip-archive-ghc
- hs-binary-ghc
- hs-language-c-ghc
- hs-lazysmallcheck-c-ghc
- hs-pcre-light-ghc
- hs-utf8-string-ghc
- hs-HGL-ghc
- hs-digest-ghc
- hs-haxml
- hs-highlighting-kate-ghc
- hs-polyparse-ghc
- hs-x11-ghc
- hs-x11-xft-ghc
- hs-opengl-ghc
- hs-OpenGLRaw-ghc
- hs-OpenGLURaw-ghc
- hs-glut-ghc
2) Rebuild the renamed ports and all ports that depend on them.
20100518:
AFFECTS: users of devel/pylint
AUTHOR: mva@FreeBSD.org
The pylint user configuration files have been changed slightly in newer
versions (>=0.20.0). In some cases, older configurations might crash
pylint at startup.
If you run into startup problems, make sure you remove the .pylintrc
configuration settings and the .pylint.d directory from your home
directory:
$ rm ~/.pylintrc
$ rm -rf ~/.pylint.d
20100518:
AFFECTS: users of devel/apr0, devel/apr1, www/apache20, www/apache22
AUTHOR: pgollucci@FreeBSD.org
devel/apr port has been renamed to devel/apr1.
WITH_APR_FROM_PORTS=yes for www/apache22 has been dissolved and may be
removed from your configuration files; devel/apr1 is always used now.
Please manually delete apache-2.\* if installed _before_ updating using
either portmaster or portupgrade:
pkg_delete -f apache-2.\*
Then, if you use portmaster:
portmaster -o devel/apr1 devel/apr
If you use portupgrade:
portupgrade -f -o devel/apr1 devel/apr
Finally, reinstall Apache port if you deleted it earlier and update ports as
usual (`XX' below is either 20 or 22):
portinstall www/apacheXX
20100512:
AFFECTS: users of www/apache20
AUTHOR: pgollucci@FreeBSD.org
The rc.d script has been renamed:
apache2.sh -> apache2
You'll need to update any crons wrappers, etc. for the new paths.
20100511:
AFFECTS: users of KDE SC 4
AUTHOR: kde@FreeBSD.org
KDE SC ports have been updated from 4.3.5 to 4.4.3. A number of libraries
was moved between packages. The recommended update procedure is to delete
kdelibs-experimental*, kdebase-4*, kdebase-workspace-4*,
kdebase-runtime-4*, kdepim-4*, kdepim-runtime-4*, and then update ports as
usual and install desired KDE 4 ports:
# pkg_delete -f kdebase-\*4\* kdepim-\*4\* kdelibs-experimental-\*4\*
# portmaster -a (or portupgrade -aR)
In order to enabled Nepomuk semantic desktop search you have to install
databases/virtuoso (you don't need to manually configure or run virtuoso
server).
20100511:
AFFECTS: users of textproc/redland RDF engine
AUTHOR: kde@FreeBSD.org
Redland RDF engine has been split into redland itself and rasqal engine.
The recommended update procedure is to delete redland, then update ports
as usual and install desired RDF ports:
# pkg_delete -f redland-\*
# portmaster raptor (or portupgrade -r raptor)
20100511:
AFFECTS: users of multimedia/qt4-phonon, multimedia/qt4-phonon-gst,
multimedia/phonon, and multimedia/phonon-gstreamer
AUTHOR: kde@FreeBSD.org
WITH_QT_PHONON global knob has been introduced to allow selection between
multimedia/qt4-phonon* ports (a bit outdated Phonon, which is shipped with
Qt 4) and multimedia/phonon* ports. Since KDE SC 4.4 now requires fresh
Phonon, multimedia/phonon* ports are installed by default.
If you don't use KDE, you may set WITH_QT_PHONON=yes in /etc/make.conf
and continue to use Qt 4 Phonon implementation ports.
If you want to use KDE SC 4.4 (or if you want the latest Phonon), do not
define WITH_QT_PHONON, delete multimedia/qt4-phonon* ports, and install
multimedia/phonon*:
If you use portmaster:
portmaster -o multimedia/phonon multimedia/qt4-phonon
portmaster -o multimedia/phonon-gstreamer multimedia/qt4-phonon-gst
If you use portupgrade:
portupgrade -f -o multimedia/phonon multimedia/qt4-phonon
portupgrade -f -o multimedia/phonon-gstreamer multimedia/qt4-phonon-gst
20100510:
AFFECTS: users of security/gnome-keyring
AUTHOR: kwm@FreeBSD.org
libgnome-keyring was split out of the gnome-keyring package. Perform the
following before doing your normal upgrade steps:
pkg_delete -f "gnome-keyring-*"
portmaster security/gnome-keyring
or
pkgdb -Ff
portupgrade -R -x gnome-keyring -x libgnome-keyring gnome-keyring
pkg_deinstall -fO gnome-keyring
portinstall security/gnome-keyring
20100506:
AFFECTS: users of mail/nullmailer on FreeBSD 6.X
AUTHOR: glarkin@FreeBSD.org
The nullmailer port was recently updated with an rc.d script to correctly
daemonize nullmailer-send with daemon(8). On FreeBSD 6.X, daemon(8) does
not support "[-u user]" command-line switch, causing the nullmailer rc.d
script failure to start nullmailer-send.
Support for "[-u user]" command-line switch was recently MFC'd to 6-STABLE
(http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/146266). FreeBSD 6.X users
should patch and install daemon(8) by one of the methods described below.
If /usr/src is not yet populated, csup the 6-STABLE sources and run these
commands:
cd /usr/src/usr.sbin/daemon
make install
/usr/local/etc/rc.d/nullmailer start
If /usr/src is already populated with sources from a previous 6.X release,
use these commands:
cd /usr/src/usr.sbin/daemon
fetch 'http://people.freebsd.org/~glarkin/pr-links/daemon/patch-daemon.c'
fetch 'http://people.freebsd.org/~glarkin/pr-links/daemon/patch-daemon.8'
patch -p0 daemon.c < patch-daemon.c
patch -p0 daemon.8 < patch-daemon.8
make install
/usr/local/etc/rc.d/nullmailer start
20100502:
AFFECTS: users of www/squid*
AUTHOR: miwi@FreeBSD.org
Starting with squid* the directory containing the default cache and log
directory was changed from $PREFIX/squid/ to /var/squid/.
The default values for the following Squid configuration parameters have
changed as shown below:
cache_log from $PREFIX/squid/logs/cache.log to /var/squid/logs/cache.log
cache_store_log from $PREFIX/squid/logs/store.log to /var/squid/logs/store.log
pid_filename from $PREFIX/squid/logs/squid.pid to /var/squid/logs/squid.pid
coredump_dir from $PREFIX/squid/cache to /var/squid/cache
Please check whether you need to define any of these variables in your
squid.conf to the old defaults explicitly before updating, especially if
you have set up automated log processing or automated log rotation. If you
define pid_filename in your squid.conf, you should also set squid_pidfile
to the same value in /etc/rc.conf, cf. $PREFIX/etc/rc.d/squid.
20100419:
AFFECTS: users of math/libgmp4
AUTHOR: ale@FreeBSD.org
The default gmp version in FreeBSD is now 5.0.x. The port directory
changed from math/libgmp4 to math/gmp. An entry has been added to MOVED
and all depending ports revisions have been bumped, so the update should
be handled correctly by usual port management tools such as portupgrade.
Portmaster users, please do the following before upgrading ports that
depend on gmp:
portmaster -o math/gmp math/libgmp4
20100409:
AFFECTS: users of lang/php5
AUTHOR: ale@FreeBSD.org
As of PHP 5.3, a few extensions were removed from or included into the core
PHP5 package. Follow the steps below to update your installation.
1) Delete the following packages (if installed):
- php5-dbase
- php5-ncurses
- php5-pcre
- php5-spl
- php5-ming
- php5-mhash
2) Rebuild lang/php5 and all ports that depend on it.
20100403:
AFFECTS: users of net/dgd
AUTHOR: glewis@FreeBSD.org
The kernel library has been separated from the main net/dgd port into its
own net/dgd-kernel port so that all libraries are on an equal footing.
This also reflects the split of the kernel library out from the main DGD
distribution.
If you wish to continue to use the kernel library you'll need to install
net/dgd-kernel after updating to dgd-1.4.1_2.
20100330:
AFFECTS: users of gstreamer-plugins-bad and gstreamer-plugins-good
AUTHOR: kwm@FreeBSD.org
Plugin moved from the -bad port to the -good port. Please follow the
instructions below before proceeding with normal update steps.
If you use portmaster:
portmaster gstreamer-plugins-bad
If you use portupgrade:
portupgrade -R multimedia/gstreamer-plugins-bad
20100328:
AFFECTS: users of graphics/png
AUTHOR: dinoex@FreeBSD.org
The PNG library has been updated to version 1.4.1. Please rebuild all
ports that depend on it.
If you use portmaster: make sure you update to portmaster version 2.20 or
newer, then do:
portmaster -r png-
If you use portupgrade:
portupgrade -fr graphics/png
20100221:
AFFECTS: users of rblibtorrent-devel
AUTHOR: dougb@FreeBSD.org
The port name has changed to libtorrent-rasterbar-14.
If you use portmaster:
portmaster -o net-p2p/libtorrent-rasterbar-14 net-p2p/rblibtorrent-devel
If you use portupgrade:
portupgrade -o net-p2p/libtorrent-rasterbar-14 net-p2p/rblibtorrent-devel
20100216:
AFFECTS: users of sysutils/bacula-server, sysutils/bacula-client
AUTHOR: dvl@FreeBSD.org
Bacula 5.x uses new shared objects which conflict with the shared objects
from previous versions. You should delete all existing Bacula packages
from your system before compiling Bacula 5.x, otherwise you'll encounter
compilation errors.
/usr/local/etc/rc.d/bacula-dir stop
/usr/local/etc/rc.d/bacula-sd stop
/usr/local/etc/rc.d/bacula-fd stop
pkg_delete 'bacula-*'
After upgrading, remember to run the database upgrade script supplied
with the port.
20100214:
AFFECTS: users of japanese/roundcube
AUTHOR: nork@FreeBSD.org
If you switch mail/roundcube to japanese/roundcube, please re-check
configuration files like ${PREFIX}/www/roundcube/config/main.inc.php.
At least, please add following settings:
$rcmail_config['message_charset_languages'] = array('en_US' => 'ISO-8859-1', ...
$rcmail_config['transfer_encoding_languages'] = array('en_US' => 'quoted-printable', ...
See also: ${PREFIX}/www/roundcube/config/main.inc.php.dist
20100207:
AFFECTS: users of www/firefox
AUTHORS: beat@FreeBSD.org, mandree@FreeBSD.org (Java plugin)
The www/firefox port has been updated to 3.6. From now on www/firefox
will contain the most recent version of Firefox. Older but still
supported releases will be available in www/firefox3 and www/firefox35.
In order to update to Firefox 3.6 please delete your older installed
version of Firefox first and install www/firefox afterwards. Please
make sure all your addons are compatible with Firefox 3.6 and backup
your ~/.mozilla directory prior to the first launch of Firefox 3.6.
Note that in order to use Java with Firefox 3.6, you need to install
java/openjdk6, build it with the "WEB" option enabled and use the Iced
Tea plugin. To achieve the latter, each user needs to create a
symlink to the Icedtea plugin as described in the Browsers/Firefox and
Java[tm] Plugin section in the handbook:
ln -s /usr/local/openjdk6/jre/lib/IcedTeaPlugin.so \
$HOME/.mozilla/plugins
20100207:
AFFECTS: users of Mesa3D libraries and x11-drivers/xf86-video-nouveau
AUTHOR: nork@FreeBSD.org
If you want to use Mesa3D 7.6.1 and libdrm 2.4.17 rather than 7.4.4
and 2.4.12, you must define WITHOUT_NOUVEAU global macro, at least,
enabled on graphics/libGL*, graphics/libglut, graphics/dri,
graphics/mesa-demos, and graphics/libdrm. And please give up using
x11-drivers/xf86-video-nouveau.
At this time, I cannot enable latest Mesa3D and libdrm, because they
break xf86-video-nouveau. But old (current?) Mesa3D and libdrm do not
break any drivers.
AMD Radeon HD 2xxx/3xxx/4xxx users: If you use AMD Radeon HD [234]xxx
series, please define WITHOUT_NOUVEAU global macro. You can then use
OpenGL Hardware Accelerator feature on these series.
20100206:
AFFECTS: users of net/samba4-devel
AUTHOR: timur@FreeBSD.org
Default configuration file was moved to ${LOCALBASE}/etc/smb4.conf to
avoid conflicts with the installed net/samba3?. Also, userland utils
are not installed by default, which should also help with the parallel
setup of Samba3 and Samba4.
20100205:
AFFECTS: users of Qt 3 and KDE 3
AUTHOR: itetcu@FreeBSD.org
When building qt33 and kdelibs3 (at least), while they are installed,
because of -L/usr/local/lib being passed too soon, the currently installed
libraries are used instead of the ones from the build. This makes the
build fail if you updated any of the libraries these Qt/KDE libraries are
linked against (e.g. libjpeg).
For the moment the workaround, when you get to this, is to move the old lib
out of the way, e.g.:
mv /usr/local/lib/libqt-mt.so /usr/local/lib/libqt-mt.so.old && \
cd /usr/ports/x11-toolkits/qt33/ && make && \
mv /usr/local/lib/libqt-mt.so.old /usr/local/lib/libqt-mt.so && \
portmaster -C x11-toolkits/qt33 (or portupgrade -w qt-33\*) ...
20100205:
AFFECTS: users of lang/perl*
AUTHOR: skv@FreeBSD.org
Default version of Perl was bumped to 5.10.
If you already have lang/perl5.8 installed, and want to switch to
lang/perl5.10 please follow instructions in the entry 20090328 in this
file.
20100205:
AFFECTS: users of net/samba34
AUTHOR: timur@FreeBSD.org
This port was developed with the generous help of Florent Brodin.
The default passdb backend has been changed to `tdbsam'! That breaks
existing setups using the `smbpasswd' backend without explicit
declaration! Please use `passdb backend = smbpasswd' if you would like
to stick to the `smbpasswd' backend or convert your smbpasswd entries
using e.g. `pdbedit -i smbpasswd -e tdbsam'.
The `tdbsam' backend is much more flexible concerning per user
settings like `profile path' or `home directory' and there are some
commands which do not work with the `smbpasswd' backend at all.
20100130:
AFFECTS: users of audio/sdl_mixer and graphics/sdl_image
AUTHOR: mva@FreeBSD.org
The SDL_mixer and SDL_image libraries have new shared library versions.
Please rebuild all ports that depend on them.
If you use portmaster:
portmaster -r sdl_mixer-
portmaster -r sdl_image-
If you use portupgrade:
portupgrade -fr audio/sdl_mixer
portupgrade -fr graphics/sdl_image
20100125:
AFFECTS: users of audio/openal and graphics/openal-soft
AUTHOR: mva@FreeBSD.org
The default OpenAL implementation was switched to audio/openal-soft.
To update all ports correctly, the following steps have to be performed.
pkg_delete -f openal-\*
If you use portmaster:
portmaster -o audio/openal-soft audio/openal
portmaster -r audio/openal-soft
If you use portupgrade:
portupgrade -ro audio/openal audio/openal-soft
If you want to stick with audio/openal, please specify the following ports
make flag within /etc/make.conf (or an appropriate configuration file for
your ports):
WANT_OPENAL=si
20100122:
AFFECTS: users of sysutils/policykit and sysutils/polkit
AUTHOR: gnome@FreeBSD.org
Due to a recent change in sysutils/policykit, both sysutils/policykit,
and sysutils/polkit need to be rebuilt, but in a certain order. First,
upgrade sysutils/policykit to 0.9_6. Then, force rebuild and reinstall
of sysutils/polkit. If you do not do this, applications which depend
on polkitd will fail.
20100113:
AFFECTS: users of emulators/virtualbox
AUTHOR: beat@FreeBSD.org
Port has been renamed to emulators/virtualbox-ose to reflect that we are
using the OSE version. A separate port for the kernel modules has been
created: emulators/virtualbox-ose-kmod.
Please see http://wiki.freebsd.org/VirtualBox for update instructions.
20100107:
AFFECTS: users of security/openvpn*
AUTHOR: mandree@FreeBSD.org
security/openvpn has been moved to security/openvpn20 and upgraded to 2.0.9.
security/openvpn has been upgraded to 2.1.1, and security/openvpn-devel has
been removed.
Regular upgrades of the security/openvpn port should succeed without
manual intervention, but if you want to stick to openvpn 2.0 or if you
had been using openvpn-devel, manual intervention is needed, as
follows:
If you'd been using the security/openvpn-devel port, please use one of
these commands for upgrading:
portmaster -m-DDISABLE_CONFLICTS -o security/openvpn security/openvpn-devel
portupgrade -m-DDISABLE_CONFLICTS -o security/openvpn security/openvpn-devel
If you want to stick to openvpn 2.0, please use one of these two
upgrade commands:
portmaster -m-DDISABLE_CONFLICTS -o security/openvpn20 security/openvpn
portupgrade -m-DDISABLE_CONFLICTS -o security/openvpn20 security/openvpn
20100106:
AFFECTS: users of devel/websvn
AUTHOR: miwi@FreeBSD.org
The default install directory for websvn has changed from
${PREFIX}/www/data/websvn to ${PREFIX}/www/websvn.
If you are updating from a previous version, to preserve your settings
and data, please do the following:
mv /usr/local/www/data/websvn /usr/local/www
Then update as usual.
20091227:
AFFECTS: users of sysutils/grok
AUTHOR: Wesley Shields <wxs@FreeBSD.org>
The sysutils/grok port has been completely re-written. Configuration files
will need to be reviewed. Also, the RC script has been removed until it can
be made to work with the new version.
20091226:
AFFECTS: users of net-mgmt/ndoutils
AUTHOR: pgollucci@FreeBSD.org
When upgrading you'll need to run ./upgradedb; see UPGRADING file.
20091214:
AFFECTS: users of net/grdc
AUTHOR: avl@FreeBSD.org
Grdc has been renamed to Remmina upstream, and the port was also renamed
to reflect this. After installing remmina port you will need to download
the ``grdc2remmina.sh'' script and run it as your normal user(s) that
have ~/.grdc. The script will only create ~/.remmina directory and move
grdc config files to the new path; it does not affect anything else.
$ fetch http://people.freebsd.org/~avl/script/grdc2remmina.sh
$ sh grdc2remmina.sh
20091213:
AFFECTS: users of net-mgmt/zabbix, net-mgmt/zabbix-agent
AUTHOR: Jim Riggs <ports@christianserving.org>
In order to simplify configuration and better separate the different
components of Zabbix, the former zabbix port has been split into three:
zabbix-server, zabbix-proxy, and zabbix-frontend. Each component has
distinct functionality and may be installed independently on separate
systems. The existing zabbix-agent port remains.
Additionally, the new zabbix-frontend port now (correctly) installs the
PHP frontend in PREFIX/www/zabbix. The old zabbix port installed the
files in PREFIX/share/zabbix/php. Web server configurations must be
updated accordingly.
Finally, Zabbix has been updated to version 1.8. Not everyone may be
able to upgrade from version 1.6 immediately, though, so 1.6.8 versions
of the ports are also available as zabbix16-server, zabbix16-proxy,
zabbix16-agent, and zabbix16-frontend.
20091206:
AFFECTS: users of emulators/qemu
AUTHOR: nox@FreeBSD.org
The port has been updated to 0.11.1, which no longer enables kqemu by
default (if built with KQEMU knob on), now you also have to explicitly
pass -enable-kqemu (or -kernel-kqemu as with the previous versions)
if you want to use it. Also note the 0.11 stable branch is the last
qemu branch that still supports kqemu, so if you depend on reasonably
fast emulation on FreeBSD you should start looking for alternatives
some time soon. (VirtualBox?)
20091120:
AFFECTS: users of mail/postfixadmin
AUTHOR: Terry Sposato <tabmow@freenode.net>
Due to a bug in the previous postfixadmin port, existing users need to
backup their config.inc.php before they upgrade to postfixadmin-2.3 or
later and put it in place after the upgrade is complete.
20091120:
AFFECTS: users of security/f-prot
AUTHOR: Tim Bishop <tdb@FreeBSD.org>
The main f-prot command is now named fpscan. Virus definitions are
updated using the fpupdate command. fpupdate will automatically run
from periodic every day. To disable set the following option in
/etc/periodic.conf:
fpupdate_enable="NO"
The f-prot port now only works on i386.
20091118:
AFFECTS: users of java/jboss5
AUTHOR: Jonathan Chen <jonc@chen.org.nz>
The JBoss directory structure has been reorganised to follow hier(7)
guidelines more closely; in particular, transient and deployment files
were moved to /var/jboss5, thus allowing /usr to be read-only.
20091118:
AFFECTS: users of www/redmine
AUTHOR: Bernhard Froehlich <decke@bluelife.at>
After the upgrade you need to generate a session secret before restarting
the application. This is to protect you from cross-site request forgery.
From your Redmine directory, simply run the following command once:
# rake config/initializers/session_store.rb
then upgrade as usual:
# rake db:migrate RAILS_ENV=production
20091114:
AFFECTS: users of emulators/win4bsd
AUTHOR: Mario S F Ferreira <lioux@FreeBSD.org>
The new port now depends on emulators/kqemu-kmod instead of installing
its own version. Therefore, you should make sure that no other kqemu.ko
modules are installed:
# pkg_delete -f win4bsd\*
# rm -f /boot/kernel/kqemu.ko
# pkg_delete -f kqemu-kmod\*
# portinstall emulators/win4bsd
Do not forget to enable kqemu on rc.conf since win4bsd will not work
without it.
20091018:
AFFECTS: users of databases/mysql54-server
AUTHOR: Alex Dupre <ale@FreeBSD.org>
After the upgrade the server may fail to start due to changes in the
default values of innodb_log_files_in_group and innodb_log_file_size,
which differ from those in earlier 5.4 releases.
You should discard the old InnoDB log files and let MySQL 5.4.3 create
new ones. It is necessary to shut down your current server cleanly so
that no outstanding transaction information remains in the log.
See here: http://dev.mysql.com/doc/refman/5.4/en/news-5-4-3.html
20091014:
AFFECTS: users of mail/heirloom-mailx
AUTHOR: Alexander Logvinov <avl@FreeBSD.org>
Since SourceForge switched to the new File Release System,
mail/heirloom-mailx has wrong package name. All users who have
mail/heirloom-mailx installed after 22 August 2009 should run the
following commands:
# pkg_delete "\-mailx-12.4_1"
or
# rm -r /var/db/pkg/-mailx-12.4_1
# rm -r /var/db/ports/-mailx
# cd /usr/ports/mail/heirloom-mailx && make install clean
20090921:
AFFECTS: users of archivers/lzmautils, archivers/lzmautils-devel
AUTHOR: Christian Weisgerber <naddy@FreeBSD.org>
The XZ Utils distribution has superseded LZMA Utils, so the xz port has
been added and the lzmautils ports have been removed. To perform the
move, run one of the following commands:
If using portupgrade:
# portupgrade -o archivers/xz lzmautils\*
If using portmaster:
# portmaster -o archivers/xz archivers/lzmautils
or
# portmaster -o archivers/xz archivers/lzmautils-devel
as applicable.
20090919:
AFFECTS: users of mail/postfix-postfwd
AUTHOR: Sahil Tandon <sahil@tandon.net>
The recipient rate-limiting feature is now called via rcpt() command
instead of with mrcpt() as in previous versions. Make sure to update
your postfwd.conf if you use this feature.
20090917:
AFFECTS: users of www/epiphany, x11/yelp, graphics/librsvg2,
x11/toolkits/py-gnome-extras, and www/epiphany-extensions
AUTHOR: gnome@FreeBSD.org
The default Gecko provider has been changed from www/firefox to
www/libxul. Firefox 2.x is now marked FORBIDDEN for security reasons,
and libxul is new, stable, and preferred Gecko provider. Libxul uses
the same Gecko engine as Firefox 3.0.x.
Some ports may fail to upgrade or run when both www/firefox and libxul
are installed on the same system. To make sure everything runs smoothly,
uninstall www/firefox, then install libxul, then upgrade the affected
ports.
20090915:
AFFECTS: users of sysutils/gosa
AUTHOR: Denis Shaposhnikov <dsh@wizard.volgograd.ru>
Please read the following:
https://oss.gonicus.de/labs/gosa/wiki/DocumentationInstallingUpdatingGOsa
before upgrading this port. And don't forget to check your slapd.conf
because gosa scheme files were changed. Should you have any problems
during LDAP migration step, try to restart your PHP process.
20090913:
AFFECTS: users of www/ikiwiki
AUTHOR: Henrik Brix Andersen <brix@FreeBSD.org>
In order to fix a performance bug, all wikis need to be rebuilt on
upgrade to version 3.1415926.
20090912:
AFFECTS: users of ports that have set USE_FORTRAN=yes
AUTHOR: gerald@FreeBSD.org
Ports that are built using the Fortran frontend of GCC (aka gfortran)
will now use lang/gcc44 as the default compiler.
20090911:
AFFECTS: users of lang/perl5.10
AUTHOR: skv@FreeBSD.org
lang/perl5.10 has been updated to 5.10.1. You should update everything
that depends on perl. The easiest way to do that is to use
"perl-after-upgrade" script supplied with lang/perl5.10. Please see its
manual page for details.
If you want to switch to lang/perl5.10 from lang/perl5.8 please follow
instructions in the entry 20090328 in this file.
20090910:
AFFECTS: users of www/rubygem-rails
AUTHOR: pgollucci@FreeBSD.org
Rails has been updated to 2.3.4. As always, make sure you check the
changes at http://weblog.rubyonrails.org/.
20090909:
AFFECTS: users of gstreamer-plugins-bad gstreamer-plugins-good
AUTHOR: kwm@FreeBSD.org
Due to the move of several plugins from gstreamer-plugins-bad to
gstreamer-plugins-good, it is necessary to update gstreamer-plugins-bad
first:
portupgrade -R gstreamer-plugins-bad
or, using portmaster:
portmaster gstreamer-plugins-bad
After this step, the normal upgrade procedure can be used.
20090831:
AFFECTS: users of emulators/linux-systemsimcell
AUTHOR: stast@bsdportal.ru
The port emulators/linux-systemsimcell has been updated to 3.1.25.
Systemsimcell emulator now has a new dependency: x11-toolkits/linux-f10-blt.
So you need to switch to linux-f10 ports in order to use 3.1.25 version.
20090828:
AFFECTS: users of mail/dovecot and mail/dovecot-sieve
AUTHOR: yds@CoolRat.org
dovecot-sieve has been updated to a new implementation compatible with
dovecot 1.2.x. For details of what this means please refer to:
http://wiki.dovecot.org/LDA/Sieve/Dovecot#Migration_from_CMUSieve
20090827:
AFFECTS: users of www/mediawiki
AUTHOR: miwi@FreeBSD.org
www/mediawiki version is 1.15.1 now. 1.14.1 version was preserved as
www/mediawiki114 port.
20090818:
AFFECTS: users of security/gnutls and any port that depends on it
AUTHOR: novel@FreeBSD.org
GnuTLS has been updated to 2.8.3 and all shared libraries versions have
been bumped. So you need to rebuild all applications that depend on
gnutls. Do something like:
portupgrade -rf gnutls
20090816:
AFFECTS: users of astro/celestia and KDE
AUTHOR: danfe@FreeBSD.org
Celestia can now be compiled with KDE 3 frontend (you can enable it with
CELESTIA_UI=kde when building). It is very feature-rich, as it offers
contextual menus, toolbars, KDE integration, internationalization,
bookmarks, etc. If you use Celestia and KDE as your desktop, you might
want to rebuild the port so it integrates into your environment better.
20090815:
AFFECTS: users of mail/dovecot
AUTHOR: wxs@FreeBSD.org
Dovecot has been updated to version 1.2.3. The configuration file has
changed significantly. Please see http://wiki.dovecot.org/Upgrading/1.2
for details of what this means.
20090804:
AFFECTS: users of multimedia/phonon*, x11/kdebase4*, deskutils/kdepim4
AUTHOR: kde@FreeBSD.org
KDE 4 has been updated to version 4.3.0. KDE now uses qt4-phonon;
multimedia/phonon and multimedia/phonon-gstreamer are deprecated in
favor of their qt4 equivalents. You can still use multimedia/phonon-xine
however. A number of files have been moved between packages. The
recommended update procedure is to delete phonon, phonon-gstreamer,
kdebase-*4*, kdepim-4*, then update ports as usual and install desired
KDE 4 ports:
# pkg_delete -f phonon-4\* phonon-gstreamer\* kdebase-\*4\* kdepim-4\*
# portmaster -a (or portupgrade -a)
# cd ${PORTSDIR}/x11/kde4 && make config && make install clean
20090804:
AFFECTS: users of devel/dbus-qt4, devel/qt4-designer
AUTHOR: kde@FreeBSD.org
Qt 4 ports have been updated to 4.5.2. The recommended update procedure
is to delete qt4-dbus and qt4-designer, then update ports as usual.
Install qt4-designer if needed.
20090802:
AFFECTS: users of devel/libtool15 and devel/libltdl15
AUTHOR: mezz@FreeBSD.org
The devel/libtool15 and devel/libltdl15 ports have been moved to libtool22
and libltdl22, respectively, then updated to 2.2.6a. You will need to run
portmaster or portupgrade to properly perform the upgrade:
If using portmaster:
portmaster -o devel/libtool22 devel/libtool15
portmaster -o devel/libltdl22 devel/libltdl15
If using portupgrade:
portupgrade -o devel/libtool22 libtool-1.5\*
portupgrade -o devel/libltdl22 libltdl-1.5\*
After that, you will need to rebuild all ports that depend on libltdl.
Since all dependent ports' PORTREVISIONs have been bumped, you can run
portupgrade or portmaster with `-a' option to complete the upgrade.
20090801:
AFFECTS: users of x11-drivers/xf86-video-nouveau
AUTHOR: rnoland@FreeBSD.org
An updated libdrm and xf86-video-nouveau have been committed. These
update the API version to 0.0.14 and if you are using DRM you will need
to update your kernel patch. See pkg-message in xf86-video-nouveau for
details.
20090730:
AFFECTS: users of www/tomcat6
AUTHOR: ale@FreeBSD.org
Tomcat has been updated to 6.0.20 release and the installation directory
is changed from apache-tomcat6.0 to apache-tomcat-6.0. Backup your
configuration files before updating Tomcat, since the previous port will
delete them on deinstall.
20090729:
AFFECTS: users of sysutils/heartbeat
AUTHOR: ports@encarnate.com
Heartbeat has been upgraded to the 2.1.4 release. Older configurations
based on version 1 should still work. Read more about the new features
and possible configuration changes at the following URLs:
http://clusterlabs.org/wiki/Documentation (Configuration 0.6 Explained)
http://www.linux-ha.org/GettingStartedRevisedV2
20090724:
AFFECTS: users of www/rubygem-rails
AUTHOR: pgollucci@FreeBSD.org
Rails has been updated to 2.3.3. As always, make sure you check the
changes at http://weblog.rubyonrails.org/.
20090720:
AFFECTS: users of net/openldap24-{client,server}
AUTHOR: delphij@FreeBSD.org
OpenLDAP has been upgraded to 2.4.17, which requires a shared library
version bump. Therefore, you need to reinstall all ports that depend on
it. Please do something like:
# portupgrade -fr net/openldap24-client
or
# portmaster -r net/openldap24-client
20090719:
AFFECTS: users of graphics/jpeg
AUTHOR: dinoex@FreeBSD.org
The IJG jpeg library has been updated to version 7.0. Please rebuild all
ports that depend on it.
If you use portmaster:
portmaster -r jpeg-
Or, if you would prefer a more gradual approach:
portmaster -w jpeg- (Check the man page for more information)
If you use portupgrade:
portupgrade -fr graphics/jpeg
20090704:
AFFECTS: users of www/yaws
AUTHOR: olgeni@FreeBSD.org
The default configuration file path was changed to ${LOCALBASE}/etc/yaws
in version 1.83.
Please remember to update your configuration before upgrading.
20090628:
AFFECTS: users of www/firefox3-devel
AUTHOR: gecko@FreeBSD.org
If your Firefox crashes with the following message while viewing a
HTML5 page: "Bad system call (core dumped)" you need to load the sem
module (kldload sem).
To load sem module on every boot, put the following into your
/boot/loader.conf:
sem_load="YES"
20090624:
AFFECTS: users of mail/crm114
AUTHOR: glebius@cell.glebius.int.ru
The new version of crm uses a new format for css files. Old files should
be rebuilt or started from scratch. If not done, crm114 will lose any
mail processed via it.
20090620:
AFFECTS: users of gstreamer-plugins-bad, gstreamer-plugins-good, and
gstreamer-plugins-ugly ports
AUTHOR: kwm@FreeBSD.org
Due to the move of several plugins from gstreamer-plugins-bad to
gstreamer-plugins-good and gstreamer-plugins-ugly, it is necessary to
update gstreamer-plugins-bad first:
portupgrade -R gstreamer-plugins-bad
or, using portmaster:
portmaster gstreamer-plugins-bad
20090619:
AFFECTS: users of net-p2p/transmission-daemon
AUTHOR: mezz@FreeBSD.org
The UID/GID of transmission has been changed from 919 to 921. The data
configure has been changed from ${PREFIX}/etc/transmission/home/.config
to ${PREFIX}/etc/transmission/home. To update the UID/GID:
# pw groupmod transmission -g 921
# pw usermod transmission -u 921 -g 921
20090618:
AFFECTS: users of www/p5-Catalyst
AUTHOR: pgollucci@FreeBSD.org
Most applications and plugins should run unaltered on Catalyst 5.80.
However, a lot of refactoring work has taken place, and several changes
have been made which could cause incompatibilities. If your application
or plugin is using deprecated code, or relying on side effects, then you
could have issues upgrading to this release.
http://search.cpan.org/~mramberg/Catalyst-Runtime-5.80005/lib/Catalyst/Upgrading.pod
20090617:
AFFECTS: users of emulators/virtualbox
AUTHOR: beat@FreeBSD.org
The GID of virtualbox has changed due to a conflict with databases/couchdb.
Update GID of vboxusers after updating the port:
# pw groupmod vboxusers -g 920
20090617:
AFFECTS: users of math/fftw3 math/fftw3-long math/fftw3-float
AUTHOR: db@FreeBSD.org
The Fortran option has removed from fftw3 and moved into slave ports,
math/fftw3-fortran math/fftw3-long-fortran and math/fftw3-float-fortran.
20090615:
AFFECTS: users of x11-wm/enlightenment and x11-wm/enlightenment-devel
AUTHOR: gahr@FreeBSD.org
The development version of the Enlightenment window manager, a.k.a. E17,
was moved from x11-wm/enlightenment-devel to x11-wm/enlightenment. The
DR16 branch now resides in x11-wm/e16.
20090615:
AFFECTS: users of multimedia/mlt++
AUTHOR: beat@FreeBSD.org
The multimedia/mlt++ port was incorporated into multimedia/mlt since
version 0.4.2. Delete multimedia/mlt++ first and then install/update
multimedia/mlt.
20090613:
AFFECTS: users of www/hudson
AUTHOR: hq@FreeBSD.org
Hudson is now running as a standalone process and no longer relies on
Apache Tomcat. As such, it should now be configured by defining
hudson_* variables in rc.conf. See comments from rc.d script for further
details.
The default setup is using the same port numbers and HTTP URL prefix as
before in order to reduce the effort of upgrading the port. Hence, it
may conflict with some running Apache Tomcat instance. To fix this
problem, you may either deinstall www/tomcat6, or use the following
settings in hudson_args from /etc/rc.conf:
--httpPort=??? --ajp13Port=???
20090611:
AFFECTS: users of www/apache22
AUTHOR: pgollucci@FreeBSD.org
Two rc.d scripts have been renamed:
apache22.sh -> apache22
htcacheclean.sh -> htcacheclean
You'll need to update any crons wrappers, etc. for the new paths.
20090608:
AFFECTS: users of lang/python* and py-*
AUTHOR: miwi@FreeBSD.org
The default version of Python has been changed from 2.5.x to 2.6.x.
If you have 2.5.x installed, perform an upgrade of lang/python25 to
lang/python26 with one of the following commands:
If using portupgrade:
# portupgrade -o lang/python26 lang/python25
If using portmaster:
# portmaster -o lang/python26 lang/python25
If you want to retain 2.5.x as default Python version, set the
PYTHON_DEFAULT_VERSION variable to 'python2.5' (without quotes) in
/etc/make.conf, then go to lang/python and perform the following
command:
# portupgrade -R python
Once the installed Python has been updated to 2.6, by using the
method above, it is required to run the upgrade-site-packages target in
lang/python to assure that site-packages are made available to the new
Python version.
If using portupgrade:
# cd /usr/ports/lang/python && make upgrade-site-packages
If using portmaster:
# cd /usr/ports/lang/python && make upgrade-site-packages -DUSE_PORTMASTER
The portmaster case can take quite some time to complete due to the lack of
cached information that the portupgrade suite uses (specifically pkg_which).
This is not the fault of portmaster.
20090606:
AFFECTS: users of java/eclipse
AUTHOR: glewis@FreeBSD.org
The update to 3.4.2 changes the location of the metadata for eclipse to
be more in line with what is used on other platforms. This means that
after the update plugins that have been installed by a user with the
built in Update Manager will need to be reinstalled.
20090605:
AFFECTS: users of mail/postfix
AUTHOR: itetcu@FreeBSD.org
Version 2.6.1 introduced a POLA violation by expecting aliases.db to be
in /etc/mail/aliases.db (not /etc/aliases.db). With this version the
location is reverted to the right place.
If you updated your installation to 2.6.1 you need to run newaliases(1)
again after you installed 2.6.2.
20090603:
AFFECTS: users of japanese/font-mplus-ipa (and old japanese/ipa-ttfonts)
AUTHOR: hrs@FreeBSD.org
IPAUIGothic has been updated to a version included in IPA font
version 002.03 and added as a separated port
"japanese/font-ipa-uigothic". And the font-mplus-ipa has been
updated to remove the old IPAUIGothic.
Thus the old ipa-ttfonts is almost equivalent to font-ipa +
font-ipa-uigothic + font-mplus-ipa. Note that these three packages
have different licenses from each other.
20090601:
AFFECTS: users of devel/cvs-devel
AUTHOR: wxs@FreeBSD.org
cvs-devel no longer installs /bin/cvs and /bin/cvsbug. These are now
installed into ${PREFIX}/bin. If you wish to use these please be aware
of this change with respect to your path.
20090531:
AFFECTS: users of devel/viewvc
AUTHOR: pgollucci@FreeBSD.org
viewvc.conf and templates are not compatible to 1.0.x version, even the
database scripts have changed. For details see:
http://viewvc.tigris.org/source/browse/*checkout*/viewvc/trunk/docs/upgrading-howto.html
20090530:
AFFECTS: users of Japanese and Chinese fonts
AUTHOR: hrs@FreeBSD.org
Ports for Japanese fonts have been reorganized in the following way:
japanese/ipa-ttfonts -> japanese/font-mplus-ipa
japanese/ipa-ttfonts -> japanese/font-ipa
japanese/kochi-ttfonts -> japanese/font-kochi
japanese/mplusfonts -> japanese/font-mplus
japanese/sazanami-ttf -> japanese/font-sazanami
japanese/shinonome -> japanese/font-shinonome
japanese/umefont -> japanese/font-ume
japanese/vlgothic -> japanese/font-vlgothic
While basically these are port name changes for consistency,
installation directories are also changed:
font files -> ${PREFIX}/share/${PORTNAME}/*
symlinks -> ${PREFIX}/share/fonts/{TTF,OTF,fontname,...}/*
symlinks -> ${PREFIX}/lib/X11/fonts/{TTF,OTF,misc,fontname,...}/*
A user-visible one is that the directory name "TrueType" is replaced
with "TTF".
Also, japanese/font-std and chinese/font-std have been added as
standard fonts used in the Ports Collection. Currently they
contain:
std.ja_JP/Mincho
std.ja_JP/Gothic
std.ja_JP/Ryumin-Light
std.ja_JP/GothicBBB-Medium
std.zh_CN/STHeiti-Regular
std.zh_CN/STSong-Light
std.zh_CN/MSung-Light
std.zh_CN/MHei-Medium
under ${PREFIX}/share/fonts/. They are just symlinks to
corresponding font files. The symlink names are based on popular
PostScript font names.
Applications should refer the font files via XLFD or fontconfig
first. If they need a direct reference to the font file, please use
files in std.*/*. This is because direct reference to a specific
font name in an application configuration file makes the maintenance
difficult when the font file name is changed, for example.
20090516:
AFFECTS: users of devel/viewvc
AUTHOR: pgollucci@FreeBSD.org
OPTION APACHE2 has been changed to APACHE (WITH_APACHE)
WITH_APACHE2 is deprecated and is being removed.
APACHE_PORT will be pulled in when WITH_APACHE is selected
20090516:
AFFECTS: users of print/cups-base and portupgrade
AUTHOR: dinoex@FreeBSD.org
The print/cups port has been split into multiple ports. If upgrading
from 1.3.10_1 and below, you must remove the installed version first.
20090412:
AFFECTS: users of sysutils/bacula-server
AUTHOR: wxs@FreeBSD.org
sysutils/bacula-server now uses a new catalog format. If upgrading
from the old version please use the update_bacula_tables script
provided with the port before restarting bacula.
20090410:
AFFECTS: users of www/trac-email2trac
AUTHOR: brooks@FreeBSD.org
bin/email2trac.py and bin/delete_spam.py are now installed without the
.py extension to make the suid run_email2trac work and match the online
documentation. If you were using them in scripts or alias entries, you
will need to update paths accordingly.
20090401:
AFFECTS: users of Fedora 8 Linux infrastructure ports
AUTHOR: bsam@FreeBSD.org
ATTENTION! Those ports are not default for any version of FreeBSD for now
and may be used with FreeBSD versions 7.2 and above (8-CURRENT is better)
using compat.linux.osrelease=2.6.16 and linux_base-f8. Please, note that
2.6.16 is not fully supported on 7.x (ex., some syscalls are missing
and cannot be MFCed due to a native FreeBSD ABI breakage).
For more information about transition please read item "20070327: AFFECTS:
users of emulators/linux_base-fc6". That note may be used for upgrading
to linux_base-f8 and Fedora 8 Linux infrastructure ports as well.
If you want to switch to linux-f8 ports, please define at /etc/make.conf:
OVERRIDE_LINUX_BASE_PORT=f8
OVERRIDE_LINUX_NONBASE_PORTS=f8
20090328:
AFFECTS: users of lang/perl*
AUTHOR: skv@FreeBSD.org
lang/perl5.10 is out. If you want to switch to it from, for example
lang/perl5.8, that is:
Portupgrade users:
0) Fix pkgdb.db (for safety):
pkgdb -Ff
1) Reinstall new version of Perl (5.10):
env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.10 -f perl-5.8.\*
2) Reinstall everything that depends on Perl:
portupgrade -fr perl
Portmaster users:
env DISABLE_CONFLICTS=1 portmaster -o lang/perl5.10 lang/perl5.8
portmaster -r perl-
Note: If the "perl-" glob matches more than one port you will need to
specify the name of the Perl directory in /var/db/pkg explicitly.
20090327:
AFFECTS: users of security/clamav
AUTHOR: garga@FreeBSD.org
After version 0.95 clamav-milter does not accept parameters by command
line. If you are using $clamav_milter_flags on rc.conf to set its
parameters you will need to move to new ${PREFIX}/etc/clamav-milter.conf.
20090319:
AFFECTS: users of shells/bash3
AUTHOR: ehaupt@FreeBSD.org
With the addition of shells/bash version 4.x, people wanting to stick
with bash 3.x should perform the following update:
$ portupgrade -f -o shells/bash3 bash
20090318:
AFFECTS: users of www/suphp
AUTHOR: yzlin@cs.nctu.edu.tw
The suPHP port has been upgraded to 0.7.x. This new version of suPHP has
some new features and changes for the configuration file:
- Multiple path (with patterns) & variable substitution support for
docroots
- Double-quoted strings at section '[handlers]'
ex. application/x-httpd-php="php:/usr/local/bin/php-cgi"
These changes may lead to internal server error if without modifications
of the configuration file from previous version.
20090316:
AFFECTS: users of www/geeklog
AUTHOR: beat@FreeBSD.org
To follow the standards this port has received a small reworking.
WWW_DIR (that defaulted to PREFIX/www/data/geeklog) is deprecated,
use WWWDIR (defaults to PREFIX/www/geeklog).
20090316:
AFFECTS: users of net-im/ejabberd
AUTHOR: skylord@linkline.ru
ejabberd's UID and GID have changed (PR ports/105122). Users are advised
to check all configuration files and data in /var/spool/ejabberd to
ensure everything has the correct owner/group.
20090316:
AFFECTS: users of sysutils/lire
AUTHOR: edwin@FreeBSD.org
Lire now requires DBD::SQLite, which uses SQLite 3.0. This means that the
Lire database format has changed. If you have one or more old Lire stores,
you will need to convert each of them from SQLite2 format to SQLite3 like
this:
$ sqlite oldstore.db .dump | sqlite3 newstore.db
This assumes that you have both SQLite2 and SQLite3 installed on your
system, and that the names of the command line interface for the old and
new version are `sqlite' and `sqlite3' respectively (this is at least
correct for Fedora).
20090310:
AFFECTS: users of multimedia/mythtv
AUTHOR: glarkin@FreeBSD.org
The upgrade from version 0.20 to version 0.21 should be transparent.
Any changes to the database structure should be applied automatically.
However, it is strongly recommended that you back up your database before
installing a new version of MythTV.
For example:
$ mysqldump -u mythtv -pmythtv mythconverg -c > mythtv_backup.sql
To restore (assuming that you've dropped the database):
$ mysql -u root
mysql>create database mythconverg;
mysql>exit
$ mysql -u mythtv -pmythtv mythconverg < mythtv_backup.sql
20090309:
AFFECTS: users of devel/libusb on CURRENT
AUTHOR: stas@FreeBSD.org
FreeBSD libusb20 was renamed to libusb in r189585 and thus, being fully
compatible with libusb20, replaces devel/libusb on HEAD. devel/libusb
should not be used on these systems. Users of libusb-dependent ports
are advised to remove libusb package from their systems, and rebuild all
libusb dependencies. One of the possible ways to achieve this is
listed below:
# set tempfile=`mktemp /tmp/usbports.XX`
# pkg_info -qR /var/db/pkg/libusb-* > ${tempfile}
# pkg_delete -f /var/db/pkg/libusb-*
# cat ${tempfile} | xargs portupgrade -f
# rm -f ${tempfile}
20090309:
AFFECTS: users of multimedia/phonon
AUTHOR: kde@FreeBSD.org
multimedia/phonon port has been split into phonon itself, phonon-xine,
and phonon-gstreamer backends. After updating phonon port you have
to install at least one backend; phonon-xine backend is recommended
for KDE.
20090308:
AFFECTS: users of emulators/qemu
AUTHOR: nox@FreeBSD.org
The port has been updated to 0.10.0, which now uses the newer
(incompatible) kqemu-kmod-devel port that now also works for the
32 bit "qemu" executable on amd64. If you upgrade emulators/qemu
with the KQEMU knob on, you have to
# pkg_delete kqemu-kmod-1\*
the old kqemu version first if it is installed.
20090304:
AFFECTS: users of comms/py-gammu
AUTHOR: bsam@FreeBSD.org
The port comms/py-gammu was incorporated into comms/gammu since
1.23.0. Delete comms/py-gammu first and then deinstall/reinstall
comms/gammu with option WITH_PYTHON_GAMMU=YES.
20090304:
AFFECTS: users of x11-wm/xfce4
AUTHOR: oliver@FreeBSD.org
When upgrading from Xfce 4.4 to 4.6 make sure you uninstall the following
ports:
x11/libxfce4mcs
sysutils/xfce4-mcs-manager
sysutils/xfce4-mcs-plugins
x11-themes/xfce4-icon-theme
You may uninstall them before you start the upgrade procedure (preferred)
or even afterwards when the upgrade went fine.
Please also note that Xfce 4.6 does not come with an icon theme any more.
Xfce 4.6 now depends on the Tango theme which is now installed by default.
The default installation of Xfce is also adjusted to use this icon theme
instead of the Xfce 4.4 standard Rodent theme. If you are upgrading from
Xfce 4.4 to 4.6 you probably still have the Rodent theme selected. This
will lead to several "missing" icons when starting up Xfce.
Make sure to switch as well to the Tango theme. To do this just open the
Settings Manager and select Appearance. Inside the Appearance dialog
switch to the Icons tab and select the "Tango" entry in the list on the
left side of the Icons tab.
For enabling the Reboot/Shutdown functionality of Xfce's logout dialog
please read the note which gets printed out after the installation of
x11-wm/xfce4 about how to configure PolicyKit.
20090223:
AFFECTS: users of Tcl/Tk
AUTHOR: mm@FreeBSD.org
The default version of Tcl/Tk has been changed from 8.4 to 8.5.
To restore old behavior and prefer using Tcl 8.4 with supported ports set
WITH_TCL_VER=84 in /etc/make.conf. This has no effect on ports that have
USE_TCL=yes or USE_TK=yes. They stick to the new default version and have
to be updated by their maintainers to support other versions than default.
20090218:
AFFECTS: users of www/zend-framework
AUTHOR: glarkin@FreeBSD.org
A local file inclusion (LFI) vulnerability was fixed in Zend Framework
1.7.5. The LFI was present in the Zend_View::render() method, and
allowed inclusion of scripts with relative path names, e.g.
"../../../my/script/dir/myscript.php".
If the script path name is hard-coded into the application and is not
generated by user input, the vulnerability does not apply. Because of
this exception, the Zend Framework team has added a flag to disable
the LFI protection in the render() method.
Full details of the vulnerability, whether it applies to your
application and how to disable the LFI protection in the render()
method can be found here:
http://framework.zend.com/manual/en/zend.view.migration.html
20090216:
AFFECTS: users of net/openldap24-{client,server}
AUTHOR: delphij@FreeBSD.org
OpenLDAP has been upgraded to 2.4.14, which requires a shared library
version bump. Therefore you need to reinstall all ports that depend on
it. Please do something like:
# portupgrade -fr net/openldap24-client
20090209:
AFFECTS: users of multimedia/phonon, x11/kdelibs4, x11/kdebase4*,
deskutils/kdepimlib4, deskutils/kdepim4, devel/automoc4
AUTHOR: kde@FreeBSD.org
KDE 4 has been updated from 4.1.4 to 4.2.0. A number of applications
have been moved between packages. The easiest way to avoid various
problems during update is to delete all KDE-4.1.4 ports and install
KDE-4.2.0:
# pkg_delete -f kde\*4.1.4\* automoc4-\*
# portmaster -a (or portupgrade -a)
# cd ${PORTSDIR}/x11/kde4 && make config && make install clean
20090207:
AFFECTS: users of devel/libslang and devel/libslang2
AUTHOR: pgollucci@FreeBSD.org
devel/libslang has been removed in favor of devel/libslang2 after not
being released during last five years. WITH_SLANG2 is no longer a
valid ports KNOB. All ports that depend on devel/libslang should be
recompiled, e.g.:
# portupgrade -o devel/libslang2 devel/libslang
20090130:
AFFECTS: users of www/httptunnel
AUTHOR: rafan@FreeBSD.org
The startup script has been converted to new rc.d style and split
into two scripts: htc (client) and hts (server). Please check the scripts
for how to set variables in /etc/rc.conf.
20090127:
AFFECTS: users of gstreamer-plugins
AUTHOR: kwm@FreeBSD.org
The gstapp library moved from the gstreamer-plugins-bad package to
gstreamer-plugins. It will be necessary to rebuild the gstreamer-plugins
port. After updating your installed ports please do (if you are using
portupgrade):
# portupgrade -f gstreamer-plugins
20090127:
AFFECTS: users of www/xpi-deepestsender
AUTHOR: pgollucci@FreeBSD.org
www/xpi-deepestsender has been updated to version 0.9.0. This version
is *only* for Firefox version 3.x.
20090124:
AFFECTS: users of x11-servers/xorg-server, sysutils/hal
AUTHOR: rnoland@FreeBSD.org
sysutils/hal has been updated and should now properly detect mice for
in X.Org. Use of AllowEmptyInput should no longer be needed for most
users and moused should now work fine.
20090123:
AFFECTS: users of x11-servers/xorg-server
AUTHOR: rnoland@FreeBSD.org
If you are using an older xorg.conf several config lines are no longer
needed and will generate warnings when X is started. RgbPath will cause
X to fail to start, remove it from your config.
Server 1.5.3 also really wants to configure its input devices via hald.
This is causing some issues with moused and /dev/sysmouse. There are
couple of options for how to deal with it:
1. Add Option "AllowEmptyInput" "off" to your ServerLayout section.
This will cause X to use the configured kbd, mouse, and vmmouse
sections from your xorg.conf
2. Don't use moused. If you want it to work with addon USB mice
set this in rc.conf:
moused_enable="NO"
moused_nondefault_enable="NO"
I'm working on fixing hald or the mouse driver or both.
20090123:
AFFECTS: users of x11/libxcb
AUTHOR: flz@FreeBSD.org
Libxcb shared library version was bumped from 1 to 2. You need to
rebuild any consumer of libxcb.so.1 or some applications will be
linked against two versions of libxcb once libX11 is upgraded.
For portupgrade users:
# portupgrade -rf libxcb
20090121:
AFFECTS: users of devel/linux-glib2, emulation/linux_base-f4
AUTHOR: bsam@FreeBSD.org
Glib2 now is incorporated to emulation/linux_base-fc4 (it has always
been a part of more recent Linux base ports). All users should deinstall
devel/linux-glib2 and then deinstall/reinstall emulation/linux_base-f4.
20090119:
AFFECTS: users of mail/claws-mail, mail/claws-mail-smime
AUTHOR: netchild@FreeBSD.org
The claws-mail port includes the S/MIME plugin itself now, it is not
distributed as a separate plugin anymore. It can be enabled with the
GPGME option in the port (disabled by default). If you use the S/MIME
plugin, you should remove the mail/claws-mail-smime port before
enabling GPGME and updating the mail/claws-mail port. People which
already updated mail/claws-mail with GPGME enabled and a non-working
S/MIME plugin need to deinstall mail/claws-mail-smime and reinstall
mail/claws-mail.
20090118:
AFFECTS: users of net-p2p/deluge
AUTHOR: mezz@FreeBSD.org
The Deluge has been updated from 0.5.x to 1.x. The 1.x has been rewritten,
so it is recommend for you to make the back up of your ~/.config/deluge. The
configuration and plugins of 0.5.x do not work in 1.x. Deluge will picking
up the old configuration and try to convert it to the newer format, but I
wouldn't trust it to do it without the back up.
If you prefer to stick with 0.5.x, you can use portmaster:
# portmaster -o net-p2p/deluge05 net-p2p/deluge
or if you use portupgrade:
# portupgrade -o net-p2p/deluge05 net-p2p/deluge
20090118:
AFFECTS: users of www/ikiwiki
AUTHOR: brix@FreeBSD.org
IkiWiki has been upgraded from 2.x to 3.x. Instructions for
migrating existing IkiWiki configurations to 3.x format can be found
at http://ikiwiki.info/tips/upgrade_to_3.0/.
20090118:
AFFECTS: users of devel/apr-svn devel/apr
AUTHOR: pgollucci@FreeBSD.org
devel/apr-svn has been removed and devel/apr now handles its role.
devel/apr now defaults to building with Berkeley database support (bdb)
APR_UTIL_* tunables have been renamed to comply with ports/KNOBS names.
20090114:
AFFECTS: users of x11/kdebase4-workspace, x11/kdebase4-runtime
AUTHOR: kde@FreeBSD.org
KDE 4 has been updated from 4.1.1 to 4.1.4. A number of files have been
moved between packages. You should deinstall kdebase4-runtime package
before updating:
pkg_delete -f kdebase-runtime-4.1\*
portmaster -a
After successful update you could install kdebase4-runtime if it has not
been installed during update process.
20090114:
AFFECTS: users of GNOME and GTK+
AUTHOR: gnome@FreeBSD.org
GNOME has been updated to 2.24.x. You have to deinstall a few ports
first before using portupgrade or portmaster in order to successfully
upgrade your GNOME installation. After successful upgrade, you have
to reinstall gnome-session so the gnome.desktop session file is properly
installed.
Portupgrade users:
# pkgdb -Ff
(Answer "yes" to unregister gail while keeping gtk20.)
(Answer "yes" to unregister fast-user-switch-applet while
keeping gdm.)
# pkg_deinstall -fO gtkmm-2.12\*
# portupgrade -aOW
# portupgrade -f gnome-session
Portmaster users:
# pkg_delete -f gtkmm-2.12\*
# portmaster -a
# portmaster gnome-session
20090113:
AFFECTS: users of lang/perl5.8
AUTHOR: skv@FreeBSD.org
lang/perl5.8 has been updated to 5.8.9. You should update everything
that depends on perl. The easiest way to do that is to use
perl-after-upgrade script supplied with lang/perl5.8. Please see its
manual page for details.
20090112:
AFFECTS: users of mail/claws-mail*
AUTHOR: miwi@FreeBSD.org
claws-mail has been updated to 3.7.0, with this update OpenSSL support
has been removed by upstream in favour of GnuTLS. GnuTLS is now enabled
by default. Themes were have also been split to an extra port which
your can find under x11-themes/claws-mail-themes. Menu was rewritten
entirely in version 3.6.0 using modern GTK interface; as a consequence,
all your custom shortcuts will be lost after upgrade.
20090109:
AFFECTS: users of any Mozilla and Opera products
AUTHOR: mezz@FreeBSD.org
The Java plugins now will no longer be picked up by automatically from
these browsers. Because all Java ports share the name of plugins file,
I am thinking about someone or maybe me will need to write something
similar to nspluginwrapper (but in shell script) that can add Java plugin
in ~/.*/plugins/ when user requests one specific version of Java plugin
if this user has more than one version of Java installed. However, for
now, you will have to add Java plugin in ~/.*/plugins/ manually.
20090107:
AFFECTS: users of databases/unixODBC
AUTHOR: beech@FreeBSD.org
The databases/unixODBC port has been updated to 2.2.14. While
containing many bug fixes and minor feature adjustments, this version
no longer ships with the (obsolete) MySQL ODBC driver. MySQL ODBC
driver users will probably want to use databases/mysql-connector-odbc
instead. The text-backed/flatfile driver (libtxtodbc) has also been
removed by the developers but due to some demand may make a return in
a future version or as a separate port.
20090107:
AFFECTS: users of security/libgcrypt
AUTHOR: rafan@FreeBSD.org
libgcrypt has been upgraded to 1.4.3 which has a shared library version
bump. You need to reinstall all ports that depend on it. Use something
like this:
portupgrade -rf libgcrypt
portmaster -r libgcrypt
20090104:
AFFECTS: users of net/openldap24-{client,server}
AUTHOR: delphij@FreeBSD.org
OpenLDAP has been upgraded to 2.4.13, which requires a shared library
version bump. Therefore, you need to reinstall all ports that depend on
it. Please do something like:
# portupgrade -fr net/openldap24-client
20081230:
AFFECTS: users of net/rabbitmq
AUTHOR: pneumann@gmail.com
The database schema has changed between RabbitMQ-1.4.0 and this release.
When the RabbitMQ server detects the presence of an old database, it
moves it to a backup location, creates a fresh, empty database, and
logs a warning.
20081226:
AFFECTS: users of www/rt38
AUTHOR: pgollucci@FreeBSD.org
www/rt38 now respects the FreeBSD directory layout, see hier(7).
With this change, p5-RT-* and p5-RTx-* should be much simpler to use
in the ports collection.
Please note that www/p5-RTx-Shredder is included in www/rt38. This
port will be deprecated and removed.
20081228:
AFFECTS: users of astro/boinc-setiathome-enhanced
AUTHOR: rene@FreeBSD.org
The setiathome client has been updated to version 6.03 and version 5.00
of the astropulse client has been added. Before you update, finish and
report your current workunits to avoid losing them. The port now also
includes the client screensavers.
20081228:
AFFECTS: users of japanese/kinput2
AUTHOR: hrs@FreeBSD.org
The Wnn backend of japanese/kinput2 port now uses unix domain socket
to communicate the server by default. If $JSERVER environment
variable is defined, the value is used as the server host name. In
In short, the server name is determined in the following way:
$JSERVER --(if null)--> CcWnn.Jserver --(if null)--> "localhost"
If the server host name is null or matches "^unix$", unix domain
socket is used. Note that the default server name in CcWnn.Jserver
is "unix" now.
20081226:
AFFECTS: users of www/rt*
AUTHOR: pgollucci@FreeBSD.org
www/rt2 www/rt3 www/rt32 www/rt34 are now deprecated and will expire
2009-02-01. All ports now depend on www/rt38 If you can not update
to www/rt38, www/rt36 is still around.
20081224:
AFFECTS: users of www/phpSysInfo
AUTHOR: miwi@FreeBSD.org
The www/phpSysInfo port has been split into www/phpsysinfo and
www/phpsysinfo-dev ports.
20081217:
AFFECTS: users of mail/policyd2
AUTHOR: wxs@FreeBSD.org
The RC script for mail/policyd2 has been renamed to avoid a conflict.
If you use this port please change the setting in rc.conf to be
policyd2_enable.
20081211:
AFFECTS: users of lang/php5
AUTHOR: pav@FreeBSD.org, itetcu@FreeBSD.org, ale@FreeBSD.org
As of PHP 5.2.7, pcre extension is distributed with the core PHP5 package,
and not as a standalone module anymore. Follow the steps below to update
your installation.
Portupgrade users:
pkg_delete -f php5-pcre-5.2.6
pkgdb -F
portupgrade as usual
Portmaster users:
pkg_delete -f php5-pcre\*
portmaster php5
If you are using pecl ports you might need to force an update on them:
portupgrade -f pecl\*
or
portmaster pecl
If you have the pecl hash, json and/or zip extensions you need to replace
them with the PHP5 bundled ones, e.g.:
portmaster/portupgrade -o archivers/php5-zip archivers/pecl-zip
portmaster/portupgrade -o devel/php5-json devel/pecl-json
portmaster/portupgrade -o security/php5-hash security/pecl-hash
If you build your INDEX locally and you tried to build it after the PHP
update commit, you need to rebuild it _after_ you updated lang/php5:
cd /usr/ports && make index
or (if you use ports-mgmt/p5-FreeBSD-Portindex):
cd /usr/ports && cache-init && portindex -o `make -V INDEXFILE`
20081207:
AFFECTS: users of games/mkgichessclub
AUTHOR: nivit@FreeBSD.org
After the update to the version 2.2.0, please, alter the SQL tables
with the command:
mysql _mkgichessclub_ < /usr/local/share/mkgichessclub/db_migrate_2.1_to_2.2.sql
where _mkgichessclub_ is the database name chosen during the installation
of the port.
20081205:
AFFECTS: users of net-p2p/ktorrent
AUTHOR: makc@FreeBSD.org
ktorrent has been updated to 3.1.5 for KDE 4. The last release of ktorrent
for KDE 3 is available under net-p2p/ktorrent2.
20081121:
AFFECTS: users of comms/smstools3
AUTHOR: mm@FreeBSD.org
The startup script of comms/smstools3 has changed. For increased security
smstools now runs as user uucp / group dialer by default. The script
commands like sendsms etc. should be executed as user uucp.
To restore the old behaviour, set smsd_user="root" and smsd_group="wheel"
in your /etc/rc.conf.
Hint: use security/sudo for running smsd scripts as user uucp.
20081108:
AFFECTS: users of editors/tamago
AUTHOR: hrs@FreeBSD.org
The Wnn backend of editors/tamago port now uses unix domain socket
to communicate the server by default. If $[CJKT]SERVER environment
variable is defined, the value is used as the server host name. In
JSERVER case, for example, the server name is determined in the
following way:
$JSERVER --(if null)--> wnn-jserver --(if null)--> "unix"
If the server host name is null or matches "^unix$", unix domain
socket is used. The path name of the socket can be specified in
wnn-[cjkt]udpath custom variable.
20081105:
AFFECTS: users of french/pluxm-devel
AUTHOR: jadawin@FreeBSD.org
Please, use
http://download.pluxml.org/plugins/migration-blog-beta3x-beta4.zip to
migrate. It's strongly advised to backup your blog before updating.
20081102:
AFFECTS: users of devel/git
AUTHOR: wxs@FreeBSD.org
The location of git-shell has changed to
${PREFIX}/libexec/git-core/git-shell. Please remove the old entry from
/etc/shells.
20081030:
AFFECTS: users of japanese/FreeWnn-server
AUTHOR: hrs@FreeBSD.org
The jserver daemon in japanese/FreeWnn-server port now uses "127.0.0.1"
as the default listen address for security reason. If you need
the wildcard address (INADDR_ANY), you have to explicitly set
"listenaddr" to 0.0.0.0 in ${PREFIX}/lib/wnn/ja_JP/jserverrc or
add "-a 0.0.0.0" to ${wnn_flags} in /etc/rc.conf.
20081026:
AFFECTS: users of www/asterisk-gui
AUTHOR: pneumann@gmail.com
The upgrade to version 2.0 will modify your asterisk dialplan when login
to the page. Hardware autodetection will not work, pending update of
misc/zaptel.
20081028:
AFFECTS: users of www/codeigniter
AUTHOR: glarkin@FreeBSD.org
For certain installations, the following steps should be performed
after the CodeIgniter 1.7.0 upgrade (taken from:
http://codeigniter.com/user_guide/installation/upgrade_170.html).
>>> Update your Session Table
If you are using the Session class in your application, AND if you
are storing session data to a database, you must add a new column
named user_data to your session table. Here is an example of what
this column might look like for MySQL:
user_data text NOT NULL
To add this column you will run a query similar to this:
ALTER TABLE `ci_sessions` ADD `user_data` text NOT NULL
You'll find more information regarding the new Session functionality
in the Session class page:
http://codeigniter.com/user_guide/libraries/sessions.html
>>> Update your Validation Syntax
This is an optional, but recommended step, for people currently
using the Validation class. CI 1.7 introduces a new Form Validation
class (http://codeigniter.com/user_guide/libraries/form_validation.html)
which deprecates the old Validation library. We have left the old one
in place so that existing applications that use it will not break, but
you are encouraged to migrate to the new version as soon as possible.
Please read the user guide carefully as the new library works a little
differently, and has several new features.
20081026:
AFFECTS: users of japanese/sj3-server
AUTHOR: hrs@FreeBSD.org
The sj3serv daemon in japanese/sj3-server port now uses "localhost"
as the default listen address for security reason. If you need
the wildcard address (INADDR_ANY), you have to explicitly set
"servername" to 0.0.0.0 in ${PREFIX}/etc/sj3/serverrc.
20081026:
AFFECTS: users of japanese/Canna and japanese/sj3
AUTHOR: hrs@FreeBSD.org
The japanese/Canna and japanese/sj3 port have been split into
japanese/canna-server and japanese/canna-lib, and japanese/sj3-server
and japanese/sj3-lib, respectively for more fine-grained dependency
management in the Ports Collection.
20080926:
AFFECTS: users of www/squid30
AUTHOR: tmseck@netcologne.de
The Squid developers decided to disable COSS support in 3.0, cf.
the discussion starting here:
http://www.squid-cache.org/mail-archive/squid-dev/200809/0067.html
The corresponding port configuration option WITH_SQUID_COSS is still
available but is a no-op for now. If you currently use COSS storage with
Squid 3.0 you need to disable it in squid.conf.
20080924:
AFFECTS: users of ftp/proftpd
AUTHOR: beech@FreeBSD.org
proftpd now stores its .delay and .scoreboard files in /var/run/proftpd
instead of /var/run. If you are updating an existing installation,
adjust the following in /usr/local/etc/proftpd.conf:
ScoreboardFile /var/run/proftpd/proftpd.scoreboard
Also of note: The third party modules, mod_codeconv, mod_comb, and
mod_sql_tds are not compatible with this release and have been removed.
They will be re-added when the respective authors provide updated versions.
20080909:
AFFECTS: users of security/logcheck
AUTHOR: glarkin@FreeBSD.org
logcheck now stores its configuration files in /usr/local/etc/logcheck
instead of /usr/local/etc. If you are upgrading the port from version
1.1.1 to version 1.2.54, copy the following files to a temporary location,
in case they are removed during the upgrade:
/usr/local/etc/logcheck.hacking
/usr/local/etc/logcheck.ignore
/usr/local/etc/logcheck.violations
/usr/local/etc/logcheck.violations.ignore
e.g.:
cd /usr/local/etc
mkdir /tmp/logcheck.saveconf
cp logcheck.hacking logcheck.ignore logcheck.violations* \
/tmp/logcheck.saveconf
After the upgrade, integrate your local changes to the files listed
above into the new configuration files found in the following directories:
/usr/local/etc/logcheck/cracking.d
/usr/local/etc/logcheck/ignore.d.paranoid
/usr/local/etc/logcheck/ignore.d.server
/usr/local/etc/logcheck/ignore.d.workstation
/usr/local/etc/logcheck/violations.d
/usr/local/etc/logcheck/violations.ignore.d
Please consult the following files for more information about
logcheck rules and reporting levels:
/usr/local/share/doc/logcheck/README.logcheck
/usr/local/share/doc/logcheck/README.logcheck-database
Also note that the upgraded port installs a crontab file for user
"logcheck" that executes the logcheck script every hour and emails
the results to root. If the installation process cannot install
the crontab file, it can be installed manually from
/usr/local/share/examples/logcheck/crontab.in, e.g.:
crontab -u logcheck /usr/local/share/examples/logcheck/crontab.in
20080907:
AFFECTS: users of www/mediawiki
AUTHOR: miwi@FreeBSD.org
www/mediawiki version is 1.13 now. 1.12 version was preserved as
www/mediawiki12 port.
20080902:
AFFECTS: users of net-mgmt/nagios and net-mgmt/nagios-devel
AUTHOR: Jarrod Sayers <jarrod@netleader.com.au>
The stable Nagios port has now been updated to version 3.0.3. Upgrading
to this version shouldn't require any configuration changes, but note that
most sample configuration files were moved into objects/ directory.
Nagios 2.12 is still available as net-mgmt/nagios2, use the following to
remain on this legacy stable branch:
portmaster -o net-mgmt/nagios2 net-mgmt/nagios
or, if you're using portupgrade:
portupgrade -o net-mgmt/nagios2 net-mgmt/nagios
Nagios 3.x development continues in net-mgmt/nagios-devel, users of this
port in production use should consider switching to the stable branch:
portmaster -o net-mgmt/nagios net-mgmt/nagios-devel
or, if you're using portupgrade:
portupgrade -o net-mgmt/nagios net-mgmt/nagios-devel
20080902:
AFFECTS: users of math/ploticus
AUTHOR: linimon@FreeBSD.org
This is a major update.
Deprecated: server-side image maps (use client-side instead); definition
of categories within proc areadef (use proc categories instead); proc print.
Discontinued attributes: proc processdata's stack; proc usedata's element,
proc getdata's rotate, and proc defineunits (use the $changeunits()
function instead).
proc rangebar has been renamed proc boxplot and there are major
functionality changes. Any script that uses proc rangebar will need
maintenance.
See http://ploticus.sourceforge.net/doc/news.html for more information.
20080901:
AFFECTS: users of mail/pine4 and editors/pico
AUTHOR: dougb@FreeBSD.org
These two ports have been removed in favor of the new mail/alpine and
editors/pico-alpine ports. UW discontinued work on Pine in September
2005 and is focusing on Alpine now. You should be able to directly
replace pine with alpine.
See http://www.washington.edu/alpine/ for more information.
20080831:
AFFECTS: users of net-mgmt/smokeping
AUTHOR: lth@FreeBSD.org
Smokeping has been updated to 2.4.1, and the example web server
configuration has changed. Please read pkg-message and check that
your server configuration is OK.
20080827:
AFFECTS: users of devel/git
AUTHOR: wxs@FreeBSD.org
With the default Makefile settings, most of the programs are now
installed outside your $PATH, except for "git", "gitk", and some server
side programs that need to be accessible for technical reasons. Invoking
a git subcommand as "git-xyzzy" from the command line has been deprecated
since early 2006 (and officially announced in 1.5.4 release notes); use
of them from your scripts after adding output from "git --exec-path" to
the $PATH is still supported in this release, but users are again
strongly encouraged to adjust their scripts to use "git xyzzy" form, as
we will stop installing "git-xyzzy" hardlinks for built-in commands in
later releases.
Please see this URL for more information:
http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.0.txt
20080827:
AFFECTS: users of mail/qmhandle
AUTHOR: garga@FreeBSD.org
A qmHandle.conf file was created, for now, is not needed to edit
${PREFIX}/bin/qmHandle to change stopqmail and startqmail variables.
Just remember to edit configuration file after upgrade.
20080820:
AFFECTS: users of www/p5-Apache-DBI
AUTHOR: pgollucci@FreeBSD.org
www/p5-Apache-DBI has been forked into a MASTER and SLAVE setup
www/p5-Apache-DBI-mp1 and www/p5-Apache-DBI-mp2 so as to work with
www/rt38 among possibly other ports.
20080820:
AFFECTS: users of net/rabbitmq
AUTHOR: pneumann@gmail.com
The database schema has changed in this version of RabbitMQ. If you
attempt to start RabbitMQ-1.4.0 over top of a previous installation,
it will fail, citing "schema_integrity_check_failed". To correct this,
delete your mnesia directory (/var/db/rabbitmq/mnesia) and restart
the server. Note that this will destroy all your durable exchanges and
queues, and all your persisted messages!
20080816:
AFFECTS: users of mail/assp
AUTHOR: J.R. Oldroyd <fbsd@opal.com>
The periodic(8) script no longer outputs to files in the assp directory.
You should remove /var/db/assp/nightly.log and nightly.log.old by hand
once you are done with them. The information that was stored there will
now come in your nightly system email.
20080815:
AFFECTS: users of sysutils/rdiff-backup
AUTHOR: vd@FreeBSD.org
sysutils/rdiff-backup has been upgraded from 1.0.5 to 1.2.0. This is
an incompatible upgrade. If you need the "old" 1.0.5, you can find it
in sysutils/rdiff-backup10.
20080813:
AFFECTS: users of www/ikiwiki
AUTHOR: brix@FreeBSD.org
The layout of the ikiwiki.setup file has changed in a significant
way in this release. Old setup files will continue to work, but new
features, like the new websetup interface, require a new format
setup file. You can convert old setup files into the new format by
running the following command for all your ikiwiki.setup files:
ikiwiki-transition setupformat ikiwiki.setup
20080812:
AFFECTS: users of mail/spamdyke
AUTHOR: mm@FreeBSD.org
The spamdyke port has been updated to 4.0.2. The new version is not
backwards compatible with previous versions. Please examine the new
configuration file for the changes.
20080812:
AFFECTS: users of databases/pgbouncer
AUTHOR: mm@FreeBSD.org
Starting with port version 1.2.3, pgbouncer does not run as root anymore.
If you are upgrading from earlier versions, please update your configuration
in ${PREFIX}/etc/pgbouncer.ini to use log and pid file paths owned by the
newly created pgbouncer user (or customize for a different user yourself).
Default logfile: /var/log/pgbouncer/pgbouncer.log
Default pidfile: /var/run/pgbouncer/pgbouncer.pid
20080808:
AFFECTS: users of chinese/phpbb-tw
AUTHOR: chinsan@FreeBSD.org
The default install directory for phpbb-tw has changed from
${PREFIX}/www/data/phpBB2 to ${PREFIX}/www/phpBB2.
If you are updating from a previous version, to preserve your settings
and data, please do the following:
mv /usr/local/www/data/phpBB2 /usr/local/www
Then update as usual.
20080806:
AFFECTS: users of net-p2p/transmission
AUTHOR: mezz@FreeBSD.org
Update to 1.3x, the net-p2p/transmission now is a meta-port. It depends on
cli, daemon, and gtk2. If you don't want that, uninstall transmission and
install net-p2p/transmission-cli by doing:
portmaster -o net-p2p/transmission-cli net-p2p/transmission
or, if you're using portupgrade:
portupgrade -o net-p2p/transmission-cli net-p2p/transmission
20080805:
AFFECTS: users of devel/qt4
AUTHOR: kde@FreeBSD.org
The Qt 4 ports has been updated to 4.4.1. With this update several ports
specific problems have been fixed. Qt 4 headers and libraries have been
moved to include/qt4 and lib/qt4. bsd.qt.mk defines QT_INCDIR and
QT_LIBDIR now, which could be used in qt4-dependent ports if required.
Before you start to update your ports, please force update of qmake4 and
qt4-corelib ports. Portmaster users can do:
portmaster devel/qmake4 devel/qt4-moc devel/qt4-corelib
or, if you're using portupgrade:
portupgrade -f devel/qmake4 devel/qt4-moc devel/qt4-corelib
20080804:
AFFECTS: users of devel/git
AUTHOR: wxs@FreeBSD.org
Git's cvsps dependency has been switched from cvsps-devel to cvsps. The
two are incompatible, so you will need to do the following before
upgrading git:
portmaster -o devel/cvsps devel/cvsps-devel
20080728:
AFFECTS: users of net/freeradius2
AUTHOR: David Wood <david@wood2.org.uk>
Upgrading the FreeRADIUS port used to replace all unmodified files
in your configuration with the latest version from the sample
configuration. This strategy has two disadvantages; over time your
configuration became based on different versions of the sample
configuration, also major changes to the sample configuration could
leave your configuration in a confusing state.
From version 2.0.5, your configuration is not touched if any
configuration files have been modified.
You are recommended to track changes in the sample configuration and
keep your configuration in a version control system. I use Subversion
(see the devel/subversion port) to track my changes. Keeping the sample
configuration in a 'vendor branch' (see the Subversion book for more
details) allows easy merging of changes from the sample configuration.
*** IMPORTANT ***
You are urged to move your configuration out of the default location
(/usr/local/etc/raddb) before upgrading from 2.0.4 (or earlier)
to 2.0.5 (or later). Once this upgrade is complete, remove the sample
configuration that has been installed in the default location and
move your configuration back to the default location.
This is a one time procedure that will prevent unmodified files in
your configuration from being deleted from your configuration and not
restored during the upgrade. No customised files will be lost in any
circumstances.
The sample configuration in 2.0.5 has been reorganised: the
configuration of most modules is now in the modules directory rather
than in radiusd.conf. You are urged to rearrange your configuration
to match this layout.
There are several improvements in this version of the port, including
a new pkg-message that will help new FreeRADIUS users to get started
with the port, also new 'reload' and 'debug' commands for the rc.d
script. Enjoy!
20080725:
AFFECTS: users of x11-fm/nautilus and misc/shared-mime-info
AUTHOR: gnome@FreeBSD.org
In order to properly update x11-fm/nautilus and misc/shared-mime-info, do
the following using portupgrade:
# pkg_deinstall -fO nautilus
# portupgrade shared-mime-info
# portinstall -O nautilus
Once misc/shared-mime-info has been updated, each user will need to run
the following command:
$ update-mime-database ~/.local/share/mime/
20080725:
AFFECTS: users of www/ojs2
AUTHOR: Greg Larkin <glarkin@FreeBSD.org>
If you are upgrading from a prior version of ojs2, please backup your
database, uploaded files directory, and your config.inc.php before the
upgrade. Read /usr/local/share/docs/ojs2/UPGRADE or visit
http://pkp.sfu.ca/ojs/UPGRADE for additional upgrade information.
20080721:
AFFECTS: users of net/freenet6
AUTHOR: Edwin Groothuis <edwin@mavetju.org>
Please note that there has been a major update of this port (from
version 2.x to 5.x) and that the name of the binaries and configuration
files has changed from "tpsc" to "gw6c". The configuration files
have to be copied from ${PREFIX}/share/examples/freenet6 to
${PREFIX}/etc again.
20080719:
AFFECTS: users of x11-fm/gprename
AUTHOR: Martin Tournoij <carpetsmoker@rwxrwxrwx.net>
GPRename configuration files now live ~/.config/gprename instead of ~/, to
upgrade use the following commands:
% mkdir -p ~/.config/gprename
% mv ~/.gprename ~/.config/gprename/gprename
% mv ~/.gprename_log ~/.config/gprename/gprename_log
20080717:
AFFECTS: users of devel/anjuta
AUTHOR: gnome@FreeBSD.org
Anjuta's neon dependency has been switched from neon26 to neon28. The
two are incompatible, so you will need to do the following to upgrade:
portupgrade -o www/neon28 neon26
portupgrade anjuta
20080714:
AFFECTS: users of www/squid
AUTHOR: Thomas-Martin Seck <tmseck@web.de>
www/squid has been updated to Squid 2.7.STABLE3.
The update should be rather straightforward.
The only noticeable change in the port is that the ICAP patch is no
longer included; this is because this patch was unmaintained for a long
time and its use was not really recommended. Please consider moving to
Squid-3 (currently available as www/squid30) if you need ICAP support.
Squid 2.6 is still available as www/squid26 and will probably be removed
from the Ports Tree by the end of 2008.
20080712:
AFFECTS: users of databases/rrdtool
AUTHOR: rafan@FreeBSD.org
If you use language bindings, like the Perl's RRDs, please upgrade
this port *twice* in order to get the library dependency right.
20080711:
AFFECTS: users of x11-toolkits/gtkdatabox2
AUTHOR: Beech Rintoul <beech@FreeBSD.org>
The port has been deprecated and gtkdatabox has been updated. This was
done so the port tracks vendor name. Please update by doing:
portupgrade -o x11-toolkits/gtkdatabox x11-toolkits/gtkdatabox2
20080709:
AFFECTS: users of www/ikiwiki
AUTHOR: Henrik Brix Andersen <brix@FreeBSD.org>
The IkiWiki editpage form now uses the raw page name, not the page title,
in its `page' CGI parameter. You will need to rebuild any existing
IkiWiki installations in order to update their `edit' links to the new
format.
20080708:
AFFECTS: users of emulators/qemu-devel
AUTHOR: nox@FreeBSD.org
The port has been updated to a 20080620 SVN snapshot, which uses the
new (incompatible) kqemu-kmod-devel port that now also works for the
32 bit "qemu" executable on amd64. If you upgrade qemu-devel with the
KQEMU knob on, you have to
# pkg_delete kqemu-kmod-1\*
the old kqemu version first if it is installed.
20080705:
AFFECTS: users of www/ikiwiki
AUTHOR: Henrik Brix Andersen <brix@FreeBSD.org>
The IkiWiki search plug-in now uses www/xapian-omega as backend instead
of textproc/hyperestraier. You will need to update the configuration of
any search enabled IkiWiki installations and rebuild them since the
search form has changed.
20080704:
AFFECTS: users of misc/shared-mime-info
AUTHOR: FreeBSD GNOME Team <gnome@FreeBSD.org>
The misc/shared-mime-info has been updated to 0.40. The Mime Types caches
have been changed a bit. If you have created any custom MIME types, you
will need to run update-mime-database to update your local Mime Types
caches:
$ update-mime-database ~/.local/share/mime/
20080702:
AFFECTS: users of irc/ratbox-services
AUTHOR: Beech Rintoul <beech@FreeBSD.org>
Configuration file and database changes have been made between the
1.1.x series and the current release version of ratbox-services.
It is highly recommended that services are stopped, and the proper
upgrade procedure is followed as described in port's documentation,
before restarting newly updated ratbox-services again.
Please remember to backup the database before attempting an
upgrade, as incorrectly upgraded database may be rendered unusable.
The ratbox-services-1.2.x branch implements multi-language support.
However, an inconsistency in the language indexing may result in
errors. It is therefore recommended that the English default to be
used until the next version release.
20080702:
AFFECTS: users of mail/nocc
AUTHOR: Alex Dupre <ale@FreeBSD.org>
The Nocc configuration file has been moved into 'config' subdir.
When updating, remove the old conf.php file and reconfigure Nocc.
20080701:
AFFECTS: users of devel/subversion*
AUTHOR: Lev Serebryakov <lev@FreeBSD.org>
subversion now uses neon-0.28.x (www/neon28) port, and automatic
portupgrade will fail because www/neon28 will conflict with installed
www/neon26 port.
You should upgrade neon library before subversion with the command:
# portupgrade -o www/neon28 neon26
Also, if you use any special subversion ports with bindings, you
should upgrade these ports to clean subversion port with
# portupgrade -o devel/subversion subversion-\*
and install needed bindings (p5-subversion, py-subversion and/or
ruby-subversion) after that.
If you use subversion with bindings installed from devel/subversion
with custom options, don't forget to install separate bindings ports
after subversion upgrade.
20080630:
AFFECTS: users of graphics/cairo, graphics/poppler*, and future users of www/firefox3
AUTHOR: FreeBSD GNOME Team <gnome@FreeBSD.org>
The poppler* ports have been updated to 0.8.3 and the shared libraries
have changed. Firefox 3.0 has been added to the tree as www/firefox3.
These changes require that all dependent ports be updated. You can do
this in one of two ways:
# portmaster pixman
# portmaster \*cairo\*
# portmaster -r poppler-0
or:
# pkgdb -Ff
# portupgrade pixman\* \*cairo\*
# portupgrade -r poppler-0.\*
20080627:
AFFECTS: users of x11-drivers/xf86-video-ati
AUTHOR: Jung-uk Kim <jkim@FreeBSD.org>
mach64 and r128 drivers are now separated out from the ati driver.
These video cards are supported by x11-drivers/xf86-video-mach64
and x11-drivers/xf86-video-r128 respectively. If you have one of
the affected video cards and xorg.conf contains the following line:
Driver "ati"
you must specify "mach64" or "r128". Alternatively, you may install
x11-drivers/xf86-video-ati to get a wrapper driver.
20080626:
AFFECTS: users of science/gramps
AUTHOR: Anders Troback <freebsd@troback.com>
Before you upgrade from 2.x to 3.x you need to export your existing
databases to a GRAMPS XML file. After the upgrade you can import
them into the new version.
20080624:
AFFECTS: users of irc/ircd-ratbox-devel
AUTHOR: Beech Rintoul <beech@FreeBSD.org>
Upgrading between different beta releases can cause problems when
changes to the ban database schema have occurred. The 'bantool'
utility now comes with a -u switch that will check and update the
ban database as necessary.
Issuing 'bantool -u' is required when upgrading between beta releases
and must not be done while the ircd is running.
20080624:
AFFECTS: users of www/mod_security
AUTHOR: Marcelo Araujo <araujo@FreeBSD.org>
The mod_security port has been updated from 1.9.4 to 2.5.5. Branch 1.9.x
will not receive any further updates; all users must update mod_security
port to versions 2.1 or 2.5.
You can get more information about update issues at:
http://www.modsecurity.org/documentation/
20080624:
AFFECTS: users of www/opera and www/opera/devel
AUTHOR: Ion-Mihai Tetcu <itetcu@FreeBSD.org>
The Opera port has been updated from 9.2x to 9.5x. A lot of things have
been changed such as keyboard shortcuts[1]; new storage and indexing
formats for mail and feeds; new search.ini; native amd64 binaries; no 4.x
support. You will be asked whether to convert mail and feeds to new
format during start up. Warning: there is no way to downgrade back to
the old format. Be sure to see the Changelog[2].
[1] http://www.opera.com/support/search/view/884/
[2] http://www.opera.com/docs/changelogs/freebsd/950/
20080622:
AFFECTS: users of devel/subversion, subversion-devel and subversion-freebsd
with apr from www/apache22
AUTHOR: Clement Laforet <clement@FreeBSD.org>
apr and apr-util bundled with apache 2.2.9 have been upgraded to 1.3.x, so
shared libraries versions have been bumped. If you are using subversion
with apache22 apr, you must rebuild subversion after the update.
20080617:
AFFECTS: users of editors/nvi-devel
AUTHOR: Wesley Shields <wxs@FreeBSD.org>
editors/nvi-devel has been changed to install nvi, nex, and nview as
to not conflict with editors/2bsd-vi. Please note the new names if
you use this port.
20080616:
AFFECTS: users of mail/dkim-milter
AUTHOR: Hirohisa Yamaguchi <umq@ueo.co.jp>
Most of the command line options can now be set in configure files.
So the default values (such as milterdkim_socket) are changed to blank.
Upgrading users should check the values both in rc.conf and
dkim-filter.conf.
20080612:
AFFECTS: users of www/linux-opera
AUTHOR: mezz@FreeBSD.org
The Opera port has been updated from 9.2x to 9.5x. A lot of things have
been changed such as keyboard shortcuts[1]; new storage and indexing
formats for mail and feeds; new search.ini; probably more that I have
missed. I do not know if the keyboard shortcuts and search.ini will be
overwritten. You will be asked whether you want mail and feeds to be
converted to new format during start up. Warning: there is no way to
downgrade back to the old format. Be sure to see the Changelog[2].
[1] http://www.opera.com/support/search/view/884/
[2] http://www.opera.com/docs/changelogs/linux/950/
It is probably best for you to back up your linux-opera directory in
case until you have no problem with new Opera for a while. Also, you
might have to re-configure search and keyboard shortcuts if these were
overwritten:
# cp -Rp ~/.linux-opera ~/.linux-opera-bak
If you are seeing an error of undefined symbols related to GTK+, it is
because it needs newer linux-gtk2 that ports doesn't have. You can enter
'opera:config#FileSelector|DialogToolkit' in the address bar and change
from 0 to 1 in 'Dialog Toolkit' if it annoys you. 0 = auto detection,
1 = QT, and 2 = GTK+.
20080610:
AFFECTS: users of mail/svnmailer
AUTHOR: pgollucci@FreeBSD.org
Some of the config directives and sections allowed have changed. You will
have to edit your config file when updating to 1.1.0-dev-r1373 version of
the port. Please see the following URL for more information:
http://opensource.perlig.de/en/svnmailer/doc-1.1/#general-config-charset
20080609:
AFFECTS: users of devel/pear-Date_Holidays
AUTHOR: tabthorpe@FreeBSD.org
pear-Date_Holidays has been split into multiple subports. If you want
a specific geographic region, look at devel/pear-Date_Holidays_*
20080605:
AFFECTS: users of audio/paman and audio/pavucontrol
AUTHOR: lippe@FreeBSD.org
paman was renamed to pavucontrol, which are two different projects.
paman is a GTK frontend to PulseAudio, while pavucontrol is a GTK-based
volume control tool to PulseAudio.
20080605:
AFFECTS: users of devel/gettext (i.e.: YOU)
AUTHOR: ade@FreeBSD.org
As a result of the upgrade to gettext-0.17, the shared library version
of libintl has changed, so you will need to rebuild all ports that
depend on gettext:
# portupgrade -rf gettext
# portmaster -r gettext
Given the scope and sheer number of dependent ports, it may be more
advisable to simply blow away all existing install ports (after
keeping any local configuration changes), and rebuilding from scratch.
20080603:
AFFECTS: users of editors/emacs
AUTHOR: Yasuhiro KIMURA <yasu@utahime.org>
The port (editors/emacs) is updated to 22.2 and some of Emacs Lisp
directories had changed. So you should reinstall all ports that depend
on it. Please do something like:
# portupgrade -fr emacs
20080601:
AFFECTS: users of www/ikiwiki
AUTHOR: brix@FreeBSD.org
If password based logins is enabled in IkiWiki, those passwords were
stored in cleartext in the userdb. To guard against exposing users'
passwords, IkiWiki 2.48 and later use strong (blowfish) hashes for
storing passwords.
To hash existing passwords, update to ikiwiki-2.48 and run the
following command for each of your IkiWiki src dirs:
ikiwiki-transition hashpassword /path/to/your/wiki/srcdir
20080524:
AFFECTS: users of net-im/jabberd
AUTHOR: mm@FreeBSD.org
Starting with version 2.2.0, resolver is now built in the S2S component.
Jabberd configuration files require updating:
jabberd.cfg: resolver component must be removed
s2s.xml: <lookup> section must be added (see s2s.xml.dist)
resolver.xml: may be deleted (file not required anymore)
20080519:
AFFECTS: users of www/nginx and www/nginx-devel
AUTHOR: osa@FreeBSD.org
Nginx version lines have been changed: 0.5 -> 0.6 for stable and
0.6 -> 0.7 for development version. Make sure your configuration
files are compatible with the new version(s).
20080519:
AFFECTS: users of irc/bitlbee
AUTHOR: brix@FreeBSD.org
The default installation is now configured for running bitlbee as
user 'bitlbee'. Make sure any existing configuration files are
readable by that user.
20080517:
AFFECTS: users of multimedia/smplayer-*
AUTHOR: miwi@FreeBSD.org
The slave port multimedia/smplayer-qt4 has been removed with the upgrade
of multimedia/smplayer to 0.6.0, qt3 is no longer supported. They are now
fully integrated into multimedia/smplayer.
Please uninstall multimedia/smplayer-qt4 port before upgrading
multimedia/smplayer to version 0.6.0 or higher.
20080513:
AFFECTS: users of security/amavisd-new
AUTHOR: scheidell@secnap.net
Amavisd-new 2.6.0 introduces several incompatibilities with prior versions.
If you are upgrading from 2.5.4 or earlier, you will need to update your
SQL schema. If you have third party programs that access SQL tables, you
will need to update those also.
COMPATIBILITY WITH 2.5.4:
- when using SQL for logging (e.g. for a pen pals feature) or for
quarantining, SQL tables maddr, msgs, msgrcpt and quarantine need
to be extended by a new field 'partition_tag'; see below for details;
- when SQL logging (pen pals) or SQL lookups are used, one can choose a
binary or a character data type for fields users.email, mailaddr.email,
and maddr.email; now may be a good opportunity to change a data type
to binary (string of bytes); see below for details;
- when using SQL for logging, a default for $sql_clause{'upd_msg'}
has changed, so if a configuration file replaces this SQL clause
by a non-default setting, it needs to be updated;
Full information in /usr/local/share/doc/amavisd-new/RELEASE_NOTES.
20080513:
AFFECTS: users of audio/ampache
AUTHOR: jadawin@FreeBSD.org
Ampache 3.4 uses a different config parser. Unfortunately the new parser
is unable to read old config files. In order to migrate your current
configuration, you should run `php ${WWWDIR}/bin/migrate_config.inc' from
the command line.
20080508:
AFFECTS: users of databases/ptop
AUTHOR: beech@FreeBSD.org
The authors have changed the name of this utility to `pg_top'. To avoid
conflict with another port in the Tree with the same name we have retained
`ptop' as the portname. Note that binary has also changed to `pg_top'.
Please start the utility with that name after updating.
20080507:
AFFECTS: Perl interface users of audio/gramofile
AUTHOR: rafan@FreeBSD.org
Perl support is removed due to devel/swig11 removal in ports. If you use
the Perl interface, you are encouraged to use the new Audio::Gramofile
found on CPAN (contact me for the ports).
20080506:
AFFECTS: users of net-mgmt/collectd
AUTHOR: daniel@roe.ch
Previously, net-mgmt/collectd used to remove the config file even if it
was changed by the user. This has now been fixed.
To upgrade without losing your configuration, copy
${PREFIX}/etc/collectd.conf away to a safe place before upgrading
net-mgmt/collectd.
In addition, the default location of the data files changed from
${PREFIX}/var/lib/collectd to /var/db/collectd; you may want to move your
data files and edit your configuration accordingly.
20080503:
AFFECTS: users of net/skype-devel
AUTHOR: beech@FreeBSD.org
Skype-devel port has been removed in favor and by upading of net/skype.
If you are running skype-devel, please do the following:
portupgrade -o net/skype net/skype-devel
20080426:
AFFECTS: users of www/phpgedview
AUTHOR: beech@FreeBSD.org
The install location of phpgedview has changed from www/data/phpGedView to
www/phpgedview. If you are updating from a previous version please do
the following:
mv /usr/local/www/data/phpGedView /usr/local/www
You will also need to adjust the paths in your web server to reflect the
new location.
20080416:
AFFECTS: users of security/clamav
AUTHOR: garga@FreeBSD.org
Clamav 0.93 does not support the daily.inc and main.inc directories format
for virus databases. You need to remove these directories manually and
force freshclam to get new cvd format files before starting clamd:
portupgrade clamav
/usr/local/etc/rc.d/clamav-clamd stop
/usr/local/etc/rc.d/clamav-freshclam stop
rm -rf /var/db/clamav/main.inc /var/db/clamav/daily.inc
freshclam
/usr/local/etc/rc.d/clamav-freshclam start
/usr/local/etc/rc.d/clamav-clamd start
20080408:
AFFECTS: users of www/p5-Apache-Test
AUTHOR: pgollucci@FreeBSD.org
www/p5-Apache-Test doesn't actually need www/mod_perl{1,2}. If you would
like to test a mod_perl, than please install www/mod_perl2 or www/mod_perl
as well. The ports infrastructure doesn't support this (yet) but you can
use it to test www/apache13, www/apache20, and/or www/apache22 without
chaining www/p5-Apache-Test.
20080405:
AFFECTS: users of sysutils/tracker
AUTHOR: ahze@FreeBSD.org
The sysutils/tracker port is now a meta port and tracker is now split into
separate ports to allow non-GNOME users to install tracker without pulling
in GNOME components. To upgrade please use the directions below.
Portmaster users:
portmaster -o sysutils/tracker-client tracker
portmaster sysutils/tracker
Portupgrade users:
portupgrade -o sysutils/tracker-client tracker
portupgrade -u sysutils/tracker
20080405:
AFFECTS: users and maintainers of ports that depend on databases/sqlite3
AUTHOR: mnag@FreeBSD.org
Port databases/sqlite3 was updated to 3.5.6 and now has threads enabled
by default. If you encounter any problem with it, you can rebuild SQLite3
without threads and test or change Makefile of affected port with this:
sed -i.bak -E -e "s|USE_SQLITE=.*|USE_SQLITE=34|g" \
-e "s|databases/sqlite3|databases/sqlite34|g" Makefile
Please report success or failure to port maintainer and to me.
20080403:
AFFECTS: users of emulators/qemu and emulators/qemu-devel
AUTHOR: nox@FreeBSD.org
The default configuration location (qemu-ifup script etc.) has been
changed from /etc to ${PREFIX}/etc (usually /usr/local/etc). Move your
files accordingly.
20080330:
AFFECTS: users of www/mediawiki
AUTHOR: miwi@FreeBSD.org
www/mediawiki version is 1.12 now. 1.11 version was preserved on
www/mediawiki111 port.
20080329:
AFFECTS: users of www/phpadsnew
AUTHOR: beech@FreeBSD.org
Phpadsnew has been replaced with www/openx.
To upgrade please do the following:
1. Install www/openx
2. Copy the configuration file from phpadsnew to the var directory of
www/openx
3. Copy your banner images from phpadsnew/www/images to openx/www/images
4. Access openx on your browser and follow the instructions for upgrading
5. When you are satisfied with everything working properly you can remove
www/phpadsnew
20080326:
AFFECTS: users of emulators/linux_base-f8
AUTHOR: bsam@FreeBSD.org
The new port is used just like emulators/linux_base-fc6. Please, read
carefully entry 20070327 about emulators/linux_base-fc6.
20080323:
AFFECTS: users of multimedia/gstreamer
AUTHOR: multimedia@FreeBSD.org
Gstreamer port was updated. Due to the move of some plugins between
ports, you will have to rebuild the gstreamer-plugins-good port after
upgrading.
Portupgrade users:
# portupgrade -a
# portupgrade -f gstreamer-plugins-good
Portmaster users:
# portmaster -a
# portmaster gstreamer-plugins-good
20080323:
AFFECTS: all GNOME users and ports depend on misc/gnomehier
AUTHOR: gnome@FreeBSD.org
GNOME has been updated to 2.22.0. You have to deinstall a few ports first
before using portupgrade or portmaster in order to successfully upgrade
your GNOME installation.
Portupgrade users:
# pkgdb -Ff
# pkg_deinstall -fO gnome-applets\* totem\* gnome-control-center\*
# portupgrade -aOW
Portmaster users:
# pkg_delete -f gnome-applets\* totem\* gnome-control-center\* \
gnome-keyring-manager\*
# portmaster -a
Be sure to read in our known issues and solutions:
http://www.freebsd.org/gnome/docs/faq222.html#q4
20080323:
AFFECTS: users of devel/glib20 and future users of devel/gio-fam-backend
AUTHOR: gnome@FreeBSD.org
In order to update to glib 2.16 or higher, you must first update the
glib20 port on its own or you will get a failure trying to install
devel/gio-fam-backend saying it cannot find -lgio-2.0. Portmaster users
can do:
portmaster glib-2
or, if you're using portupgrade:
portupgrade glib-2\*
20080318:
AFFECTS: users of audio/gnump3d
AUTHOR: jadawin@FreeBSD.org
The layout of gnump3d 3.0 is changed, please read documentation and the
manual pages of gnump3d.
20080318:
AFFECTS: users of net/skype net/skype-devel
AUTHOR: beech@FreeBSD.org
For FreeBSD versions 7.0 and above:
It is required with both skype and skype-devel to update to linux_base-fc6.
Please do the following:
1. Make sure there are no running Linux applications.
2. Unmount linprocfs (umount /compat/linux/proc)
3. Uninstall your current linux_base port
4. Set appropriate sysctl (sysctl compat.linux.osrelease=2.6.16)
5. Install emulators/linux_base-fc6
6 Remount linprocfs (mount /compat/linux/proc)
7. Add compat.linux.osrelease=2.6.16 to etc/sysctl.conf
8. Add OVERRIDE_LINUX_BASE_PORT=fc6 to /etc/make.conf
Note: These instructions also apply to linux_base-f8, please use the same
osrelease.
For FreeBSD versions 5.X and 6.X:
Please use the legacy version net/skype12:
portupgrade -o net/skype12 net/skype
20080316:
AFFECTS: users of net/iscsi-target
AUTHOR: rafan@FreeBSD.org
The default configuration location has been changed from /etc to
${PREFIX}/etc. Move your files accordingly.
20080314:
AFFECTS: users of security/nmapfe
AUTHOR: miwi@FreeBSD.org
nmapfe has been renamed to zenmap upstream. The port has also been
renamed. If you haven't already installed nmapfe, you need to:
portupgrade -o security/zenmap nmapfe\*
20080313:
AFFECTS: users of mail/ezmlm-web
AUTHOR: hans@nordhaug.priv.no
The layout of ezmlm-web 3.2 is changed, please read documentation and
the manual page of ezmlm-web.cgi.
20080312:
AFFECTS: users of x11-wm/enlightenment-devel, x11/ecore and grephics/evas
AUTHOR: stas@FreeBSD.org
Evas and ecore ports have been split to separate modules to simplify
dependency tracking. Thus, portupgrade in many cases won't be able to
correctly update these ports.
The easiest upgrade path would be to remove all EFL ports and install
them from scratch. At least, you should reinstall ecore and evas.
Please note that your old $HOME/.e is no longer compatible with new
snapshot version. You will need to remove this directory and let e17
create it automatically on the next startup.
20080306:
AFFECTS: users of mail/dovecot
AUTHOR: ehaupt@FreeBSD.org
The update to version 1.0.12 will require manual change to the active
configuration file.
mail_extra_groups setting was commonly used insecurely. This setting is now
deprecated. Most users should switch to using mail_privileged_group setting,
but if you really need the old functionality use mail_access_groups instead.
20080303:
AFFECTS: users of security/gnutls and any port that depends on it
AUTHOR: novel@FreeBSD.org
gnutls has been updated to 2.2.2 and all shared libraries versions have
been bumped. So you need to rebuild all applications that depend on
gnutls. Do something like:
portupgrade -rf gnutls
20080223:
AFFECTS: users of www/instiki
AUTHOR: beech@FreeBSD.org
The default installation directory for instiki has changed from
/usr/local/instiki to /usr/local/share/instiki.
If you are updating from a previous version, to preserve your
settings and data, please do the following:
mv /usr/local/instiki /usr/local/share
Then update as usual.
20080219:
AFFECTS: users of x11-wm/xmonad
AUTHOR: jacula@gmail.com
From now XMonad uses a new configuration file system, so you don't have
to edit Config.hs anymore. Instead, create a custom configuration file
~/.xmonad/xmonad.hs. You can take a look at some samples on Xmonad's
website. Note that you can be interested in x11-wm/xmonad-contrib.
20080218:
AFFECTS: users of devel/poco and devel/poco-ssl
AUTHOR: lippemail@gmail.com
The HashFunction class template has been changed in an incompatible way.
The member function formerly named hash() is now the function call
operator. If you have defined your own HashFunction classes, then you
have to update your code.
20080216:
AFFECTS: users of sysutils/symon
AUTHOR: uspoerlein@gmail.com
The symon port has been updated from 2.75 to 2.78. It changes the wire
protocol again. You should update your symux(8) and symon(8) installations
simultaneously, as:
- new symon clients will make old symux servers exit, and
- new symux servers don't understand the old symon client's if() and
mem() probes.
20080208:
AFFECTS: users of ports-mgmt/portupgrade
AUTHOR: sem@FreeBSD.org
As was claimed in the entry 20070301 below in this file, you should fill
ALT_DEPENDS section of pkgtools.conf for portupgrade to work correctly
with your alternative dependencies. Now it is an obligatory requirement.
It was done as a compromise between speed and complexity.
20080203:
AFFECTS: users of www/xshttpd
AUTHOR: johans@FreeBSD.org
www/xshttpd now uses ${PREFIX}/www/xshttpd/ as a root directory for its
data files. The xshttpd configuration files have been moved to
${PREFIX}/www/xshttpd/conf/. Please move the appropriate local files
manually if you are upgrading from 3.4 or older versions.
20080202:
AFFECTS: users of www/punbb
AUTHOR: beech@FreeBSD.org
Install paths have changed. Please do the following prior to upgrade:
cd /usr/local/www
mv punbb punbb.old
cp -R punbb.old/upload punbb
It is now safe to update as usual.
Notes:
* You will probably get uninstall errors regarding files not found. It's
safe to ignore them
* Your webserver path has changed from www/punbb/upload to www/punbb,
please adjust your webserver configuration and restart it
* When you are satisfied with everything working properly you may remove
the punbb.old directory:
rm -r /usr/local/www/punbb.old
20080201:
AFFECTS: users of www/ziproxy
AUTHOR: pankov_p@mail.ru
The configuration file was moved from /usr/local/etc to
/usr/local/etc/ziproxy.
20080126:
AFFECTS: users of net-p2p/deluge
AUTHOR: mezz@FreeBSD.org
Deluge was updated to version 0.5.8.2. If you are using blocklist plugin,
you have to remove blocklist.conf first before you can run it, or it will
crash upon start up.
$ rm -f ~/.config/deluge/blocklist.conf
20080125:
AFFECTS: users of www/mod_security2
AUTHOR: araujo@FreeBSD.org
Update of mod_security2 is a dramatic change, because there is a need
to completely rewrite their obsolete rules and migrate for capacity to
use new syntax.
You are advised to make a complete backup of your configuration files
before you can perform an update.
20080120:
AFFECTS: users of www/apache20
AUTHOR: clement@FreeBSD.org
BDB framework provided by bsd.database.mk is now used by www/apache20
port. WITH_BERKELEYDB knob is deprecated in favor of WITH_BDB and
WITH_BDB_VER/WITH_BDB_BASE, see documentation for more details ('make
show-options').
20080120:
AFFECTS: users of www/apache22
AUTHOR: clement@FreeBSD.org
BDB framework provided by bsd.database.mk is now used by www/apache22
port. WITH_BERKELEYDB knob is deprecated in favor of WITH_BDB and
WITH_BDB_VER/WITH_BDB_BASE, see documentation for more details.
('make show-options').
20080118:
AFFECTS: users of net/freeradius
AUTHOR: David Wood <david@wood2.org.uk>
FreeRADIUS 2.0 is now available as the net/freeradius2 port. All FreeRADIUS
users are advised to consider upgrading to 2.0. It is the FreeRADIUS team's
intention to put the 1.x server into 'maintenance' mode with just critical
bug fixes.[1] 2.0 has many improvements including numerous bug fixes that
were too difficult for the 1.x server, as well as many new features.
Before uninstalling 1.x, it is recommended that you backup your
configuration, which is typically in /usr/local/etc/raddb, then move it
out of the way. It is also worth backing up the default configuration,
which is typically in /usr/local/share/examples/freeradius/raddb.
1.x configurations should work with the 2.0 server [2]. However the port
automatically upgrades any unedited files in the configuration when you
install a new version of FreeRADIUS. Installing 2.0 with the residue of a
1.x configuration in the default location will result in a mixed 1.x and
2.0 configuration that may not work.
The recommended approach is to diff your 1.x configuration against the
default 1.x configuration, then make corresponding changes to a copy
of the default 2.0 configuration. If you moved your 1.x configuration out
of the way before upgrading, you will have a 2.0 configuration ready to
edit in the default location. It is worth reading man 5 unlang for details
of the new FreeRADIUS 'un-language' before starting.
Alternatively, you can move your 1.x configuration to another location,
such as /usr/local/etc/raddb_v1, then edit /etc/rc.conf to point the rc.d
script to that location. For example:
radiusd_flags="-d /usr/local/etc/raddb_v1"
I cannot guarantee that all 1.x configurations will work with the 2.0
server, and I only recommend using a 1.x configuration as an interim
measure.
[1] - http://www.freeradius.org/business/roadmap.html
[2] - http://preview.tinyurl.com/ysrr6a
20080114:
AFFECTS: users of devel/perforce
AUTHOR: lth@FreeBSD.org
Perforce has been updated to version 2007.3. Upgrading is fairly
straightforward, but it is still highly recommended to follow the
upgrading instructions in the release notes:
http://www.perforce.com/perforce/doc.073/user/relnotes.txt
20080108:
AFFECTS: users of irc/bitlbee
AUTHOR: brix@FreeBSD.org
irc/bitlbee now stores saved user settings in /var/db/bitlbee/, not
$PREFIX/etc/bitlbee/. You will have to manually move any existing user
settings to the new location (or override the user settings directory
using -d if you wish to keep the old behavior). Other configuration
files are still kept in $PREFIX/etc/bitlbee/ by default.
The default installation is now configured for running bitlbee as user
'nobody' by default. Make sure any existing configuration files are
readable by that user.
$FreeBSD$
Index: head/accessibility/qt4-accessible/Makefile
===================================================================
--- head/accessibility/qt4-accessible/Makefile (revision 434379)
+++ head/accessibility/qt4-accessible/Makefile (revision 434380)
@@ -1,42 +1,43 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= accessible
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= accessibility
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt accessibility widgets
USE_QT4= qmake_build moc_build qt3support corelib gui network sql xml
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/s60installs src/s60main src/script \
src/scripttools src/sql src/svg src/testlib src/tools \
src/winmain src/xml src/xmlpatterns src/3rdparty/clucene \
src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
src/3rdparty/libpng src/3rdparty/libtiff src/3rdparty/phonon \
src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/plugins/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
.include <bsd.port.mk>
Index: head/astro/xglobe/files/patch-Makefile
===================================================================
--- head/astro/xglobe/files/patch-Makefile (revision 434379)
+++ head/astro/xglobe/files/patch-Makefile (revision 434380)
@@ -1,61 +1,61 @@
--- Makefile.orig 1999-07-19 12:56:27 UTC
+++ Makefile
@@ -4,43 +4,44 @@
####### Installation directory
-XGLOBE_DIR = /usr/local
-XGLOBE_LIB_DIR = $(XGLOBE_DIR)/lib/xglobe
+XGLOBE_DIR = $(PREFIX)
+XGLOBE_LIB_DIR = $(XGLOBE_DIR)/share/xglobe
XGLOBE_BIN_DIR = $(XGLOBE_DIR)/bin
####### Library directories - you may need to modify these
-X11_INCLUDE_DIR = /usr/X11R6/include
-QT_INCLUDE_DIR = $(QTDIR)/include
+X11_INCLUDE_DIR = $(LOCALBASE)/include
+QT_INCLUDE_DIR = $(PREFIX)/include/qt4
-QT_LIB_DIR = $(QTDIR)/lib
-X11_LIB_DIR = /usr/X11R6/lib
+QT_LIB_DIR = $(PREFIX)/lib/qt4
+X11_LIB_DIR = $(LOCALBASE)/lib
####### Compiler and tools
-CPP = g++
-LINK = g++
-MOC = moc
+CXX ?= c++
+CPP = ${CXX}
+LINK = ${CXX}
-+MOC = moc-qt4
++MOC = moc
INSTALL = install
####### compile and link options
-CFLAGS = $(INCLUDE_DIRS) -DXGLOBE_LIB_DIR=\"$(XGLOBE_LIB_DIR)\" $(WITH_QIMGIO) -O2 -Wall
+CFLAGS += -DQT3_SUPPORT $(INCLUDE_DIRS) -DXGLOBE_LIB_DIR=\"$(XGLOBE_LIB_DIR)\" $(WITH_QIMGIO)
LFLAGS =
-INCLUDE_DIRS = -I$(QT_INCLUDE_DIR) -I$(X11_INCLUDE_DIR)
+INCLUDE_DIRS = -I$(QT_INCLUDE_DIR) -I$(QT_INCLUDE_DIR)/Qt -I$(QT_INCLUDE_DIR)/QtGui -I$(X11_INCLUDE_DIR)
LIB_DIRS = -L$(QT_LIB_DIR) -L$(X11_LIB_DIR)
-LIBS = -lX11 -lqt -lm
+LIBS = -lX11 -lQtCore -lQt3Support -lQtGui -lm -pthread
# If you want to use the QImageIO lib (to support jpg and png maps) use the
# next two lines and comment the one above
#WITH_QIMGIO = -DWITH_QIMAGEIO
-#LIBS = -lX11 -lqt -lm -lqimgio
+#LIBS = -lX11 -lqt1 -lm -lqimgio
# If the linker complains about unresolved references try this:
-#LIBS = -lX11 -lqt -lm -lqimgio -lpng -lz -ljpeg
+#LIBS = -lX11 -lqt1 -lm -lqimgio -lpng -lz -ljpeg
####### Target
Index: head/audio/qmpdclient/Makefile
===================================================================
--- head/audio/qmpdclient/Makefile (revision 434379)
+++ head/audio/qmpdclient/Makefile (revision 434380)
@@ -1,47 +1,45 @@
# Created by: uyamba@gmail.com
# $FreeBSD$
PORTNAME= qmpdclient
PORTVERSION= 1.2.2
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://dump.bitcheese.net/files/
MAINTAINER= uyamba@gmail.com
COMMENT= Easy to use musicpd client written in Qt4
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
USES= qmake tar:bzip2
USE_QT4= moc_build rcc_build uic_build \
corelib gui network xml xmlpatterns
INSTALLS_ICONS= yes
OPTIONS_DEFINE= DBUS NLS DEBUG
DATADIR= ${PREFIX}/share/QMPDClient
WRKSRC= ${WRKDIR}/${PORTNAME}
OPTIONS_SUB= NLS
NLS_USE= QT4=linguisttools_build
DBUS_QMAKE_ON= CONFIG+=qdbus
DBUS_USE= QT4=dbus
DEBUG_QMAKE_ON= CONFIG+=debug
post-patch:
@${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' \
- -e 's|lupdate|lupdate-qt4|' \
- -e 's|lrelease|lrelease-qt4|' \
${WRKSRC}/${PORTNAME}.pro
@${REINPLACE_CMD} -e 's|/usr|${PREFIX}|' \
${WRKSRC}/src/notifications_dbus.cpp
post-patch-NLS-off:
@${REINPLACE_CMD} -e '/INSTALLS += translations/d' \
${WRKSRC}/${PORTNAME}.pro
.include <bsd.port.mk>
Index: head/cad/klayout/files/patch-src-Makefile.rules
===================================================================
--- head/cad/klayout/files/patch-src-Makefile.rules (revision 434379)
+++ head/cad/klayout/files/patch-src-Makefile.rules (nonexistent)
@@ -1,13 +0,0 @@
---- src/Makefile.rules.orig 2016-06-19 16:35:32 UTC
-+++ src/Makefile.rules
-@@ -73,8 +73,8 @@ ifeq ($(LOPT_TEST),)
- LOPT_TEST=$(LOPT)
- endif
-
--MOC=$(QTBIN)/moc
--UIC=$(QTBIN)/uic
-+MOC=$(QTBIN)/moc-qt4
-+UIC=$(QTBIN)/uic-qt4
- RCC=$(QTBIN)/rcc
-
- TESTSRC=$(TOP_SOURCE)/..
Property changes on: head/cad/klayout/files/patch-src-Makefile.rules
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/cad/klayout/files/patch-build.sh
===================================================================
--- head/cad/klayout/files/patch-build.sh (revision 434379)
+++ head/cad/klayout/files/patch-build.sh (revision 434380)
@@ -1,85 +1,71 @@
--- build.sh.orig 2016-06-19 16:35:28 UTC
+++ build.sh
@@ -3,7 +3,7 @@
EXEC_NAME=klayout
IS_MAC="no"
EXEC_HOLDER=""
-OTHER_BIN=""
+OTHER_BIN="strm2gds strm2oas strm2txt strm2cif strm2dxf strmcmp strmclip strmxor"
CURR_DIR=`pwd`
PLATFORM="linux-32-gcc-release"
@@ -39,6 +39,9 @@ Darwin*)
PLATFORM="mac-yosemite-gcc-release"
EXEC_HOLDER="klayout.app/Contents/MacOS"
;;
+FreeBSD)
+ PLATFORM="freebsd-32-gcc-release"
+ ;;
*)
# Assume Linux for the remaining variants
case `arch` in
@@ -374,7 +377,7 @@ if [ $HAVE_64BIT_COORD != 0 ]; then
echo " 64 bit coordinates enabled"
fi
-gcc_path=`type gcc 2>/dev/null`
+gcc_path=`type $CC 2>/dev/null`
if [ "$gcc_path" = "" ]; then
echo "*** ERROR: unable to locate gcc in path"
exit 1
-@@ -398,11 +401,11 @@ mac-*)
- ;;
- esac
-
--if [ ! -r $QTBIN/moc ]; then
-+if [ ! -r $QTBIN/moc-qt4 ]; then
- echo "*** ERROR: unable to locate Qt MOC in $QTBIN"
- exit 1
- fi
--if [ ! -r $QTBIN/uic ]; then
-+if [ ! -r $QTBIN/uic-qt4 ]; then
- echo "*** ERROR: unable to locate Qt UIC in $QTBIN"
- exit 1
- fi
@@ -463,11 +466,7 @@ else
cd $CURR_DIR
fi
-if ( gmake -v >/dev/null 2>/dev/null ); then
- MAKE_PRG=gmake
-else
- MAKE_PRG=make
-fi
+MAKE_PRG="gmake ${_MAKE_JOBS}"
mkdir -p $BUILD
echo "WIN_CYGWIN=$WIN_CYGWIN" >$BUILD/Makefile
@@ -515,6 +514,9 @@ echo "PYTHONINCLUDE=$PYTHONINCLUDE" >>$B
echo "HAVE_PYTHON=$HAVE_PYTHON" >>$BUILD/Makefile.env
echo "HAVE_QTBINDINGS=$HAVE_QTBINDINGS" >>$BUILD/Makefile.env
echo "HAVE_64BIT_COORD=$HAVE_64BIT_COORD" >>$BUILD/Makefile.env
+echo "CFLAGS=$CFLAGS" >>$BUILD/Makefile.env
+echo "CXXFLAGS=$CXXFLAGS" >>$BUILD/Makefile.env
+echo "LDLAGS=$LDFLAGS" >>$BUILD/Makefile.env
echo "Building plugins: $PLUGINS"
echo ""
@@ -549,12 +551,12 @@ if [ $WIN_CYGWIN = 0 ]; then
fi
echo ""
echo "Final binary is ready in $EXEC_FULL_PATH."
- echo "To run it, you may need to add the following to your LD_LIBRARY_PATH:"
- echo "$QTLIB"
+# echo "To run it, you may need to add the following to your LD_LIBRARY_PATH:"
+# echo "$QTLIB"
- LD_LIBRARY_PATH=$QTLIB:$LD_LIBRARY_PATH
- $EXEC_FULL_PATH -v
- $EXEC_FULL_PATH -h
+# LD_LIBRARY_PATH=$QTLIB:$LD_LIBRARY_PATH
+# $EXEC_FULL_PATH -v
+# $EXEC_FULL_PATH -h
fi
exit 0
Index: head/chinese/qt4-codecs-cn/Makefile
===================================================================
--- head/chinese/qt4-codecs-cn/Makefile (revision 434379)
+++ head/chinese/qt4-codecs-cn/Makefile (revision 434380)
@@ -1,45 +1,46 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= codecs
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= chinese
PKGNAMEPREFIX= qt4-
PKGNAMESUFFIX= -cn
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt GB 18030 codec plugin
USE_QT4= qmake_build corelib
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools src/sql \
src/svg src/testlib src/tools src/winmain src/xml \
src/xmlpatterns src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/plugins/${PORTNAME}/cn
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
post-configure:
${REINPLACE_CMD} -e 's|(test -z.*||g' ${BUILD_WRKSRC}/Makefile
.include <bsd.port.mk>
Index: head/chinese/qt4-codecs-tw/Makefile
===================================================================
--- head/chinese/qt4-codecs-tw/Makefile (revision 434379)
+++ head/chinese/qt4-codecs-tw/Makefile (revision 434380)
@@ -1,45 +1,46 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= codecs
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= chinese
PKGNAMEPREFIX= qt4-
PKGNAMESUFFIX= -tw
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt Big-5 codec plugin
USE_QT4= qmake_build corelib
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools src/sql \
src/svg src/testlib src/tools src/winmain src/xml \
src/xmlpatterns src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/plugins/${PORTNAME}/tw
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
post-configure:
${REINPLACE_CMD} -e 's|(test -z.*||g' ${BUILD_WRKSRC}/Makefile
.include <bsd.port.mk>
Index: head/comms/hamfax/files/patch-Makefile.in
===================================================================
--- head/comms/hamfax/files/patch-Makefile.in (revision 434379)
+++ head/comms/hamfax/files/patch-Makefile.in (nonexistent)
@@ -1,11 +0,0 @@
---- Makefile.in.orig 2012-12-05 23:08:33.000000000 +1100
-+++ Makefile.in 2012-12-05 23:08:50.000000000 +1100
-@@ -1613,7 +1613,7 @@
-
-
- moc_%.cpp: %.hpp
-- moc $< -o $@
-+ moc-qt4 $< -o $@
-
- # helper target for updating translation files
- @USE_LRELEASE_TRUE@lupdate: $(hamfax_SOURCES)
Property changes on: head/comms/hamfax/files/patch-Makefile.in
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/comms/qt5-connectivity/pkg-plist
===================================================================
--- head/comms/qt5-connectivity/pkg-plist (revision 434379)
+++ head/comms/qt5-connectivity/pkg-plist (revision 434380)
@@ -1,205 +1,216 @@
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/adapter1_bluez5_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/adapter_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/agent_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/androidbroadcastreceiver_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/bluez5_helper_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/bluez_data_p.h
-%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/corebluetoothwrapper_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/device1_bluez5_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/device_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/devicediscoverybroadcastreceiver_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/dummy_helper_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/hcimanager_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/inputstreamthread_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/jni_android_p.h
+%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/lecmaccalculator_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/localdevicebroadcastreceiver_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/lowenergynotificationhub_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/manager_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/obex_agent_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/obex_client1_bluez5_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/obex_client_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/obex_manager_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/obex_objectpush1_bluez5_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/obex_transfer1_bluez5_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/obex_transfer_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/objectmanager_p.h
+%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbluetooth_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtcentralmanager_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtchanneldelegate_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtconnectionmonitor_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtdeviceinquiry_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtdevicepair_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtl2capchannel_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtledeviceinquiry_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtnotifier_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtobexsession_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtrfcommchannel_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtsdpinquiry_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtservicerecord_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtsocketlistener_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtutility_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/profile1_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/properties_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothaddress_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothdevicediscoveryagent_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothdevicediscoverytimer_osx_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothdeviceinfo_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothhostinfo_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothlocaldevice_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothserver_osx_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothserver_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothservicediscoveryagent_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothserviceinfo_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothsocket_osx_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothsocket_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothtransferreply_bluez_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothtransferreply_osx_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothtransferreply_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothtransferrequest_p.h
+%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qleadvertiser_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qlowenergycontroller_osx_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qlowenergycontroller_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qlowenergyserviceprivate_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qprivatelinearbuffer_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/serveracceptancethread_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/service_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/servicediscoverybroadcastreceiver_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/servicemap_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/uistrings_p.h
%%QT_INCDIR%%/QtBluetooth/QBluetoothAddress
%%QT_INCDIR%%/QtBluetooth/QBluetoothDeviceDiscoveryAgent
%%QT_INCDIR%%/QtBluetooth/QBluetoothDeviceInfo
%%QT_INCDIR%%/QtBluetooth/QBluetoothHostInfo
%%QT_INCDIR%%/QtBluetooth/QBluetoothLocalDevice
%%QT_INCDIR%%/QtBluetooth/QBluetoothServer
%%QT_INCDIR%%/QtBluetooth/QBluetoothServiceDiscoveryAgent
%%QT_INCDIR%%/QtBluetooth/QBluetoothServiceInfo
%%QT_INCDIR%%/QtBluetooth/QBluetoothSocket
%%QT_INCDIR%%/QtBluetooth/QBluetoothTransferManager
%%QT_INCDIR%%/QtBluetooth/QBluetoothTransferReply
%%QT_INCDIR%%/QtBluetooth/QBluetoothTransferRequest
%%QT_INCDIR%%/QtBluetooth/QBluetoothUuid
+%%QT_INCDIR%%/QtBluetooth/QLowEnergyAdvertisingData
+%%QT_INCDIR%%/QtBluetooth/QLowEnergyAdvertisingParameters
%%QT_INCDIR%%/QtBluetooth/QLowEnergyCharacteristic
+%%QT_INCDIR%%/QtBluetooth/QLowEnergyCharacteristicData
+%%QT_INCDIR%%/QtBluetooth/QLowEnergyConnectionParameters
%%QT_INCDIR%%/QtBluetooth/QLowEnergyController
%%QT_INCDIR%%/QtBluetooth/QLowEnergyDescriptor
+%%QT_INCDIR%%/QtBluetooth/QLowEnergyDescriptorData
%%QT_INCDIR%%/QtBluetooth/QLowEnergyHandle
%%QT_INCDIR%%/QtBluetooth/QLowEnergyService
+%%QT_INCDIR%%/QtBluetooth/QLowEnergyServiceData
%%QT_INCDIR%%/QtBluetooth/QtBluetooth
%%QT_INCDIR%%/QtBluetooth/QtBluetoothDepends
%%QT_INCDIR%%/QtBluetooth/QtBluetoothVersion
%%QT_INCDIR%%/QtBluetooth/qbluetooth.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothaddress.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothdevicediscoveryagent.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothdeviceinfo.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothglobal.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothhostinfo.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothlocaldevice.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothserver.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothservicediscoveryagent.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothserviceinfo.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothsocket.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothtransfermanager.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothtransferreply.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothtransferrequest.h
%%QT_INCDIR%%/QtBluetooth/qbluetoothuuid.h
+%%QT_INCDIR%%/QtBluetooth/qlowenergyadvertisingdata.h
+%%QT_INCDIR%%/QtBluetooth/qlowenergyadvertisingparameters.h
%%QT_INCDIR%%/QtBluetooth/qlowenergycharacteristic.h
+%%QT_INCDIR%%/QtBluetooth/qlowenergycharacteristicdata.h
+%%QT_INCDIR%%/QtBluetooth/qlowenergyconnectionparameters.h
%%QT_INCDIR%%/QtBluetooth/qlowenergycontroller.h
%%QT_INCDIR%%/QtBluetooth/qlowenergydescriptor.h
+%%QT_INCDIR%%/QtBluetooth/qlowenergydescriptordata.h
%%QT_INCDIR%%/QtBluetooth/qlowenergyservice.h
+%%QT_INCDIR%%/QtBluetooth/qlowenergyservicedata.h
%%QT_INCDIR%%/QtBluetooth/qtbluetoothversion.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/adapter_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/agent_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/androidjninfc_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/androidmainnewintentlistener_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/dbusobjectmanager_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/dbusproperties_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/manager_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/neard_helper_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpserver_android_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpserver_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpserver_p_p.h
-%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpserver_simulator_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpsocket_android_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpsocket_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpsocket_p_p.h
-%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpsocket_simulator_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qndefnfcsmartposterrecord_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qndefrecord_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanager_android_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanager_emulator_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanager_neard_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanager_p.h
-%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanager_simulator_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanagerimpl_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanagervirtualbase_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldsharemanager_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldsharemanagerimpl_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldsharetarget_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldsharetargetimpl_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtagtype1_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtagtype2_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtagtype3_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtagtype4_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtarget_android_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtarget_emulator_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtarget_neard_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtarget_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qtlv_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/tag_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/targetemulator_p.h
%%QT_INCDIR%%/QtNfc/QNdefFilter
%%QT_INCDIR%%/QtNfc/QNdefMessage
%%QT_INCDIR%%/QtNfc/QNdefNfcIconRecord
%%QT_INCDIR%%/QtNfc/QNdefNfcSmartPosterRecord
%%QT_INCDIR%%/QtNfc/QNdefNfcTextRecord
%%QT_INCDIR%%/QtNfc/QNdefNfcUriRecord
%%QT_INCDIR%%/QtNfc/QNdefRecord
%%QT_INCDIR%%/QtNfc/QNearFieldManager
%%QT_INCDIR%%/QtNfc/QNearFieldShareManager
%%QT_INCDIR%%/QtNfc/QNearFieldShareTarget
%%QT_INCDIR%%/QtNfc/QNearFieldTarget
%%QT_INCDIR%%/QtNfc/QQmlNdefRecord
%%QT_INCDIR%%/QtNfc/QtNfc
%%QT_INCDIR%%/QtNfc/QtNfcDepends
%%QT_INCDIR%%/QtNfc/QtNfcVersion
%%QT_INCDIR%%/QtNfc/qndeffilter.h
%%QT_INCDIR%%/QtNfc/qndefmessage.h
%%QT_INCDIR%%/QtNfc/qndefnfcsmartposterrecord.h
%%QT_INCDIR%%/QtNfc/qndefnfctextrecord.h
%%QT_INCDIR%%/QtNfc/qndefnfcurirecord.h
%%QT_INCDIR%%/QtNfc/qndefrecord.h
%%QT_INCDIR%%/QtNfc/qnearfieldmanager.h
%%QT_INCDIR%%/QtNfc/qnearfieldsharemanager.h
%%QT_INCDIR%%/QtNfc/qnearfieldsharetarget.h
%%QT_INCDIR%%/QtNfc/qnearfieldtarget.h
%%QT_INCDIR%%/QtNfc/qnfcglobal.h
%%QT_INCDIR%%/QtNfc/qqmlndefrecord.h
%%QT_INCDIR%%/QtNfc/qtnfcversion.h
-%%QT_LIBDIR%%/cmake/Qt5Bluetooth/Qt5BluetoothConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Bluetooth/Qt5BluetoothConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5Nfc/Qt5NfcConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Nfc/Qt5NfcConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Bluetooth/Qt5BluetoothConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Bluetooth/Qt5BluetoothConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Nfc/Qt5NfcConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Nfc/Qt5NfcConfigVersion.cmake
%%QT_LIBDIR%%/libQt5Bluetooth.prl
%%QT_LIBDIR%%/libQt5Bluetooth.so
%%QT_LIBDIR%%/libQt5Bluetooth.so.5
%%QT_LIBDIR%%/libQt5Bluetooth.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Bluetooth.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Bluetooth.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt5Nfc.prl
%%QT_LIBDIR%%/libQt5Nfc.so
%%QT_LIBDIR%%/libQt5Nfc.so.5
%%QT_LIBDIR%%/libQt5Nfc.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Nfc.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Nfc.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_bluetooth.pri
%%QT_MKSPECDIR%%/modules/qt_lib_bluetooth_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_nfc.pri
%%QT_MKSPECDIR%%/modules/qt_lib_nfc_private.pri
%%QT_QMLDIR%%/QtBluetooth/libdeclarative_bluetooth.so
%%DEBUG%%%%QT_QMLDIR%%/QtBluetooth/libdeclarative_bluetooth.so.debug
%%QT_QMLDIR%%/QtBluetooth/plugins.qmltypes
%%QT_QMLDIR%%/QtBluetooth/qmldir
%%QT_QMLDIR%%/QtNfc/libdeclarative_nfc.so
%%DEBUG%%%%QT_QMLDIR%%/QtNfc/libdeclarative_nfc.so.debug
%%QT_QMLDIR%%/QtNfc/plugins.qmltypes
%%QT_QMLDIR%%/QtNfc/qmldir
libdata/pkgconfig/Qt5Bluetooth.pc
libdata/pkgconfig/Qt5Nfc.pc
Index: head/comms/qt5-sensors/pkg-plist
===================================================================
--- head/comms/qt5-sensors/pkg-plist (revision 434379)
+++ head/comms/qt5-sensors/pkg-plist (revision 434380)
@@ -1,140 +1,140 @@
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qaccelerometer_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qaltimeter_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qambientlightsensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qambienttemperaturesensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qcompass_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qdistancesensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qgyroscope_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qholstersensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qirproximitysensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qlightsensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qmagnetometer_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qorientationsensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qpressuresensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qproximitysensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qrotationsensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qsensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qsensorbackend_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qsensorgesture_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qsensorgesturemanagerprivate_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qtapsensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qtiltsensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/sensorlog_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/simulatorgesturescommon_p.h
%%QT_INCDIR%%/QtSensors/QAccelerometer
%%QT_INCDIR%%/QtSensors/QAccelerometerFilter
%%QT_INCDIR%%/QtSensors/QAccelerometerReading
%%QT_INCDIR%%/QtSensors/QAltimeter
%%QT_INCDIR%%/QtSensors/QAltimeterFilter
%%QT_INCDIR%%/QtSensors/QAltimeterReading
%%QT_INCDIR%%/QtSensors/QAmbientLightFilter
%%QT_INCDIR%%/QtSensors/QAmbientLightReading
%%QT_INCDIR%%/QtSensors/QAmbientLightSensor
%%QT_INCDIR%%/QtSensors/QAmbientTemperatureFilter
%%QT_INCDIR%%/QtSensors/QAmbientTemperatureReading
%%QT_INCDIR%%/QtSensors/QAmbientTemperatureSensor
%%QT_INCDIR%%/QtSensors/QCompass
%%QT_INCDIR%%/QtSensors/QCompassFilter
%%QT_INCDIR%%/QtSensors/QCompassReading
%%QT_INCDIR%%/QtSensors/QDistanceFilter
%%QT_INCDIR%%/QtSensors/QDistanceReading
%%QT_INCDIR%%/QtSensors/QDistanceSensor
%%QT_INCDIR%%/QtSensors/QGyroscope
%%QT_INCDIR%%/QtSensors/QGyroscopeFilter
%%QT_INCDIR%%/QtSensors/QGyroscopeReading
%%QT_INCDIR%%/QtSensors/QHolsterFilter
%%QT_INCDIR%%/QtSensors/QHolsterReading
%%QT_INCDIR%%/QtSensors/QHolsterSensor
%%QT_INCDIR%%/QtSensors/QIRProximityFilter
%%QT_INCDIR%%/QtSensors/QIRProximityReading
%%QT_INCDIR%%/QtSensors/QIRProximitySensor
%%QT_INCDIR%%/QtSensors/QLightFilter
%%QT_INCDIR%%/QtSensors/QLightReading
%%QT_INCDIR%%/QtSensors/QLightSensor
%%QT_INCDIR%%/QtSensors/QMagnetometer
%%QT_INCDIR%%/QtSensors/QMagnetometerFilter
%%QT_INCDIR%%/QtSensors/QMagnetometerReading
%%QT_INCDIR%%/QtSensors/QOrientationFilter
%%QT_INCDIR%%/QtSensors/QOrientationReading
%%QT_INCDIR%%/QtSensors/QOrientationSensor
%%QT_INCDIR%%/QtSensors/QPressureFilter
%%QT_INCDIR%%/QtSensors/QPressureReading
%%QT_INCDIR%%/QtSensors/QPressureSensor
%%QT_INCDIR%%/QtSensors/QProximityFilter
%%QT_INCDIR%%/QtSensors/QProximityReading
%%QT_INCDIR%%/QtSensors/QProximitySensor
%%QT_INCDIR%%/QtSensors/QRotationFilter
%%QT_INCDIR%%/QtSensors/QRotationReading
%%QT_INCDIR%%/QtSensors/QRotationSensor
%%QT_INCDIR%%/QtSensors/QSensor
%%QT_INCDIR%%/QtSensors/QSensorBackend
%%QT_INCDIR%%/QtSensors/QSensorBackendFactory
%%QT_INCDIR%%/QtSensors/QSensorChangesInterface
%%QT_INCDIR%%/QtSensors/QSensorFilter
%%QT_INCDIR%%/QtSensors/QSensorGesture
%%QT_INCDIR%%/QtSensors/QSensorGestureManager
%%QT_INCDIR%%/QtSensors/QSensorGesturePluginInterface
%%QT_INCDIR%%/QtSensors/QSensorGestureRecognizer
%%QT_INCDIR%%/QtSensors/QSensorManager
%%QT_INCDIR%%/QtSensors/QSensorPluginInterface
%%QT_INCDIR%%/QtSensors/QSensorReading
%%QT_INCDIR%%/QtSensors/QTapFilter
%%QT_INCDIR%%/QtSensors/QTapReading
%%QT_INCDIR%%/QtSensors/QTapSensor
%%QT_INCDIR%%/QtSensors/QTiltFilter
%%QT_INCDIR%%/QtSensors/QTiltReading
%%QT_INCDIR%%/QtSensors/QTiltSensor
%%QT_INCDIR%%/QtSensors/QtSensors
%%QT_INCDIR%%/QtSensors/QtSensorsDepends
%%QT_INCDIR%%/QtSensors/QtSensorsVersion
%%QT_INCDIR%%/QtSensors/qaccelerometer.h
%%QT_INCDIR%%/QtSensors/qaltimeter.h
%%QT_INCDIR%%/QtSensors/qambientlightsensor.h
%%QT_INCDIR%%/QtSensors/qambienttemperaturesensor.h
%%QT_INCDIR%%/QtSensors/qcompass.h
%%QT_INCDIR%%/QtSensors/qdistancesensor.h
%%QT_INCDIR%%/QtSensors/qgyroscope.h
%%QT_INCDIR%%/QtSensors/qholstersensor.h
%%QT_INCDIR%%/QtSensors/qirproximitysensor.h
%%QT_INCDIR%%/QtSensors/qlightsensor.h
%%QT_INCDIR%%/QtSensors/qmagnetometer.h
%%QT_INCDIR%%/QtSensors/qorientationsensor.h
%%QT_INCDIR%%/QtSensors/qpressuresensor.h
%%QT_INCDIR%%/QtSensors/qproximitysensor.h
%%QT_INCDIR%%/QtSensors/qrotationsensor.h
%%QT_INCDIR%%/QtSensors/qsensor.h
%%QT_INCDIR%%/QtSensors/qsensorbackend.h
%%QT_INCDIR%%/QtSensors/qsensorgesture.h
%%QT_INCDIR%%/QtSensors/qsensorgesturemanager.h
%%QT_INCDIR%%/QtSensors/qsensorgestureplugininterface.h
%%QT_INCDIR%%/QtSensors/qsensorgesturerecognizer.h
%%QT_INCDIR%%/QtSensors/qsensormanager.h
%%QT_INCDIR%%/QtSensors/qsensorplugin.h
%%QT_INCDIR%%/QtSensors/qsensorsglobal.h
%%QT_INCDIR%%/QtSensors/qtapsensor.h
%%QT_INCDIR%%/QtSensors/qtiltsensor.h
%%QT_INCDIR%%/QtSensors/qtsensorsversion.h
-%%QT_LIBDIR%%/cmake/Qt5Sensors/Qt5SensorsConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Sensors/Qt5SensorsConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5Sensors/Qt5Sensors_QShakeSensorGesturePlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Sensors/Qt5Sensors_QtSensorGesturePlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Sensors/Qt5Sensors_genericSensorPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Sensors/Qt5SensorsConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Sensors/Qt5SensorsConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Sensors/Qt5Sensors_QShakeSensorGesturePlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Sensors/Qt5Sensors_QtSensorGesturePlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Sensors/Qt5Sensors_genericSensorPlugin.cmake
%%QT_LIBDIR%%/libQt5Sensors.prl
%%QT_LIBDIR%%/libQt5Sensors.so
%%QT_LIBDIR%%/libQt5Sensors.so.5
%%QT_LIBDIR%%/libQt5Sensors.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Sensors.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Sensors.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_sensors.pri
%%QT_MKSPECDIR%%/modules/qt_lib_sensors_private.pri
%%QT_PLUGINDIR%%/sensorgestures/libqtsensorgestures_plugin.so
%%DEBUG%%%%QT_PLUGINDIR%%/sensorgestures/libqtsensorgestures_plugin.so.debug
%%QT_PLUGINDIR%%/sensorgestures/libqtsensorgestures_shakeplugin.so
%%DEBUG%%%%QT_PLUGINDIR%%/sensorgestures/libqtsensorgestures_shakeplugin.so.debug
%%QT_PLUGINDIR%%/sensors/libqtsensors_generic.so
%%DEBUG%%%%QT_PLUGINDIR%%/sensors/libqtsensors_generic.so.debug
%%QT_QMLDIR%%/QtSensors/libdeclarative_sensors.so
%%DEBUG%%%%QT_QMLDIR%%/QtSensors/libdeclarative_sensors.so.debug
%%QT_QMLDIR%%/QtSensors/plugins.qmltypes
%%QT_QMLDIR%%/QtSensors/qmldir
libdata/pkgconfig/Qt5Sensors.pc
Index: head/comms/qt5-serialbus/pkg-plist
===================================================================
--- head/comms/qt5-serialbus/pkg-plist (revision 434379)
+++ head/comms/qt5-serialbus/pkg-plist (revision 434380)
@@ -1,59 +1,61 @@
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qcanbusdevice_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbus_symbols_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusadu_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusclient_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbuscommevent_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusdevice_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusrtuserialmaster_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusrtuserialslave_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusserver_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbustcpclient_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbustcpserver_p.h
%%QT_INCDIR%%/QtSerialBus/QCanBus
%%QT_INCDIR%%/QtSerialBus/QCanBusDevice
%%QT_INCDIR%%/QtSerialBus/QCanBusFactory
%%QT_INCDIR%%/QtSerialBus/QCanBusFrame
%%QT_INCDIR%%/QtSerialBus/QModbusClient
%%QT_INCDIR%%/QtSerialBus/QModbusDataUnit
%%QT_INCDIR%%/QtSerialBus/QModbusDataUnitMap
%%QT_INCDIR%%/QtSerialBus/QModbusDevice
+%%QT_INCDIR%%/QtSerialBus/QModbusDeviceIdentification
%%QT_INCDIR%%/QtSerialBus/QModbusExceptionResponse
%%QT_INCDIR%%/QtSerialBus/QModbusPdu
%%QT_INCDIR%%/QtSerialBus/QModbusReply
%%QT_INCDIR%%/QtSerialBus/QModbusRequest
%%QT_INCDIR%%/QtSerialBus/QModbusResponse
%%QT_INCDIR%%/QtSerialBus/QModbusRtuSerialMaster
%%QT_INCDIR%%/QtSerialBus/QModbusRtuSerialSlave
%%QT_INCDIR%%/QtSerialBus/QModbusServer
%%QT_INCDIR%%/QtSerialBus/QModbusTcpClient
%%QT_INCDIR%%/QtSerialBus/QModbusTcpServer
%%QT_INCDIR%%/QtSerialBus/QtSerialBus
%%QT_INCDIR%%/QtSerialBus/QtSerialBusDepends
%%QT_INCDIR%%/QtSerialBus/QtSerialBusVersion
%%QT_INCDIR%%/QtSerialBus/qcanbus.h
%%QT_INCDIR%%/QtSerialBus/qcanbusdevice.h
%%QT_INCDIR%%/QtSerialBus/qcanbusfactory.h
%%QT_INCDIR%%/QtSerialBus/qcanbusframe.h
%%QT_INCDIR%%/QtSerialBus/qmodbusclient.h
%%QT_INCDIR%%/QtSerialBus/qmodbusdataunit.h
%%QT_INCDIR%%/QtSerialBus/qmodbusdevice.h
+%%QT_INCDIR%%/QtSerialBus/qmodbusdeviceidentification.h
%%QT_INCDIR%%/QtSerialBus/qmodbuspdu.h
%%QT_INCDIR%%/QtSerialBus/qmodbusreply.h
%%QT_INCDIR%%/QtSerialBus/qmodbusrtuserialmaster.h
%%QT_INCDIR%%/QtSerialBus/qmodbusrtuserialslave.h
%%QT_INCDIR%%/QtSerialBus/qmodbusserver.h
%%QT_INCDIR%%/QtSerialBus/qmodbustcpclient.h
%%QT_INCDIR%%/QtSerialBus/qmodbustcpserver.h
%%QT_INCDIR%%/QtSerialBus/qserialbusglobal.h
%%QT_INCDIR%%/QtSerialBus/qtserialbusversion.h
-%%QT_LIBDIR%%/cmake/Qt5SerialBus/Qt5SerialBusConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5SerialBus/Qt5SerialBusConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5SerialBus/Qt5SerialBusConfig.cmake
+%%QT_CMAKEDIR%%/Qt5SerialBus/Qt5SerialBusConfigVersion.cmake
%%QT_LIBDIR%%/libQt5SerialBus.prl
%%QT_LIBDIR%%/libQt5SerialBus.so
%%QT_LIBDIR%%/libQt5SerialBus.so.5
%%QT_LIBDIR%%/libQt5SerialBus.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5SerialBus.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5SerialBus.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_serialbus.pri
%%QT_MKSPECDIR%%/modules/qt_lib_serialbus_private.pri
libdata/pkgconfig/Qt5SerialBus.pc
Index: head/comms/qt5-serialport/pkg-plist
===================================================================
--- head/comms/qt5-serialport/pkg-plist (revision 434379)
+++ head/comms/qt5-serialport/pkg-plist (revision 434380)
@@ -1,23 +1,23 @@
%%QT_INCDIR%%/QtSerialPort/%%FULLVER%%/QtSerialPort/private/qserialport_p.h
%%QT_INCDIR%%/QtSerialPort/%%FULLVER%%/QtSerialPort/private/qserialportinfo_p.h
%%QT_INCDIR%%/QtSerialPort/%%FULLVER%%/QtSerialPort/private/qtudev_p.h
%%QT_INCDIR%%/QtSerialPort/QSerialPort
%%QT_INCDIR%%/QtSerialPort/QSerialPortInfo
%%QT_INCDIR%%/QtSerialPort/QtSerialPort
%%QT_INCDIR%%/QtSerialPort/QtSerialPortDepends
%%QT_INCDIR%%/QtSerialPort/QtSerialPortVersion
%%QT_INCDIR%%/QtSerialPort/qserialport.h
%%QT_INCDIR%%/QtSerialPort/qserialportglobal.h
%%QT_INCDIR%%/QtSerialPort/qserialportinfo.h
%%QT_INCDIR%%/QtSerialPort/qtserialportversion.h
-%%QT_LIBDIR%%/cmake/Qt5SerialPort/Qt5SerialPortConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5SerialPort/Qt5SerialPortConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5SerialPort/Qt5SerialPortConfig.cmake
+%%QT_CMAKEDIR%%/Qt5SerialPort/Qt5SerialPortConfigVersion.cmake
%%QT_LIBDIR%%/libQt5SerialPort.prl
%%QT_LIBDIR%%/libQt5SerialPort.so
%%QT_LIBDIR%%/libQt5SerialPort.so.5
%%QT_LIBDIR%%/libQt5SerialPort.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5SerialPort.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5SerialPort.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_serialport.pri
%%QT_MKSPECDIR%%/modules/qt_lib_serialport_private.pri
libdata/pkgconfig/Qt5SerialPort.pc
Index: head/comms/xcwcp/Makefile
===================================================================
--- head/comms/xcwcp/Makefile (revision 434379)
+++ head/comms/xcwcp/Makefile (revision 434380)
@@ -1,28 +1,30 @@
# $FreeBSD$
PORTNAME= xcwcp
COMMENT= X11 CW Tutor using unixcw
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libcw.so:comms/unixcw
MASTERDIR= ${.CURDIR}/../unixcw
PLIST= ${.CURDIR}/pkg-plist
USE_QT5= buildtools gui widgets qmake_build
USES= gettext
+# Qt from 5.7.0 on requires c++11.
+USE_CXXSTD= c++11
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-xcwcp
XCWCP= yes
PLIST_FILES= bin/xcwcp \
man/man1/xcwcp.1.gz
LDFLAGS+= -L${LOCALBASE}/lib -lintl
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/xcwcp/xcwcp ${STAGEDIR}${PREFIX}/bin/
${INSTALL_DATA} ${WRKSRC}/src/xcwcp/xcwcp.1 ${STAGEDIR}${MANPREFIX}/man/man1
.include "${MASTERDIR}/Makefile"
Index: head/databases/qt4-ibase-plugin/Makefile
===================================================================
--- head/databases/qt4-ibase-plugin/Makefile (revision 434379)
+++ head/databases/qt4-ibase-plugin/Makefile (revision 434380)
@@ -1,10 +1,10 @@
# Created by: Michael Nottebrock <lofi@FreeBSD.org>
# $FreeBSD$
-PORTREVISION= 1
+PORTREVISION= 2
COMMENT= Qt InterBase/Firebird database plugin
DB= ibase
USES= firebird
.include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers"
Index: head/databases/qt4-mysql-plugin/Makefile
===================================================================
--- head/databases/qt4-mysql-plugin/Makefile (revision 434379)
+++ head/databases/qt4-mysql-plugin/Makefile (revision 434380)
@@ -1,13 +1,13 @@
# Created by: Kay Lehmann <kay_lehmann@web.de>
# $FreeBSD$
-PORTREVISION= 1
+PORTREVISION= 2
COMMENT= Qt MySQL database plugin
DB= mysql
USE_MYSQL= yes
CXXFLAGS+= -I${LOCALBASE}/include/mysql
LDFLAGS+= -L${LOCALBASE}/lib/mysql
.include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers"
Index: head/databases/qt4-odbc-plugin/Makefile
===================================================================
--- head/databases/qt4-odbc-plugin/Makefile (revision 434379)
+++ head/databases/qt4-odbc-plugin/Makefile (revision 434380)
@@ -1,13 +1,13 @@
# Created by: Michael Nottebrock <lofi@FreeBSD.org>
# $FreeBSD$
-PORTREVISION= 2
+PORTREVISION= 3
DB= odbc
COMMENT= Qt Open Database Connectivity plugin
LIB_DEPENDS= libodbc.so:databases/unixODBC
LDFLAGS+= -lodbc
.include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers"
Index: head/databases/qt4-pgsql-plugin/Makefile
===================================================================
--- head/databases/qt4-pgsql-plugin/Makefile (revision 434379)
+++ head/databases/qt4-pgsql-plugin/Makefile (revision 434380)
@@ -1,10 +1,10 @@
# Created by: Lauri Watts <lauri@kde.org>
# $FreeBSD$
-PORTREVISION= 1
+PORTREVISION= 2
COMMENT= Qt PostgreSQL database plugin
DB= psql
USES= pgsql
.include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers"
Index: head/databases/qt4-sql/Makefile
===================================================================
--- head/databases/qt4-sql/Makefile (revision 434379)
+++ head/databases/qt4-sql/Makefile (revision 434380)
@@ -1,51 +1,52 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= sql
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= databases
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt SQL database integration module
USE_QT4= qmake_build moc_build corelib
QT_DIST= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools src/svg \
src/testlib src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
post-configure:
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
-E -e 's|(.*location=).*uic|\1${PREFIX}/${QT_BINDIR_REL}/${UIC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtSql.pc
.include <bsd.port.mk>
Index: head/databases/qt4-sqlite-plugin/Makefile
===================================================================
--- head/databases/qt4-sqlite-plugin/Makefile (revision 434379)
+++ head/databases/qt4-sqlite-plugin/Makefile (revision 434380)
@@ -1,10 +1,10 @@
# Created by: Michael Nottebrock <lofi@FreeBSD.org>
# $FreeBSD$
-PORTREVISION= 1
+PORTREVISION= 2
COMMENT= Qt SQLite 2 database plugin
DB= sqlite2
USES= sqlite:2
.include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers"
Index: head/databases/qt4-sqlite3-plugin/Makefile
===================================================================
--- head/databases/qt4-sqlite3-plugin/Makefile (revision 434379)
+++ head/databases/qt4-sqlite3-plugin/Makefile (revision 434380)
@@ -1,12 +1,12 @@
# Created by: Michael Nottebrock <lofi@FreeBSD.org>
# $FreeBSD$
-PORTREVISION= 2
+PORTREVISION= 3
COMMENT= Qt SQLite 3 database plugin
DB= sqlite
USES= sqlite:3
LDFLAGS+= -lsqlite3
.include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers"
Index: head/databases/qt5-sql/pkg-plist
===================================================================
--- head/databases/qt5-sql/pkg-plist (revision 434379)
+++ head/databases/qt5-sql/pkg-plist (revision 434380)
@@ -1,61 +1,61 @@
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_db2_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_ibase_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_mysql_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_oci_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_odbc_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_psql_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_sqlite2_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_sqlite_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_tds_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqlcachedresult_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqldriver_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqlnulldriver_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqlquerymodel_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqlresult_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqltablemodel_p.h
%%QT_INCDIR%%/QtSql/QSql
%%QT_INCDIR%%/QtSql/QSqlDatabase
%%QT_INCDIR%%/QtSql/QSqlDriver
%%QT_INCDIR%%/QtSql/QSqlDriverCreator
%%QT_INCDIR%%/QtSql/QSqlDriverCreatorBase
%%QT_INCDIR%%/QtSql/QSqlDriverPlugin
%%QT_INCDIR%%/QtSql/QSqlError
%%QT_INCDIR%%/QtSql/QSqlField
%%QT_INCDIR%%/QtSql/QSqlIndex
%%QT_INCDIR%%/QtSql/QSqlQuery
%%QT_INCDIR%%/QtSql/QSqlQueryModel
%%QT_INCDIR%%/QtSql/QSqlRecord
%%QT_INCDIR%%/QtSql/QSqlRelation
%%QT_INCDIR%%/QtSql/QSqlRelationalDelegate
%%QT_INCDIR%%/QtSql/QSqlRelationalTableModel
%%QT_INCDIR%%/QtSql/QSqlResult
%%QT_INCDIR%%/QtSql/QSqlTableModel
%%QT_INCDIR%%/QtSql/QtSql
%%QT_INCDIR%%/QtSql/QtSqlDepends
%%QT_INCDIR%%/QtSql/QtSqlVersion
%%QT_INCDIR%%/QtSql/qsql.h
%%QT_INCDIR%%/QtSql/qsqldatabase.h
%%QT_INCDIR%%/QtSql/qsqldriver.h
%%QT_INCDIR%%/QtSql/qsqldriverplugin.h
%%QT_INCDIR%%/QtSql/qsqlerror.h
%%QT_INCDIR%%/QtSql/qsqlfield.h
%%QT_INCDIR%%/QtSql/qsqlindex.h
%%QT_INCDIR%%/QtSql/qsqlquery.h
%%QT_INCDIR%%/QtSql/qsqlquerymodel.h
%%QT_INCDIR%%/QtSql/qsqlrecord.h
%%QT_INCDIR%%/QtSql/qsqlrelationaldelegate.h
%%QT_INCDIR%%/QtSql/qsqlrelationaltablemodel.h
%%QT_INCDIR%%/QtSql/qsqlresult.h
%%QT_INCDIR%%/QtSql/qsqltablemodel.h
%%QT_INCDIR%%/QtSql/qtsqlversion.h
-%%QT_LIBDIR%%/cmake/Qt5Sql/Qt5SqlConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Sql/Qt5SqlConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Sql/Qt5SqlConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Sql/Qt5SqlConfigVersion.cmake
%%QT_LIBDIR%%/libQt5Sql.prl
%%QT_LIBDIR%%/libQt5Sql.so
%%QT_LIBDIR%%/libQt5Sql.so.5
%%QT_LIBDIR%%/libQt5Sql.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Sql.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Sql.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_sql.pri
%%QT_MKSPECDIR%%/modules/qt_lib_sql_private.pri
libdata/pkgconfig/Qt5Sql.pc
Index: head/deskutils/fbreader/files/patch-makefiles_arch_desktop.mk
===================================================================
--- head/deskutils/fbreader/files/patch-makefiles_arch_desktop.mk (nonexistent)
+++ head/deskutils/fbreader/files/patch-makefiles_arch_desktop.mk (revision 434380)
@@ -0,0 +1,11 @@
+--- makefiles/arch/desktop.mk.orig 2017-01-18 21:42:48 UTC
++++ makefiles/arch/desktop.mk
+@@ -17,7 +17,7 @@ ifeq "$(UI_TYPE)" "qt"
+ MOC = moc-qt3
+ QTINCLUDE = -I /usr/include/qt3
+ else
+- MOC = moc-qt4
++ MOC = moc
+ QTINCLUDE = -I /usr/include/qt4
+ endif
+
Property changes on: head/deskutils/fbreader/files/patch-makefiles_arch_desktop.mk
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/dbus-qt4/pkg-plist
===================================================================
--- head/devel/dbus-qt4/pkg-plist (revision 434379)
+++ head/devel/dbus-qt4/pkg-plist (nonexistent)
@@ -1,76 +0,0 @@
-%%QT_BINDIR%%/qdbus
-%%DEBUG%%%%QT_BINDIR%%/qdbus.debug
-%%QT_BINDIR%%/qdbuscpp2xml
-%%DEBUG%%%%QT_BINDIR%%/qdbuscpp2xml.debug
-%%QT_BINDIR%%/qdbusxml2cpp
-%%DEBUG%%%%QT_BINDIR%%/qdbusxml2cpp.debug
-%%QT_INCDIR%%/Qt/QtDBus
-%%QT_INCDIR%%/Qt/qdbusabstractadaptor.h
-%%QT_INCDIR%%/Qt/qdbusabstractinterface.h
-%%QT_INCDIR%%/Qt/qdbusargument.h
-%%QT_INCDIR%%/Qt/qdbusconnection.h
-%%QT_INCDIR%%/Qt/qdbusconnectioninterface.h
-%%QT_INCDIR%%/Qt/qdbuscontext.h
-%%QT_INCDIR%%/Qt/qdbuserror.h
-%%QT_INCDIR%%/Qt/qdbusextratypes.h
-%%QT_INCDIR%%/Qt/qdbusinterface.h
-%%QT_INCDIR%%/Qt/qdbusmacros.h
-%%QT_INCDIR%%/Qt/qdbusmessage.h
-%%QT_INCDIR%%/Qt/qdbusmetatype.h
-%%QT_INCDIR%%/Qt/qdbuspendingcall.h
-%%QT_INCDIR%%/Qt/qdbuspendingreply.h
-%%QT_INCDIR%%/Qt/qdbusreply.h
-%%QT_INCDIR%%/Qt/qdbusserver.h
-%%QT_INCDIR%%/Qt/qdbusservicewatcher.h
-%%QT_INCDIR%%/Qt/qdbusunixfiledescriptor.h
-%%QT_INCDIR%%/Qt/qdbusvirtualobject.h
-%%QT_INCDIR%%/QtDBus/QDBusAbstractAdaptor
-%%QT_INCDIR%%/QtDBus/QDBusAbstractInterface
-%%QT_INCDIR%%/QtDBus/QDBusAbstractInterfaceBase
-%%QT_INCDIR%%/QtDBus/QDBusArgument
-%%QT_INCDIR%%/QtDBus/QDBusConnection
-%%QT_INCDIR%%/QtDBus/QDBusConnectionInterface
-%%QT_INCDIR%%/QtDBus/QDBusContext
-%%QT_INCDIR%%/QtDBus/QDBusError
-%%QT_INCDIR%%/QtDBus/QDBusInterface
-%%QT_INCDIR%%/QtDBus/QDBusMessage
-%%QT_INCDIR%%/QtDBus/QDBusMetaType
-%%QT_INCDIR%%/QtDBus/QDBusObjectPath
-%%QT_INCDIR%%/QtDBus/QDBusPendingCall
-%%QT_INCDIR%%/QtDBus/QDBusPendingCallWatcher
-%%QT_INCDIR%%/QtDBus/QDBusPendingReply
-%%QT_INCDIR%%/QtDBus/QDBusPendingReplyData
-%%QT_INCDIR%%/QtDBus/QDBusReply
-%%QT_INCDIR%%/QtDBus/QDBusServer
-%%QT_INCDIR%%/QtDBus/QDBusServiceWatcher
-%%QT_INCDIR%%/QtDBus/QDBusSignature
-%%QT_INCDIR%%/QtDBus/QDBusUnixFileDescriptor
-%%QT_INCDIR%%/QtDBus/QDBusVariant
-%%QT_INCDIR%%/QtDBus/QDBusVirtualObject
-%%QT_INCDIR%%/QtDBus/QtDBus
-%%QT_INCDIR%%/QtDBus/qdbusabstractadaptor.h
-%%QT_INCDIR%%/QtDBus/qdbusabstractinterface.h
-%%QT_INCDIR%%/QtDBus/qdbusargument.h
-%%QT_INCDIR%%/QtDBus/qdbusconnection.h
-%%QT_INCDIR%%/QtDBus/qdbusconnectioninterface.h
-%%QT_INCDIR%%/QtDBus/qdbuscontext.h
-%%QT_INCDIR%%/QtDBus/qdbuserror.h
-%%QT_INCDIR%%/QtDBus/qdbusextratypes.h
-%%QT_INCDIR%%/QtDBus/qdbusinterface.h
-%%QT_INCDIR%%/QtDBus/qdbusmacros.h
-%%QT_INCDIR%%/QtDBus/qdbusmessage.h
-%%QT_INCDIR%%/QtDBus/qdbusmetatype.h
-%%QT_INCDIR%%/QtDBus/qdbuspendingcall.h
-%%QT_INCDIR%%/QtDBus/qdbuspendingreply.h
-%%QT_INCDIR%%/QtDBus/qdbusreply.h
-%%QT_INCDIR%%/QtDBus/qdbusserver.h
-%%QT_INCDIR%%/QtDBus/qdbusservicewatcher.h
-%%QT_INCDIR%%/QtDBus/qdbusunixfiledescriptor.h
-%%QT_INCDIR%%/QtDBus/qdbusvirtualobject.h
-%%QT_LIBDIR%%/libQtDBus.prl
-%%QT_LIBDIR%%/libQtDBus.so
-%%QT_LIBDIR%%/libQtDBus.so.4
-%%QT_LIBDIR%%/libQtDBus.so.%%SHORTVER%%
-%%QT_LIBDIR%%/libQtDBus.so.%%FULLVER%%
-%%DEBUG%%%%QT_LIBDIR%%/libQtDBus.so.%%FULLVER%%.debug
-libdata/pkgconfig/QtDBus.pc
Property changes on: head/devel/dbus-qt4/pkg-plist
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/dbus-qt4/Makefile
===================================================================
--- head/devel/dbus-qt4/Makefile (revision 434379)
+++ head/devel/dbus-qt4/Makefile (nonexistent)
@@ -1,70 +0,0 @@
-# Created by: lofi@FreeBSD.org
-# $FreeBSD$
-
-PORTNAME= dbus
-DISTVERSION= ${QT4_VERSION}
-CATEGORIES= devel
-PKGNAMEPREFIX= qt4-
-
-MAINTAINER= kde@FreeBSD.org
-COMMENT= Qt D-Bus inter-process communication module
-
-LIB_DEPENDS= libdbus-1.so:devel/dbus
-
-BROKEN_sparc64= fails to compile: invalid conversion
-
-USES= pkgconfig
-USE_QT4= qmake_build moc_build rcc_build corelib xml
-QT_DIST= yes
-MAKE_JOBS_UNSAFE= yes
-
-HAS_CONFIGURE= yes
-USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
-
-ALL_TARGET= first
-CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
-MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
- PATH=${WRKSRC}/bin:$$PATH
-
-DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
- src/activeqt src/gui src/multimedia src/network src/opengl \
- src/openvg src/phonon src/qt3support src/s60installs \
- src/s60main src/script src/scripttools src/sql src/svg \
- src/testlib src/tools src/winmain src/xmlpatterns \
- src/3rdparty/clucene src/3rdparty/freetype \
- src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
- src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
-.for dne in ${DO_NOT_EXTRACT}
-EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
-.endfor
-
-BUILD_WRKSRC= ${WRKSRC}/tools/qdbus
-INSTALL_WRKSRC= ${BUILD_WRKSRC}
-
-.include <bsd.port.pre.mk>
-
-# Without this workaround, qdbus crashes.
-.if ${OPSYS} == FreeBSD && ${OSVERSION} > 1000000
-CXXFLAGS+= -fno-use-cxa-atexit
-.endif
-
-CONFIGURE_ARGS+= --no-gui \
- --no-phonon
-
-pre-configure:
- ${REINPLACE_CMD} -e 's|SUBDIRS = qdbus|SUBDIRS = ../../src/${PORTNAME} qdbus|g' \
- ${BUILD_WRKSRC}/qdbus.pro
- ${REINPLACE_CMD} -e 's|"/moc"|"/${MOC:T}"|' \
- ${BUILD_WRKSRC}/qdbuscpp2xml/qdbuscpp2xml.cpp
- ${MKDIR} ${WRKSRC}/mkspecs
- ${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
- ${LN} -sf ${MOC} ${WRKSRC}/bin/moc
- ${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
-
-post-configure:
- ${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' ${WRKSRC}/src/${PORTNAME}/Makefile
- ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
- -E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
- ${WRKSRC}/lib/pkgconfig/QtDBus.pc
-
-.include <bsd.port.post.mk>
Property changes on: head/devel/dbus-qt4/Makefile
___________________________________________________________________
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-FreeBSD=%H
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/dbus-qt4/files/patch-tools__qdbus__qdbus__qdbus.cpp
===================================================================
--- head/devel/dbus-qt4/files/patch-tools__qdbus__qdbus__qdbus.cpp (revision 434379)
+++ head/devel/dbus-qt4/files/patch-tools__qdbus__qdbus__qdbus.cpp (nonexistent)
@@ -1,144 +0,0 @@
---- tools/qdbus/qdbus/qdbus.cpp.orig 2012-04-26 21:45:51.000000000 +0200
-+++ tools/qdbus/qdbus/qdbus.cpp 2012-12-07 14:46:43.000000000 +0100
-@@ -54,7 +54,6 @@ QT_BEGIN_NAMESPACE
- Q_DBUS_EXPORT extern bool qt_dbus_metaobject_skip_annotations;
- QT_END_NAMESPACE
-
--static QDBusConnection connection(QLatin1String(""));
- static bool printArgumentsLiterally = false;
-
- static void showUsage()
-@@ -111,7 +110,7 @@ static void printArg(const QVariant &v)
- }
- }
-
--static void listObjects(const QString &service, const QString &path)
-+static void listObjects(const QString &service, const QString &path, const QDBusConnection &connection)
- {
- // make a low-level call, to avoid introspecting the Introspectable interface
- QDBusMessage call = QDBusMessage::createMethodCall(service, path.isEmpty() ? QLatin1String("/") : path,
-@@ -144,13 +143,13 @@ static void listObjects(const QString &s
- if (child.tagName() == QLatin1String("node")) {
- QString sub = path + QLatin1Char('/') + child.attribute(QLatin1String("name"));
- printf("%s\n", qPrintable(sub));
-- listObjects(service, sub);
-+ listObjects(service, sub, connection);
- }
- child = child.nextSiblingElement();
- }
- }
-
--static void listInterface(const QString &service, const QString &path, const QString &interface)
-+static void listInterface(const QString &service, const QString &path, const QString &interface, const QDBusConnection &connection)
- {
- QDBusInterface iface(service, path, interface, connection);
- if (!iface.isValid()) {
-@@ -204,7 +203,7 @@ static void listInterface(const QString
- }
- }
-
--static void listAllInterfaces(const QString &service, const QString &path)
-+static void listAllInterfaces(const QString &service, const QString &path, const QDBusConnection &connection)
- {
- // make a low-level call, to avoid introspecting the Introspectable interface
- QDBusMessage call = QDBusMessage::createMethodCall(service, path.isEmpty() ? QLatin1String("/") : path,
-@@ -229,7 +228,7 @@ static void listAllInterfaces(const QStr
- if (child.tagName() == QLatin1String("interface")) {
- QString ifaceName = child.attribute(QLatin1String("name"));
- if (QDBusUtil::isValidInterfaceName(ifaceName))
-- listInterface(service, path, ifaceName);
-+ listInterface(service, path, ifaceName, connection);
- else {
- qWarning("Invalid D-BUS interface name '%s' found while parsing introspection",
- qPrintable(ifaceName));
-@@ -253,7 +252,7 @@ static QStringList readList(QStringList
- return retval;
- }
-
--static int placeCall(const QString &service, const QString &path, const QString &interface,
-+static int placeCall(const QString &service, const QString &path, const QString &interface, const QDBusConnection &connection,
- const QString &member, const QStringList& arguments, bool try_prop=true)
- {
- QDBusInterface iface(service, path, interface, connection);
-@@ -291,7 +290,7 @@ static int placeCall(const QString &serv
- proparg += interface;
- proparg += member;
- proparg += args.first();
-- if (!placeCall(service, path, "org.freedesktop.DBus.Properties", "Set", proparg, false))
-+ if (!placeCall(service, path, "org.freedesktop.DBus.Properties", connection, "Set", proparg, false))
- return 0;
- }
- fprintf(stderr, "Cannot find '%s.%s' in object %s at %s\n",
-@@ -387,7 +386,7 @@ static int placeCall(const QString &serv
- QStringList proparg;
- proparg += interface;
- proparg += member;
-- if (!placeCall(service, path, "org.freedesktop.DBus.Properties", "Get", proparg, false))
-+ if (!placeCall(service, path, "org.freedesktop.DBus.Properties", connection, "Get", proparg, false))
- return 0;
- }
- if (err.type() == QDBusError::ServiceUnknown)
-@@ -448,6 +447,7 @@ int main(int argc, char **argv)
- QCoreApplication app(argc, argv);
- QStringList args = app.arguments();
- args.takeFirst();
-+ QDBusConnection connection(QLatin1String(""));
-
- bool connectionOpened = false;
- while (!args.isEmpty() && args.at(0).startsWith(QLatin1Char('-'))) {
-@@ -481,7 +481,7 @@ int main(int argc, char **argv)
- QDBusConnectionInterface *bus = connection.interface();
- if (args.isEmpty()) {
- printAllServices(bus);
-- exit(0);
-+ return 0;
- }
-
- QString service = args.takeFirst();
-@@ -491,22 +491,22 @@ int main(int argc, char **argv)
- return 0;
- }
- fprintf(stderr, "Service '%s' is not a valid name.\n", qPrintable(service));
-- exit(1);
-+ return 1;
- }
-
- if (args.isEmpty()) {
-- listObjects(service, QString());
-- exit(0);
-+ listObjects(service, QString(), connection);
-+ return 0;
- }
-
- QString path = args.takeFirst();
- if (!QDBusUtil::isValidObjectPath(path)) {
- fprintf(stderr, "Path '%s' is not a valid path name.\n", qPrintable(path));
-- exit(1);
-+ return 1;
- }
- if (args.isEmpty()) {
-- listAllInterfaces(service, path);
-- exit(0);
-+ listAllInterfaces(service, path, connection);
-+ return 0;
- }
-
- QString interface = args.takeFirst();
-@@ -521,14 +521,13 @@ int main(int argc, char **argv)
- }
- if (!interface.isEmpty() && !QDBusUtil::isValidInterfaceName(interface)) {
- fprintf(stderr, "Interface '%s' is not a valid interface name.\n", qPrintable(interface));
-- exit(1);
-+ return 1;
- }
- if (!QDBusUtil::isValidMemberName(member)) {
- fprintf(stderr, "Method name '%s' is not a valid member name.\n", qPrintable(member));
-- exit(1);
-+ return 1;
- }
-
-- int ret = placeCall(service, path, interface, member, args);
-- exit(ret);
-+ return placeCall(service, path, interface, connection, member, args);
- }
-
Property changes on: head/devel/dbus-qt4/files/patch-tools__qdbus__qdbus__qdbus.cpp
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/dbus-qt5/pkg-plist
===================================================================
--- head/devel/dbus-qt5/pkg-plist (revision 434379)
+++ head/devel/dbus-qt5/pkg-plist (nonexistent)
@@ -1,79 +0,0 @@
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/dbus_minimal_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbus_symbols_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusabstractadaptor_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusabstractinterface_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusargument_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusconnection_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusconnectionmanager_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbuscontext_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusintegrator_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusinterface_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusintrospection_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusmessage_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusmetaobject_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusmetatype_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbuspendingcall_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusthreaddebug_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusutil_p.h
-%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusxmlparser_p.h
-%%QT_INCDIR%%/QtDBus/QDBusAbstractAdaptor
-%%QT_INCDIR%%/QtDBus/QDBusAbstractInterface
-%%QT_INCDIR%%/QtDBus/QDBusAbstractInterfaceBase
-%%QT_INCDIR%%/QtDBus/QDBusArgument
-%%QT_INCDIR%%/QtDBus/QDBusConnection
-%%QT_INCDIR%%/QtDBus/QDBusConnectionInterface
-%%QT_INCDIR%%/QtDBus/QDBusContext
-%%QT_INCDIR%%/QtDBus/QDBusError
-%%QT_INCDIR%%/QtDBus/QDBusInterface
-%%QT_INCDIR%%/QtDBus/QDBusMessage
-%%QT_INCDIR%%/QtDBus/QDBusMetaType
-%%QT_INCDIR%%/QtDBus/QDBusObjectPath
-%%QT_INCDIR%%/QtDBus/QDBusPendingCall
-%%QT_INCDIR%%/QtDBus/QDBusPendingCallWatcher
-%%QT_INCDIR%%/QtDBus/QDBusPendingReply
-%%QT_INCDIR%%/QtDBus/QDBusPendingReplyData
-%%QT_INCDIR%%/QtDBus/QDBusReply
-%%QT_INCDIR%%/QtDBus/QDBusServer
-%%QT_INCDIR%%/QtDBus/QDBusServiceWatcher
-%%QT_INCDIR%%/QtDBus/QDBusSignature
-%%QT_INCDIR%%/QtDBus/QDBusUnixFileDescriptor
-%%QT_INCDIR%%/QtDBus/QDBusVariant
-%%QT_INCDIR%%/QtDBus/QDBusVirtualObject
-%%QT_INCDIR%%/QtDBus/QtDBus
-%%QT_INCDIR%%/QtDBus/QtDBusDepends
-%%QT_INCDIR%%/QtDBus/QtDBusVersion
-%%QT_INCDIR%%/QtDBus/qdbusabstractadaptor.h
-%%QT_INCDIR%%/QtDBus/qdbusabstractinterface.h
-%%QT_INCDIR%%/QtDBus/qdbusargument.h
-%%QT_INCDIR%%/QtDBus/qdbusconnection.h
-%%QT_INCDIR%%/QtDBus/qdbusconnectioninterface.h
-%%QT_INCDIR%%/QtDBus/qdbuscontext.h
-%%QT_INCDIR%%/QtDBus/qdbuserror.h
-%%QT_INCDIR%%/QtDBus/qdbusextratypes.h
-%%QT_INCDIR%%/QtDBus/qdbusinterface.h
-%%QT_INCDIR%%/QtDBus/qdbusmacros.h
-%%QT_INCDIR%%/QtDBus/qdbusmessage.h
-%%QT_INCDIR%%/QtDBus/qdbusmetatype.h
-%%QT_INCDIR%%/QtDBus/qdbuspendingcall.h
-%%QT_INCDIR%%/QtDBus/qdbuspendingreply.h
-%%QT_INCDIR%%/QtDBus/qdbusreply.h
-%%QT_INCDIR%%/QtDBus/qdbusserver.h
-%%QT_INCDIR%%/QtDBus/qdbusservicewatcher.h
-%%QT_INCDIR%%/QtDBus/qdbusunixfiledescriptor.h
-%%QT_INCDIR%%/QtDBus/qdbusvirtualobject.h
-%%QT_INCDIR%%/QtDBus/qtdbusversion.h
-%%QT_LIBDIR%%/cmake/Qt5DBus/Qt5DBusConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5DBus/Qt5DBusConfigExtras.cmake
-%%QT_LIBDIR%%/cmake/Qt5DBus/Qt5DBusConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5DBus/Qt5DBusMacros.cmake
-%%QT_LIBDIR%%/libQt5DBus.prl
-%%QT_LIBDIR%%/libQt5DBus.so
-%%QT_LIBDIR%%/libQt5DBus.so.5
-%%QT_LIBDIR%%/libQt5DBus.so.%%SHORTVER%%
-%%QT_LIBDIR%%/libQt5DBus.so.%%FULLVER%%
-%%DEBUG%%%%QT_LIBDIR%%/libQt5DBus.so.%%FULLVER%%.debug
-%%QT_BINDIR%%/qdbuscpp2xml
-%%QT_BINDIR%%/qdbusxml2cpp
-%%QT_MKSPECDIR%%/modules/qt_lib_dbus.pri
-%%QT_MKSPECDIR%%/modules/qt_lib_dbus_private.pri
-libdata/pkgconfig/Qt5DBus.pc
Property changes on: head/devel/dbus-qt5/pkg-plist
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/dbus-qt5/Makefile
===================================================================
--- head/devel/dbus-qt5/Makefile (revision 434379)
+++ head/devel/dbus-qt5/Makefile (nonexistent)
@@ -1,41 +0,0 @@
-# $FreeBSD$
-
-PORTNAME= dbus
-DISTVERSION= ${QT5_VERSION}
-CATEGORIES= devel
-PKGNAMEPREFIX= qt5-
-
-MAINTAINER= kde@FreeBSD.org
-COMMENT= Qt D-Bus inter-process communication module
-
-LIB_DEPENDS= libdbus-1.so:devel/dbus
-
-USE_QT5= core qmake_build buildtools_build
-QT_DIST= base
-HAS_CONFIGURE= yes
-CONFIGURE_ARGS= -no-gui -no-xcb
-USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
-
-BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
-INSTALL_WRKSRC= ${BUILD_WRKSRC}
-
-TOOLS= qdbuscpp2xml qdbusxml2cpp
-
-QT_DEFINES= DBUS
-QT_CONFIG= dbus
-
-post-build:
-.for t in ${TOOLS}
- @cd ${WRKSRC}/src/tools/${t} && \
- ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \
- ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET}
-.endfor
-
-post-install:
-.for t in ${TOOLS}
- @cd ${WRKSRC}/src/tools/${t} && \
- ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \
- ${MAKE_ARGS} ${INSTALL_TARGET}
-.endfor
-
-.include <bsd.port.mk>
Property changes on: head/devel/dbus-qt5/Makefile
___________________________________________________________________
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-FreeBSD=%H
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qmake4/pkg-plist
===================================================================
--- head/devel/qmake4/pkg-plist (revision 434379)
+++ head/devel/qmake4/pkg-plist (nonexistent)
@@ -1,557 +0,0 @@
-%%QT_BINDIR%%/qmake-qt4
-%%QT_MKSPECDIR%%/aix-g++-64/qmake.conf
-%%QT_MKSPECDIR%%/aix-g++-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/aix-g++/qmake.conf
-%%QT_MKSPECDIR%%/aix-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/aix-xlc-64/qmake.conf
-%%QT_MKSPECDIR%%/aix-xlc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/aix-xlc/qmake.conf
-%%QT_MKSPECDIR%%/aix-xlc/qplatformdefs.h
-%%QT_MKSPECDIR%%/blackberry-armv7le-qcc/qmake.conf
-%%QT_MKSPECDIR%%/blackberry-armv7le-qcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/blackberry-playbook-armv7le-qcc/qmake.conf
-%%QT_MKSPECDIR%%/blackberry-playbook-armv7le-qcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/blackberry-playbook-x86-qcc/qmake.conf
-%%QT_MKSPECDIR%%/blackberry-playbook-x86-qcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/blackberry-x86-qcc/qmake.conf
-%%QT_MKSPECDIR%%/blackberry-x86-qcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/aix/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/armcc.conf
-%%QT_MKSPECDIR%%/common/c89/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/clang-unix.conf
-%%QT_MKSPECDIR%%/common/clang.conf
-%%QT_MKSPECDIR%%/common/freebsd.conf
-%%QT_MKSPECDIR%%/common/g++-base.conf
-%%QT_MKSPECDIR%%/common/g++-macx.conf
-%%QT_MKSPECDIR%%/common/g++-unix.conf
-%%QT_MKSPECDIR%%/common/g++.conf
-%%QT_MKSPECDIR%%/common/gcc-base-ios.conf
-%%QT_MKSPECDIR%%/common/gcc-base-macx.conf
-%%QT_MKSPECDIR%%/common/gcc-base-unix.conf
-%%QT_MKSPECDIR%%/common/gcc-base.conf
-%%QT_MKSPECDIR%%/common/ghs-base-integrity.conf
-%%QT_MKSPECDIR%%/common/integrity/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/ios.conf
-%%QT_MKSPECDIR%%/common/ios/GLES/gl.h
-%%QT_MKSPECDIR%%/common/ios/GLES2/gl2.h
-%%QT_MKSPECDIR%%/common/ios/arch.conf
-%%QT_MKSPECDIR%%/common/ios/clang.conf
-%%QT_MKSPECDIR%%/common/ios/g++.conf
-%%QT_MKSPECDIR%%/common/ios/llvm.conf
-%%QT_MKSPECDIR%%/common/ios/qmake.conf
-%%QT_MKSPECDIR%%/common/ios/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/ios/versions.conf
-%%QT_MKSPECDIR%%/common/linux.conf
-%%QT_MKSPECDIR%%/common/llvm.conf
-%%QT_MKSPECDIR%%/common/mac.conf
-%%QT_MKSPECDIR%%/common/mac/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/posix/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/qcc-base-qnx.conf
-%%QT_MKSPECDIR%%/common/qcc-base.conf
-%%QT_MKSPECDIR%%/common/qnx/qmake.conf
-%%QT_MKSPECDIR%%/common/qnx/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/qws.conf
-%%QT_MKSPECDIR%%/common/symbian/appCaptionForTranslation.cpp
-%%QT_MKSPECDIR%%/common/symbian/backup_registration.xml
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknBitmapAnimation.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknDoc.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknFontAccess.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknInputLanguageInfo.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknLayoutFont.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknPopupFader.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknServerApp.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknUtils.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknsBasicBackgroundControlContext.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknsConstants.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknsDrawUtils.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknsItemID.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknsSkinInstance.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknsUtils.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/ApAccessPointItem.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/ApDataHandler.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/ApUtils.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/CDirectoryLocalizer.h
-%%QT_MKSPECDIR%%/common/symbian/header-wrappers/DocumentHandler.h
-%%QT_MKSPECDIR%%/common/symbian/packageNameForTranslation.cpp
-%%QT_MKSPECDIR%%/common/symbian/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/symbian/stl-off/new
-%%QT_MKSPECDIR%%/common/symbian/symbian-makefile.conf
-%%QT_MKSPECDIR%%/common/symbian/symbian-mmp.conf
-%%QT_MKSPECDIR%%/common/symbian/symbian.conf
-%%QT_MKSPECDIR%%/common/symbian/symbianincludes.h
-%%QT_MKSPECDIR%%/common/symbian/template.applite
-%%QT_MKSPECDIR%%/common/unix.conf
-%%QT_MKSPECDIR%%/common/wince/qmake.conf
-%%QT_MKSPECDIR%%/common/wince/qplatformdefs.h
-%%QT_MKSPECDIR%%/cygwin-g++/qmake.conf
-%%QT_MKSPECDIR%%/cygwin-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/darwin-g++/qmake.conf
-%%QT_MKSPECDIR%%/darwin-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/default
-%%QT_MKSPECDIR%%/features/build_pass.prf
-%%QT_MKSPECDIR%%/features/dbusadaptors.prf
-%%QT_MKSPECDIR%%/features/dbusinterfaces.prf
-%%QT_MKSPECDIR%%/features/debug.prf
-%%QT_MKSPECDIR%%/features/debug_and_release.prf
-%%QT_MKSPECDIR%%/features/declarative_debug.prf
-%%QT_MKSPECDIR%%/features/default_post.prf
-%%QT_MKSPECDIR%%/features/default_pre.prf
-%%QT_MKSPECDIR%%/features/designer.prf
-%%QT_MKSPECDIR%%/features/device_config.prf
-%%QT_MKSPECDIR%%/features/dll.prf
-%%QT_MKSPECDIR%%/features/egl.prf
-%%QT_MKSPECDIR%%/features/enable_backup.prf
-%%QT_MKSPECDIR%%/features/exclusive_builds.prf
-%%QT_MKSPECDIR%%/features/help.prf
-%%QT_MKSPECDIR%%/features/include_source_dir.prf
-%%QT_MKSPECDIR%%/features/incredibuild_xge.prf
-%%QT_MKSPECDIR%%/features/lex.prf
-%%QT_MKSPECDIR%%/features/link_pkgconfig.prf
-%%QT_MKSPECDIR%%/features/mac/default_post.prf
-%%QT_MKSPECDIR%%/features/mac/default_pre.prf
-%%QT_MKSPECDIR%%/features/mac/dwarf2.prf
-%%QT_MKSPECDIR%%/features/mac/objective_c.prf
-%%QT_MKSPECDIR%%/features/mac/ppc.prf
-%%QT_MKSPECDIR%%/features/mac/ppc64.prf
-%%QT_MKSPECDIR%%/features/mac/rez.prf
-%%QT_MKSPECDIR%%/features/mac/sdk.prf
-%%QT_MKSPECDIR%%/features/mac/x86.prf
-%%QT_MKSPECDIR%%/features/mac/x86_64.prf
-%%QT_MKSPECDIR%%/features/moc.prf
-%%QT_MKSPECDIR%%/features/no_debug_info.prf
-%%QT_MKSPECDIR%%/features/qdbus.prf
-%%QT_MKSPECDIR%%/features/qt.prf
-%%QT_MKSPECDIR%%/features/qt_config.prf
-%%QT_MKSPECDIR%%/features/qt_functions.prf
-%%QT_MKSPECDIR%%/features/qtestlib.prf
-%%QT_MKSPECDIR%%/features/qtopia.prf
-%%QT_MKSPECDIR%%/features/qtopiainc.prf
-%%QT_MKSPECDIR%%/features/qtopialib.prf
-%%QT_MKSPECDIR%%/features/qttest_p4.prf
-%%QT_MKSPECDIR%%/features/release.prf
-%%QT_MKSPECDIR%%/features/resources.prf
-%%QT_MKSPECDIR%%/features/shared.prf
-%%QT_MKSPECDIR%%/features/silent.prf
-%%QT_MKSPECDIR%%/features/static.prf
-%%QT_MKSPECDIR%%/features/static_and_shared.prf
-%%QT_MKSPECDIR%%/features/staticlib.prf
-%%QT_MKSPECDIR%%/features/symbian/add_mmp_rules.prf
-%%QT_MKSPECDIR%%/features/symbian/application_icon.prf
-%%QT_MKSPECDIR%%/features/symbian/armcc_warnings.prf
-%%QT_MKSPECDIR%%/features/symbian/data_caging_paths.prf
-%%QT_MKSPECDIR%%/features/symbian/debug.prf
-%%QT_MKSPECDIR%%/features/symbian/def_files.prf
-%%QT_MKSPECDIR%%/features/symbian/def_files_disabled.prf
-%%QT_MKSPECDIR%%/features/symbian/default_post.prf
-%%QT_MKSPECDIR%%/features/symbian/default_pre.prf
-%%QT_MKSPECDIR%%/features/symbian/do_not_build_as_thumb.prf
-%%QT_MKSPECDIR%%/features/symbian/epocallowdlldata.prf
-%%QT_MKSPECDIR%%/features/symbian/localize_deployment.prf
-%%QT_MKSPECDIR%%/features/symbian/moc.prf
-%%QT_MKSPECDIR%%/features/symbian/nested_exceptions.prf
-%%QT_MKSPECDIR%%/features/symbian/opengl.prf
-%%QT_MKSPECDIR%%/features/symbian/platform_paths.prf
-%%QT_MKSPECDIR%%/features/symbian/prepend_includepath.prf
-%%QT_MKSPECDIR%%/features/symbian/qt.prf
-%%QT_MKSPECDIR%%/features/symbian/qt_config.prf
-%%QT_MKSPECDIR%%/features/symbian/release.prf
-%%QT_MKSPECDIR%%/features/symbian/run_on_phone.prf
-%%QT_MKSPECDIR%%/features/symbian/sis_targets.prf
-%%QT_MKSPECDIR%%/features/symbian/stl.prf
-%%QT_MKSPECDIR%%/features/symbian/stl_off.prf
-%%QT_MKSPECDIR%%/features/symbian/symbian_appbooster.prf
-%%QT_MKSPECDIR%%/features/symbian/symbian_building.prf
-%%QT_MKSPECDIR%%/features/symbian/thread.prf
-%%QT_MKSPECDIR%%/features/testcase.prf
-%%QT_MKSPECDIR%%/features/uic.prf
-%%QT_MKSPECDIR%%/features/uitools.prf
-%%QT_MKSPECDIR%%/features/unix/bsymbolic_functions.prf
-%%QT_MKSPECDIR%%/features/unix/dylib.prf
-%%QT_MKSPECDIR%%/features/unix/gdb_dwarf_index.prf
-%%QT_MKSPECDIR%%/features/unix/hide_symbols.prf
-%%QT_MKSPECDIR%%/features/unix/largefile.prf
-%%QT_MKSPECDIR%%/features/unix/opengl.prf
-%%QT_MKSPECDIR%%/features/unix/openvg.prf
-%%QT_MKSPECDIR%%/features/unix/separate_debug_info.prf
-%%QT_MKSPECDIR%%/features/unix/thread.prf
-%%QT_MKSPECDIR%%/features/unix/x11.prf
-%%QT_MKSPECDIR%%/features/unix/x11inc.prf
-%%QT_MKSPECDIR%%/features/unix/x11lib.prf
-%%QT_MKSPECDIR%%/features/unix/x11sm.prf
-%%QT_MKSPECDIR%%/features/use_c_linker.prf
-%%QT_MKSPECDIR%%/features/vxworks.prf
-%%QT_MKSPECDIR%%/features/warn_off.prf
-%%QT_MKSPECDIR%%/features/warn_on.prf
-%%QT_MKSPECDIR%%/features/win32/console.prf
-%%QT_MKSPECDIR%%/features/win32/default_post.prf
-%%QT_MKSPECDIR%%/features/win32/default_pre.prf
-%%QT_MKSPECDIR%%/features/win32/dumpcpp.prf
-%%QT_MKSPECDIR%%/features/win32/embed_manifest_dll.prf
-%%QT_MKSPECDIR%%/features/win32/embed_manifest_exe.prf
-%%QT_MKSPECDIR%%/features/win32/exceptions.prf
-%%QT_MKSPECDIR%%/features/win32/exceptions_off.prf
-%%QT_MKSPECDIR%%/features/win32/ltcg.prf
-%%QT_MKSPECDIR%%/features/win32/msvc_mp.prf
-%%QT_MKSPECDIR%%/features/win32/opengl.prf
-%%QT_MKSPECDIR%%/features/win32/openvg.prf
-%%QT_MKSPECDIR%%/features/win32/qaxcontainer.prf
-%%QT_MKSPECDIR%%/features/win32/qaxserver.prf
-%%QT_MKSPECDIR%%/features/win32/qt_dll.prf
-%%QT_MKSPECDIR%%/features/win32/rtti.prf
-%%QT_MKSPECDIR%%/features/win32/rtti_off.prf
-%%QT_MKSPECDIR%%/features/win32/stl.prf
-%%QT_MKSPECDIR%%/features/win32/stl_off.prf
-%%QT_MKSPECDIR%%/features/win32/thread.prf
-%%QT_MKSPECDIR%%/features/win32/thread_off.prf
-%%QT_MKSPECDIR%%/features/win32/windows.prf
-%%QT_MKSPECDIR%%/features/yacc.prf
-%%QT_MKSPECDIR%%/freebsd-clang/qmake.conf
-%%QT_MKSPECDIR%%/freebsd-clang/qplatformdefs.h
-%%QT_MKSPECDIR%%/freebsd-g++/qmake.conf
-%%QT_MKSPECDIR%%/freebsd-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/freebsd-icc/qmake.conf
-%%QT_MKSPECDIR%%/freebsd-icc/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpux-acc-64/qmake.conf
-%%QT_MKSPECDIR%%/hpux-acc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpux-acc-o64/qmake.conf
-%%QT_MKSPECDIR%%/hpux-acc-o64/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpux-acc/qmake.conf
-%%QT_MKSPECDIR%%/hpux-acc/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpux-g++-64/qmake.conf
-%%QT_MKSPECDIR%%/hpux-g++-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpux-g++/qmake.conf
-%%QT_MKSPECDIR%%/hpux-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpuxi-acc-32/qmake.conf
-%%QT_MKSPECDIR%%/hpuxi-acc-32/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpuxi-acc-64/qmake.conf
-%%QT_MKSPECDIR%%/hpuxi-acc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpuxi-g++-64/qmake.conf
-%%QT_MKSPECDIR%%/hpuxi-g++-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/hurd-g++/qmake.conf
-%%QT_MKSPECDIR%%/hurd-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/irix-cc-64/qmake.conf
-%%QT_MKSPECDIR%%/irix-cc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/irix-cc/qmake.conf
-%%QT_MKSPECDIR%%/irix-cc/qplatformdefs.h
-%%QT_MKSPECDIR%%/irix-g++-64/qmake.conf
-%%QT_MKSPECDIR%%/irix-g++-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/irix-g++/qmake.conf
-%%QT_MKSPECDIR%%/irix-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-arm-gnueabi-g++/qmake.conf
-%%QT_MKSPECDIR%%/linux-arm-gnueabi-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-cxx/qmake.conf
-%%QT_MKSPECDIR%%/linux-cxx/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-ecc-64/qmake.conf
-%%QT_MKSPECDIR%%/linux-ecc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-g++-32/qmake.conf
-%%QT_MKSPECDIR%%/linux-g++-32/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-g++-64/qmake.conf
-%%QT_MKSPECDIR%%/linux-g++-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-g++-maemo/qmake.conf
-%%QT_MKSPECDIR%%/linux-g++-maemo/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-g++/qmake.conf
-%%QT_MKSPECDIR%%/linux-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-icc-32/qmake.conf
-%%QT_MKSPECDIR%%/linux-icc-32/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-icc-64/qmake.conf
-%%QT_MKSPECDIR%%/linux-icc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-icc/qmake.conf
-%%QT_MKSPECDIR%%/linux-icc/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-kcc/qmake.conf
-%%QT_MKSPECDIR%%/linux-kcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-llvm/qmake.conf
-%%QT_MKSPECDIR%%/linux-llvm/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-lsb-g++/qmake.conf
-%%QT_MKSPECDIR%%/linux-lsb-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-pgcc/qmake.conf
-%%QT_MKSPECDIR%%/linux-pgcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/lynxos-g++/qmake.conf
-%%QT_MKSPECDIR%%/lynxos-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-g++/Info.plist.app
-%%QT_MKSPECDIR%%/macx-g++/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-g++/qmake.conf
-%%QT_MKSPECDIR%%/macx-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-g++40/Info.plist.app
-%%QT_MKSPECDIR%%/macx-g++40/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-g++40/qmake.conf
-%%QT_MKSPECDIR%%/macx-g++40/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-g++42/Info.plist.app
-%%QT_MKSPECDIR%%/macx-g++42/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-g++42/qmake.conf
-%%QT_MKSPECDIR%%/macx-g++42/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-icc/qmake.conf
-%%QT_MKSPECDIR%%/macx-icc/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-llvm/Info.plist.app
-%%QT_MKSPECDIR%%/macx-llvm/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-llvm/qmake.conf
-%%QT_MKSPECDIR%%/macx-llvm/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-pbuilder/Info.plist.app
-%%QT_MKSPECDIR%%/macx-pbuilder/qmake.conf
-%%QT_MKSPECDIR%%/macx-pbuilder/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-xcode/Info.plist.app
-%%QT_MKSPECDIR%%/macx-xcode/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-xcode/qmake.conf
-%%QT_MKSPECDIR%%/macx-xcode/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-xlc/qmake.conf
-%%QT_MKSPECDIR%%/macx-xlc/qplatformdefs.h
-%%QT_MKSPECDIR%%/modules/README
-%%QT_MKSPECDIR%%/netbsd-g++/qmake.conf
-%%QT_MKSPECDIR%%/netbsd-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/openbsd-g++/qmake.conf
-%%QT_MKSPECDIR%%/openbsd-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qnx-armv7le-qcc/qmake.conf
-%%QT_MKSPECDIR%%/qnx-armv7le-qcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/qnx-x86-qcc/qmake.conf
-%%QT_MKSPECDIR%%/qnx-x86-qcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/freebsd-generic-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/freebsd-generic-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/integrity-arm-cxarm/qmake.conf
-%%QT_MKSPECDIR%%/qws/integrity-arm-cxarm/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/integrity-ppc-cxppc/qmake.conf
-%%QT_MKSPECDIR%%/qws/integrity-ppc-cxppc/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/integrity-x86-cx86/qmake.conf
-%%QT_MKSPECDIR%%/qws/integrity-x86-cx86/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-arm-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-arm-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-arm-gnueabi-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-arm-gnueabi-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-armv6-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-armv6-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-avr32-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-avr32-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-cellon-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-cellon-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-dm7000-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-dm7000-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-dm800-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-dm800-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-generic-g++-32/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-generic-g++-32/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-generic-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-generic-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-ipaq-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-ipaq-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-lsb-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-lsb-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-mips-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-mips-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-nacl-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-nacl-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-powerpc-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-powerpc-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-sh-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-sh-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-sh4al-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-sh4al-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-sharp-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-sharp-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-x86-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-x86-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-x86_64-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-x86_64-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/linux-zylonite-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/linux-zylonite-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/macx-generic-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/macx-generic-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/macx-nacl-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/macx-nacl-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/qnx-arm-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/qnx-arm-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/qnx-armv7-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/qnx-armv7-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/qnx-generic-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/qnx-generic-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/qnx-i386-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/qnx-i386-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/qnx-ppc-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/qnx-ppc-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qws/solaris-generic-g++/qmake.conf
-%%QT_MKSPECDIR%%/qws/solaris-generic-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/sco-cc/qmake.conf
-%%QT_MKSPECDIR%%/sco-cc/qplatformdefs.h
-%%QT_MKSPECDIR%%/sco-g++/qmake.conf
-%%QT_MKSPECDIR%%/sco-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/solaris-cc-64-stlport/qmake.conf
-%%QT_MKSPECDIR%%/solaris-cc-64-stlport/qplatformdefs.h
-%%QT_MKSPECDIR%%/solaris-cc-64/qmake.conf
-%%QT_MKSPECDIR%%/solaris-cc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/solaris-cc-stlport/qmake.conf
-%%QT_MKSPECDIR%%/solaris-cc-stlport/qplatformdefs.h
-%%QT_MKSPECDIR%%/solaris-cc/qmake.conf
-%%QT_MKSPECDIR%%/solaris-cc/qplatformdefs.h
-%%QT_MKSPECDIR%%/solaris-g++-64/qmake.conf
-%%QT_MKSPECDIR%%/solaris-g++-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/solaris-g++/qmake.conf
-%%QT_MKSPECDIR%%/solaris-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/symbian-abld/qmake.conf
-%%QT_MKSPECDIR%%/symbian-abld/qplatformdefs.h
-%%QT_MKSPECDIR%%/symbian-armcc/features/default_post.prf
-%%QT_MKSPECDIR%%/symbian-armcc/qmake.conf
-%%QT_MKSPECDIR%%/symbian-armcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/symbian-gcce/features/default_post.prf
-%%QT_MKSPECDIR%%/symbian-gcce/qmake.conf
-%%QT_MKSPECDIR%%/symbian-gcce/qplatformdefs.h
-%%QT_MKSPECDIR%%/symbian-sbsv2/flm/qt/qmake_clean.flm
-%%QT_MKSPECDIR%%/symbian-sbsv2/flm/qt/qmake_emulator_deployment.flm
-%%QT_MKSPECDIR%%/symbian-sbsv2/flm/qt/qmake_extra_pre_targetdep.flm
-%%QT_MKSPECDIR%%/symbian-sbsv2/flm/qt/qmake_post_link.flm
-%%QT_MKSPECDIR%%/symbian-sbsv2/flm/qt/qmake_store_build.flm
-%%QT_MKSPECDIR%%/symbian-sbsv2/flm/qt/qt.xml
-%%QT_MKSPECDIR%%/symbian-sbsv2/qmake.conf
-%%QT_MKSPECDIR%%/symbian-sbsv2/qplatformdefs.h
-%%QT_MKSPECDIR%%/tru64-cxx/qmake.conf
-%%QT_MKSPECDIR%%/tru64-cxx/qplatformdefs.h
-%%QT_MKSPECDIR%%/tru64-g++/qmake.conf
-%%QT_MKSPECDIR%%/tru64-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unixware-cc/qmake.conf
-%%QT_MKSPECDIR%%/unixware-cc/qplatformdefs.h
-%%QT_MKSPECDIR%%/unixware-g++/qmake.conf
-%%QT_MKSPECDIR%%/unixware-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/linux-armcc/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/linux-armcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/linux-clang/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/linux-clang/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/linux-host-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/linux-host-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-clang/Info.plist.app
-%%QT_MKSPECDIR%%/unsupported/macx-clang/Info.plist.lib
-%%QT_MKSPECDIR%%/unsupported/macx-clang/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-clang/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-clang-libc++/Info.plist.app
-%%QT_MKSPECDIR%%/unsupported/macx-clang-libc++/Info.plist.lib
-%%QT_MKSPECDIR%%/unsupported/macx-clang-libc++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-clang-libc++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-clang-legacy/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-clang-legacy/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-clang/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-clang/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-g++-legacy/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-g++-legacy/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-llvm-legacy/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-llvm-legacy/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-llvm/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-llvm/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-clang-legacy/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-clang-legacy/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-clang/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-clang/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-g++-legacy/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-g++-legacy/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-llvm-legacy/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-llvm-legacy/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-llvm/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-llvm/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/qnx-X11-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/qnx-X11-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/qws/integrity-x86-cx86/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/qws/integrity-x86-cx86/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/qws/linux-x86-openkode-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/qws/linux-x86-openkode-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/qws/qnx-641/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/qws/qnx-641/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-dcc/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-dcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-dcc/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-dcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/win32-g++-4.6-cross/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/win32-g++-4.6-cross/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/win32-g++-cross/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/win32-g++-cross/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-borland/qmake.conf
-%%QT_MKSPECDIR%%/win32-borland/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-g++-4.6/qmake.conf
-%%QT_MKSPECDIR%%/win32-g++-4.6/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-g++/qmake.conf
-%%QT_MKSPECDIR%%/win32-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-icc/qmake.conf
-%%QT_MKSPECDIR%%/win32-icc/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2003/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2003/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2010/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2010/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2012/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2012/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2013/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2013/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2015/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2015/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince50standard-armv4i-msvc2005/default_post.prf
-%%QT_MKSPECDIR%%/wince50standard-armv4i-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wince50standard-armv4i-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince50standard-armv4i-msvc2008/default_post.prf
-%%QT_MKSPECDIR%%/wince50standard-armv4i-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wince50standard-armv4i-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince50standard-mipsii-msvc2005/default_post.prf
-%%QT_MKSPECDIR%%/wince50standard-mipsii-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wince50standard-mipsii-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince50standard-mipsii-msvc2008/default_post.prf
-%%QT_MKSPECDIR%%/wince50standard-mipsii-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wince50standard-mipsii-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince50standard-mipsiv-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wince50standard-mipsiv-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince50standard-mipsiv-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wince50standard-mipsiv-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince50standard-sh4-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wince50standard-sh4-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince50standard-sh4-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wince50standard-sh4-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince50standard-x86-msvc2005/default_post.prf
-%%QT_MKSPECDIR%%/wince50standard-x86-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wince50standard-x86-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince50standard-x86-msvc2008/default_post.prf
-%%QT_MKSPECDIR%%/wince50standard-x86-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wince50standard-x86-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince60standard-armv4i-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wince60standard-armv4i-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince60standard-x86-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wince60standard-x86-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince70embedded-armv4i-msvc2008/default_post.prf
-%%QT_MKSPECDIR%%/wince70embedded-armv4i-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wince70embedded-armv4i-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince70embedded-x86-msvc2008/default_post.prf
-%%QT_MKSPECDIR%%/wince70embedded-x86-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wince70embedded-x86-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wincewm50pocket-msvc2005/default_post.prf
-%%QT_MKSPECDIR%%/wincewm50pocket-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wincewm50pocket-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wincewm50pocket-msvc2008/default_post.prf
-%%QT_MKSPECDIR%%/wincewm50pocket-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wincewm50pocket-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wincewm50smart-msvc2005/default_post.prf
-%%QT_MKSPECDIR%%/wincewm50smart-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wincewm50smart-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wincewm50smart-msvc2008/default_post.prf
-%%QT_MKSPECDIR%%/wincewm50smart-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wincewm50smart-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wincewm60professional-msvc2005/default_post.prf
-%%QT_MKSPECDIR%%/wincewm60professional-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wincewm60professional-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wincewm60professional-msvc2008/default_post.prf
-%%QT_MKSPECDIR%%/wincewm60professional-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wincewm60professional-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wincewm60standard-msvc2005/default_post.prf
-%%QT_MKSPECDIR%%/wincewm60standard-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wincewm60standard-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wincewm60standard-msvc2008/default_post.prf
-%%QT_MKSPECDIR%%/wincewm60standard-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wincewm60standard-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wincewm65professional-msvc2005/default_post.prf
-%%QT_MKSPECDIR%%/wincewm65professional-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wincewm65professional-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wincewm65professional-msvc2008/default_post.prf
-%%QT_MKSPECDIR%%/wincewm65professional-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wincewm65professional-msvc2008/qplatformdefs.h
Property changes on: head/devel/qmake4/pkg-plist
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qmake4/Makefile
===================================================================
--- head/devel/qmake4/Makefile (revision 434379)
+++ head/devel/qmake4/Makefile (nonexistent)
@@ -1,80 +0,0 @@
-# Created by: lofi@FreeBSD.org, mi@aldan.algebra.com
-# $FreeBSD$
-
-PORTNAME= qmake
-DISTVERSION= ${QT4_VERSION}
-CATEGORIES= devel
-PKGNAMEPREFIX= qt4-
-
-MAINTAINER= kde@FreeBSD.org
-COMMENT= Qt Makefile generator
-
-USE_QT4= # empty
-QT_DIST= yes
-REINPLACE_ARGS= -i ""
-WRKSRC_SUBDIR= ${PORTNAME}
-MAKEFILE= ${FILESDIR}/Makefile.bsd
-MAKE_ENV+= FILESDIR="${FILESDIR}" \
- QMAKE_COMPILER="${QMAKE_COMPILER}" \
- QMAKE="${QMAKE}" \
- QT_BINDIR_REL="${QT_BINDIR_REL}" \
- QT_MKSPECDIR_REL="${QT_MKSPECDIR_REL}"
-TODAY_CMD= /bin/date +%Y-%m-%d
-
-SUB_FILES= qconfig.cpp
-SUB_LIST= TODAY="$$(${TODAY_CMD})" \
- ${PLIST_SUB:NPREFIX=*}
-
-EXTRACT_AFTER_ARGS= \
- '${DISTNAME}/mkspecs' \
- '${DISTNAME}/include/*/*' \
- '${DISTNAME}/src/*/*.h' \
- '${DISTNAME}/qmake' \
- '${DISTNAME}/src/corelib/tools' \
- '${DISTNAME}/src/corelib/io' \
- '${DISTNAME}/src/corelib/global' \
- '${DISTNAME}/src/corelib/plugin' \
- '${DISTNAME}/src/corelib/kernel' \
- '${DISTNAME}/src/corelib/codecs' \
- '${DISTNAME}/src/corelib/xml' \
- '${DISTNAME}/src/3rdparty/md4' \
- '${DISTNAME}/src/3rdparty/md5' \
- '${DISTNAME}/src/3rdparty/sha1' \
- '${DISTNAME}/tools/shared/symbian' \
- '${DISTNAME}/tools/shared/windows'
-
-EXTRA_PATCHES= # empty
-
-post-patch:
- @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
- -e 's|release|release thread|' \
- -e 's|uic|${UIC:T}|' \
- -e 's|moc|${MOC:T}|' \
- ${WRKSRC:H}/mkspecs/common/freebsd.conf
- @${REINPLACE_CMD} -e 's|@QMAKE_QTOBJS@||g' ${WRKSRC}/Makefile.unix
- @${REINPLACE_CMD} -e 's|unix.conf|freebsd.conf|' \
- ${WRKSRC:H}/mkspecs/freebsd-icc/qmake.conf
- @${RM} -R ${WRKSRC:H}/mkspecs/freebsd-g++46
-
-# Add mkspec for clang
- @${CP} -a ${WRKSRC:H}/mkspecs/freebsd-g++ \
- ${WRKSRC:H}/mkspecs/freebsd-clang
- @${REINPLACE_CMD} -e 's|g++|clang|g' \
- -e '/gcc-base-unix.conf/d' \
- ${WRKSRC:H}/mkspecs/freebsd-clang/qmake.conf
-
- @${RM} ${WRKSRC:H}/mkspecs/*/*.orig
-
-do-configure: apply-slist
- ${MV} ${WRKDIR}/qconfig.cpp \
- ${WRKSRC:H}/src/corelib/global/qconfig.cpp
- ${ECHO} '/* empty */' > ${WRKSRC}/qconfig.h
- ${LN} ${WRKSRC}/qconfig.h ${WRKSRC:H}/src/corelib/global/qconfig.h
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/${QMAKE:T} ${STAGEDIR}${PREFIX}/${QT_BINDIR_REL}
- ${MKDIR} ${STAGEDIR}${PREFIX}/${QT_MKSPECDIR_REL:H} && \
- cd ${WRKSRC}/.. && ${COPYTREE_SHARE} mkspecs ${STAGEDIR}${PREFIX}/${QT_MKSPECDIR_REL:H}
- ${LN} -sf freebsd-${QMAKE_COMPILER} ${STAGEDIR}${PREFIX}/share/qt4/mkspecs/default
-
-.include <bsd.port.mk>
Property changes on: head/devel/qmake4/Makefile
___________________________________________________________________
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-FreeBSD=%H
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qmake4/files/patch-mkspecs__freebsd-g++__qmake.conf
===================================================================
--- head/devel/qmake4/files/patch-mkspecs__freebsd-g++__qmake.conf (revision 434379)
+++ head/devel/qmake4/files/patch-mkspecs__freebsd-g++__qmake.conf (nonexistent)
@@ -1,51 +0,0 @@
---- ../mkspecs/freebsd-g++/qmake.conf.orig 2013-06-07 05:17:00.000000000 +0000
-+++ ../mkspecs/freebsd-g++/qmake.conf 2013-12-05 23:07:25.210153920 +0000
-@@ -8,47 +8,7 @@
- CONFIG += qt warn_on release link_prl gdb_dwarf_index
- QT += core gui
-
--QMAKE_CFLAGS_THREAD = -pthread -D_THREAD_SAFE
--
--QMAKE_CXXFLAGS_THREAD = $$QMAKE_CFLAGS_THREAD
--
--# Addon software goes into /usr/local on the BSDs, by default we will look there
--QMAKE_INCDIR = /usr/local/include
--QMAKE_LIBDIR = /usr/local/lib
--QMAKE_INCDIR_X11 = /usr/X11R6/include
--QMAKE_LIBDIR_X11 = /usr/X11R6/lib
--QMAKE_INCDIR_QT = $$[QT_INSTALL_HEADERS]
--QMAKE_LIBDIR_QT = $$[QT_INSTALL_LIBS]
--QMAKE_INCDIR_OPENGL = /usr/X11R6/include
--QMAKE_LIBDIR_OPENGL = /usr/X11R6/lib
--
--QMAKE_LFLAGS_THREAD = -pthread
--
--QMAKE_LIBS =
--QMAKE_LIBS_DYNLOAD =
--QMAKE_LIBS_X11 = -lXext -lX11 -lm
--QMAKE_LIBS_X11SM = -lSM -lICE
--QMAKE_LIBS_OPENGL = -lGL
--QMAKE_LIBS_OPENGL_QT = -lGL
--QMAKE_LIBS_THREAD =
--
--QMAKE_MOC = $$[QT_INSTALL_BINS]/moc
--QMAKE_UIC = $$[QT_INSTALL_BINS]/uic
--
--QMAKE_AR = ar cqs
--QMAKE_OBJCOPY = objcopy
--QMAKE_RANLIB =
--
--QMAKE_TAR = tar -cf
--QMAKE_GZIP = gzip -9f
--
--QMAKE_COPY = cp -f
--QMAKE_MOVE = mv -f
--QMAKE_DEL_FILE = rm -f
--QMAKE_DEL_DIR = rmdir
--QMAKE_CHK_DIR_EXISTS = test -d
--QMAKE_MKDIR = mkdir -p
--include(../common/unix.conf)
-+include(../common/freebsd.conf)
- include(../common/gcc-base-unix.conf)
- include(../common/g++-unix.conf)
- load(qt_config)
Property changes on: head/devel/qmake4/files/patch-mkspecs__freebsd-g++__qmake.conf
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qmake4/files/patch-mkspecs__common__freebsd.conf
===================================================================
--- head/devel/qmake4/files/patch-mkspecs__common__freebsd.conf (revision 434379)
+++ head/devel/qmake4/files/patch-mkspecs__common__freebsd.conf (nonexistent)
@@ -1,55 +0,0 @@
---- ../mkspecs/common/freebsd.conf.orig 2013-12-05 22:57:28.140145000 +0000
-+++ ../mkspecs/common/freebsd.conf 2013-12-05 23:10:22.897149108 +0000
-@@ -0,0 +1,52 @@
-+#
-+# qmake configuration for FreeBSD
-+#
-+
-+QMAKE_CFLAGS_THREAD = -pthread -D_THREAD_SAFE
-+
-+QMAKE_CXXFLAGS_THREAD = $$QMAKE_CFLAGS_THREAD
-+
-+# Addon software goes into /usr/local on the BSDs, by default we will look there
-+QMAKE_INCDIR = $$[QT_INSTALL_HEADERS] /usr/local/include
-+QMAKE_LIBDIR = $$[QT_INSTALL_LIBS] /usr/local/lib
-+QMAKE_INCDIR_X11 = /usr/local/include
-+QMAKE_LIBDIR_X11 = /usr/local/lib
-+QMAKE_INCDIR_QT = $$[QT_INSTALL_HEADERS]
-+QMAKE_LIBDIR_QT = $$[QT_INSTALL_LIBS]
-+QMAKE_INCDIR_OPENGL = /usr/local/include
-+QMAKE_LIBDIR_OPENGL = /usr/local/lib
-+
-+QMAKE_LFLAGS_THREAD = -pthread
-+
-+QMAKE_LIBS =
-+QMAKE_LIBS_DYNLOAD =
-+QMAKE_LIBS_X11 = -lXext -lX11 -lm
-+QMAKE_LIBS_X11SM = -lSM -lICE
-+QMAKE_LIBS_OPENGL = -lGL
-+QMAKE_LIBS_OPENGL_QT = -lGL
-+QMAKE_LIBS_THREAD =
-+
-+QMAKE_MOC = $$[QT_INSTALL_BINS]/moc
-+QMAKE_UIC = $$[QT_INSTALL_BINS]/uic
-+
-+QMAKE_AR = ar cqs
-+QMAKE_OBJCOPY = objcopy
-+QMAKE_RANLIB =
-+
-+QMAKE_TAR = tar -cf
-+QMAKE_GZIP = gzip -9f
-+
-+QMAKE_COPY = cp -f
-+QMAKE_COPY_FILE = $$QMAKE_COPY
-+QMAKE_COPY_DIR = $$QMAKE_COPY -R
-+QMAKE_MOVE = mv -f
-+QMAKE_DEL_FILE = rm -f
-+QMAKE_DEL_DIR = rmdir
-+QMAKE_STRIP = strip
-+QMAKE_STRIPFLAGS_LIB += --strip-unneeded
-+QMAKE_CHK_DIR_EXISTS = test -d
-+QMAKE_MKDIR = mkdir -p
-+QMAKE_INSTALL_FILE = install -m 644 -p
-+QMAKE_INSTALL_PROGRAM = install -m 755 -p
-+
-+include(unix.conf)
Property changes on: head/devel/qmake4/files/patch-mkspecs__common__freebsd.conf
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qmake4/files/qconfig.cpp.in
===================================================================
--- head/devel/qmake4/files/qconfig.cpp.in (revision 434379)
+++ head/devel/qmake4/files/qconfig.cpp.in (nonexistent)
@@ -1,21 +0,0 @@
-/*
- * $FreeBSD$
- */
-
-/* Installation date */
-static const char qt_configure_installation [12+11] = "qt_instdate=%%TODAY%%";
-
-#define QT_CONFIGURE_LICENSEE "Open Source";
-#define QT_CONFIGURE_LICENSED_PRODUCTS "OpenSource";
-#define QT_CONFIGURE_PREFIX_PATH "%%PREFIX%%";
-#define QT_CONFIGURE_DOCUMENTATION_PATH "%%PREFIX%%/%%QT_DOCDIR%%";
-#define QT_CONFIGURE_HEADERS_PATH "%%PREFIX%%/%%QT_INCDIR%%";
-#define QT_CONFIGURE_LIBRARIES_PATH "%%PREFIX%%/%%QT_LIBDIR%%";
-#define QT_CONFIGURE_BINARIES_PATH "%%PREFIX%%/%%QT_BINDIR%%";
-#define QT_CONFIGURE_PLUGINS_PATH "%%PREFIX%%/%%QT_PLUGINDIR%%";
-#define QT_CONFIGURE_IMPORTS_PATH "%%PREFIX%%/%%QT_IMPORTDIR%%";
-#define QT_CONFIGURE_DATA_PATH "%%PREFIX%%/%%QT_DATADIR%%";
-#define QT_CONFIGURE_TRANSLATIONS_PATH "%%PREFIX%%/%%QT_L10NDIR%%";
-#define QT_CONFIGURE_SETTINGS_PATH "%%PREFIX%%/%%QT_ETCDIR%%";
-#define QT_CONFIGURE_EXAMPLES_PATH "%%PREFIX%%/%%QT_EXAMPLEDIR%%/examples";
-#define QT_CONFIGURE_DEMOS_PATH "%%PREFIX%%/%%QT_EXAMPLEDIR%%/demos/";
Property changes on: head/devel/qmake4/files/qconfig.cpp.in
___________________________________________________________________
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-FreeBSD=%H
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qmake4/files/Makefile.bsd
===================================================================
--- head/devel/qmake4/files/Makefile.bsd (revision 434379)
+++ head/devel/qmake4/files/Makefile.bsd (nonexistent)
@@ -1,47 +0,0 @@
-# $FreeBSD$
-
-_OBJS!= ${MAKE} -f Makefile.unix -V OBJS -V QOBJS
-# We'd like to avoid using qconfig.cpp, but can't -- see the comment
-# next to -DHAVE_CONFIG_CPP below:
-#_OBJS:= ${_OBJS:S/qconfig.o//}
-SRCS:= ${_OBJS:.o=.cpp}
-NO_MAN= true # qmake.1 anyone?
-
-.PATH: ${.CURDIR} ${.CURDIR:H}/src/corelib/tools ${.CURDIR:H}/src/corelib/io \
- ${.CURDIR:H}/src/corelib/global ${.CURDIR:H}/src/corelib/plugin \
- ${.CURDIR:H}/src/corelib/kernel ${.CURDIR:H}/src/corelib/codecs \
- ${.CURDIR:H}/src/corelib/xml ${.CURDIR:H}/src/3rdparty/md4 \
- ${.CURDIR:H}/src/3rdparty/md5 ${.CURDIR:H}/src/3rdparty/sha1 \
- ${.CURDIR:H}/tools/shared/symbian ${.CURDIR:H}/tools/shared/windows
-
-CXXFLAGS+=-I${.CURDIR:H}/mkspecs/freebsd-${QMAKE_COMPILER}
-
-.for s in src/corelib/arch/generic src/corelib/global src/corelib/tools \
- src/corelib/kernel src/corelib/codecs \
- src/3rdparty/md5 src/3rdparty/md4 src/3rdparty/sha1 \
- tools/shared include/QtCore include
-CXXFLAGS+=-I${.CURDIR:H}/$s
-.endfor
-
-.for g in /. /unix /win32 /mac /symbian /integrity
-.PATH: ${.CURDIR}/generators$g
-CXXFLAGS+=-I${.CURDIR}/generators$g
-.endfor
-
-CXXFLAGS+=-I. -I"${FILESDIR}"
-
-CXXFLAGS+=-DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT \
- -DQT_NO_STL -DQT_BUILD_QMAKE -DQT_NO_COMPRESS -DHAVE_QCONFIG_CPP \
- -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT \
- -DQT_BOOTSTRAPPED -DQMAKE_OPENSOURCE_EDITION
-
-# I guess, qconfig.cpp used to be optional, but no longer is -- due to
-# bit-rot in Qt sources. So we still have to compile it, but, by not
-# adding the following define, we reduce the seemingly needless usage of
-# it:
-# -DHAVE_QCONFIG_CPP
-
-PROG_CXX=${QMAKE:T}
-BINDIR= ${PREFIX}/${QT_BINDIR_REL}
-
-.include <bsd.prog.mk>
Property changes on: head/devel/qmake4/files/Makefile.bsd
___________________________________________________________________
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-FreeBSD=%H
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qmake4/files/patch-mkspecs__common__clang-unix.conf
===================================================================
--- head/devel/qmake4/files/patch-mkspecs__common__clang-unix.conf (revision 434379)
+++ head/devel/qmake4/files/patch-mkspecs__common__clang-unix.conf (nonexistent)
@@ -1,18 +0,0 @@
---- ../mkspecs/common/clang-unix.conf.orig 2013-12-05 22:57:53.135156000 +0000
-+++ ../mkspecs/common/clang-unix.conf 2013-12-05 23:09:36.960149415 +0000
-@@ -0,0 +1,15 @@
-+#
-+# Qmake configuration for the Clang compiler on *nix-systems
-+#
-+# Before making changes to this file, please read the comment in
-+# gcc-base.conf, to make sure the change goes in the right place.
-+#
-+# To verify that your change has the desired effect on the final configuration
-+# you can use the manual test in tests/manual/mkspecs.
-+#
-+
-+include(gcc-base-unix.conf)
-+include(clang.conf)
-+
-+QMAKE_LFLAGS_RELEASE += -Wl,-O1
-+QMAKE_LFLAGS_NOUNDEF += -Wl,--no-undefined
Property changes on: head/devel/qmake4/files/patch-mkspecs__common__clang-unix.conf
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qmake4/files/patch-option.cpp
===================================================================
--- head/devel/qmake4/files/patch-option.cpp (revision 434379)
+++ head/devel/qmake4/files/patch-option.cpp (nonexistent)
@@ -1,11 +0,0 @@
---- ./option.cpp.orig 2012-09-11 01:36:36.000000000 +0000
-+++ ./option.cpp 2012-10-27 21:51:28.131151563 +0000
-@@ -482,7 +482,7 @@
- env_argc++;
- }
- } else {
-- if(!env_argv || env_argc > env_size) {
-+ if(!env_argv || env_argc >= env_size) {
- env_argv = (char **)realloc(env_argv, sizeof(char *)*(env_size+=10));
- for(int i2 = env_argc; i2 < env_size; i2++)
- env_argv[i2] = NULL;
Property changes on: head/devel/qmake4/files/patch-option.cpp
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qmake5/pkg-plist
===================================================================
--- head/devel/qmake5/pkg-plist (revision 434379)
+++ head/devel/qmake5/pkg-plist (nonexistent)
@@ -1,493 +0,0 @@
-%%QT_BINDIR%%/qmake
-%%QT_MKSPECDIR%%/aix-g++-64/qmake.conf
-%%QT_MKSPECDIR%%/aix-g++-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/aix-g++/qmake.conf
-%%QT_MKSPECDIR%%/aix-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/aix-xlc-64/qmake.conf
-%%QT_MKSPECDIR%%/aix-xlc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/aix-xlc/qmake.conf
-%%QT_MKSPECDIR%%/aix-xlc/qplatformdefs.h
-%%QT_MKSPECDIR%%/android-clang/qmake.conf
-%%QT_MKSPECDIR%%/android-clang/qplatformdefs.h
-%%QT_MKSPECDIR%%/android-g++/qmake.conf
-%%QT_MKSPECDIR%%/android-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/blackberry-armle-v7-qcc/qmake.conf
-%%QT_MKSPECDIR%%/blackberry-armle-v7-qcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/blackberry-x86-qcc/qmake.conf
-%%QT_MKSPECDIR%%/blackberry-x86-qcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/aix/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/android-base-head.conf
-%%QT_MKSPECDIR%%/common/android-base-tail.conf
-%%QT_MKSPECDIR%%/common/android/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/angle.conf
-%%QT_MKSPECDIR%%/common/bsd/bsd.conf
-%%QT_MKSPECDIR%%/common/bsd/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/c89/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/clang-mac.conf
-%%QT_MKSPECDIR%%/common/clang.conf
-%%QT_MKSPECDIR%%/common/g++-base.conf
-%%QT_MKSPECDIR%%/common/g++-macx.conf
-%%QT_MKSPECDIR%%/common/g++-unix.conf
-%%QT_MKSPECDIR%%/common/g++.conf
-%%QT_MKSPECDIR%%/common/gcc-base-mac.conf
-%%QT_MKSPECDIR%%/common/gcc-base-unix.conf
-%%QT_MKSPECDIR%%/common/gcc-base.conf
-%%QT_MKSPECDIR%%/common/ios.conf
-%%QT_MKSPECDIR%%/common/ios/GLES2/gl2.h
-%%QT_MKSPECDIR%%/common/ios/clang.conf
-%%QT_MKSPECDIR%%/common/ios/qmake.conf
-%%QT_MKSPECDIR%%/common/linux-android.conf
-%%QT_MKSPECDIR%%/common/linux.conf
-%%QT_MKSPECDIR%%/common/llvm.conf
-%%QT_MKSPECDIR%%/common/mac.conf
-%%QT_MKSPECDIR%%/common/mac/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/macx.conf
-%%QT_MKSPECDIR%%/common/msvc-base.conf
-%%QT_MKSPECDIR%%/common/msvc-desktop.conf
-%%QT_MKSPECDIR%%/common/nacl/g++-nacl32.conf
-%%QT_MKSPECDIR%%/common/nacl/g++-nacl64.conf
-%%QT_MKSPECDIR%%/common/nacl/nacl-base.conf
-%%QT_MKSPECDIR%%/common/nacl/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/posix/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/qcc-base-qnx-aarch64le.conf
-%%QT_MKSPECDIR%%/common/qcc-base-qnx-armle-v7.conf
-%%QT_MKSPECDIR%%/common/qcc-base-qnx-x86-64.conf
-%%QT_MKSPECDIR%%/common/qcc-base-qnx-x86.conf
-%%QT_MKSPECDIR%%/common/qcc-base-qnx.conf
-%%QT_MKSPECDIR%%/common/qcc-base.conf
-%%QT_MKSPECDIR%%/common/qnx/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/sanitize.conf
-%%QT_MKSPECDIR%%/common/shell-unix.conf
-%%QT_MKSPECDIR%%/common/shell-win32.conf
-%%QT_MKSPECDIR%%/common/unix.conf
-%%QT_MKSPECDIR%%/common/wince/qmake.conf
-%%QT_MKSPECDIR%%/common/wince/qplatformdefs.h
-%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_150x150.png
-%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_30x30.png
-%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_310x150.png
-%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_310x310.png
-%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_44x44.png
-%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_480x800.png
-%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_620x300.png
-%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_70x70.png
-%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_71x71.png
-%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_store.png
-%%QT_MKSPECDIR%%/common/winrt_winphone/manifests/10.0/AppxManifest.xml.in
-%%QT_MKSPECDIR%%/common/winrt_winphone/manifests/8.1/AppxManifest.xml.in
-%%QT_MKSPECDIR%%/common/winrt_winphone/manifests/8.1_wp/AppxManifest.xml.in
-%%QT_MKSPECDIR%%/common/winrt_winphone/qmake.conf
-%%QT_MKSPECDIR%%/common/winrt_winphone/qplatformdefs.h
-%%QT_MKSPECDIR%%/cygwin-g++/qmake.conf
-%%QT_MKSPECDIR%%/cygwin-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/darwin-g++/qmake.conf
-%%QT_MKSPECDIR%%/darwin-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/common/linux_arm_device_post.conf
-%%QT_MKSPECDIR%%/devices/common/linux_device_post.conf
-%%QT_MKSPECDIR%%/devices/common/linux_device_pre.conf
-%%QT_MKSPECDIR%%/devices/linux-archos-gen8-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-archos-gen8-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qeglfshooks_8726m.cpp
-%%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-arm-generic-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-arm-generic-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-arm-hisilicon-hix5hd2-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-arm-hisilicon-hix5hd2-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-arm-trident-pnx8473-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-arm-trident-pnx8473-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-beagleboard-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-beagleboard-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-imx53qsb-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-imx53qsb-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-imx6-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-imx6-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-jetson-tk1-pro-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-jetson-tk1-pro-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qdirectfbeglhooks_bcm97425.cpp
-%%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-nuc-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-nuc-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-odroid-xu3-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-odroid-xu3-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-rasp-pi-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-rasp-pi-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-rasp-pi2-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-rasp-pi2-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-rpi3-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-rpi3-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-rpi3-vc4-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-rpi3-vc4-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7108-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7108-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7540-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7540-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-snowball-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-snowball-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/devices/linux-tegra2-g++/qmake.conf
-%%QT_MKSPECDIR%%/devices/linux-tegra2-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/features/android/android.prf
-%%QT_MKSPECDIR%%/features/android/android_deployment_settings.prf
-%%QT_MKSPECDIR%%/features/benchmark.prf
-%%QT_MKSPECDIR%%/features/build_pass.prf
-%%QT_MKSPECDIR%%/features/cmake_functions.prf
-%%QT_MKSPECDIR%%/features/configure.prf
-%%QT_MKSPECDIR%%/features/create_cmake.prf
-%%QT_MKSPECDIR%%/features/ctest_testcase.prf
-%%QT_MKSPECDIR%%/features/ctest_testcase_common.prf
-%%QT_MKSPECDIR%%/features/ctest_testcase_installed.prf
-%%QT_MKSPECDIR%%/features/data/android/dx.bat
-%%QT_MKSPECDIR%%/features/data/cmake/ExtraSourceIncludes.cmake.in
-%%QT_MKSPECDIR%%/features/data/cmake/Qt5BasicConfig.cmake.in
-%%QT_MKSPECDIR%%/features/data/cmake/Qt5ConfigVersion.cmake.in
-%%QT_MKSPECDIR%%/features/data/cmake/Qt5PluginTarget.cmake.in
-%%QT_MKSPECDIR%%/features/data/dummy.cpp
-%%QT_MKSPECDIR%%/features/data/mac/objc_namespace.sh
-%%QT_MKSPECDIR%%/features/data/unix/findclasslist.pl
-%%QT_MKSPECDIR%%/features/dbusadaptors.prf
-%%QT_MKSPECDIR%%/features/dbuscommon.pri
-%%QT_MKSPECDIR%%/features/dbusinterfaces.prf
-%%QT_MKSPECDIR%%/features/declarative_debug.prf
-%%QT_MKSPECDIR%%/features/default_post.prf
-%%QT_MKSPECDIR%%/features/default_pre.prf
-%%QT_MKSPECDIR%%/features/designer_defines.prf
-%%QT_MKSPECDIR%%/features/device_config.prf
-%%QT_MKSPECDIR%%/features/egl.prf
-%%QT_MKSPECDIR%%/features/exceptions.prf
-%%QT_MKSPECDIR%%/features/exceptions_off.prf
-%%QT_MKSPECDIR%%/features/exclusive_builds.prf
-%%QT_MKSPECDIR%%/features/exclusive_builds_post.prf
-%%QT_MKSPECDIR%%/features/file_copies.prf
-%%QT_MKSPECDIR%%/features/gcov.prf
-%%QT_MKSPECDIR%%/features/include_source_dir.prf
-%%QT_MKSPECDIR%%/features/incredibuild_xge.prf
-%%QT_MKSPECDIR%%/features/java.prf
-%%QT_MKSPECDIR%%/features/lex.prf
-%%QT_MKSPECDIR%%/features/link_ltcg.prf
-%%QT_MKSPECDIR%%/features/link_pkgconfig.prf
-%%QT_MKSPECDIR%%/features/ltcg.prf
-%%QT_MKSPECDIR%%/features/mac/default_post.prf
-%%QT_MKSPECDIR%%/features/mac/default_pre.prf
-%%QT_MKSPECDIR%%/features/mac/objective_c.prf
-%%QT_MKSPECDIR%%/features/mac/rez.prf
-%%QT_MKSPECDIR%%/features/mac/sdk.prf
-%%QT_MKSPECDIR%%/features/mac/unsupported/objc_namespace.prf
-%%QT_MKSPECDIR%%/features/moc.prf
-%%QT_MKSPECDIR%%/features/no_debug_info.prf
-%%QT_MKSPECDIR%%/features/plugin_bundle.prf
-%%QT_MKSPECDIR%%/features/precompile_header.prf
-%%QT_MKSPECDIR%%/features/qfeatures.prf
-%%QT_MKSPECDIR%%/features/qgltf.prf
-%%QT_MKSPECDIR%%/features/qlalr.prf
-%%QT_MKSPECDIR%%/features/qml1_module.prf
-%%QT_MKSPECDIR%%/features/qml1_plugin.prf
-%%QT_MKSPECDIR%%/features/qml_debug.prf
-%%QT_MKSPECDIR%%/features/qml_module.prf
-%%QT_MKSPECDIR%%/features/qml_plugin.prf
-%%QT_MKSPECDIR%%/features/qmltestcase.prf
-%%QT_MKSPECDIR%%/features/qpa/basicunixfontdatabase.prf
-%%QT_MKSPECDIR%%/features/qpa/genericunixfontdatabase.prf
-%%QT_MKSPECDIR%%/features/qt.prf
-%%QT_MKSPECDIR%%/features/qt_android_deps.prf
-%%QT_MKSPECDIR%%/features/qt_app.prf
-%%QT_MKSPECDIR%%/features/qt_build_config.prf
-%%QT_MKSPECDIR%%/features/qt_build_extra.prf
-%%QT_MKSPECDIR%%/features/qt_build_paths.prf
-%%QT_MKSPECDIR%%/features/qt_clear_installs.prf
-%%QT_MKSPECDIR%%/features/qt_common.prf
-%%QT_MKSPECDIR%%/features/qt_config.prf
-%%QT_MKSPECDIR%%/features/qt_docs.prf
-%%QT_MKSPECDIR%%/features/qt_docs_targets.prf
-%%QT_MKSPECDIR%%/features/qt_example_installs.prf
-%%QT_MKSPECDIR%%/features/qt_functions.prf
-%%QT_MKSPECDIR%%/features/qt_helper_lib.prf
-%%QT_MKSPECDIR%%/features/qt_installs.prf
-%%QT_MKSPECDIR%%/features/qt_module.prf
-%%QT_MKSPECDIR%%/features/qt_module_headers.prf
-%%QT_MKSPECDIR%%/features/qt_module_pris.prf
-%%QT_MKSPECDIR%%/features/qt_parts.prf
-%%QT_MKSPECDIR%%/features/qt_plugin.prf
-%%QT_MKSPECDIR%%/features/qt_targets.prf
-%%QT_MKSPECDIR%%/features/qt_tool.prf
-%%QT_MKSPECDIR%%/features/resolve_config.prf
-%%QT_MKSPECDIR%%/features/resolve_target.prf
-%%QT_MKSPECDIR%%/features/resources.prf
-%%QT_MKSPECDIR%%/features/sanitizer.prf
-%%QT_MKSPECDIR%%/features/silent.prf
-%%QT_MKSPECDIR%%/features/simd.prf
-%%QT_MKSPECDIR%%/features/spec_post.prf
-%%QT_MKSPECDIR%%/features/spec_pre.prf
-%%QT_MKSPECDIR%%/features/static_runtime.prf
-%%QT_MKSPECDIR%%/features/testcase.prf
-%%QT_MKSPECDIR%%/features/testcase_targets.prf
-%%QT_MKSPECDIR%%/features/testcocoon.prf
-%%QT_MKSPECDIR%%/features/testlib_defines.prf
-%%QT_MKSPECDIR%%/features/uic.prf
-%%QT_MKSPECDIR%%/features/unix/bsymbolic_functions.prf
-%%QT_MKSPECDIR%%/features/unix/hide_symbols.prf
-%%QT_MKSPECDIR%%/features/unix/largefile.prf
-%%QT_MKSPECDIR%%/features/unix/opengl.prf
-%%QT_MKSPECDIR%%/features/unix/openvg.prf
-%%QT_MKSPECDIR%%/features/unix/separate_debug_info.prf
-%%QT_MKSPECDIR%%/features/unix/thread.prf
-%%QT_MKSPECDIR%%/features/unix/x11.prf
-%%QT_MKSPECDIR%%/features/unix/x11inc.prf
-%%QT_MKSPECDIR%%/features/unix/x11lib.prf
-%%QT_MKSPECDIR%%/features/unix/x11sm.prf
-%%QT_MKSPECDIR%%/features/use_c_linker.prf
-%%QT_MKSPECDIR%%/features/vxworks.prf
-%%QT_MKSPECDIR%%/features/warn_off.prf
-%%QT_MKSPECDIR%%/features/warn_on.prf
-%%QT_MKSPECDIR%%/features/wayland-scanner.prf
-%%QT_MKSPECDIR%%/features/win32/console.prf
-%%QT_MKSPECDIR%%/features/win32/default_pre.prf
-%%QT_MKSPECDIR%%/features/win32/dumpcpp.prf
-%%QT_MKSPECDIR%%/features/win32/idcidl.prf
-%%QT_MKSPECDIR%%/features/win32/msvc_mp.prf
-%%QT_MKSPECDIR%%/features/win32/opengl.prf
-%%QT_MKSPECDIR%%/features/win32/openvg.prf
-%%QT_MKSPECDIR%%/features/win32/qt_config.prf
-%%QT_MKSPECDIR%%/features/win32/qt_dll.prf
-%%QT_MKSPECDIR%%/features/win32/rtti.prf
-%%QT_MKSPECDIR%%/features/win32/rtti_off.prf
-%%QT_MKSPECDIR%%/features/win32/separate_debug_info.prf
-%%QT_MKSPECDIR%%/features/win32/stl.prf
-%%QT_MKSPECDIR%%/features/win32/stl_off.prf
-%%QT_MKSPECDIR%%/features/win32/windeployqt.prf
-%%QT_MKSPECDIR%%/features/win32/windows.prf
-%%QT_MKSPECDIR%%/features/winrt/console.prf
-%%QT_MKSPECDIR%%/features/winrt/default_pre.prf
-%%QT_MKSPECDIR%%/features/winrt/package_manifest.prf
-%%QT_MKSPECDIR%%/features/xctest.prf
-%%QT_MKSPECDIR%%/features/yacc.prf
-%%QT_MKSPECDIR%%/freebsd-clang/qmake.conf
-%%QT_MKSPECDIR%%/freebsd-clang/qplatformdefs.h
-%%QT_MKSPECDIR%%/freebsd-g++/qmake.conf
-%%QT_MKSPECDIR%%/freebsd-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/haiku-g++/qmake.conf
-%%QT_MKSPECDIR%%/haiku-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpux-acc-64/qmake.conf
-%%QT_MKSPECDIR%%/hpux-acc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpux-acc-o64/qmake.conf
-%%QT_MKSPECDIR%%/hpux-acc-o64/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpux-acc/qmake.conf
-%%QT_MKSPECDIR%%/hpux-acc/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpux-g++-64/qmake.conf
-%%QT_MKSPECDIR%%/hpux-g++-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpux-g++/qmake.conf
-%%QT_MKSPECDIR%%/hpux-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpuxi-acc-32/qmake.conf
-%%QT_MKSPECDIR%%/hpuxi-acc-32/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpuxi-acc-64/qmake.conf
-%%QT_MKSPECDIR%%/hpuxi-acc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/hpuxi-g++-64/qmake.conf
-%%QT_MKSPECDIR%%/hpuxi-g++-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/hurd-g++/qmake.conf
-%%QT_MKSPECDIR%%/hurd-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/irix-cc-64/qmake.conf
-%%QT_MKSPECDIR%%/irix-cc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/irix-cc/qmake.conf
-%%QT_MKSPECDIR%%/irix-cc/qplatformdefs.h
-%%QT_MKSPECDIR%%/irix-g++-64/qmake.conf
-%%QT_MKSPECDIR%%/irix-g++-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/irix-g++/qmake.conf
-%%QT_MKSPECDIR%%/irix-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-arm-gnueabi-g++/qmake.conf
-%%QT_MKSPECDIR%%/linux-arm-gnueabi-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-clang-libc++/qmake.conf
-%%QT_MKSPECDIR%%/linux-clang-libc++/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-clang/qmake.conf
-%%QT_MKSPECDIR%%/linux-clang/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-cxx/qmake.conf
-%%QT_MKSPECDIR%%/linux-cxx/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-g++-32/qmake.conf
-%%QT_MKSPECDIR%%/linux-g++-32/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-g++-64/qmake.conf
-%%QT_MKSPECDIR%%/linux-g++-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-g++/qmake.conf
-%%QT_MKSPECDIR%%/linux-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-icc-32/qmake.conf
-%%QT_MKSPECDIR%%/linux-icc-32/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-icc-64/qmake.conf
-%%QT_MKSPECDIR%%/linux-icc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-icc/qmake.conf
-%%QT_MKSPECDIR%%/linux-icc/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-kcc/qmake.conf
-%%QT_MKSPECDIR%%/linux-kcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-llvm/qmake.conf
-%%QT_MKSPECDIR%%/linux-llvm/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-lsb-g++/qmake.conf
-%%QT_MKSPECDIR%%/linux-lsb-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/linux-pgcc/qmake.conf
-%%QT_MKSPECDIR%%/linux-pgcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/lynxos-g++/qmake.conf
-%%QT_MKSPECDIR%%/lynxos-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-clang-32/Info.plist.app
-%%QT_MKSPECDIR%%/macx-clang-32/Info.plist.dSYM.in
-%%QT_MKSPECDIR%%/macx-clang-32/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-clang-32/qmake.conf
-%%QT_MKSPECDIR%%/macx-clang-32/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-clang/Info.plist.app
-%%QT_MKSPECDIR%%/macx-clang/Info.plist.dSYM.in
-%%QT_MKSPECDIR%%/macx-clang/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-clang/qmake.conf
-%%QT_MKSPECDIR%%/macx-clang/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-g++-32/Info.plist.app
-%%QT_MKSPECDIR%%/macx-g++-32/Info.plist.dSYM.in
-%%QT_MKSPECDIR%%/macx-g++-32/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-g++-32/qmake.conf
-%%QT_MKSPECDIR%%/macx-g++-32/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-g++/Info.plist.app
-%%QT_MKSPECDIR%%/macx-g++/Info.plist.dSYM.in
-%%QT_MKSPECDIR%%/macx-g++/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-g++/qmake.conf
-%%QT_MKSPECDIR%%/macx-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-g++40/Info.plist.app
-%%QT_MKSPECDIR%%/macx-g++40/Info.plist.dSYM.in
-%%QT_MKSPECDIR%%/macx-g++40/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-g++40/qmake.conf
-%%QT_MKSPECDIR%%/macx-g++40/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-g++42/Info.plist.app
-%%QT_MKSPECDIR%%/macx-g++42/Info.plist.dSYM.in
-%%QT_MKSPECDIR%%/macx-g++42/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-g++42/qmake.conf
-%%QT_MKSPECDIR%%/macx-g++42/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-icc/Info.plist.app
-%%QT_MKSPECDIR%%/macx-icc/Info.plist.dSYM.in
-%%QT_MKSPECDIR%%/macx-icc/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-icc/qmake.conf
-%%QT_MKSPECDIR%%/macx-icc/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-ios-clang/Default-568h@2x.png
-%%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.app
-%%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.dSYM.in
-%%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-ios-clang/LaunchScreen.xib
-%%QT_MKSPECDIR%%/macx-ios-clang/features/default_post.prf
-%%QT_MKSPECDIR%%/macx-ios-clang/features/default_pre.prf
-%%QT_MKSPECDIR%%/macx-ios-clang/features/exclusive_builds_post.prf
-%%QT_MKSPECDIR%%/macx-ios-clang/features/qt.prf
-%%QT_MKSPECDIR%%/macx-ios-clang/features/qt_config.prf
-%%QT_MKSPECDIR%%/macx-ios-clang/features/qt_parts.prf
-%%QT_MKSPECDIR%%/macx-ios-clang/features/resolve_config.prf
-%%QT_MKSPECDIR%%/macx-ios-clang/features/sdk.prf
-%%QT_MKSPECDIR%%/macx-ios-clang/features/testcase.prf
-%%QT_MKSPECDIR%%/macx-ios-clang/features/testcase_targets.prf
-%%QT_MKSPECDIR%%/macx-ios-clang/features/xcodebuild.prf
-%%QT_MKSPECDIR%%/macx-ios-clang/ios_destinations.sh
-%%QT_MKSPECDIR%%/macx-ios-clang/ios_devices.pl
-%%QT_MKSPECDIR%%/macx-ios-clang/qmake.conf
-%%QT_MKSPECDIR%%/macx-ios-clang/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-ios-clang/xcodebuild.mk
-%%QT_MKSPECDIR%%/macx-llvm/Info.plist.app
-%%QT_MKSPECDIR%%/macx-llvm/Info.plist.dSYM.in
-%%QT_MKSPECDIR%%/macx-llvm/Info.plist.lib
-%%QT_MKSPECDIR%%/macx-llvm/qmake.conf
-%%QT_MKSPECDIR%%/macx-llvm/qplatformdefs.h
-%%QT_MKSPECDIR%%/macx-xcode/QtTest.plist
-%%QT_MKSPECDIR%%/macx-xcode/WorkspaceSettings.xcsettings
-%%QT_MKSPECDIR%%/macx-xcode/default.xcscheme
-%%QT_MKSPECDIR%%/macx-xcode/qmake.conf
-%%QT_MKSPECDIR%%/macx-xcode/qplatformdefs.h
-%%QT_MKSPECDIR%%/netbsd-g++/qmake.conf
-%%QT_MKSPECDIR%%/netbsd-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/openbsd-g++/qmake.conf
-%%QT_MKSPECDIR%%/openbsd-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/qconfig.pri
-%%QT_MKSPECDIR%%/qdevice.pri
-%%QT_MKSPECDIR%%/qfeatures.pri
-%%QT_MKSPECDIR%%/qmodule.pri
-%%QT_MKSPECDIR%%/qnx-aarch64le-qcc/qmake.conf
-%%QT_MKSPECDIR%%/qnx-aarch64le-qcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/qnx-armle-v7-qcc/qmake.conf
-%%QT_MKSPECDIR%%/qnx-armle-v7-qcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/qnx-x86-64-qcc/qmake.conf
-%%QT_MKSPECDIR%%/qnx-x86-64-qcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/qnx-x86-qcc/qmake.conf
-%%QT_MKSPECDIR%%/qnx-x86-qcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/sco-cc/qmake.conf
-%%QT_MKSPECDIR%%/sco-cc/qplatformdefs.h
-%%QT_MKSPECDIR%%/sco-g++/qmake.conf
-%%QT_MKSPECDIR%%/sco-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/solaris-cc-64-stlport/qmake.conf
-%%QT_MKSPECDIR%%/solaris-cc-64-stlport/qplatformdefs.h
-%%QT_MKSPECDIR%%/solaris-cc-64/qmake.conf
-%%QT_MKSPECDIR%%/solaris-cc-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/solaris-cc-stlport/qmake.conf
-%%QT_MKSPECDIR%%/solaris-cc-stlport/qplatformdefs.h
-%%QT_MKSPECDIR%%/solaris-cc/qmake.conf
-%%QT_MKSPECDIR%%/solaris-cc/qplatformdefs.h
-%%QT_MKSPECDIR%%/solaris-g++-64/qmake.conf
-%%QT_MKSPECDIR%%/solaris-g++-64/qplatformdefs.h
-%%QT_MKSPECDIR%%/solaris-g++/qmake.conf
-%%QT_MKSPECDIR%%/solaris-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/tru64-cxx/qmake.conf
-%%QT_MKSPECDIR%%/tru64-cxx/qplatformdefs.h
-%%QT_MKSPECDIR%%/tru64-g++/qmake.conf
-%%QT_MKSPECDIR%%/tru64-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unixware-cc/qmake.conf
-%%QT_MKSPECDIR%%/unixware-cc/qplatformdefs.h
-%%QT_MKSPECDIR%%/unixware-g++/qmake.conf
-%%QT_MKSPECDIR%%/unixware-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/android-g++/qeglfshooks_surfaceflinger.cpp
-%%QT_MKSPECDIR%%/unsupported/android-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/android-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/linux-host-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/linux-host-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/nacl-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/nacl-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/nacl64-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/nacl64-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/qnx-X11-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/qnx-X11-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-dcc/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-dcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-dcc/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-dcc/qplatformdefs.h
-%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-g++/qmake.conf
-%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-g++/qmake.conf
-%%QT_MKSPECDIR%%/win32-g++/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-icc/qmake.conf
-%%QT_MKSPECDIR%%/win32-icc/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2010/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2010/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2012/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2012/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2013/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2013/qplatformdefs.h
-%%QT_MKSPECDIR%%/win32-msvc2015/qmake.conf
-%%QT_MKSPECDIR%%/win32-msvc2015/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince60standard-armv4i-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wince60standard-armv4i-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince60standard-x86-msvc2005/qmake.conf
-%%QT_MKSPECDIR%%/wince60standard-x86-msvc2005/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince70embedded-armv4i-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wince70embedded-armv4i-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince70embedded-x86-msvc2008/qmake.conf
-%%QT_MKSPECDIR%%/wince70embedded-x86-msvc2008/qplatformdefs.h
-%%QT_MKSPECDIR%%/wince80colibri-armv7-msvc2012/qmake.conf
-%%QT_MKSPECDIR%%/wince80colibri-armv7-msvc2012/qplatformdefs.h
-%%QT_MKSPECDIR%%/winphone-arm-msvc2013/qmake.conf
-%%QT_MKSPECDIR%%/winphone-arm-msvc2013/qplatformdefs.h
-%%QT_MKSPECDIR%%/winphone-x86-msvc2013/qmake.conf
-%%QT_MKSPECDIR%%/winphone-x86-msvc2013/qplatformdefs.h
-%%QT_MKSPECDIR%%/winrt-arm-msvc2013/qmake.conf
-%%QT_MKSPECDIR%%/winrt-arm-msvc2013/qplatformdefs.h
-%%QT_MKSPECDIR%%/winrt-arm-msvc2015/qmake.conf
-%%QT_MKSPECDIR%%/winrt-arm-msvc2015/qplatformdefs.h
-%%QT_MKSPECDIR%%/winrt-x64-msvc2013/qmake.conf
-%%QT_MKSPECDIR%%/winrt-x64-msvc2013/qplatformdefs.h
-%%QT_MKSPECDIR%%/winrt-x64-msvc2015/qmake.conf
-%%QT_MKSPECDIR%%/winrt-x64-msvc2015/qplatformdefs.h
-%%QT_MKSPECDIR%%/winrt-x86-msvc2013/qmake.conf
-%%QT_MKSPECDIR%%/winrt-x86-msvc2013/qplatformdefs.h
-%%QT_MKSPECDIR%%/winrt-x86-msvc2015/qmake.conf
-%%QT_MKSPECDIR%%/winrt-x86-msvc2015/qplatformdefs.h
Property changes on: head/devel/qmake5/pkg-plist
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qmake5/Makefile
===================================================================
--- head/devel/qmake5/Makefile (revision 434379)
+++ head/devel/qmake5/Makefile (nonexistent)
@@ -1,51 +0,0 @@
-# $FreeBSD$
-
-PORTNAME= qmake
-DISTVERSION= ${QT5_VERSION}
-PORTREVISION= 1
-CATEGORIES= devel
-PKGNAMEPREFIX= qt5-
-
-MAINTAINER= kde@FreeBSD.org
-COMMENT= Qt Makefile generator
-
-USE_QT5= # empty
-USES= pkgconfig shebangfix
-SHEBANG_FILES= util/harfbuzz/update-harfbuzz \
- util/unicode/x11/makeencodings \
- src/3rdparty/freetype/src/tools/afblue.pl
-QT_DIST= base
-REINPLACE_ARGS= -i ""
-HAS_CONFIGURE= yes
-# Disable everything to install minimal qconfig.pri.
-CONFIGURE_ARGS= -no-accessibility -no-openssl -no-gui -no-cups \
- -no-iconv -no-icu -no-dbus -no-xcb -no-opengl \
- -no-glib -no-audio-backend -no-fontconfig \
- -no-gtkstyle -no-xinput2 -no-xrender \
- -no-evdev -no-xkbcommon -no-alsa \
- -no-freetype -no-gif -no-harfbuzz -no-libjpeg \
- -no-libpng -no-pulseaudio -no-widgets
-# Features yet to be removed from qconfig.pri.
-TBR_CONFIG= concurrent|inotify|xlib
-QMAKESPEC= ${WRKSRC}/mkspecs/freebsd-${QMAKE_COMPILER}
-INSTALL_TARGET= install_qmake install_mkspecs
-
-BUILD_WRKSRC= ${WRKSRC}/${PORTNAME}
-
-post-patch:
-# Prevent qconfig.pri from being module dependent.
- @${REINPLACE_CMD} -E -e '/"\$$QT_CONFIG +(${TBR_CONFIG})"/ d' \
- ${WRKSRC}/configure
- @${RM} ${WRKSRC}/mkspecs/*/*.orig
-
-post-build:
-# Complete configure stage to generate *.pri files.
- @cd ${WRKSRC} && \
- ${SETENV} CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}" \
- CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" \
- ${CONFIGURE_ENV} ${CONFIGURE_CMD} ${CONFIGURE_ARGS}
-# Cleanup qmodule.pri to make it module agnostic.
- @${REINPLACE_CMD} -En -e '/^(CONFIG|QT_BUILD_PARTS|.*_DIR) / p' \
- ${WRKSRC}/mkspecs/qmodule.pri
-
-.include <bsd.port.mk>
Property changes on: head/devel/qmake5/Makefile
___________________________________________________________________
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-FreeBSD=%H
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qmake5/files/patch-configure
===================================================================
--- head/devel/qmake5/files/patch-configure (revision 434379)
+++ head/devel/qmake5/files/patch-configure (nonexistent)
@@ -1,28 +0,0 @@
-Make sure only qmake is built, as the rest of Qt is built
-in other ports.
-
---- configure.orig 2016-08-24 08:18:37 UTC
-+++ configure
-@@ -4115,11 +4115,11 @@ if [ '!' -e "$outpath/bin/qmake" ]; then
- echo "QT_MAJOR_VERSION = $QT_MAJOR_VERSION" >> "$mkfile"
- echo "QT_MINOR_VERSION = $QT_MINOR_VERSION" >> "$mkfile"
- echo "QT_PATCH_VERSION = $QT_PATCH_VERSION" >> "$mkfile"
-- echo "EXTRA_CFLAGS = $EXTRA_CFLAGS" >> "$mkfile"
-- echo "EXTRA_CXXFLAGS = $EXTRA_CXXFLAGS" >> "$mkfile"
-+ echo "EXTRA_CFLAGS = $EXTRA_CFLAGS $CFLAGS" >> "$mkfile"
-+ echo "EXTRA_CXXFLAGS = $EXTRA_CXXFLAGS $CXXFLAGS" >> "$mkfile"
- echo "QTOBJS =" $EXTRA_OBJS >> "$mkfile"
- echo "QTSRCS =" $EXTRA_SRCS >> "$mkfile"
-- echo "LFLAGS = $EXTRA_LFLAGS" >> "$mkfile"
-+ echo "LFLAGS = $EXTRA_LFLAGS $LDFLAGS" >> "$mkfile"
- echo "EXEEXT = $EXEEXT" >> "$mkfile"
- echo "RM_F = rm -f" >> "$mkfile"
- echo "RM_RF = rm -rf" >> "$mkfile"
-@@ -4138,6 +4138,7 @@ if [ '!' -e "$outpath/bin/qmake" ]; then
- fi
- fi
- done
-+ exit 0
-
- if [ "$OPT_VERBOSE" = yes ]; then
- # Show the output of make
Property changes on: head/devel/qmake5/files/patch-configure
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qmake5/files/patch-mkspecs__features__qt_functions.prf
===================================================================
--- head/devel/qmake5/files/patch-mkspecs__features__qt_functions.prf (revision 434379)
+++ head/devel/qmake5/files/patch-mkspecs__features__qt_functions.prf (nonexistent)
@@ -1,16 +0,0 @@
-To setup a tool, qtPrepareTool() doesn't fallback anymore (compared to Qt4) to
-the build directory (/get paths), but relies instead on QT_TOOL.* variables set
-before in the configure stage, which our split configuration doesn't generate.
-With this patch, it's back to the previous behavior (which, by the way, has no
-effect on anything but Qt builds).
---- ./mkspecs/features/qt_functions.prf.orig 2013-10-22 01:49:28.000000000 -0700
-+++ ./mkspecs/features/qt_functions.prf 2013-11-04 07:50:44.835414343 -0800
-@@ -193,7 +193,7 @@
- defineTest(qtPrepareTool) {
- cmd = $$eval(QT_TOOL.$${2}.binary)
- isEmpty(cmd) {
-- cmd = $$[QT_HOST_BINS]/$$2
-+ cmd = $$[QT_HOST_BINS/get]/$$2
- exists($${cmd}.pl) {
- cmd = perl -w $$system_path($${cmd}.pl)
- } else: contains(QMAKE_HOST.os, Windows) {
Property changes on: head/devel/qmake5/files/patch-mkspecs__features__qt_functions.prf
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/Makefile
===================================================================
--- head/devel/Makefile (revision 434379)
+++ head/devel/Makefile (revision 434380)
@@ -1,5780 +1,5781 @@
# $FreeBSD$
#
COMMENT = Development utilities
SUBDIR += 9base
SUBDIR += ChipmunkPhysics
SUBDIR += ElectricFence
SUBDIR += ORBit2
SUBDIR += ORBit2-reference
SUBDIR += R-cran-BH
SUBDIR += R-cran-Defaults
SUBDIR += R-cran-Hmisc
SUBDIR += R-cran-ModelMetrics
SUBDIR += R-cran-R6
SUBDIR += R-cran-RUnit
SUBDIR += R-cran-Rcpp
SUBDIR += R-cran-bit
SUBDIR += R-cran-bit64
SUBDIR += R-cran-bitops
SUBDIR += R-cran-caTools
SUBDIR += R-cran-caret
SUBDIR += R-cran-chron
SUBDIR += R-cran-crayon
SUBDIR += R-cran-data.table
SUBDIR += R-cran-doParallel
SUBDIR += R-cran-evaluate
SUBDIR += R-cran-foreach
SUBDIR += R-cran-gbm
SUBDIR += R-cran-gdata
SUBDIR += R-cran-glmnet
SUBDIR += R-cran-gmodels
SUBDIR += R-cran-gsubfn
SUBDIR += R-cran-gtools
SUBDIR += R-cran-iterators
SUBDIR += R-cran-itertools
SUBDIR += R-cran-magrittr
SUBDIR += R-cran-memoise
SUBDIR += R-cran-microbenchmark
SUBDIR += R-cran-pkgmaker
SUBDIR += R-cran-plyr
SUBDIR += R-cran-proto
SUBDIR += R-cran-randomForest
SUBDIR += R-cran-registry
SUBDIR += R-cran-reshape
SUBDIR += R-cran-reshape2
SUBDIR += R-cran-rngtools
SUBDIR += R-cran-rprojroot
SUBDIR += R-cran-rstudioapi
SUBDIR += R-cran-sourcetools
SUBDIR += R-cran-tibble
SUBDIR += R-cran-tidyr
SUBDIR += SpecTcl
SUBDIR += aap
SUBDIR += aarch64-binutils
SUBDIR += aarch64-none-elf-binutils
SUBDIR += aarch64-none-elf-gcc
SUBDIR += abi-compliance-checker
SUBDIR += ace
SUBDIR += ace+tao-doc
SUBDIR += acsccid
SUBDIR += activitymail
SUBDIR += ada-util
SUBDIR += adabooch
SUBDIR += adacurses
SUBDIR += adaid
SUBDIR += adime
SUBDIR += aegis
SUBDIR += afay
SUBDIR += ahven
SUBDIR += aifad
SUBDIR += alabastra
SUBDIR += ald
SUBDIR += alf
SUBDIR += allegro
SUBDIR += allegro-devel
SUBDIR += alog
SUBDIR += amd64-binutils
SUBDIR += amd64-gcc
SUBDIR += amd64-xtoolchain-gcc
SUBDIR += android-tools-adb
SUBDIR += android-tools-adb-devel
SUBDIR += android-tools-fastboot
SUBDIR += android-tools-fastboot-devel
SUBDIR += android-tools-simpleperf
SUBDIR += anjuta
SUBDIR += anjuta-extras
SUBDIR += antlr
SUBDIR += antlr3
SUBDIR += antlr4
SUBDIR += apache-ant
SUBDIR += apache-rat
SUBDIR += api-sanity-autotest
SUBDIR += apiextractor
SUBDIR += appstream-glib
SUBDIR += apr1
SUBDIR += apr2
SUBDIR += arcanist
SUBDIR += arduino
SUBDIR += arduino-builder
SUBDIR += arduino-core
SUBDIR += arduino-ctags
SUBDIR += arduino-glcd
SUBDIR += arduino-irremote
SUBDIR += arduino-mk
SUBDIR += arduino-sevseg
SUBDIR += arduino-tools
SUBDIR += arduino16
SUBDIR += argouml
SUBDIR += argp-standalone
SUBDIR += argtable
SUBDIR += arm-elf-binutils
SUBDIR += arm-gnueabi-binutils
SUBDIR += arm-none-eabi-binutils
SUBDIR += arm-none-eabi-gcc
SUBDIR += arm-none-eabi-gcc492
SUBDIR += arm-none-eabi-gdb
SUBDIR += arm-none-eabi-newlib
SUBDIR += aros-sdk
SUBDIR += art
SUBDIR += artifactory
SUBDIR += as31
SUBDIR += asl
SUBDIR += asmutils
SUBDIR += asmx
SUBDIR += astah-community
SUBDIR += astyle
SUBDIR += atf
SUBDIR += atlas
SUBDIR += atlas-devel
SUBDIR += atlassian-plugin-sdk
SUBDIR += aunit
SUBDIR += autobook
SUBDIR += autoconf
SUBDIR += autoconf-archive
SUBDIR += autoconf-wrapper
SUBDIR += autoconf213
SUBDIR += autodia
SUBDIR += autodist
SUBDIR += autogen
SUBDIR += automake
SUBDIR += automake-wrapper
SUBDIR += automoc4
SUBDIR += autotools
SUBDIR += avalon-framework
SUBDIR += avarice
SUBDIR += avce00
SUBDIR += avr-binutils
SUBDIR += avr-gcc
SUBDIR += avr-gcc-devel
SUBDIR += avr-gdb
SUBDIR += avr-libc
SUBDIR += avra
SUBDIR += avrdude
SUBDIR += avro
SUBDIR += avro-c
SUBDIR += avro-cpp
SUBDIR += aws-sdk-cpp
SUBDIR += awscli
SUBDIR += b2
SUBDIR += babeltrace
SUBDIR += bam
SUBDIR += bazel
SUBDIR += bbfreeze
SUBDIR += bbfreeze-loader
SUBDIR += bcc
SUBDIR += bcpp
SUBDIR += beautifyphp
SUBDIR += bennugd-core
SUBDIR += bennugd-modules
SUBDIR += bglibs
SUBDIR += bicyclerepair
SUBDIR += bin86
SUBDIR += binutils
SUBDIR += bison
SUBDIR += bisoncpp
SUBDIR += blame
SUBDIR += bmake
SUBDIR += bmkdep
SUBDIR += bncsutil-ghost++
SUBDIR += bnf
SUBDIR += boaconstructor
SUBDIR += boehm-gc
SUBDIR += boehm-gc-redirect
SUBDIR += boehm-gc-threaded
SUBDIR += boost-all
SUBDIR += boost-docs
SUBDIR += boost-jam
SUBDIR += boost-libs
SUBDIR += boost-python-libs
SUBDIR += boost_build
SUBDIR += bossa
SUBDIR += bouml-doc
SUBDIR += bpython
SUBDIR += bsdbuild
SUBDIR += bsdcflow
SUBDIR += bsdowl
SUBDIR += bugzilla44
SUBDIR += bugzilla50
SUBDIR += build
SUBDIR += buildbot
SUBDIR += buildbot-slave
SUBDIR += buildtool
SUBDIR += buildtool-doc
SUBDIR += bullet
SUBDIR += busybee
SUBDIR += byacc
SUBDIR += byaccj
SUBDIR += bzr
SUBDIR += bzr-builder
SUBDIR += bzr-colo
SUBDIR += bzr-explorer
SUBDIR += bzr-externals
SUBDIR += bzr-fastimport
SUBDIR += bzr-git
SUBDIR += bzr-gtk
SUBDIR += bzr-loom
SUBDIR += bzr-pipeline
SUBDIR += bzr-rewrite
SUBDIR += bzr-scmproj
SUBDIR += bzr-stats
SUBDIR += bzr-svn
SUBDIR += bzr-upload
SUBDIR += bzrtools
SUBDIR += c-unit
SUBDIR += c2mdoc
SUBDIR += caf
SUBDIR += calibrator
SUBDIR += capstone3
SUBDIR += capstone4
SUBDIR += cargo
SUBDIR += cask
SUBDIR += catch
SUBDIR += cbrowser
SUBDIR += cc65
SUBDIR += ccache
SUBDIR += ccache-memcached
SUBDIR += cccc
SUBDIR += ccdoc
SUBDIR += ccons
SUBDIR += ccrtp
SUBDIR += cdash
SUBDIR += cdecl
SUBDIR += cdialog
SUBDIR += cdk
SUBDIR += cervisia
SUBDIR += cflow
SUBDIR += cflow2vcg
SUBDIR += cgdb
SUBDIR += cgilib
SUBDIR += cgit
SUBDIR += cgprof
SUBDIR += charva
SUBDIR += check
SUBDIR += checkbashisms
SUBDIR += checkheaders
SUBDIR += cheritrace-devel
SUBDIR += cherivis-devel
SUBDIR += chrpath
SUBDIR += chruby
SUBDIR += cil
SUBDIR += cityhash
SUBDIR += cjose
SUBDIR += cl-alexandria
SUBDIR += cl-alexandria-sbcl
SUBDIR += cl-asdf
SUBDIR += cl-cffi
SUBDIR += cl-cffi-sbcl
SUBDIR += cl-infix
SUBDIR += cl-infix-sbcl
SUBDIR += cl-port
SUBDIR += cl-port-sbcl
SUBDIR += cl-split-sequence
SUBDIR += cl-split-sequence-sbcl
SUBDIR += cl-trivial-features
SUBDIR += cl-trivial-features-sbcl
SUBDIR += cl-trivial-gray-streams
SUBDIR += cl-trivial-gray-streams-sbcl
SUBDIR += clanlib
SUBDIR += clanlib1
SUBDIR += clanlib22
SUBDIR += cld
SUBDIR += cld2
SUBDIR += clewn
SUBDIR += clig
SUBDIR += clinfo
SUBDIR += clisp-hyperspec
SUBDIR += clojure-cider
SUBDIR += cloudabi
SUBDIR += cloudabi-binutils-aarch64
SUBDIR += cloudabi-binutils-x86_64
SUBDIR += cloudabi-toolchain
SUBDIR += cmake
SUBDIR += cmake-doc
SUBDIR += cmake-fedora
SUBDIR += cmake-gui
SUBDIR += cmake-modules
SUBDIR += cmake-modules-webos
SUBDIR += cmph
SUBDIR += cmunge
SUBDIR += cobf
SUBDIR += coccinelle
SUBDIR += codeblocks
SUBDIR += codeville
SUBDIR += codeworker
SUBDIR += colorgcc
SUBDIR += colormake
SUBDIR += commit-patch
SUBDIR += commoncpp
SUBDIR += compiler-rt
SUBDIR += compiz-bcop
SUBDIR += concurrencykit
SUBDIR += configkit
SUBDIR += cons
SUBDIR += cons-test
SUBDIR += cook
SUBDIR += courier-unicode
SUBDIR += covtool
SUBDIR += cpan-upload
SUBDIR += cpan-upload-http
SUBDIR += cpp-netlib
SUBDIR += cppcheck
SUBDIR += cppi
SUBDIR += cpprestsdk
SUBDIR += cpptest
SUBDIR += cppunit
SUBDIR += cpputest
SUBDIR += cproto
SUBDIR += cpuflags
SUBDIR += cram
SUBDIR += creduce
SUBDIR += critcl
SUBDIR += cs-eric6
SUBDIR += cscope
SUBDIR += cscout
SUBDIR += csmith
SUBDIR += csoap
SUBDIR += cssc
SUBDIR += cstringbuffer
SUBDIR += ctags
SUBDIR += ctypes.sh
SUBDIR += cunit
SUBDIR += cut
SUBDIR += cutils
SUBDIR += cutter
SUBDIR += cvs
SUBDIR += cvs+ipv6
SUBDIR += cvs-devel
SUBDIR += cvs-syncmail
SUBDIR += cvs2cl
SUBDIR += cvs2darcs
SUBDIR += cvs2html
SUBDIR += cvs2svn
SUBDIR += cvsadmin
SUBDIR += cvsbook
SUBDIR += cvschangelogbuilder
SUBDIR += cvschk
SUBDIR += cvsd
SUBDIR += cvsdadm
SUBDIR += cvsdelta
SUBDIR += cvsdiff2patch
SUBDIR += cvsgraph
SUBDIR += cvslines
SUBDIR += cvsmonitor
SUBDIR += cvsplot
SUBDIR += cvsps
SUBDIR += cvsps-devel
SUBDIR += cvsspam
SUBDIR += cvstrac
SUBDIR += cvsutils
SUBDIR += cvsweb
SUBDIR += cvsweb3
SUBDIR += cvswrap
SUBDIR += cweb
SUBDIR += cx_Freeze
SUBDIR += cxmon
SUBDIR += cxref
SUBDIR += cxxtest
SUBDIR += cxxtools
SUBDIR += d-feet
SUBDIR += darts
SUBDIR += dash.el
SUBDIR += datadraw
SUBDIR += dbus
SUBDIR += dbus-c++
SUBDIR += dbus-glib
- SUBDIR += dbus-qt4
- SUBDIR += dbus-qt5
SUBDIR += dbus-sharp
SUBDIR += dbus-sharp-glib
SUBDIR += dbus-tcl
SUBDIR += dcmtk
SUBDIR += dconf
SUBDIR += dconf-editor
SUBDIR += ddd
SUBDIR += dee
SUBDIR += deforaos-libsystem
SUBDIR += deheader
SUBDIR += delta
SUBDIR += desktop-file-utils
SUBDIR += dev86
SUBDIR += devhelp
SUBDIR += devtodo
SUBDIR += dfuife-curses
SUBDIR += dia2code
SUBDIR += diffuse
SUBDIR += ding-libs
SUBDIR += directfb
SUBDIR += dissy
SUBDIR += distcc
SUBDIR += distel
SUBDIR += distorm
SUBDIR += ditrack
SUBDIR += djgpp-binutils
SUBDIR += djgpp-crx
SUBDIR += dmake
SUBDIR += dmalloc
SUBDIR += dmucs
SUBDIR += doctorj
SUBDIR += dolphin-plugins
SUBDIR += dotconf
SUBDIR += dotconf++
SUBDIR += doxygen
SUBDIR += dparser
SUBDIR += dprog
SUBDIR += dragon
SUBDIR += dreampie
SUBDIR += drpython
SUBDIR += ds2
SUBDIR += dulwich
SUBDIR += duplo
SUBDIR += dwarfdump
SUBDIR += dwarves
SUBDIR += dxa65
SUBDIR += dyncall
SUBDIR += e00compr
SUBDIR += e2fsprogs-libss
SUBDIR += easygit
SUBDIR += eblob
SUBDIR += ebnf2yacc
SUBDIR += ecgi
SUBDIR += edb
SUBDIR += editline
SUBDIR += efivar
SUBDIR += efl
SUBDIR += eggdbus
SUBDIR += egypt
SUBDIR += eiffelstudio
SUBDIR += elf
SUBDIR += elfio
SUBDIR += elfkickers
SUBDIR += elfrc
SUBDIR += elfsh
SUBDIR += elftoaout
SUBDIR += elfutils
SUBDIR += elixir-apex
SUBDIR += elixir-bson
SUBDIR += elixir-calendar
SUBDIR += elixir-combine
SUBDIR += elixir-conform
SUBDIR += elixir-conform_exrm
SUBDIR += elixir-connection
SUBDIR += elixir-coverex
SUBDIR += elixir-crontab
SUBDIR += elixir-csv
SUBDIR += elixir-decimal
SUBDIR += elixir-dialyze
SUBDIR += elixir-estree
SUBDIR += elixir-exactor
SUBDIR += elixir-excoveralls
SUBDIR += elixir-exjsx
SUBDIR += elixir-exprotobuf
SUBDIR += elixir-exrm
SUBDIR += elixir-gen_state_machine
SUBDIR += elixir-gettext
SUBDIR += elixir-hex
SUBDIR += elixir-inflex
SUBDIR += elixir-lager_logger
SUBDIR += elixir-libring
SUBDIR += elixir-math
SUBDIR += elixir-msgpax
SUBDIR += elixir-nadia
SUBDIR += elixir-nats
SUBDIR += elixir-nimble_csv
SUBDIR += elixir-paratize
SUBDIR += elixir-plug
SUBDIR += elixir-poison
SUBDIR += elixir-quantum
SUBDIR += elixir-red_black_tree
SUBDIR += elixir-simple_bayes
SUBDIR += elixir-sorted_set
SUBDIR += elixir-stemmer
SUBDIR += elixir-swarm
SUBDIR += elixir-timex
SUBDIR += elixir-tirexs
SUBDIR += elixir-tzdata
SUBDIR += embb
SUBDIR += epl.el
SUBDIR += epm
SUBDIR += epydoc
SUBDIR += eric6
SUBDIR += eris
SUBDIR += erlang-backoff
SUBDIR += erlang-bbmustache
SUBDIR += erlang-bear
SUBDIR += erlang-certifi
SUBDIR += erlang-cf
SUBDIR += erlang-cl
SUBDIR += erlang-clique
SUBDIR += erlang-common_lib
SUBDIR += erlang-cuttlefish
SUBDIR += erlang-erlware_commons
SUBDIR += erlang-esdl
SUBDIR += erlang-exmpp
SUBDIR += erlang-folsom
SUBDIR += erlang-gen_leader
SUBDIR += erlang-gen_rpc
SUBDIR += erlang-gen_smtp
SUBDIR += erlang-getopt
SUBDIR += erlang-goldrush
SUBDIR += erlang-gpb
SUBDIR += erlang-gproc
SUBDIR += erlang-hut
SUBDIR += erlang-jobs
SUBDIR += erlang-jsx
SUBDIR += erlang-jsxd
SUBDIR += erlang-katana
SUBDIR += erlang-lager
SUBDIR += erlang-lager_syslog
SUBDIR += erlang-meck
SUBDIR += erlang-metrics
SUBDIR += erlang-msgpack
SUBDIR += erlang-neotoma
SUBDIR += erlang-oserl
SUBDIR += erlang-parse_trans
SUBDIR += erlang-poolboy
SUBDIR += erlang-pooler
SUBDIR += erlang-protobuffs
SUBDIR += erlang-providers
SUBDIR += erlang-rebar3_hex
SUBDIR += erlang-recon
SUBDIR += erlang-sbroker
SUBDIR += erlang-ssl_verify_fun
SUBDIR += erlang-syslog
SUBDIR += es-eric6
SUBDIR += etcd
SUBDIR += etcd3
SUBDIR += etl
SUBDIR += euca2ools
SUBDIR += eventxx
SUBDIR += evolution-gconf-tools
SUBDIR += exercisix
SUBDIR += f77flow
SUBDIR += fam
SUBDIR += fastcrc
SUBDIR += fb-adb
SUBDIR += fb303
SUBDIR += fc++
SUBDIR += ffcall
SUBDIR += fga
SUBDIR += fhist
SUBDIR += fib
SUBDIR += firmware-utils
SUBDIR += fistgen
SUBDIR += flatbuffers
SUBDIR += flatzebra
SUBDIR += flex-sdk
SUBDIR += flex-sdk35
SUBDIR += flexdock
SUBDIR += flexjson
SUBDIR += flickrnet
SUBDIR += florist-gpl
SUBDIR += flyspray
SUBDIR += fmake
SUBDIR += fnccheck
SUBDIR += fnorb
SUBDIR += fortran-utils
SUBDIR += fortytwo-encore
SUBDIR += fossil
SUBDIR += fpc-bfd
SUBDIR += fpc-dbus
SUBDIR += fpc-fcl-async
SUBDIR += fpc-fcl-base
SUBDIR += fpc-fcl-db
SUBDIR += fpc-fcl-extra
SUBDIR += fpc-fcl-fpcunit
SUBDIR += fpc-fcl-image
SUBDIR += fpc-fcl-js
SUBDIR += fpc-fcl-json
SUBDIR += fpc-fcl-net
SUBDIR += fpc-fcl-passrc
SUBDIR += fpc-fcl-registry
SUBDIR += fpc-fcl-res
SUBDIR += fpc-fcl-sdo
SUBDIR += fpc-fcl-sound
SUBDIR += fpc-fcl-stl
SUBDIR += fpc-fcl-web
SUBDIR += fpc-fcl-xml
SUBDIR += fpc-fppkg
SUBDIR += fpc-fv
SUBDIR += fpc-gdbint
SUBDIR += fpc-newt
SUBDIR += fpc-pthreads
SUBDIR += fpc-regexpr
SUBDIR += fpc-sdl
SUBDIR += fpc-symbolic
SUBDIR += fpc-zlib
SUBDIR += fpp
SUBDIR += frama-c
SUBDIR += freeocl
SUBDIR += frink
SUBDIR += fstrm
SUBDIR += ftjam
SUBDIR += ftnchek
SUBDIR += fuel
SUBDIR += fujaba
SUBDIR += funnelweb
SUBDIR += gaa
SUBDIR += gamin
SUBDIR += gauche-readline
SUBDIR += gaul
SUBDIR += gazpacho
SUBDIR += gb
SUBDIR += gcc-arm-embedded
SUBDIR += gcc-msp430-ti-toolchain
SUBDIR += gccmakedep
SUBDIR += gconf2
SUBDIR += gconf2-reference
SUBDIR += gconfmm26
SUBDIR += gcvs
SUBDIR += gdb
SUBDIR += gdb66
SUBDIR += gdbmods
SUBDIR += gdcm
SUBDIR += geany
SUBDIR += geany-plugin-addons
SUBDIR += geany-plugin-autoclose
SUBDIR += geany-plugin-automark
SUBDIR += geany-plugin-codenav
SUBDIR += geany-plugin-commander
SUBDIR += geany-plugin-ctags
SUBDIR += geany-plugin-debugger
SUBDIR += geany-plugin-defineformat
SUBDIR += geany-plugin-devhelp
SUBDIR += geany-plugin-doc
SUBDIR += geany-plugin-extrasel
SUBDIR += geany-plugin-geanypy
SUBDIR += geany-plugin-gendoc
SUBDIR += geany-plugin-geniuspaste
SUBDIR += geany-plugin-git-changebar
SUBDIR += geany-plugin-insertnum
SUBDIR += geany-plugin-latex
SUBDIR += geany-plugin-lineoperations
SUBDIR += geany-plugin-lipsum
SUBDIR += geany-plugin-lua
SUBDIR += geany-plugin-macro
SUBDIR += geany-plugin-markdown
SUBDIR += geany-plugin-miniscript
SUBDIR += geany-plugin-multiterm
SUBDIR += geany-plugin-numberedbookmarks
SUBDIR += geany-plugin-overview
SUBDIR += geany-plugin-pairtaghighlighter
SUBDIR += geany-plugin-pg
SUBDIR += geany-plugin-pohelper
SUBDIR += geany-plugin-pretty-printer
SUBDIR += geany-plugin-prj
SUBDIR += geany-plugin-projectorganizer
SUBDIR += geany-plugin-scope
SUBDIR += geany-plugin-sendmail
SUBDIR += geany-plugin-shiftcolumn
SUBDIR += geany-plugin-spellcheck
SUBDIR += geany-plugin-tableconvert
SUBDIR += geany-plugin-treebrowser
SUBDIR += geany-plugin-updatechecker
SUBDIR += geany-plugin-vc
SUBDIR += geany-plugin-webhelper
SUBDIR += geany-plugin-xmlsnippets
SUBDIR += geany-plugins
SUBDIR += geany-plugins-l10n
SUBDIR += gearmand
SUBDIR += gearmand-devel
SUBDIR += gecode
SUBDIR += generate
SUBDIR += generatorrunner
SUBDIR += gengetopt
SUBDIR += genproto
SUBDIR += geoip-java
SUBDIR += gettext
SUBDIR += gettext-lint
SUBDIR += gettext-msghack
SUBDIR += gettext-runtime
SUBDIR += gettext-tools
SUBDIR += gflags
SUBDIR += giggle
SUBDIR += gindent
SUBDIR += gio-sharp
SUBDIR += git
SUBDIR += git-bzr-ng
SUBDIR += git-cinnabar
SUBDIR += git-codereview
SUBDIR += git-cola
SUBDIR += git-cvs
SUBDIR += git-extras
SUBDIR += git-gui
SUBDIR += git-lfs
SUBDIR += git-lite
SUBDIR += git-merge-changelog
SUBDIR += git-modes
SUBDIR += git-review
SUBDIR += git-subversion
SUBDIR += gitblit
SUBDIR += gitflow
SUBDIR += gitg
SUBDIR += gitg0
SUBDIR += github-backup-utils
SUBDIR += gitinspector
SUBDIR += gitlab-shell
SUBDIR += gitlist
SUBDIR += gitolite
SUBDIR += gitolite2
SUBDIR += gitphp
SUBDIR += gittrac
SUBDIR += glade
SUBDIR += glade2
SUBDIR += glade3
SUBDIR += glademm
SUBDIR += glib12
SUBDIR += glib20
SUBDIR += glib20-reference
SUBDIR += glibmm
SUBDIR += glibmm-reference
SUBDIR += global
SUBDIR += glog
SUBDIR += glrparser
SUBDIR += glui
SUBDIR += gmake
SUBDIR += gnatcoll
SUBDIR += gnatpython
SUBDIR += gnome-builder
SUBDIR += gnome-common
SUBDIR += gnome-js-common
SUBDIR += gnome-vfs
SUBDIR += gnome-vfs-monikers
SUBDIR += gnome-vfs-reference
SUBDIR += gnome-vfsmm
SUBDIR += gnu-efi
SUBDIR += gnucflow
SUBDIR += gnulib
SUBDIR += gnulibiberty
SUBDIR += gnustep
SUBDIR += gnustep-make
SUBDIR += go-bayesian
SUBDIR += go-bindata
SUBDIR += go-cobra
SUBDIR += go-codec
SUBDIR += go-faker
SUBDIR += go-form
SUBDIR += go-glide
SUBDIR += go-go.uuid
SUBDIR += go-gocode
SUBDIR += go-goregen
SUBDIR += go-hashicorp-logutils
SUBDIR += go-json-rest
SUBDIR += go-logrus
SUBDIR += go-metrics
SUBDIR += go-nuid
SUBDIR += go-pflag
SUBDIR += go-pretty
SUBDIR += go-protobuf
SUBDIR += go-raw
SUBDIR += go-runewidth
SUBDIR += go-slices
SUBDIR += go-sql-driver
SUBDIR += go-tools
SUBDIR += go-uuid
SUBDIR += go-yaml
SUBDIR += gob2
SUBDIR += gobject-introspection
SUBDIR += godep
SUBDIR += godot
SUBDIR += godot-tools
SUBDIR += goffice
SUBDIR += goffice010
SUBDIR += google-gdata
SUBDIR += google-perftools
SUBDIR += google-styleguide
SUBDIR += googlemock
SUBDIR += googletest
SUBDIR += goprotobuf
SUBDIR += gorm
SUBDIR += govendor
SUBDIR += gperf
SUBDIR += gpm
SUBDIR += gprbuild
SUBDIR += gps
SUBDIR += gpsim
SUBDIR += gputils
SUBDIR += gradle
SUBDIR += grantlee
SUBDIR += grantlee5
SUBDIR += grumpy
SUBDIR += gsettings-desktop-schemas
SUBDIR += gsoap
SUBDIR += gstreamer-plugins-gconf
SUBDIR += gstreamer-plugins-gio
SUBDIR += gstreamer-plugins-gnomevfs
SUBDIR += gstreamer-plugins-sdl
SUBDIR += gstreamer-plugins-soup
SUBDIR += gstreamer1-plugins-soup
SUBDIR += gtgt
SUBDIR += gtkparasite
SUBDIR += gtranslator
SUBDIR += guichan
SUBDIR += guikachu
SUBDIR += guile-lib
SUBDIR += guiloader
SUBDIR += guiloader-c++
SUBDIR += gumbo
SUBDIR += gvfs
SUBDIR += gvp
SUBDIR += gwenhywfar
SUBDIR += gwenhywfar-fox16
SUBDIR += gwenhywfar-gtk2
SUBDIR += gwenhywfar-qt4
SUBDIR += gwenhywfar-qt5
SUBDIR += gzstream
SUBDIR += hachoir-core
SUBDIR += hachoir-parser
SUBDIR += hachoir-regex
SUBDIR += hadoop
SUBDIR += hadoop2
SUBDIR += hapy
SUBDIR += hcs12mem
SUBDIR += hexcompare
SUBDIR += hg-git
SUBDIR += hgreviewboard
SUBDIR += hgsvn
SUBDIR += hgview
SUBDIR += highlighterkit
SUBDIR += hive
SUBDIR += horde-content
SUBDIR += horde-timeobjects
SUBDIR += horde-whups
SUBDIR += hp48cc
SUBDIR += hp48xgcc
SUBDIR += hs-BNFC
SUBDIR += hs-Boolean
SUBDIR += hs-BoundedChan
SUBDIR += hs-ConfigFile
SUBDIR += hs-DrIFT
SUBDIR += hs-Glob
SUBDIR += hs-HUnit
SUBDIR += hs-IfElse
SUBDIR += hs-List
SUBDIR += hs-MemoTrie
SUBDIR += hs-MissingH
SUBDIR += hs-MonadCatchIO-mtl
SUBDIR += hs-MonadCatchIO-transformers
SUBDIR += hs-MonadRandom
SUBDIR += hs-ObjectName
SUBDIR += hs-PSQueue
SUBDIR += hs-QuickCheck
SUBDIR += hs-ReadArgs
SUBDIR += hs-STMonadTrans
SUBDIR += hs-SafeSemaphore
SUBDIR += hs-ShellCheck
SUBDIR += hs-StateVar
SUBDIR += hs-Stream
SUBDIR += hs-TypeCompose
SUBDIR += hs-abstract-deque
SUBDIR += hs-abstract-par
SUBDIR += hs-activehs-base
SUBDIR += hs-alex
SUBDIR += hs-ansi-terminal
SUBDIR += hs-ansi-wl-pprint
SUBDIR += hs-arrows
SUBDIR += hs-asn1-data
SUBDIR += hs-asn1-encoding
SUBDIR += hs-asn1-parse
SUBDIR += hs-asn1-types
SUBDIR += hs-async
SUBDIR += hs-atomic-primops
SUBDIR += hs-auto-update
SUBDIR += hs-base-orphans
SUBDIR += hs-base-unicode-symbols
SUBDIR += hs-base16-bytestring
SUBDIR += hs-base64-bytestring
SUBDIR += hs-basic-prelude
SUBDIR += hs-bifunctors
SUBDIR += hs-bits-atomic
SUBDIR += hs-blaze-builder
SUBDIR += hs-blaze-builder-enumerator
SUBDIR += hs-blaze-textual
SUBDIR += hs-bloomfilter
SUBDIR += hs-boxes
SUBDIR += hs-bsd-sysctl
SUBDIR += hs-byteable
SUBDIR += hs-byteorder
SUBDIR += hs-bytestring-lexing
SUBDIR += hs-bytestring-mmap
SUBDIR += hs-bytestring-nums
SUBDIR += hs-bytestring-show
SUBDIR += hs-c2hs
SUBDIR += hs-cabal-install
SUBDIR += hs-cereal
SUBDIR += hs-checkers
SUBDIR += hs-chunked-data
SUBDIR += hs-classy-prelude
SUBDIR += hs-classy-prelude-conduit
SUBDIR += hs-cmdargs
SUBDIR += hs-conduit
SUBDIR += hs-conduit-combinators
SUBDIR += hs-conduit-extra
SUBDIR += hs-configurator
SUBDIR += hs-constraints
SUBDIR += hs-convertible
SUBDIR += hs-cpphs
SUBDIR += hs-darcs
SUBDIR += hs-data-default
SUBDIR += hs-data-default-class
SUBDIR += hs-data-default-instances-base
SUBDIR += hs-data-default-instances-containers
SUBDIR += hs-data-default-instances-dlist
SUBDIR += hs-data-default-instances-old-locale
SUBDIR += hs-data-hash
SUBDIR += hs-data-ordlist
SUBDIR += hs-data-pprint
SUBDIR += hs-date-cache
SUBDIR += hs-datetime
SUBDIR += hs-deepseq-generics
SUBDIR += hs-directory-tree
SUBDIR += hs-dlist
SUBDIR += hs-dlist-instances
SUBDIR += hs-easy-file
SUBDIR += hs-edit-distance
SUBDIR += hs-either
SUBDIR += hs-enclosed-exceptions
SUBDIR += hs-enumerator
SUBDIR += hs-equivalence
SUBDIR += hs-errors
SUBDIR += hs-exceptions
SUBDIR += hs-extensible-exceptions
SUBDIR += hs-extra
SUBDIR += hs-fast-logger
SUBDIR += hs-fgl
SUBDIR += hs-file-embed
SUBDIR += hs-filemanip
SUBDIR += hs-filestore
SUBDIR += hs-free
SUBDIR += hs-fsnotify
SUBDIR += hs-gconf
SUBDIR += hs-generic-deriving
SUBDIR += hs-geniplate-mirror
SUBDIR += hs-ghc-events
SUBDIR += hs-ghc-mtl
SUBDIR += hs-ghc-paths
SUBDIR += hs-gio
SUBDIR += hs-git-annex
SUBDIR += hs-glib
SUBDIR += hs-gtk2hs-buildtools
SUBDIR += hs-haddock
SUBDIR += hs-haddock-api
SUBDIR += hs-haddock-library
SUBDIR += hs-happy
SUBDIR += hs-hashable
SUBDIR += hs-hashed-storage
SUBDIR += hs-hashtables
SUBDIR += hs-haskell-src
SUBDIR += hs-haskell-src-exts
SUBDIR += hs-hasktags
SUBDIR += hs-hastache
SUBDIR += hs-hex
SUBDIR += hs-hinotify
SUBDIR += hs-hint
SUBDIR += hs-hlibev
SUBDIR += hs-hlint
SUBDIR += hs-hoogle
SUBDIR += hs-hourglass
SUBDIR += hs-hsb2hs
SUBDIR += hs-hslogger
SUBDIR += hs-hslua
SUBDIR += hs-hspec
SUBDIR += hs-hspec-core
SUBDIR += hs-hspec-discover
SUBDIR += hs-hspec-expectations
SUBDIR += hs-js-flot
SUBDIR += hs-js-jquery
SUBDIR += hs-keys
SUBDIR += hs-kqueue
SUBDIR += hs-language-c
SUBDIR += hs-language-javascript
SUBDIR += hs-largeword
SUBDIR += hs-lazysmallcheck
SUBDIR += hs-lens
SUBDIR += hs-lifted-async
SUBDIR += hs-lifted-base
SUBDIR += hs-logict
SUBDIR += hs-map-syntax
SUBDIR += hs-memory
SUBDIR += hs-mmap
SUBDIR += hs-mmorph
SUBDIR += hs-monad-control
SUBDIR += hs-monad-logger
SUBDIR += hs-monad-loops
SUBDIR += hs-monad-par
SUBDIR += hs-monad-par-extras
SUBDIR += hs-monads-tf
SUBDIR += hs-mono-traversable
SUBDIR += hs-mtl
SUBDIR += hs-mueval
SUBDIR += hs-murmur-hash
SUBDIR += hs-mutable-containers
SUBDIR += hs-ncurses
SUBDIR += hs-newtype
SUBDIR += hs-old-locale
SUBDIR += hs-old-time
SUBDIR += hs-optparse-applicative
SUBDIR += hs-parallel
SUBDIR += hs-pcre-light
SUBDIR += hs-prelude-extras
SUBDIR += hs-preprocessor-tools
SUBDIR += hs-prettyclass
SUBDIR += hs-primitive
SUBDIR += hs-profunctors
SUBDIR += hs-project-template
SUBDIR += hs-quickcheck-io
SUBDIR += hs-random
SUBDIR += hs-readline
SUBDIR += hs-reflection
SUBDIR += hs-resource-pool
SUBDIR += hs-resourcet
SUBDIR += hs-safe
SUBDIR += hs-scientific
SUBDIR += hs-securemem
SUBDIR += hs-setenv
SUBDIR += hs-setlocale
SUBDIR += hs-shake
SUBDIR += hs-show
SUBDIR += hs-silently
SUBDIR += hs-simple-reflect
SUBDIR += hs-smallcheck
SUBDIR += hs-split
SUBDIR += hs-stm
SUBDIR += hs-stm-chans
SUBDIR += hs-streaming-commons
SUBDIR += hs-strict
SUBDIR += hs-syb
SUBDIR += hs-syb-with-class
SUBDIR += hs-syb-with-class-instances-text
SUBDIR += hs-system-fileio
SUBDIR += hs-system-filepath
SUBDIR += hs-tagged
SUBDIR += hs-temporary
SUBDIR += hs-test-framework
SUBDIR += hs-test-framework-hunit
SUBDIR += hs-test-framework-quickcheck2
SUBDIR += hs-text
SUBDIR += hs-text-icu
SUBDIR += hs-tf-random
SUBDIR += hs-threads
SUBDIR += hs-threadscope
SUBDIR += hs-time-compat
SUBDIR += hs-time-locale-compat
SUBDIR += hs-timezone-olson
SUBDIR += hs-timezone-series
SUBDIR += hs-transformers-base
SUBDIR += hs-transformers-compat
SUBDIR += hs-unamb
SUBDIR += hs-uniplate
SUBDIR += hs-unix-compat
SUBDIR += hs-unix-time
SUBDIR += hs-unordered-containers
SUBDIR += hs-utf8-light
SUBDIR += hs-utf8-string
SUBDIR += hs-utility-ht
SUBDIR += hs-uuagc
SUBDIR += hs-uuagc-bootstrap
SUBDIR += hs-uuagc-cabal
SUBDIR += hs-uuid
SUBDIR += hs-uuid-types
SUBDIR += hs-uulib
SUBDIR += hs-vault
SUBDIR += hs-vector
SUBDIR += hs-vector-algorithms
SUBDIR += hs-vector-binary-instances
SUBDIR += hs-vector-instances
SUBDIR += hs-vector-th-unbox
SUBDIR += hs-void
SUBDIR += hs-word8
SUBDIR += htable
SUBDIR += hub
SUBDIR += hwloc
SUBDIR += hyperscan
SUBDIR += ice
SUBDIR += icmake
SUBDIR += icu
SUBDIR += icu-le-hb
SUBDIR += icu-lx
SUBDIR += idutils
SUBDIR += imake
SUBDIR += include-what-you-use
SUBDIR += inilib
SUBDIR += iniparser
SUBDIR += initutil
SUBDIR += injeqt
SUBDIR += insight
SUBDIR += ioncube
SUBDIR += ipython
SUBDIR += ireport
SUBDIR += isa-l
SUBDIR += isl
SUBDIR += ispc
SUBDIR += it-eric6
SUBDIR += itext
SUBDIR += ivykis
SUBDIR += jakarta-commons-configuration
SUBDIR += jakarta-commons-daemon
SUBDIR += jakarta-commons-io
SUBDIR += jakarta-commons-jxpath
SUBDIR += jakarta-commons-modeler
SUBDIR += jam
SUBDIR += jansson
SUBDIR += java-findbugs
SUBDIR += javolution
SUBDIR += jclassinfo
SUBDIR += jcmdline
SUBDIR += jech-dht
SUBDIR += jenkins
SUBDIR += jenkins-lts
SUBDIR += jfrog-cli
SUBDIR += jiic
SUBDIR += jline
SUBDIR += jna
SUBDIR += jrtplib
SUBDIR += jsap
SUBDIR += jsl
SUBDIR += jsmin
SUBDIR += json-c
SUBDIR += json-glib
SUBDIR += jsoncpp
SUBDIR += jsonnet
SUBDIR += judy
SUBDIR += jwasm
SUBDIR += k8048
SUBDIR += kBuild
SUBDIR += kapptemplate
SUBDIR += kaptain
SUBDIR += kcachegrind
SUBDIR += kdbg
SUBDIR += kde-dev-scripts
SUBDIR += kde-dev-utils
SUBDIR += kdebindings4
SUBDIR += kdesdk4
SUBDIR += kdesdk4-kioslaves
SUBDIR += kdesdk4-strigi-analyzers
SUBDIR += kdesdk4-thumbnailers
SUBDIR += kdesvn-kde4
SUBDIR += kdevelop-kde4
SUBDIR += kdevelop-pg-qt
SUBDIR += kdevelop-php
SUBDIR += kdevelop-php-docs
SUBDIR += kdevplatform
SUBDIR += kf5-extra-cmake-modules
SUBDIR += kf5-kapidox
SUBDIR += kf5-kauth
SUBDIR += kf5-kbookmarks
SUBDIR += kf5-kcmutils
SUBDIR += kf5-kconfig
SUBDIR += kf5-kcoreaddons
SUBDIR += kf5-kcrash
SUBDIR += kf5-kdbusaddons
SUBDIR += kf5-kdeclarative
SUBDIR += kf5-kdoctools
SUBDIR += kf5-kfilemetadata
SUBDIR += kf5-ki18n
SUBDIR += kf5-kidletime
SUBDIR += kf5-kio
SUBDIR += kf5-kitemmodels
SUBDIR += kf5-knewstuff
SUBDIR += kf5-knotifications
SUBDIR += kf5-knotifyconfig
SUBDIR += kf5-kpackage
SUBDIR += kf5-kparts
SUBDIR += kf5-kpeople
SUBDIR += kf5-kpty
SUBDIR += kf5-kservice
SUBDIR += kf5-ktexteditor
SUBDIR += kf5-kunitconversion
SUBDIR += kf5-solid
SUBDIR += kf5-threadweaver
SUBDIR += kickassembler
SUBDIR += kimwitu
SUBDIR += kore
SUBDIR += kyra
SUBDIR += kyua
SUBDIR += lasi
SUBDIR += lcov
SUBDIR += leaktracer
SUBDIR += leiningen
SUBDIR += lemon
SUBDIR += lfcbase
SUBDIR += lfcxml
SUBDIR += libCello
SUBDIR += libIDL
SUBDIR += libPropList
SUBDIR += libafterbase
SUBDIR += liballium
SUBDIR += libantlr3c
SUBDIR += libarea
SUBDIR += libarena
SUBDIR += libassa
SUBDIR += libassetml
SUBDIR += libast
SUBDIR += libastylej
SUBDIR += libastylej-arduino
SUBDIR += libatomic_ops
SUBDIR += libaura
SUBDIR += libavl
SUBDIR += libbde
SUBDIR += libbegemot
SUBDIR += libbfd
SUBDIR += libbinio
SUBDIR += libbobcat
SUBDIR += libbonobo
SUBDIR += libbonobo-reference
SUBDIR += libbrotli
SUBDIR += libbson
SUBDIR += libburn
SUBDIR += libc++
SUBDIR += libccid
SUBDIR += libcfg
SUBDIR += libcfu
SUBDIR += libchipcard
SUBDIR += libcidr
SUBDIR += libcii
SUBDIR += libclaw
SUBDIR += libclc
SUBDIR += libcli
SUBDIR += libconcurrent
SUBDIR += libconfig
SUBDIR += libconfuse
SUBDIR += libcrossguid
SUBDIR += libcutl
SUBDIR += libcwd
SUBDIR += libcxxrt
SUBDIR += libdaemon
SUBDIR += libdap
SUBDIR += libdatrie
SUBDIR += libdbusmenu
SUBDIR += libdbusmenu-qt
SUBDIR += libdbusmenu-qt5
SUBDIR += libdevq
SUBDIR += libdfui
SUBDIR += libdisasm
SUBDIR += libdisorder
SUBDIR += libdispatch
SUBDIR += libdistance
SUBDIR += libdlmalloc
SUBDIR += libdlna
SUBDIR += libdnsres
SUBDIR += libdombey
SUBDIR += libdouble-conversion
SUBDIR += libds
SUBDIR += libdsp
SUBDIR += libdwarf
SUBDIR += libe
SUBDIR += libedit
SUBDIR += libee
SUBDIR += libeio
SUBDIR += libelf
SUBDIR += libepoll-shim
SUBDIR += libepp-nicbr
SUBDIR += libesedb
SUBDIR += libestr
SUBDIR += libev
SUBDIR += libevdev
SUBDIR += libevent-hiphop
SUBDIR += libevent2
SUBDIR += libevt
SUBDIR += libevtx
SUBDIR += libewf
SUBDIR += libexecinfo
SUBDIR += libexplain
SUBDIR += libfaketime
SUBDIR += libfastcommon
SUBDIR += libfastjson
SUBDIR += libffi
SUBDIR += libfirm
SUBDIR += libflatarray
SUBDIR += libfmt
SUBDIR += libfortuna
SUBDIR += libfreefare
SUBDIR += libfsntfs
SUBDIR += libftdi
SUBDIR += libftdi1
SUBDIR += libfwnt
SUBDIR += libfwsi
SUBDIR += libg19
SUBDIR += libg19draw
SUBDIR += libgalago
SUBDIR += libgamepad
SUBDIR += libgdata
SUBDIR += libgee
SUBDIR += libgee06
SUBDIR += libgetline
SUBDIR += libghthash
SUBDIR += libgit2
SUBDIR += libgit2-glib
SUBDIR += libglade2
SUBDIR += libglade2-reference
SUBDIR += libglademm24
SUBDIR += libgpc
SUBDIR += libgpkg
SUBDIR += libgrading
SUBDIR += libgsf
SUBDIR += libgta
SUBDIR += libgtop
SUBDIR += libgudev
SUBDIR += libgutenfetch
SUBDIR += libhash
SUBDIR += libhid
SUBDIR += libhoard
SUBDIR += libhtp
SUBDIR += libical
SUBDIR += libical-glib
SUBDIR += libinotify
SUBDIR += libiqxmlrpc
SUBDIR += libisofs
SUBDIR += libixp
SUBDIR += libjson++
SUBDIR += libk8055
SUBDIR += libkgapi
SUBDIR += libklel
SUBDIR += libkolab
SUBDIR += liblangtag
SUBDIR += liblas
SUBDIR += liblas12
SUBDIR += libleaftag
SUBDIR += liblnk
SUBDIR += liblogging
SUBDIR += liblognorm
SUBDIR += liblouis
SUBDIR += liblouisxml
SUBDIR += libltdl
SUBDIR += liblxqt
SUBDIR += liblxqt-l10n
SUBDIR += libmaa
SUBDIR += libmatheval
SUBDIR += libmba
SUBDIR += libmill
SUBDIR += libmimedir
SUBDIR += libmonetra
SUBDIR += libmowgli
SUBDIR += libmowgli2
SUBDIR += libmpcbdm
SUBDIR += libmpsse
SUBDIR += libmsiecf
SUBDIR += libmsocket
SUBDIR += libmtdev
SUBDIR += libmtrie
SUBDIR += libnaji
SUBDIR += libnfc
SUBDIR += libnotify
SUBDIR += libnsutils
SUBDIR += libnxt
SUBDIR += liboil
SUBDIR += libol
SUBDIR += libolecf
SUBDIR += liboobs
SUBDIR += liboop
SUBDIR += libopenbsd
SUBDIR += libopencm3
SUBDIR += libopensync
SUBDIR += libopkele
SUBDIR += liborcus
SUBDIR += liborcus07
SUBDIR += libosinfo
SUBDIR += libosmo-abis
SUBDIR += libosmo-netif
SUBDIR += libosmo-sccp
SUBDIR += libosmocore
SUBDIR += libowfat
SUBDIR += libpafe
SUBDIR += libpafe-ruby
SUBDIR += libparserutils
SUBDIR += libpasori
SUBDIR += libpci
SUBDIR += libpciaccess
SUBDIR += libpdel
SUBDIR += libpeak
SUBDIR += libpeas
SUBDIR += libpff
SUBDIR += libphk
SUBDIR += libphutil
SUBDIR += libplist
SUBDIR += libpo6
SUBDIR += libpololu-avr
SUBDIR += libpru
SUBDIR += libpthread-stubs
SUBDIR += libqb
SUBDIR += libqcow
SUBDIR += libqtxdg
SUBDIR += libr3
SUBDIR += librcc
SUBDIR += librcd
SUBDIR += libreadline-java
SUBDIR += libredblack
SUBDIR += libregf
SUBDIR += librelp
SUBDIR += librest
SUBDIR += librevisa
SUBDIR += librevisa-vish
SUBDIR += librevisa-vxi
SUBDIR += librolegen
SUBDIR += libruin
SUBDIR += libs11n
SUBDIR += libscca
SUBDIR += libsearpc
SUBDIR += libserialport
SUBDIR += libserver
SUBDIR += libshbuf
SUBDIR += libshhmsg
SUBDIR += libshhopt
SUBDIR += libsigc++12
SUBDIR += libsigc++20
SUBDIR += libsigcx
SUBDIR += libsigrok
SUBDIR += libsigrokdecode
SUBDIR += libsigscan
SUBDIR += libsigsegv
SUBDIR += libslang2
SUBDIR += libsmdev
SUBDIR += libsmpp34
SUBDIR += libsmraw
SUBDIR += libsoup
SUBDIR += libsoup-gnome
SUBDIR += libsoup-reference
SUBDIR += libspark2012
SUBDIR += libstatgrab
SUBDIR += libstatgrab0
SUBDIR += libstrfunc
SUBDIR += libstroke
SUBDIR += libsysinfo
SUBDIR += libtai
SUBDIR += libtap
SUBDIR += libtar
SUBDIR += libtecla
SUBDIR += libtermkey
SUBDIR += libthai
SUBDIR += libtifiles2
SUBDIR += libtool
SUBDIR += libtpl
SUBDIR += libtuntap
SUBDIR += libublio
SUBDIR += libudev-devd
SUBDIR += libukcprog
SUBDIR += libunicode
SUBDIR += libuninum
SUBDIR += libunistring
SUBDIR += libunwind
SUBDIR += libuutil
SUBDIR += libuv
SUBDIR += libvanessa_adt
SUBDIR += libvanessa_logger
SUBDIR += libvanessa_socket
SUBDIR += libvc
SUBDIR += libvhdi
SUBDIR += libvirt
SUBDIR += libvirt-glib
SUBDIR += libvirt-java
SUBDIR += libvmdk
SUBDIR += libvolume_id
SUBDIR += libvshadow
SUBDIR += libvslvm
SUBDIR += libvterm
SUBDIR += libwfut
SUBDIR += libx86
SUBDIR += libxalloc
SUBDIR += libxo
SUBDIR += libxs
SUBDIR += libytnef
SUBDIR += libzookeeper
SUBDIR += libzrtpcpp
SUBDIR += libzvbi
SUBDIR += lightning
SUBDIR += linenoise-ng
SUBDIR += linux-c6-dbus-glib
SUBDIR += linux-c6-dbus-libs
SUBDIR += linux-c6-devtools
SUBDIR += linux-c6-libelf
SUBDIR += linux-c6-libgfortran
SUBDIR += linux-c6-libglade2
SUBDIR += linux-c6-libpciaccess
SUBDIR += linux-c6-libsigc++20
SUBDIR += linux-c6-libsoup
SUBDIR += linux-c6-libthai
SUBDIR += linux-c6-ncurses-base
SUBDIR += linux-c6-nspr
SUBDIR += linux-c6-qt47
SUBDIR += linux-c6-sdl12
SUBDIR += linux-c7-dbus-glib
SUBDIR += linux-c7-dbus-libs
SUBDIR += linux-c7-devtools
SUBDIR += linux-c7-libelf
SUBDIR += linux-c7-libgfortran
SUBDIR += linux-c7-libglade2
SUBDIR += linux-c7-libpciaccess
SUBDIR += linux-c7-libsigc++20
SUBDIR += linux-c7-libthai
SUBDIR += linux-c7-ncurses-base
SUBDIR += linux-c7-nspr
SUBDIR += linux-c7-qt
SUBDIR += linux-c7-sdl12
SUBDIR += linux-c7-sdl20
SUBDIR += linux-kernel
SUBDIR += linux_kdump
SUBDIR += linux_libusb
SUBDIR += lion
SUBDIR += listserialc
SUBDIR += liteide
SUBDIR += lldb37
SUBDIR += lldb38
SUBDIR += llnextgen
SUBDIR += llvm-cheri
SUBDIR += llvm-cheri128
SUBDIR += llvm-devel
SUBDIR += llvm33
SUBDIR += llvm34
SUBDIR += llvm35
SUBDIR += llvm36
SUBDIR += llvm37
SUBDIR += llvm38
SUBDIR += llvm39
SUBDIR += llvm40
SUBDIR += lm4tools
SUBDIR += lmdbg
SUBDIR += lndir
SUBDIR += lnphost
SUBDIR += lockfree-malloc
SUBDIR += log4c
SUBDIR += log4cplus
SUBDIR += log4cpp
SUBDIR += log4cxx
SUBDIR += log4j
SUBDIR += log4net
SUBDIR += log4sh
SUBDIR += log4shib
SUBDIR += lokalize
SUBDIR += loki
SUBDIR += looks
SUBDIR += love
SUBDIR += love07
SUBDIR += love08
SUBDIR += love5
SUBDIR += lpc21isp
SUBDIR += lrmi
SUBDIR += lua-MessagePack
SUBDIR += lua-alien
SUBDIR += lua-bitlib
SUBDIR += lua-bitop
SUBDIR += lua-cjson
SUBDIR += lua-gettext
SUBDIR += lua-lgi
SUBDIR += lua-lpeg
SUBDIR += lua-lpeg51
SUBDIR += lua-luarocks
SUBDIR += lua-lunit
SUBDIR += lua-posix
SUBDIR += lua-pty
SUBDIR += lua-sysctl
SUBDIR += luabind
SUBDIR += luafilesystem
SUBDIR += luafilesystem-51
SUBDIR += luajava
SUBDIR += lutok
SUBDIR += lwp
SUBDIR += lxqt-build-tools
SUBDIR += m17n-db
SUBDIR += m17n-docs
SUBDIR += m17n-lib
SUBDIR += m4
SUBDIR += m6811-binutils
SUBDIR += magit
SUBDIR += make++
SUBDIR += makedepend
SUBDIR += marisa-trie
SUBDIR += mate-common
SUBDIR += matreshka
SUBDIR += maven-wrapper
SUBDIR += maven3
SUBDIR += maven31
SUBDIR += maven33
SUBDIR += mcpp
SUBDIR += mdds
SUBDIR += mdds0
SUBDIR += menhir
SUBDIR += mercator
SUBDIR += mercurial
SUBDIR += mercurialeclipse
SUBDIR += meson
SUBDIR += mico
SUBDIR += mime
SUBDIR += mimir
SUBDIR += mingw32-bin-msvcrt
SUBDIR += mingw32-binutils
SUBDIR += mingw32-directx
SUBDIR += mingw32-gcc
SUBDIR += mingw32-libffi
SUBDIR += mingw32-libyaml
SUBDIR += mingw32-openssl
SUBDIR += mingw32-pdcurses
SUBDIR += mingw32-pthreads
SUBDIR += mingw32-zlib
SUBDIR += mips-binutils
SUBDIR += mips-gcc
SUBDIR += mips-xtoolchain-gcc
SUBDIR += mips64-binutils
SUBDIR += mips64-gcc
SUBDIR += mips64-xtoolchain-gcc
SUBDIR += mk-configure
SUBDIR += mkcmd
SUBDIR += mm
SUBDIR += mm-common
SUBDIR += mongo-c-driver
SUBDIR += mongo-cxx-driver
SUBDIR += mono-addins
SUBDIR += monodevelop
SUBDIR += monotone
SUBDIR += monotone-viz
SUBDIR += motor
SUBDIR += mpatrol
SUBDIR += mph
SUBDIR += mq4cpp
SUBDIR += msgpack
SUBDIR += msgpuck
SUBDIR += msp430-debug-stack
SUBDIR += mspdebug
SUBDIR += msrc0
SUBDIR += mtbl
SUBDIR += myrepos
SUBDIR += nana
SUBDIR += nant
SUBDIR += nasm
SUBDIR += naturaldocs
SUBDIR += ncc
SUBDIR += ncnf
SUBDIR += ncurses
SUBDIR += ndesk-dbus
SUBDIR += ndesk-dbus-glib
SUBDIR += ndesk-options
SUBDIR += netscape-java40
SUBDIR += netsurf-buildsystem
SUBDIR += newfile
SUBDIR += newt
SUBDIR += newtonsoft-json
SUBDIR += nexus2-oss
SUBDIR += nglogc
SUBDIR += nini
SUBDIR += ninja
SUBDIR += ninja-ide
SUBDIR += node-thrift
SUBDIR += notify-sharp
SUBDIR += noweb
SUBDIR += npth
SUBDIR += nsgenbind
SUBDIR += nspr
SUBDIR += nuitka
SUBDIR += nxt-python
SUBDIR += obby
SUBDIR += objecthash
SUBDIR += ocaml-annexlib
SUBDIR += ocaml-calendar
SUBDIR += ocaml-camljava
SUBDIR += ocaml-camlp4
SUBDIR += ocaml-camlp5
SUBDIR += ocaml-camomile
SUBDIR += ocaml-camomile-examples
SUBDIR += ocaml-cfg
SUBDIR += ocaml-classes
SUBDIR += ocaml-cmdliner
SUBDIR += ocaml-cppo
SUBDIR += ocaml-deriving-ocsigen
SUBDIR += ocaml-extlib
SUBDIR += ocaml-findlib
SUBDIR += ocaml-ipaddr
SUBDIR += ocaml-lacaml
SUBDIR += ocaml-lwt
SUBDIR += ocaml-magic
SUBDIR += ocaml-opam
SUBDIR += ocaml-ounit
SUBDIR += ocaml-parmap
SUBDIR += ocaml-pcre
SUBDIR += ocaml-pomap
SUBDIR += ocaml-ppx-tools
SUBDIR += ocaml-re
SUBDIR += ocaml-react
SUBDIR += ocaml-res
SUBDIR += ocaml-sdl
SUBDIR += ocaml-sem
SUBDIR += ocaml-sexplib
SUBDIR += ocaml-type_conv
SUBDIR += ocaml-ulex
SUBDIR += ocaml-uutf
SUBDIR += ocaml-xstr
SUBDIR += ocaml-xstrp4
SUBDIR += ocl-icd
SUBDIR += oclgrind
SUBDIR += ode
SUBDIR += ois
SUBDIR += okteta
SUBDIR += omake
SUBDIR += omniNotify
SUBDIR += omniORB
SUBDIR += omniORB-4.1
SUBDIR += oniguruma4
SUBDIR += oniguruma5
SUBDIR += oniguruma6
SUBDIR += onscripter
SUBDIR += onscripter-1byte
SUBDIR += oozie
SUBDIR += open-beagle
SUBDIR += open-usp-tukubai
SUBDIR += opencl
SUBDIR += opencvs
SUBDIR += opendht
SUBDIR += opengrok
SUBDIR += openmp
SUBDIR += openocd
SUBDIR += openvex
SUBDIR += openwince-include
SUBDIR += openzz
SUBDIR += orc
SUBDIR += osc
SUBDIR += ossp-al
SUBDIR += ossp-cfg
SUBDIR += ossp-ex
SUBDIR += ossp-l2
SUBDIR += ossp-val
SUBDIR += ossp-var
SUBDIR += ossp-xds
SUBDIR += p4
SUBDIR += p4.el
SUBDIR += p4api
SUBDIR += p4d
SUBDIR += p4delta
SUBDIR += p4ftpd
SUBDIR += p4genpatch
SUBDIR += p4p
SUBDIR += p4web
SUBDIR += p5-AI-Pathfinding-AStar
SUBDIR += p5-AI-Prolog
SUBDIR += p5-ARGV-Struct
SUBDIR += p5-Acme-Comment
SUBDIR += p5-Acme-Damn
SUBDIR += p5-Acme-MetaSyntactic
SUBDIR += p5-Agent
SUBDIR += p5-Algorithm-Accounting
SUBDIR += p5-Algorithm-Annotate
SUBDIR += p5-Algorithm-Binpack
SUBDIR += p5-Algorithm-Bucketizer
SUBDIR += p5-Algorithm-C3
SUBDIR += p5-Algorithm-ChooseSubsets
SUBDIR += p5-Algorithm-Cluster
SUBDIR += p5-Algorithm-Cron
SUBDIR += p5-Algorithm-Dependency
SUBDIR += p5-Algorithm-Dependency-Objects
SUBDIR += p5-Algorithm-Diff
SUBDIR += p5-Algorithm-Evolutionary
SUBDIR += p5-Algorithm-FloodControl
SUBDIR += p5-Algorithm-IncludeExclude
SUBDIR += p5-Algorithm-Interval2Prefix
SUBDIR += p5-Algorithm-LCS
SUBDIR += p5-Algorithm-LUHN
SUBDIR += p5-Algorithm-MarkovChain
SUBDIR += p5-Algorithm-Merge
SUBDIR += p5-Algorithm-MinMax
SUBDIR += p5-Algorithm-NaiveBayes
SUBDIR += p5-Algorithm-Networksort
SUBDIR += p5-Algorithm-Numerical-Shuffle
SUBDIR += p5-Algorithm-Permute
SUBDIR += p5-Algorithm-SVM
SUBDIR += p5-Alias
SUBDIR += p5-Alien-SDL
SUBDIR += p5-Alzabo
SUBDIR += p5-Any-Daemon
SUBDIR += p5-Any-Moose
SUBDIR += p5-Any-Moose-Convert
SUBDIR += p5-AnyData
SUBDIR += p5-AnyEvent
SUBDIR += p5-AnyEvent-AIO
SUBDIR += p5-AnyEvent-Connection
SUBDIR += p5-AnyEvent-DBI
SUBDIR += p5-AnyEvent-DBI-Abstract
SUBDIR += p5-AnyEvent-DBus
SUBDIR += p5-AnyEvent-Filesys-Notify
SUBDIR += p5-AnyEvent-Gearman
SUBDIR += p5-AnyEvent-Graphite
SUBDIR += p5-AnyEvent-I3
SUBDIR += p5-AnyEvent-MessagePack
SUBDIR += p5-AnyEvent-RPC
SUBDIR += p5-AnyEvent-Run
SUBDIR += p5-AnyEvent-Subprocess
SUBDIR += p5-AnyEvent-Task
SUBDIR += p5-AnyEvent-Worker
SUBDIR += p5-AnyMQ
SUBDIR += p5-App-Build
SUBDIR += p5-App-CLI
SUBDIR += p5-App-CLI-Extension
SUBDIR += p5-App-Cache
SUBDIR += p5-App-Cmd
SUBDIR += p5-App-Control
SUBDIR += p5-App-FatPacker
SUBDIR += p5-App-GitGot
SUBDIR += p5-App-GitHub
SUBDIR += p5-App-Info
SUBDIR += p5-App-Options
SUBDIR += p5-App-Rad
SUBDIR += p5-App-SD
SUBDIR += p5-App-SVN-Bisect
SUBDIR += p5-App-Trace
SUBDIR += p5-App-cpanminus
SUBDIR += p5-App-cpanoutdated
SUBDIR += p5-App-local-lib-helper
SUBDIR += p5-App-perlbrew
SUBDIR += p5-App-scan_prereqs_cpanfile
SUBDIR += p5-AppConfig
SUBDIR += p5-AppConfig-Std
SUBDIR += p5-Array-Group
SUBDIR += p5-Array-Heap
SUBDIR += p5-Array-Iterator
SUBDIR += p5-Array-Unique
SUBDIR += p5-Array-Window
SUBDIR += p5-Async-Interrupt
SUBDIR += p5-Async-MergePoint
SUBDIR += p5-AtExit
SUBDIR += p5-Attribute-Handlers
SUBDIR += p5-Attribute-Handlers-Prospective
SUBDIR += p5-Attribute-Persistent
SUBDIR += p5-AutoLoader
SUBDIR += p5-AutoXS-Header
SUBDIR += p5-B-C
SUBDIR += p5-B-Compiling
SUBDIR += p5-B-Deobfuscate
SUBDIR += p5-B-Flags
SUBDIR += p5-B-Generate
SUBDIR += p5-B-Graph
SUBDIR += p5-B-Hooks-EndOfScope
SUBDIR += p5-B-Hooks-OP-Annotation
SUBDIR += p5-B-Hooks-OP-Check
SUBDIR += p5-B-Hooks-OP-Check-EntersubForCV
SUBDIR += p5-B-Hooks-OP-PPAddr
SUBDIR += p5-B-Hooks-Parser
SUBDIR += p5-B-Keywords
SUBDIR += p5-B-OPCheck
SUBDIR += p5-B-Size2
SUBDIR += p5-B-Utils
SUBDIR += p5-BFD
SUBDIR += p5-BS-Event
SUBDIR += p5-BSD-Resource
SUBDIR += p5-BSD-devstat
SUBDIR += p5-BSD-stat
SUBDIR += p5-BZ-Client
SUBDIR += p5-Badger
SUBDIR += p5-Benchmark-Timer
SUBDIR += p5-Best
SUBDIR += p5-Brannigan
SUBDIR += p5-Bread-Board
SUBDIR += p5-Bread-Board-Declare
SUBDIR += p5-Bundle-Perl6
SUBDIR += p5-C-Scan
SUBDIR += p5-CBOR-XS
SUBDIR += p5-CHI
SUBDIR += p5-CHI-Driver-DBI
SUBDIR += p5-CLASS
SUBDIR += p5-CPAN-Changes
SUBDIR += p5-CPAN-Checksums
SUBDIR += p5-CPAN-DistnameInfo
SUBDIR += p5-CPAN-Inject
SUBDIR += p5-CPAN-Meta
SUBDIR += p5-CPAN-Meta-Check
SUBDIR += p5-CPAN-Meta-Requirements
SUBDIR += p5-CPAN-Meta-YAML
SUBDIR += p5-CPAN-Mini
SUBDIR += p5-CPAN-Perl-Releases
SUBDIR += p5-CPAN-Recent-Uploads
SUBDIR += p5-CPAN-Reporter
SUBDIR += p5-CPAN-Reporter-Smoker
SUBDIR += p5-CPAN-SQLite
SUBDIR += p5-CPAN-Site
SUBDIR += p5-CPAN-Testers-Report
SUBDIR += p5-CPAN-Uploader
SUBDIR += p5-CPAN-YACSmoke
SUBDIR += p5-CPANPLUS
SUBDIR += p5-CPANPLUS-Dist-Build
SUBDIR += p5-CPS
SUBDIR += p5-Cache
SUBDIR += p5-Cache-AgainstFile
SUBDIR += p5-Cache-Cache
SUBDIR += p5-Cache-FastMmap
SUBDIR += p5-Cache-LRU
SUBDIR += p5-Cache-Memcached-Tie
SUBDIR += p5-Cache-Mmap
SUBDIR += p5-Cache-Simple-TimedExpiry
SUBDIR += p5-Cairo-GObject
SUBDIR += p5-Calendar-Simple
SUBDIR += p5-Callback-Frame
SUBDIR += p5-Canary-Stability
SUBDIR += p5-Capture-Tiny
SUBDIR += p5-Carp
SUBDIR += p5-Carp-Always
SUBDIR += p5-Carp-Always-Color
SUBDIR += p5-Carp-Assert
SUBDIR += p5-Carp-Assert-More
SUBDIR += p5-Carp-Clan
SUBDIR += p5-Carp-Clan-Share
SUBDIR += p5-Carp-Datum
SUBDIR += p5-Carp-REPL
SUBDIR += p5-Cdk
SUBDIR += p5-Check-ISA
SUBDIR += p5-Child
SUBDIR += p5-Chooser
SUBDIR += p5-Class-Accessor
SUBDIR += p5-Class-Accessor-Chained
SUBDIR += p5-Class-Accessor-Children
SUBDIR += p5-Class-Accessor-Complex
SUBDIR += p5-Class-Accessor-Constructor
SUBDIR += p5-Class-Accessor-Fast-Contained
SUBDIR += p5-Class-Accessor-Fast-XS
SUBDIR += p5-Class-Accessor-Grouped
SUBDIR += p5-Class-Accessor-Installer
SUBDIR += p5-Class-Accessor-Lite
SUBDIR += p5-Class-Accessor-Lvalue
SUBDIR += p5-Class-Accessor-Named
SUBDIR += p5-Class-Adapter
SUBDIR += p5-Class-AlzaboWrapper
SUBDIR += p5-Class-ArrayObjects
SUBDIR += p5-Class-AutoClass
SUBDIR += p5-Class-Autouse
SUBDIR += p5-Class-Base
SUBDIR += p5-Class-BlackHole
SUBDIR += p5-Class-C3
SUBDIR += p5-Class-C3-Adopt-NEXT
SUBDIR += p5-Class-C3-Componentised
SUBDIR += p5-Class-C3-XS
SUBDIR += p5-Class-Closure
SUBDIR += p5-Class-CodeStyler
SUBDIR += p5-Class-Component
SUBDIR += p5-Class-Constant
SUBDIR += p5-Class-Container
SUBDIR += p5-Class-Contract
SUBDIR += p5-Class-Data-ConfigHash
SUBDIR += p5-Class-Data-Inheritable
SUBDIR += p5-Class-Date
SUBDIR += p5-Class-Declare
SUBDIR += p5-Class-Default
SUBDIR += p5-Class-Delegation
SUBDIR += p5-Class-ErrorHandler
SUBDIR += p5-Class-Factory
SUBDIR += p5-Class-Factory-Util
SUBDIR += p5-Class-Field
SUBDIR += p5-Class-Forward
SUBDIR += p5-Class-Generate
SUBDIR += p5-Class-Gomor
SUBDIR += p5-Class-Handle
SUBDIR += p5-Class-Hook
SUBDIR += p5-Class-ISA
SUBDIR += p5-Class-Inner
SUBDIR += p5-Class-InsideOut
SUBDIR += p5-Class-Inspector
SUBDIR += p5-Class-Interfaces
SUBDIR += p5-Class-Load
SUBDIR += p5-Class-Load-XS
SUBDIR += p5-Class-Loader
SUBDIR += p5-Class-MakeMethods
SUBDIR += p5-Class-Measure
SUBDIR += p5-Class-Method-Modifiers
SUBDIR += p5-Class-Method-Modifiers-Fast
SUBDIR += p5-Class-MethodMaker
SUBDIR += p5-Class-MethodMapper
SUBDIR += p5-Class-Mix
SUBDIR += p5-Class-Mixin
SUBDIR += p5-Class-MixinFactory
SUBDIR += p5-Class-Multimethods
SUBDIR += p5-Class-Multimethods-Pure
SUBDIR += p5-Class-NamedParms
SUBDIR += p5-Class-Null
SUBDIR += p5-Class-OOorNO
SUBDIR += p5-Class-ObjectTemplate
SUBDIR += p5-Class-ObjectTemplate-DB
SUBDIR += p5-Class-Observable
SUBDIR += p5-Class-ParmList
SUBDIR += p5-Class-Prototyped
SUBDIR += p5-Class-ReturnValue
SUBDIR += p5-Class-Roles
SUBDIR += p5-Class-STL-Containers
SUBDIR += p5-Class-Singleton
SUBDIR += p5-Class-Spiffy
SUBDIR += p5-Class-StateMachine
SUBDIR += p5-Class-Std
SUBDIR += p5-Class-Std-Fast
SUBDIR += p5-Class-Std-Utils
SUBDIR += p5-Class-StrongSingleton
SUBDIR += p5-Class-Tangram
SUBDIR += p5-Class-Throwable
SUBDIR += p5-Class-Tiny
SUBDIR += p5-Class-Tom
SUBDIR += p5-Class-Trigger
SUBDIR += p5-Class-Unload
SUBDIR += p5-Class-Virtual
SUBDIR += p5-Class-WhiteHole
SUBDIR += p5-Class-Workflow
SUBDIR += p5-Class-XPath
SUBDIR += p5-Class-XSAccessor
SUBDIR += p5-Clone
SUBDIR += p5-Clone-Fast
SUBDIR += p5-Clone-More
SUBDIR += p5-Clone-PP
SUBDIR += p5-Code-Perl
SUBDIR += p5-Commands-Guarded
SUBDIR += p5-CommitBit
SUBDIR += p5-Compiler-Lexer
SUBDIR += p5-Config-Any
SUBDIR += p5-Config-ApacheFormat
SUBDIR += p5-Config-Auto
SUBDIR += p5-Config-AutoConf
SUBDIR += p5-Config-Fast
SUBDIR += p5-Config-General
SUBDIR += p5-Config-GitLike
SUBDIR += p5-Config-Grammar
SUBDIR += p5-Config-INI
SUBDIR += p5-Config-INI-Reader-Ordered
SUBDIR += p5-Config-INI-Simple
SUBDIR += p5-Config-Identity
SUBDIR += p5-Config-IniFiles
SUBDIR += p5-Config-IniHash
SUBDIR += p5-Config-IniRegEx
SUBDIR += p5-Config-JFDI
SUBDIR += p5-Config-JSON
SUBDIR += p5-Config-MVP
SUBDIR += p5-Config-MVP-Reader-INI
SUBDIR += p5-Config-Merge
SUBDIR += p5-Config-Model
SUBDIR += p5-Config-Model-Tester
SUBDIR += p5-Config-MySQL
SUBDIR += p5-Config-Objective
SUBDIR += p5-Config-Options
SUBDIR += p5-Config-Perl-V
SUBDIR += p5-Config-Properties
SUBDIR += p5-Config-Record
SUBDIR += p5-Config-Setting
SUBDIR += p5-Config-Simple
SUBDIR += p5-Config-Std
SUBDIR += p5-Config-Tiny
SUBDIR += p5-Config-Validator
SUBDIR += p5-Config-Versioned
SUBDIR += p5-Config-Wrest
SUBDIR += p5-Config-YAML
SUBDIR += p5-ConfigReader
SUBDIR += p5-ConfigReader-Simple
SUBDIR += p5-Connector
SUBDIR += p5-Const-Exporter
SUBDIR += p5-Const-Fast
SUBDIR += p5-Context-Preserve
SUBDIR += p5-Contextual-Return
SUBDIR += p5-Coro
SUBDIR += p5-Curses
SUBDIR += p5-Curses-Application
SUBDIR += p5-Curses-Forms
SUBDIR += p5-Curses-UI
SUBDIR += p5-Curses-Widgets
SUBDIR += p5-Cvs
SUBDIR += p5-Cwd-Guard
SUBDIR += p5-DB_File-Lock
SUBDIR += p5-Daemon-Control
SUBDIR += p5-Dancer-Debug
SUBDIR += p5-Danga-Socket
SUBDIR += p5-Danga-Socket-Callback
SUBDIR += p5-Data-ACL
SUBDIR += p5-Data-Alias
SUBDIR += p5-Data-Average
SUBDIR += p5-Data-Bind
SUBDIR += p5-Data-Capture
SUBDIR += p5-Data-ClearSilver-HDF
SUBDIR += p5-Data-Clone
SUBDIR += p5-Data-Compare
SUBDIR += p5-Data-Diver
SUBDIR += p5-Data-Domain
SUBDIR += p5-Data-Dump
SUBDIR += p5-Data-Dump-Streamer
SUBDIR += p5-Data-DumpXML
SUBDIR += p5-Data-Dumper
SUBDIR += p5-Data-Dumper-Concise
SUBDIR += p5-Data-Dumper-Perltidy
SUBDIR += p5-Data-Dumper-Simple
SUBDIR += p5-Data-Flow
SUBDIR += p5-Data-GUID
SUBDIR += p5-Data-Grouper
SUBDIR += p5-Data-HashArray
SUBDIR += p5-Data-HexDump
SUBDIR += p5-Data-HexDump-Range
SUBDIR += p5-Data-Hexdumper
SUBDIR += p5-Data-Hexify
SUBDIR += p5-Data-Hierarchy
SUBDIR += p5-Data-IEEE754
SUBDIR += p5-Data-Inherited
SUBDIR += p5-Data-Inspect
SUBDIR += p5-Data-Integer
SUBDIR += p5-Data-JavaScript-Anon
SUBDIR += p5-Data-Lazy
SUBDIR += p5-Data-Localize
SUBDIR += p5-Data-Lock
SUBDIR += p5-Data-MessagePack
SUBDIR += p5-Data-MessagePack-Stream
SUBDIR += p5-Data-Miscellany
SUBDIR += p5-Data-Model
SUBDIR += p5-Data-Munge
SUBDIR += p5-Data-Object
SUBDIR += p5-Data-ObjectDriver
SUBDIR += p5-Data-OptList
SUBDIR += p5-Data-Page-NoTotalEntries
SUBDIR += p5-Data-Page-Pageset
SUBDIR += p5-Data-ParseBinary
SUBDIR += p5-Data-Path
SUBDIR += p5-Data-Peek
SUBDIR += p5-Data-Perl
SUBDIR += p5-Data-Printer
SUBDIR += p5-Data-Properties
SUBDIR += p5-Data-Rand
SUBDIR += p5-Data-Rand-Obscure
SUBDIR += p5-Data-Random
SUBDIR += p5-Data-Range-Compare
SUBDIR += p5-Data-Record
SUBDIR += p5-Data-Recursive-Encode
SUBDIR += p5-Data-Remember
SUBDIR += p5-Data-Rmap
SUBDIR += p5-Data-RoundRobin
SUBDIR += p5-Data-Rx
SUBDIR += p5-Data-SExpression
SUBDIR += p5-Data-Sah-Normalize
SUBDIR += p5-Data-Section
SUBDIR += p5-Data-Section-Simple
SUBDIR += p5-Data-Serializable
SUBDIR += p5-Data-Serializer
SUBDIR += p5-Data-Serializer-Sereal
SUBDIR += p5-Data-ShowTable
SUBDIR += p5-Data-Stag
SUBDIR += p5-Data-Stream-Bulk
SUBDIR += p5-Data-Structure-Util
SUBDIR += p5-Data-Swap
SUBDIR += p5-Data-Table
SUBDIR += p5-Data-Taxonomy-Tags
SUBDIR += p5-Data-TemporaryBag
SUBDIR += p5-Data-Throttler
SUBDIR += p5-Data-Throttler-Memcached
SUBDIR += p5-Data-Thunk
SUBDIR += p5-Data-TreeDumper
SUBDIR += p5-Data-TreeDumper-Renderer-GTK
SUBDIR += p5-Data-Types
SUBDIR += p5-Data-URIEncode
SUBDIR += p5-Data-UUID
SUBDIR += p5-Data-Uniqid
SUBDIR += p5-Data-Util
SUBDIR += p5-Data-Validate
SUBDIR += p5-Data-Validator
SUBDIR += p5-Data-Visitor
SUBDIR += p5-Data-Visitor-Encode
SUBDIR += p5-Data-Walk
SUBDIR += p5-Date-Business
SUBDIR += p5-Date-Calc
SUBDIR += p5-Date-Calc-Iterator
SUBDIR += p5-Date-Calc-XS
SUBDIR += p5-Date-DayOfWeek
SUBDIR += p5-Date-Easter
SUBDIR += p5-Date-Extract
SUBDIR += p5-Date-EzDate
SUBDIR += p5-Date-Holidays-DK
SUBDIR += p5-Date-ICal
SUBDIR += p5-Date-ISO
SUBDIR += p5-Date-Leapyear
SUBDIR += p5-Date-Manip
SUBDIR += p5-Date-Pcalc
SUBDIR += p5-Date-Piece
SUBDIR += p5-Date-Range
SUBDIR += p5-Date-Roman
SUBDIR += p5-Date-Simple
SUBDIR += p5-DateConvert
SUBDIR += p5-DateTime
SUBDIR += p5-DateTime-Astro
SUBDIR += p5-DateTime-Calendar-Chinese
SUBDIR += p5-DateTime-Calendar-Christian
SUBDIR += p5-DateTime-Calendar-Discordian
SUBDIR += p5-DateTime-Calendar-FrenchRevolutionary
SUBDIR += p5-DateTime-Calendar-Hebrew
SUBDIR += p5-DateTime-Calendar-Japanese
SUBDIR += p5-DateTime-Calendar-Julian
SUBDIR += p5-DateTime-Calendar-Mayan
SUBDIR += p5-DateTime-Calendar-Pataphysical
SUBDIR += p5-DateTime-Cron-Simple
SUBDIR += p5-DateTime-Event-Chinese
SUBDIR += p5-DateTime-Event-Cron
SUBDIR += p5-DateTime-Event-Easter
SUBDIR += p5-DateTime-Event-ICal
SUBDIR += p5-DateTime-Event-Lunar
SUBDIR += p5-DateTime-Event-NameDay
SUBDIR += p5-DateTime-Event-Random
SUBDIR += p5-DateTime-Event-Recurrence
SUBDIR += p5-DateTime-Event-Sunrise
SUBDIR += p5-DateTime-Event-Zodiac
SUBDIR += p5-DateTime-Fiscal-Year
SUBDIR += p5-DateTime-Format-Baby
SUBDIR += p5-DateTime-Format-Bork
SUBDIR += p5-DateTime-Format-Builder
SUBDIR += p5-DateTime-Format-DBI
SUBDIR += p5-DateTime-Format-DateManip
SUBDIR += p5-DateTime-Format-DateParse
SUBDIR += p5-DateTime-Format-Duration
SUBDIR += p5-DateTime-Format-Epoch
SUBDIR += p5-DateTime-Format-Excel
SUBDIR += p5-DateTime-Format-Flexible
SUBDIR += p5-DateTime-Format-HTTP
SUBDIR += p5-DateTime-Format-IBeat
SUBDIR += p5-DateTime-Format-ICal
SUBDIR += p5-DateTime-Format-ISO8601
SUBDIR += p5-DateTime-Format-Mail
SUBDIR += p5-DateTime-Format-MySQL
SUBDIR += p5-DateTime-Format-Natural
SUBDIR += p5-DateTime-Format-Oracle
SUBDIR += p5-DateTime-Format-Pg
SUBDIR += p5-DateTime-Format-RFC3339
SUBDIR += p5-DateTime-Format-RSS
SUBDIR += p5-DateTime-Format-Roman
SUBDIR += p5-DateTime-Format-SQLite
SUBDIR += p5-DateTime-Format-Strptime
SUBDIR += p5-DateTime-Format-W3CDTF
SUBDIR += p5-DateTime-Format-XSD
SUBDIR += p5-DateTime-Functions
SUBDIR += p5-DateTime-HiRes
SUBDIR += p5-DateTime-Incomplete
SUBDIR += p5-DateTime-Locale
SUBDIR += p5-DateTime-Precise
SUBDIR += p5-DateTime-Set
SUBDIR += p5-DateTime-TimeZone
SUBDIR += p5-DateTime-TimeZone-Alias
SUBDIR += p5-DateTime-TimeZone-LMT
SUBDIR += p5-DateTime-Util-Calc
SUBDIR += p5-DateTimeX-Easy
SUBDIR += p5-Debug-Client
SUBDIR += p5-Decision-ACL
SUBDIR += p5-Declare-Constraints-Simple
SUBDIR += p5-DefHash
SUBDIR += p5-Devel-ArgNames
SUBDIR += p5-Devel-Autoflush
SUBDIR += p5-Devel-Backtrace
SUBDIR += p5-Devel-BeginLift
SUBDIR += p5-Devel-CallChecker
SUBDIR += p5-Devel-Caller
SUBDIR += p5-Devel-Caller-IgnoreNamespaces
SUBDIR += p5-Devel-Caller-Perl
SUBDIR += p5-Devel-Callsite
SUBDIR += p5-Devel-CheckBin
SUBDIR += p5-Devel-CheckCompiler
SUBDIR += p5-Devel-CheckLib
SUBDIR += p5-Devel-CheckOS
SUBDIR += p5-Devel-Confess
SUBDIR += p5-Devel-Constants
SUBDIR += p5-Devel-CoreStack
SUBDIR += p5-Devel-Cover
SUBDIR += p5-Devel-Cover-Report-Clover
SUBDIR += p5-Devel-Cycle
SUBDIR += p5-Devel-DProfPP
SUBDIR += p5-Devel-Declare
SUBDIR += p5-Devel-Declare-Parser
SUBDIR += p5-Devel-Diagram
SUBDIR += p5-Devel-Ditto
SUBDIR += p5-Devel-Dumpvar
SUBDIR += p5-Devel-EvalContext
SUBDIR += p5-Devel-Events
SUBDIR += p5-Devel-Events-Objects
SUBDIR += p5-Devel-FindPerl
SUBDIR += p5-Devel-Gladiator
SUBDIR += p5-Devel-GlobalDestruction
SUBDIR += p5-Devel-GlobalDestruction-XS
SUBDIR += p5-Devel-Hide
SUBDIR += p5-Devel-InheritNamespace
SUBDIR += p5-Devel-KYTProf
SUBDIR += p5-Devel-Leak
SUBDIR += p5-Devel-Leak-Cb
SUBDIR += p5-Devel-Leak-Object
SUBDIR += p5-Devel-LeakGuard-Object
SUBDIR += p5-Devel-LeakTrace
SUBDIR += p5-Devel-LexAlias
SUBDIR += p5-Devel-MAT
SUBDIR += p5-Devel-Messenger
SUBDIR += p5-Devel-Modlist
SUBDIR += p5-Devel-NYTProf
SUBDIR += p5-Devel-OverloadInfo
SUBDIR += p5-Devel-PPPort
SUBDIR += p5-Devel-PackagePath
SUBDIR += p5-Devel-PartialDump
SUBDIR += p5-Devel-PatchPerl
SUBDIR += p5-Devel-Pointer
SUBDIR += p5-Devel-Profile
SUBDIR += p5-Devel-REPL
SUBDIR += p5-Devel-Refactor
SUBDIR += p5-Devel-Refcount
SUBDIR += p5-Devel-Required
SUBDIR += p5-Devel-RingBuffer
SUBDIR += p5-Devel-STrace
SUBDIR += p5-Devel-SimpleTrace
SUBDIR += p5-Devel-Size
SUBDIR += p5-Devel-Size-Report
SUBDIR += p5-Devel-SmallProf
SUBDIR += p5-Devel-StackTrace
SUBDIR += p5-Devel-StackTrace-AsHTML
SUBDIR += p5-Devel-StackTrace-WithLexicals
SUBDIR += p5-Devel-StealthDebug
SUBDIR += p5-Devel-Symdump
SUBDIR += p5-Devel-Timer
SUBDIR += p5-Devel-Trace
SUBDIR += p5-Devel-TraceCalls
SUBDIR += p5-Devel-TraceUse
SUBDIR += p5-Devel-ebug
SUBDIR += p5-Devel-ptkdb
SUBDIR += p5-Device-USB
SUBDIR += p5-Digest-TransformPath
SUBDIR += p5-Dir-Project
SUBDIR += p5-Dir-Self
SUBDIR += p5-Dir-Watch
SUBDIR += p5-Directory-Queue
SUBDIR += p5-Directory-Scratch
SUBDIR += p5-Directory-Scratch-Structured
SUBDIR += p5-Dist-CheckConflicts
SUBDIR += p5-Dist-Joseki
SUBDIR += p5-Dist-Metadata
SUBDIR += p5-Dist-Zilla
SUBDIR += p5-Doxygen-Filter-Perl
SUBDIR += p5-DynaLoader-Functions
SUBDIR += p5-EV
SUBDIR += p5-Env-PS1
SUBDIR += p5-Env-Path
SUBDIR += p5-Error-Helper
SUBDIR += p5-Eval-Closure
SUBDIR += p5-Eval-Context
SUBDIR += p5-Eval-LineNumbers
SUBDIR += p5-Eval-WithLexicals
SUBDIR += p5-Event
SUBDIR += p5-Event-ExecFlow
SUBDIR += p5-Event-Join
SUBDIR += p5-Event-Lib
SUBDIR += p5-Event-Notify
SUBDIR += p5-Event-RPC
SUBDIR += p5-Every
SUBDIR += p5-Exception-Class
SUBDIR += p5-Exception-Class-TryCatch
SUBDIR += p5-Exception-Handler
SUBDIR += p5-Expect-Simple
SUBDIR += p5-Exporter
SUBDIR += p5-Exporter-Declare
SUBDIR += p5-Exporter-Easy
SUBDIR += p5-Exporter-Lite
SUBDIR += p5-Exporter-Tidy
SUBDIR += p5-Exporter-Tiny
SUBDIR += p5-ExtUtils-AutoInstall
SUBDIR += p5-ExtUtils-CBuilder
SUBDIR += p5-ExtUtils-CChecker
SUBDIR += p5-ExtUtils-Command
SUBDIR += p5-ExtUtils-Config
SUBDIR += p5-ExtUtils-Constant
SUBDIR += p5-ExtUtils-CppGuess
SUBDIR += p5-ExtUtils-Depends
SUBDIR += p5-ExtUtils-Helpers
SUBDIR += p5-ExtUtils-Install
SUBDIR += p5-ExtUtils-InstallPaths
SUBDIR += p5-ExtUtils-LibBuilder
SUBDIR += p5-ExtUtils-MakeMaker
SUBDIR += p5-ExtUtils-MakeMaker-CPANfile
SUBDIR += p5-ExtUtils-MakeMaker-Coverage
SUBDIR += p5-ExtUtils-Manifest
SUBDIR += p5-ExtUtils-ParseXS
SUBDIR += p5-ExtUtils-PkgConfig
SUBDIR += p5-ExtUtils-XSBuilder
SUBDIR += p5-ExtUtils-XSpp
SUBDIR += p5-FSA-Rules
SUBDIR += p5-Fennec-Lite
SUBDIR += p5-File-Append-TempFile
SUBDIR += p5-File-Assets
SUBDIR += p5-File-Attributes
SUBDIR += p5-File-Attributes-Recursive
SUBDIR += p5-File-BOM
SUBDIR += p5-File-BaseDir
SUBDIR += p5-File-BasicFlock
SUBDIR += p5-File-Binary
SUBDIR += p5-File-Cache
SUBDIR += p5-File-Cat
SUBDIR += p5-File-ChangeNotify
SUBDIR += p5-File-ConfigDir
SUBDIR += p5-File-Copy-Link
SUBDIR += p5-File-Copy-Recursive
SUBDIR += p5-File-CountLines
SUBDIR += p5-File-CreationTime
SUBDIR += p5-File-DesktopEntry
SUBDIR += p5-File-Dir-Dumper
SUBDIR += p5-File-DirSync
SUBDIR += p5-File-ExtAttr
SUBDIR += p5-File-FcntlLock
SUBDIR += p5-File-Find-Closures
SUBDIR += p5-File-Find-Object
SUBDIR += p5-File-Find-Rule
SUBDIR += p5-File-Find-Rule-Filesys-Virtual
SUBDIR += p5-File-Find-Rule-Perl
SUBDIR += p5-File-Find-Rule-VCS
SUBDIR += p5-File-Finder
SUBDIR += p5-File-Flat
SUBDIR += p5-File-Flock
SUBDIR += p5-File-Flock-Retry
SUBDIR += p5-File-FnMatch
SUBDIR += p5-File-Grep
SUBDIR += p5-File-HStore
SUBDIR += p5-File-HomeDir
SUBDIR += p5-File-HomeDir-PathClass
SUBDIR += p5-File-Iterator
SUBDIR += p5-File-LibMagic
SUBDIR += p5-File-MMagic
SUBDIR += p5-File-MMagic-XS
SUBDIR += p5-File-Map
SUBDIR += p5-File-MimeInfo
SUBDIR += p5-File-Modified
SUBDIR += p5-File-Monitor
SUBDIR += p5-File-NCopy
SUBDIR += p5-File-NFSLock
SUBDIR += p5-File-Path
SUBDIR += p5-File-Path-Expand
SUBDIR += p5-File-Path-Tiny
SUBDIR += p5-File-PathConvert
SUBDIR += p5-File-Pid
SUBDIR += p5-File-Pid-Quick
SUBDIR += p5-File-Policy
SUBDIR += p5-File-Random
SUBDIR += p5-File-ReadBackwards
SUBDIR += p5-File-Remove
SUBDIR += p5-File-SafeDO
SUBDIR += p5-File-SearchPath
SUBDIR += p5-File-Share
SUBDIR += p5-File-ShareDir
SUBDIR += p5-File-ShareDir-Install
SUBDIR += p5-File-ShareDir-PAR
SUBDIR += p5-File-ShareDir-PathClass
SUBDIR += p5-File-ShareDir-ProjectDistDir
SUBDIR += p5-File-Slurp
SUBDIR += p5-File-Slurp-Tiny
SUBDIR += p5-File-Slurp-Tree
SUBDIR += p5-File-Slurper
SUBDIR += p5-File-Spec-Native
SUBDIR += p5-File-Stream
SUBDIR += p5-File-Sync
SUBDIR += p5-File-Tail
SUBDIR += p5-File-Tail-Dir
SUBDIR += p5-File-Tail-Multi
SUBDIR += p5-File-Tail-Scribe
SUBDIR += p5-File-Temp
SUBDIR += p5-File-Tempdir
SUBDIR += p5-File-Touch
SUBDIR += p5-File-Type
SUBDIR += p5-File-Util
SUBDIR += p5-File-Write-Rotate
SUBDIR += p5-File-chdir
SUBDIR += p5-File-chmod
SUBDIR += p5-File-pushd
SUBDIR += p5-FileHandle-Fmode
SUBDIR += p5-FileHandle-Unget
SUBDIR += p5-Filesys-Notify-KQueue
SUBDIR += p5-Filesys-Notify-Simple
SUBDIR += p5-Filesys-Virtual
SUBDIR += p5-Filesys-Virtual-Plain
SUBDIR += p5-Filter
SUBDIR += p5-Filter-Template
SUBDIR += p5-Find-Lib
SUBDIR += p5-FindBin-libs
SUBDIR += p5-Forest
SUBDIR += p5-Form-Sensible
SUBDIR += p5-FreeBSD-i386-Ptrace
SUBDIR += p5-FreezeThaw
SUBDIR += p5-Function-Parameters
SUBDIR += p5-Future
SUBDIR += p5-Gearman
SUBDIR += p5-Gearman-Client-Async
SUBDIR += p5-Gearman-Server
SUBDIR += p5-Gearman-XS
SUBDIR += p5-Geo-JSON
SUBDIR += p5-Geo-ShapeFile
SUBDIR += p5-Getargs-Long
SUBDIR += p5-Getopt-ArgvFile
SUBDIR += p5-Getopt-Attribute
SUBDIR += p5-Getopt-Compact
SUBDIR += p5-Getopt-Compact-WithCmd
SUBDIR += p5-Getopt-Declare
SUBDIR += p5-Getopt-Euclid
SUBDIR += p5-Getopt-GUI-Long
SUBDIR += p5-Getopt-Long
SUBDIR += p5-Getopt-Long-Descriptive
SUBDIR += p5-Getopt-Tabular
SUBDIR += p5-Git-PurePerl
SUBDIR += p5-Git-Repository
SUBDIR += p5-Git-Repository-Plugin-Log
SUBDIR += p5-Git-Sub
SUBDIR += p5-Git-Version-Compare
SUBDIR += p5-Git-Wrapper
SUBDIR += p5-Glib-Object-Introspection
SUBDIR += p5-Glib2
SUBDIR += p5-Gnome2-GConf
SUBDIR += p5-Goo-Canvas
SUBDIR += p5-Google-Checkout
SUBDIR += p5-Google-ProtocolBuffers
SUBDIR += p5-Gravatar-URL
SUBDIR += p5-Gtk2-Notify
SUBDIR += p5-Gtk2-Spell
SUBDIR += p5-Guard
SUBDIR += p5-HOP-Lexer
SUBDIR += p5-HOP-Stream
SUBDIR += p5-Hash-AsObject
SUBDIR += p5-Hash-AutoHash
SUBDIR += p5-Hash-AutoHash-Args
SUBDIR += p5-Hash-Case
SUBDIR += p5-Hash-Diff
SUBDIR += p5-Hash-FieldHash
SUBDIR += p5-Hash-Flatten
SUBDIR += p5-Hash-Merge-Simple
SUBDIR += p5-Hash-MoreUtils
SUBDIR += p5-Hash-MultiKey
SUBDIR += p5-Hash-MultiValue
SUBDIR += p5-Hash-NoRef
SUBDIR += p5-Hash-Slice
SUBDIR += p5-Hash-Union
SUBDIR += p5-Hash-Util-FieldHash-Compat
SUBDIR += p5-Hash-WithDefaults
SUBDIR += p5-Heap
SUBDIR += p5-Heap-Simple
SUBDIR += p5-Heap-Simple-Perl
SUBDIR += p5-Heap-Simple-XS
SUBDIR += p5-Hook-LexWrap
SUBDIR += p5-IO-AIO
SUBDIR += p5-IO-All
SUBDIR += p5-IO-All-LWP
SUBDIR += p5-IO-Any
SUBDIR += p5-IO-Async
SUBDIR += p5-IO-BufferedSelect
SUBDIR += p5-IO-Callback
SUBDIR += p5-IO-Capture
SUBDIR += p5-IO-CaptureOutput
SUBDIR += p5-IO-Digest
SUBDIR += p5-IO-Event
SUBDIR += p5-IO-FDPass
SUBDIR += p5-IO-File-AtomicChange
SUBDIR += p5-IO-HTML
SUBDIR += p5-IO-Handle-Util
SUBDIR += p5-IO-Interactive
SUBDIR += p5-IO-KQueue
SUBDIR += p5-IO-Lambda
SUBDIR += p5-IO-LockedFile
SUBDIR += p5-IO-MultiPipe
SUBDIR += p5-IO-Multiplex
SUBDIR += p5-IO-NestedCapture
SUBDIR += p5-IO-Null
SUBDIR += p5-IO-Pager
SUBDIR += p5-IO-Pipely
SUBDIR += p5-IO-Prompt
SUBDIR += p5-IO-Prompt-Simple
SUBDIR += p5-IO-Prompt-Tiny
SUBDIR += p5-IO-Prompter
SUBDIR += p5-IO-Pty-Easy
SUBDIR += p5-IO-SessionData
SUBDIR += p5-IO-String
SUBDIR += p5-IO-Stty
SUBDIR += p5-IO-Tee
SUBDIR += p5-IO-TieCombine
SUBDIR += p5-IO-Toolkit
SUBDIR += p5-IO-Tty
SUBDIR += p5-IO-Util
SUBDIR += p5-IO-YAML
SUBDIR += p5-IO-stringy
SUBDIR += p5-IOC
SUBDIR += p5-IPC-Cache
SUBDIR += p5-IPC-Cmd
SUBDIR += p5-IPC-DirQueue
SUBDIR += p5-IPC-Locker
SUBDIR += p5-IPC-MM
SUBDIR += p5-IPC-MMA
SUBDIR += p5-IPC-Mmap
SUBDIR += p5-IPC-Mmap-Share
SUBDIR += p5-IPC-Open3-Simple
SUBDIR += p5-IPC-PerlSSH
SUBDIR += p5-IPC-PubSub
SUBDIR += p5-IPC-Run
SUBDIR += p5-IPC-Run-SafeHandles
SUBDIR += p5-IPC-Run3
SUBDIR += p5-IPC-ShareLite
SUBDIR += p5-IPC-Shareable
SUBDIR += p5-IPC-SharedCache
SUBDIR += p5-IPC-ShellCmd
SUBDIR += p5-IPC-Signal
SUBDIR += p5-IPC-System-Simple
SUBDIR += p5-Import-Base
SUBDIR += p5-Import-Into
SUBDIR += p5-Importer
SUBDIR += p5-Inline
SUBDIR += p5-Inline-ASM
SUBDIR += p5-Inline-C
SUBDIR += p5-Inline-CPP
SUBDIR += p5-Inline-Files
SUBDIR += p5-Inline-Filters
SUBDIR += p5-Inline-Java
SUBDIR += p5-Inline-Python
SUBDIR += p5-Inline-TT
SUBDIR += p5-Inline-Tcl
SUBDIR += p5-InlineX-C2XS
SUBDIR += p5-InlineX-CPP2XS
SUBDIR += p5-Input-Validator
SUBDIR += p5-Ioctl
SUBDIR += p5-Iodef-Pb-Simple
SUBDIR += p5-Iterator
SUBDIR += p5-Iterator-IO
SUBDIR += p5-Iterator-Misc
SUBDIR += p5-Iterator-Simple
SUBDIR += p5-Iterator-Util
SUBDIR += p5-JIRA-REST
SUBDIR += p5-JQuery
SUBDIR += p5-JSON-Hyper
SUBDIR += p5-JSON-Path
SUBDIR += p5-JSON-Pointer
SUBDIR += p5-JSON-RPC
SUBDIR += p5-JSON-RPC-Common
SUBDIR += p5-JSON-RPC-Dispatcher
SUBDIR += p5-JSON-Schema
SUBDIR += p5-Java
SUBDIR += p5-Jonk
SUBDIR += p5-LV
SUBDIR += p5-Lexical-Alias
SUBDIR += p5-Lexical-Import
SUBDIR += p5-Lexical-Persistence
SUBDIR += p5-Lexical-SealRequireHints
SUBDIR += p5-Lexical-Var
SUBDIR += p5-Lingua-JA-Fold
SUBDIR += p5-Lingua-Translit
SUBDIR += p5-List-AllUtils
SUBDIR += p5-List-Cycle
SUBDIR += p5-List-Flatten
SUBDIR += p5-List-Gen
SUBDIR += p5-List-Group
SUBDIR += p5-List-Objects-Types
SUBDIR += p5-List-Objects-WithUtils
SUBDIR += p5-List-Permutor
SUBDIR += p5-List-PowerSet
SUBDIR += p5-List-Rotation-Cycle
SUBDIR += p5-List-SomeUtils
SUBDIR += p5-List-SomeUtils-XS
SUBDIR += p5-List-Uniq
SUBDIR += p5-List-UtilsBy
SUBDIR += p5-Locale-Maketext
SUBDIR += p5-Locale-Maketext-Fuzzy
SUBDIR += p5-Locale-Maketext-Gettext
SUBDIR += p5-Locale-Maketext-Lexicon
SUBDIR += p5-Locale-Maketext-Simple
SUBDIR += p5-Locale-Msgfmt
SUBDIR += p5-Locale-PGetText
SUBDIR += p5-Locale-PO
SUBDIR += p5-Locale-gettext
SUBDIR += p5-Locale-libintl
SUBDIR += p5-LockFile-Simple
SUBDIR += p5-Log-Accounting-SVK
SUBDIR += p5-Log-Accounting-SVN
SUBDIR += p5-Log-Agent
SUBDIR += p5-Log-Agent-Logger
SUBDIR += p5-Log-Any
SUBDIR += p5-Log-Any-Adapter-Callback
SUBDIR += p5-Log-Any-Adapter-Dispatch
SUBDIR += p5-Log-Any-Adapter-Log4perl
SUBDIR += p5-Log-Any-Adapter-Syslog
SUBDIR += p5-Log-Any-App
SUBDIR += p5-Log-Any-IfLOG
SUBDIR += p5-Log-Contextual
SUBDIR += p5-Log-Defer
SUBDIR += p5-Log-Dispatch
SUBDIR += p5-Log-Dispatch-Array
SUBDIR += p5-Log-Dispatch-ArrayWithLimits
SUBDIR += p5-Log-Dispatch-Colorful
SUBDIR += p5-Log-Dispatch-Config
SUBDIR += p5-Log-Dispatch-Configurator-Any
SUBDIR += p5-Log-Dispatch-Configurator-YAML
SUBDIR += p5-Log-Dispatch-DBI
SUBDIR += p5-Log-Dispatch-Dir
SUBDIR += p5-Log-Dispatch-Email-EmailSend
SUBDIR += p5-Log-Dispatch-File-Rolling
SUBDIR += p5-Log-Dispatch-File-Stamped
SUBDIR += p5-Log-Dispatch-FileRotate
SUBDIR += p5-Log-Dispatch-FileShared
SUBDIR += p5-Log-Dispatch-FileWriteRotate
SUBDIR += p5-Log-Dispatch-Perl
SUBDIR += p5-Log-Dispatch-Screen-Color
SUBDIR += p5-Log-Dispatch-Scribe
SUBDIR += p5-Log-Dispatchouli
SUBDIR += p5-Log-Dump
SUBDIR += p5-Log-Handler
SUBDIR += p5-Log-Log4perl
SUBDIR += p5-Log-Log4perl-Appender-RabbitMQ
SUBDIR += p5-Log-Log4perl-Appender-Socket-UNIX
SUBDIR += p5-Log-Log4perl-Tiny
SUBDIR += p5-Log-Message
SUBDIR += p5-Log-Message-Simple
SUBDIR += p5-Log-Minimal
SUBDIR += p5-Log-Report
SUBDIR += p5-Log-Report-Optional
SUBDIR += p5-Log-Simple
SUBDIR += p5-Log-Trace
SUBDIR += p5-Log-TraceMessages
SUBDIR += p5-Logfile-Rotate
SUBDIR += p5-Luka
SUBDIR += p5-Lvalue
SUBDIR += p5-MCE
SUBDIR += p5-MRO-Compat
SUBDIR += p5-MRO-Define
SUBDIR += p5-Mac-FileSpec-Unixish
SUBDIR += p5-Mac-PropertyList
SUBDIR += p5-Make
SUBDIR += p5-Media-Type-Simple
SUBDIR += p5-Memoize
SUBDIR += p5-Memoize-ExpireLRU
SUBDIR += p5-Meta-Builder
SUBDIR += p5-MetaCPAN-Client
SUBDIR += p5-Metabase-Client-Simple
SUBDIR += p5-Metabase-Fact
SUBDIR += p5-Method-Alias
SUBDIR += p5-Method-Signatures-Simple
SUBDIR += p5-Minilla
SUBDIR += p5-Minion
SUBDIR += p5-Mixin-Event-Dispatch
SUBDIR += p5-Mixin-Linewise
SUBDIR += p5-Mknod
SUBDIR += p5-Mo
SUBDIR += p5-Mock-Quick
SUBDIR += p5-Module-Build
SUBDIR += p5-Module-Build-Convert
SUBDIR += p5-Module-Build-Kwalitee
SUBDIR += p5-Module-Build-Pluggable
SUBDIR += p5-Module-Build-Pluggable-ReadmeMarkdownFromPod
SUBDIR += p5-Module-Build-Tiny
SUBDIR += p5-Module-Build-XSUtil
SUBDIR += p5-Module-CPANTS-Analyse
SUBDIR += p5-Module-CPANfile
SUBDIR += p5-Module-CheckDeps
SUBDIR += p5-Module-CheckVersion
SUBDIR += p5-Module-Collect
SUBDIR += p5-Module-Compile
SUBDIR += p5-Module-CoreList
SUBDIR += p5-Module-Dependency
SUBDIR += p5-Module-Depends
SUBDIR += p5-Module-Extract
SUBDIR += p5-Module-Extract-Use
SUBDIR += p5-Module-ExtractUse
SUBDIR += p5-Module-Find
SUBDIR += p5-Module-Functions
SUBDIR += p5-Module-Implementation
SUBDIR += p5-Module-Info
SUBDIR += p5-Module-Info-File
SUBDIR += p5-Module-Inspector
SUBDIR += p5-Module-Install
SUBDIR += p5-Module-Install-AuthorRequires
SUBDIR += p5-Module-Install-AuthorTests
SUBDIR += p5-Module-Install-ReadmeFromPod
SUBDIR += p5-Module-Install-Repository
SUBDIR += p5-Module-Install-Template
SUBDIR += p5-Module-Install-TestBase
SUBDIR += p5-Module-Install-XSUtil
SUBDIR += p5-Module-List
SUBDIR += p5-Module-Load
SUBDIR += p5-Module-Load-Conditional
SUBDIR += p5-Module-Loaded
SUBDIR += p5-Module-Manifest
SUBDIR += p5-Module-Math-Depends
SUBDIR += p5-Module-Metadata
SUBDIR += p5-Module-Path
SUBDIR += p5-Module-Pluggable
SUBDIR += p5-Module-Pluggable-Fast
SUBDIR += p5-Module-Pluggable-Ordered
SUBDIR += p5-Module-Reader
SUBDIR += p5-Module-Recursive-Require
SUBDIR += p5-Module-Refresh
SUBDIR += p5-Module-Release
SUBDIR += p5-Module-Reload
SUBDIR += p5-Module-Reload-Sel
SUBDIR += p5-Module-Runtime
SUBDIR += p5-Module-Runtime-Conflicts
SUBDIR += p5-Module-ScanDeps
SUBDIR += p5-Module-Setup
SUBDIR += p5-Module-Starter
SUBDIR += p5-Module-Starter-PBP
SUBDIR += p5-Module-Starter-Plugin-SimpleStore
SUBDIR += p5-Module-Starter-Plugin-TT2
SUBDIR += p5-Module-Used
SUBDIR += p5-Module-Util
SUBDIR += p5-Module-Version
SUBDIR += p5-Module-Versions
SUBDIR += p5-Module-Versions-Report
SUBDIR += p5-Mojolicious-Plugin-NYTProf
SUBDIR += p5-Moo
SUBDIR += p5-MooX-Cmd
SUBDIR += p5-MooX-ConfigFromFile
SUBDIR += p5-MooX-File-ConfigDir
SUBDIR += p5-MooX-HandlesVia
SUBDIR += p5-MooX-Options
SUBDIR += p5-MooX-StrictConstructor
SUBDIR += p5-MooX-TypeTiny
SUBDIR += p5-MooX-Types-MooseLike
SUBDIR += p5-MooX-Types-MooseLike-Numeric
SUBDIR += p5-MooX-late
SUBDIR += p5-Moos
SUBDIR += p5-Moose
SUBDIR += p5-Moose-Autobox
SUBDIR += p5-Moose-Policy
SUBDIR += p5-Moose-Test
SUBDIR += p5-MooseX-Aliases
SUBDIR += p5-MooseX-App
SUBDIR += p5-MooseX-App-Cmd
SUBDIR += p5-MooseX-ArrayRef
SUBDIR += p5-MooseX-Async
SUBDIR += p5-MooseX-Attribute-Chained
SUBDIR += p5-MooseX-Attribute-ENV
SUBDIR += p5-MooseX-AttributeHelpers
SUBDIR += p5-MooseX-AttributeShortcuts
SUBDIR += p5-MooseX-AuthorizedMethods
SUBDIR += p5-MooseX-ClassAttribute
SUBDIR += p5-MooseX-Clone
SUBDIR += p5-MooseX-CompileTime-Traits
SUBDIR += p5-MooseX-ConfigFromFile
SUBDIR += p5-MooseX-CoverableModifiers
SUBDIR += p5-MooseX-Daemonize
SUBDIR += p5-MooseX-Declare
SUBDIR += p5-MooseX-Emulate-Class-Accessor-Fast
SUBDIR += p5-MooseX-FollowPBP
SUBDIR += p5-MooseX-Getopt
SUBDIR += p5-MooseX-Has-Options
SUBDIR += p5-MooseX-Has-Sugar
SUBDIR += p5-MooseX-HasDefaults
SUBDIR += p5-MooseX-IOC
SUBDIR += p5-MooseX-InsideOut
SUBDIR += p5-MooseX-LazyRequire
SUBDIR += p5-MooseX-Lists
SUBDIR += p5-MooseX-Log-Log4perl
SUBDIR += p5-MooseX-MarkAsMethods
SUBDIR += p5-MooseX-Meta-TypeConstraint-ForceCoercion
SUBDIR += p5-MooseX-Meta-TypeConstraint-Mooish
SUBDIR += p5-MooseX-MetaDescription
SUBDIR += p5-MooseX-Method-Signatures
SUBDIR += p5-MooseX-MethodAttributes
SUBDIR += p5-MooseX-MultiInitArg
SUBDIR += p5-MooseX-MultiMethods
SUBDIR += p5-MooseX-NonMoose
SUBDIR += p5-MooseX-Object-Pluggable
SUBDIR += p5-MooseX-OneArgNew
SUBDIR += p5-MooseX-POE
SUBDIR += p5-MooseX-Params-Validate
SUBDIR += p5-MooseX-RelatedClassRoles
SUBDIR += p5-MooseX-Role-Loggable
SUBDIR += p5-MooseX-Role-Matcher
SUBDIR += p5-MooseX-Role-Parameterized
SUBDIR += p5-MooseX-Role-Strict
SUBDIR += p5-MooseX-Role-WithOverloading
SUBDIR += p5-MooseX-Runnable
SUBDIR += p5-MooseX-SemiAffordanceAccessor
SUBDIR += p5-MooseX-SetOnce
SUBDIR += p5-MooseX-SimpleConfig
SUBDIR += p5-MooseX-Singleton
SUBDIR += p5-MooseX-Storage
SUBDIR += p5-MooseX-StrictConstructor
SUBDIR += p5-MooseX-Traits
SUBDIR += p5-MooseX-Traits-Pluggable
SUBDIR += p5-MooseX-TransactionalMethods
SUBDIR += p5-MooseX-Types
SUBDIR += p5-MooseX-Types-Common
SUBDIR += p5-MooseX-Types-DateTime
SUBDIR += p5-MooseX-Types-DateTime-ButMaintained
SUBDIR += p5-MooseX-Types-DateTime-MoreCoercions
SUBDIR += p5-MooseX-Types-DateTime-MySQL
SUBDIR += p5-MooseX-Types-DateTimeX
SUBDIR += p5-MooseX-Types-ISO8601
SUBDIR += p5-MooseX-Types-JSON
SUBDIR += p5-MooseX-Types-LoadableClass
SUBDIR += p5-MooseX-Types-Path-Class
SUBDIR += p5-MooseX-Types-Path-Tiny
SUBDIR += p5-MooseX-Types-Perl
SUBDIR += p5-MooseX-Types-PortNumber
SUBDIR += p5-MooseX-Types-Set-Object
SUBDIR += p5-MooseX-Types-Signal
SUBDIR += p5-MooseX-Types-Stringlike
SUBDIR += p5-MooseX-Types-Structured
SUBDIR += p5-MooseX-Types-URI
SUBDIR += p5-MooseX-Types-VariantTable
SUBDIR += p5-Mouse
SUBDIR += p5-MouseX-App-Cmd
SUBDIR += p5-MouseX-AttributeHelpers
SUBDIR += p5-MouseX-ConfigFromFile
SUBDIR += p5-MouseX-Foreign
SUBDIR += p5-MouseX-Getopt
SUBDIR += p5-MouseX-NativeTraits
SUBDIR += p5-MouseX-StrictConstructor
SUBDIR += p5-MouseX-Traits
SUBDIR += p5-MouseX-Types
SUBDIR += p5-MouseX-Types-Path-Class
SUBDIR += p5-Multiplex-CMD
SUBDIR += p5-NEXT
SUBDIR += p5-Net-DBus
SUBDIR += p5-Net-ZooKeeper
SUBDIR += p5-No-Worries
SUBDIR += p5-Number-Bytes-Human
SUBDIR += p5-Number-Tolerant
SUBDIR += p5-OLE-Storage_Lite
SUBDIR += p5-OOTools
SUBDIR += p5-Object-Accessor
SUBDIR += p5-Object-Array
SUBDIR += p5-Object-Authority
SUBDIR += p5-Object-Container
SUBDIR += p5-Object-Declare
SUBDIR += p5-Object-Destroyer
SUBDIR += p5-Object-Enum
SUBDIR += p5-Object-Event
SUBDIR += p5-Object-Import
SUBDIR += p5-Object-InsideOut
SUBDIR += p5-Object-MultiType
SUBDIR += p5-Object-Pluggable
SUBDIR += p5-Object-Realize-Later
SUBDIR += p5-Object-Role
SUBDIR += p5-Object-Signature
SUBDIR += p5-Object-Simple
SUBDIR += p5-Object-Tiny
SUBDIR += p5-Object-Tiny-Lvalue
SUBDIR += p5-Olson-Abbreviations
SUBDIR += p5-Opcodes
SUBDIR += p5-OrePAN2
SUBDIR += p5-Ouch
SUBDIR += p5-PAR
SUBDIR += p5-PAR-Dist
SUBDIR += p5-PAR-Packer
SUBDIR += p5-PCSC-Card
SUBDIR += p5-PHP-Serialization
SUBDIR += p5-POE
SUBDIR += p5-POE-API-Hooks
SUBDIR += p5-POE-API-Peek
SUBDIR += p5-POE-Component-Child
SUBDIR += p5-POE-Component-Cron
SUBDIR += p5-POE-Component-Daemon
SUBDIR += p5-POE-Component-DebugShell
SUBDIR += p5-POE-Component-DirWatch
SUBDIR += p5-POE-Component-Hailo
SUBDIR += p5-POE-Component-IKC
SUBDIR += p5-POE-Component-JobQueue
SUBDIR += p5-POE-Component-Logger
SUBDIR += p5-POE-Component-Pluggable
SUBDIR += p5-POE-Component-RSS
SUBDIR += p5-POE-Component-RSSAggregator
SUBDIR += p5-POE-Component-Schedule
SUBDIR += p5-POE-Component-Server-XMLRPC
SUBDIR += p5-POE-Component-Syndicator
SUBDIR += p5-POE-Component-TSTP
SUBDIR += p5-POE-Devel-Profiler
SUBDIR += p5-POE-Loop-AnyEvent
SUBDIR += p5-POE-Loop-Glib
SUBDIR += p5-POE-Loop-Tk
SUBDIR += p5-POE-Quickie
SUBDIR += p5-POE-Session-MultiDispatch
SUBDIR += p5-POE-Stage
SUBDIR += p5-POE-Test-Loops
SUBDIR += p5-POE-XS-Loop-Poll
SUBDIR += p5-POE-XS-Queue-Array
SUBDIR += p5-POEx-Role-SessionInstantiation
SUBDIR += p5-POEx-Role-Streaming
SUBDIR += p5-POEx-Types
SUBDIR += p5-POSIX-strftime-Compiler
SUBDIR += p5-POSIX-strptime
SUBDIR += p5-PPerl
SUBDIR += p5-PV
SUBDIR += p5-Package-Constants
SUBDIR += p5-Package-DeprecationManager
SUBDIR += p5-Package-Generator
SUBDIR += p5-Package-Stash
SUBDIR += p5-Package-Stash-XS
SUBDIR += p5-Package-Variant
SUBDIR += p5-PadWalker
SUBDIR += p5-Parallel-Async
SUBDIR += p5-Parallel-Fork-BossWorker
SUBDIR += p5-Parallel-ForkManager
SUBDIR += p5-Parallel-Iterator
SUBDIR += p5-Parallel-Prefork
SUBDIR += p5-Parallel-Scoreboard
SUBDIR += p5-Params-CallbackRequest
SUBDIR += p5-Params-Check
SUBDIR += p5-Params-Classify
SUBDIR += p5-Params-Coerce
SUBDIR += p5-Params-Util
SUBDIR += p5-Params-Validate
SUBDIR += p5-Params-Validate-Dependencies
SUBDIR += p5-Params-ValidationCompiler
SUBDIR += p5-Paranoid
SUBDIR += p5-Parse-CPAN-Packages
SUBDIR += p5-Parse-CPAN-Packages-Fast
SUBDIR += p5-Parse-ErrorString-Perl
SUBDIR += p5-Parse-ExuberantCTags
SUBDIR += p5-Parse-LocalDistribution
SUBDIR += p5-Parse-Method-Signatures
SUBDIR += p5-Parse-PMFile
SUBDIR += p5-Parse-PerlConfig
SUBDIR += p5-Parse-Pidl
SUBDIR += p5-Parse-PlainConfig
SUBDIR += p5-Parse-RecDescent
SUBDIR += p5-Parse-Win32Registry
SUBDIR += p5-Parse-Yapp
SUBDIR += p5-ParseLex
SUBDIR += p5-ParseTemplate
SUBDIR += p5-PatchReader
SUBDIR += p5-Path-Abstract
SUBDIR += p5-Path-Class
SUBDIR += p5-Path-Class-File-Lockable
SUBDIR += p5-Path-Dispatcher
SUBDIR += p5-Path-Dispatcher-Declarative
SUBDIR += p5-Path-Extended
SUBDIR += p5-Path-FindDev
SUBDIR += p5-Path-IsDev
SUBDIR += p5-Path-Iterator-Rule
SUBDIR += p5-Path-Resource
SUBDIR += p5-Path-Tiny
SUBDIR += p5-PathTools
SUBDIR += p5-Paws
SUBDIR += p5-Pegex
SUBDIR += p5-Penguin
SUBDIR += p5-Perl-Critic-Deprecated
SUBDIR += p5-Perl-Metrics-Lite
SUBDIR += p5-Perl-Metrics-Simple
SUBDIR += p5-Perl-OSType
SUBDIR += p5-Perl-PrereqScanner
SUBDIR += p5-Perl-PrereqScanner-Lite
SUBDIR += p5-Perl-Tidy
SUBDIR += p5-Perl-Unsafe-Signals
SUBDIR += p5-Perl-Version
SUBDIR += p5-Perl-osnames
SUBDIR += p5-Perl4-CoreLibs
SUBDIR += p5-Perl6-Builtins
SUBDIR += p5-Perl6-Export
SUBDIR += p5-Perl6-Export-Attrs
SUBDIR += p5-Perl6-Form
SUBDIR += p5-Perl6-Junction
SUBDIR += p5-Perl6-Rules
SUBDIR += p5-Perl6-Say
SUBDIR += p5-Perl6-Slurp
SUBDIR += p5-PerlIO-Layers
SUBDIR += p5-PerlIO-Util
SUBDIR += p5-PerlIO-eol
SUBDIR += p5-PerlIO-locale
SUBDIR += p5-PerlIO-utf8_strict
SUBDIR += p5-PerlIO-via-MD5
SUBDIR += p5-PerlIO-via-Timeout
SUBDIR += p5-PerlIO-via-dynamic
SUBDIR += p5-PerlIO-via-symlink
SUBDIR += p5-PerlX-Maybe
SUBDIR += p5-PerlX-Maybe-XS
SUBDIR += p5-Pid-File-Flock
SUBDIR += p5-Pipeline
SUBDIR += p5-Pithub
SUBDIR += p5-PkgConfig
SUBDIR += p5-Pod-Coverage
SUBDIR += p5-Pod-Coverage-Moose
SUBDIR += p5-Pod-Coverage-TrustPod
SUBDIR += p5-Pod-Tests
SUBDIR += p5-Pod-Usage
SUBDIR += p5-Pragmatic
SUBDIR += p5-Proc-BackOff
SUBDIR += p5-Proc-Background
SUBDIR += p5-Proc-Daemon
SUBDIR += p5-Proc-Fork
SUBDIR += p5-Proc-Guard
SUBDIR += p5-Proc-PID-File
SUBDIR += p5-Proc-Pidfile
SUBDIR += p5-Proc-ProcessTable
SUBDIR += p5-Proc-Queue
SUBDIR += p5-Proc-Reliable
SUBDIR += p5-Proc-SafeExec
SUBDIR += p5-Proc-Simple
SUBDIR += p5-Proc-Wait3
SUBDIR += p5-Proc-WaitStat
SUBDIR += p5-Project-Gantt
SUBDIR += p5-Project-Libs
SUBDIR += p5-Qudo
SUBDIR += p5-RPSL-Parser
SUBDIR += p5-RRDTool-OO
SUBDIR += p5-Range-String
SUBDIR += p5-Rcs
SUBDIR += p5-Rcs-Agent
SUBDIR += p5-Readonly
SUBDIR += p5-Readonly-XS
SUBDIR += p5-ReadonlyX
SUBDIR += p5-Ref-Util
SUBDIR += p5-Reflex
SUBDIR += p5-Regexp-Assemble
SUBDIR += p5-Regexp-Assemble-Compressed
SUBDIR += p5-Regexp-Bind
SUBDIR += p5-Regexp-Compare
SUBDIR += p5-Regexp-Grammars
SUBDIR += p5-Regexp-Lexer
SUBDIR += p5-Regexp-RegGrp
SUBDIR += p5-Regexp-Shellish
SUBDIR += p5-Regexp-Subst-Parallel
SUBDIR += p5-Religion
SUBDIR += p5-Reply
SUBDIR += p5-ResourcePool
SUBDIR += p5-Resources
SUBDIR += p5-Return-MultiLevel
SUBDIR += p5-Return-Type
SUBDIR += p5-Return-Value
SUBDIR += p5-Rinci
SUBDIR += p5-Role-Basic
SUBDIR += p5-Role-HasMessage
SUBDIR += p5-Role-Identifiable
SUBDIR += p5-Role-Tiny
SUBDIR += p5-Rose-DateTime
SUBDIR += p5-Rose-Object
SUBDIR += p5-Router-R3
SUBDIR += p5-RunApp
SUBDIR += p5-SDL
SUBDIR += p5-SNMP-Persist
SUBDIR += p5-SOAP-WSDL
SUBDIR += p5-SSN-Validate
SUBDIR += p5-SUPER
SUBDIR += p5-SVN-ACL
SUBDIR += p5-SVN-Access
SUBDIR += p5-SVN-Agent
SUBDIR += p5-SVN-Dump
SUBDIR += p5-SVN-Dumpfile
SUBDIR += p5-SVN-Hook
SUBDIR += p5-SVN-Hooks
SUBDIR += p5-SVN-Log
SUBDIR += p5-SVN-Look
SUBDIR += p5-SVN-Mirror
SUBDIR += p5-SVN-Notify
SUBDIR += p5-SVN-Notify-Config
SUBDIR += p5-SVN-Notify-Filter-AuthZMail
SUBDIR += p5-SVN-Notify-Filter-EmailFlatFileDB
SUBDIR += p5-SVN-Notify-Filter-Markdown
SUBDIR += p5-SVN-Notify-Filter-Watchers
SUBDIR += p5-SVN-Notify-Mirror
SUBDIR += p5-SVN-Notify-Snapshot
SUBDIR += p5-SVN-S4
SUBDIR += p5-SVN-Simple
SUBDIR += p5-SVN-Statistics
SUBDIR += p5-SVN-Web
SUBDIR += p5-Safe-Isa
SUBDIR += p5-Sah
SUBDIR += p5-Scalar-Defer
SUBDIR += p5-Scalar-Does
SUBDIR += p5-Scalar-Listify
SUBDIR += p5-Scalar-String
SUBDIR += p5-Scalar-Util-LooksLikeNumber
SUBDIR += p5-Scalar-Util-Numeric
SUBDIR += p5-Scope-Guard
SUBDIR += p5-Scope-Upper
SUBDIR += p5-Script-isAperlScript
SUBDIR += p5-Search-Binary
SUBDIR += p5-Sentinel
SUBDIR += p5-Sepia
SUBDIR += p5-Set-Array
SUBDIR += p5-Set-ConsistentHash
SUBDIR += p5-Set-Crontab
SUBDIR += p5-Set-CrossProduct
SUBDIR += p5-Set-Infinite
SUBDIR += p5-Set-NestedGroups
SUBDIR += p5-Set-Object
SUBDIR += p5-Set-Scalar
SUBDIR += p5-Set-Tiny
SUBDIR += p5-Shape
SUBDIR += p5-Shell-Base
SUBDIR += p5-Shell-EnvImporter
SUBDIR += p5-Shell-Parser
SUBDIR += p5-Shell-Source
SUBDIR += p5-ShipIt
SUBDIR += p5-ShipIt-Step-Manifest
SUBDIR += p5-Slurp
SUBDIR += p5-Smart-Comments
SUBDIR += p5-Sort-Array
SUBDIR += p5-Sort-ArrayOfArrays
SUBDIR += p5-Sort-Key
SUBDIR += p5-Sort-Key-DateTime
SUBDIR += p5-Sort-Key-Top
SUBDIR += p5-Sort-Maker
SUBDIR += p5-Sort-Tree
SUBDIR += p5-Sort-Versions
SUBDIR += p5-Specio
SUBDIR += p5-Spiffy
SUBDIR += p5-Spoon
SUBDIR += p5-Storable
SUBDIR += p5-Stream
SUBDIR += p5-Stream-Buffered
SUBDIR += p5-Stream-Reader
SUBDIR += p5-String-Approx
SUBDIR += p5-String-CRC32
SUBDIR += p5-String-Checker
SUBDIR += p5-String-Diff
SUBDIR += p5-String-Dump
SUBDIR += p5-String-Ediff
SUBDIR += p5-String-Errf
SUBDIR += p5-String-Formatter
SUBDIR += p5-String-LRC
SUBDIR += p5-String-Parity
SUBDIR += p5-String-Random
SUBDIR += p5-String-RexxParse
SUBDIR += p5-String-Similarity
SUBDIR += p5-String-TT
SUBDIR += p5-Struct-Dumb
SUBDIR += p5-Sub-Alias
SUBDIR += p5-Sub-Current
SUBDIR += p5-Sub-Delete
SUBDIR += p5-Sub-Exporter
SUBDIR += p5-Sub-Exporter-ForMethods
SUBDIR += p5-Sub-Exporter-GlobExporter
SUBDIR += p5-Sub-Exporter-Lexical
SUBDIR += p5-Sub-Exporter-Progressive
SUBDIR += p5-Sub-Identify
SUBDIR += p5-Sub-Infix
SUBDIR += p5-Sub-Info
SUBDIR += p5-Sub-Install
SUBDIR += p5-Sub-Installer
SUBDIR += p5-Sub-Multi
SUBDIR += p5-Sub-Name
SUBDIR += p5-Sub-Override
SUBDIR += p5-Sub-Prototype
SUBDIR += p5-Sub-Quote
SUBDIR += p5-Sub-Signatures
SUBDIR += p5-Sub-Uplevel
SUBDIR += p5-Sub-WrapPackages
SUBDIR += p5-Symbol-Global-Name
SUBDIR += p5-Symbol-Util
SUBDIR += p5-Syntax-Keyword-Junction
SUBDIR += p5-Sys-Cpu
SUBDIR += p5-Sys-Info
SUBDIR += p5-Sys-Info-Base
SUBDIR += p5-Sys-Info-Driver-BSD
SUBDIR += p5-Sys-MemInfo
SUBDIR += p5-Sys-Mmap
SUBDIR += p5-Sys-RunAlone
SUBDIR += p5-Sys-RunAlways
SUBDIR += p5-Sys-Sendfile
SUBDIR += p5-Sys-Sendfile-FreeBSD
SUBDIR += p5-Sys-Sig
SUBDIR += p5-Sys-SigAction
SUBDIR += p5-Sys-Syscall
SUBDIR += p5-Sys-Trace
SUBDIR += p5-Sys-Virt
SUBDIR += p5-System-Command
SUBDIR += p5-System-Sub
SUBDIR += p5-System2
SUBDIR += p5-TAP-Formatter-JUnit
SUBDIR += p5-TAP-Harness-JUnit
SUBDIR += p5-TAP-SimpleOutput
SUBDIR += p5-Taint-Runtime
SUBDIR += p5-Taint-Util
SUBDIR += p5-Task-Tiny
SUBDIR += p5-Task-Weaken
SUBDIR += p5-Tee
SUBDIR += p5-Template-Provider-Encode
SUBDIR += p5-Term-ANSIColor
SUBDIR += p5-Term-ANSIScreen
SUBDIR += p5-Term-Animation
SUBDIR += p5-Term-CallEditor
SUBDIR += p5-Term-Clui
SUBDIR += p5-Term-EditLine
SUBDIR += p5-Term-Encoding
SUBDIR += p5-Term-Menus
SUBDIR += p5-Term-ProgressBar
SUBDIR += p5-Term-ProgressBar-Quiet
SUBDIR += p5-Term-ProgressBar-Simple
SUBDIR += p5-Term-Prompt
SUBDIR += p5-Term-Query
SUBDIR += p5-Term-RawInput
SUBDIR += p5-Term-ReadKey
SUBDIR += p5-Term-ReadLine
SUBDIR += p5-Term-ReadLine-Gnu
SUBDIR += p5-Term-ReadLine-Perl
SUBDIR += p5-Term-ReadLine-TTYtter
SUBDIR += p5-Term-ReadLine-Zoid
SUBDIR += p5-Term-ReadPassword
SUBDIR += p5-Term-Screen
SUBDIR += p5-Term-ScreenColor
SUBDIR += p5-Term-Shell
SUBDIR += p5-Term-Size
SUBDIR += p5-Term-Size-Any
SUBDIR += p5-Term-Size-Perl
SUBDIR += p5-Term-Sk
SUBDIR += p5-Term-Table
SUBDIR += p5-Term-Title
SUBDIR += p5-Term-UI
SUBDIR += p5-Term-VT102
SUBDIR += p5-Term-VT102-Boundless
SUBDIR += p5-Term-Visual
SUBDIR += p5-Test-API
SUBDIR += p5-Test-Able
SUBDIR += p5-Test-Able-Runner
SUBDIR += p5-Test-Aggregate
SUBDIR += p5-Test-Assertions
SUBDIR += p5-Test-Base
SUBDIR += p5-Test-Benchmark
SUBDIR += p5-Test-BinaryData
SUBDIR += p5-Test-Bits
SUBDIR += p5-Test-Block
SUBDIR += p5-Test-CPAN-Meta
SUBDIR += p5-Test-CPAN-Meta-YAML
SUBDIR += p5-Test-CheckDeps
SUBDIR += p5-Test-CheckManifest
SUBDIR += p5-Test-Class
SUBDIR += p5-Test-Class-Most
SUBDIR += p5-Test-ClassAPI
SUBDIR += p5-Test-Classy
SUBDIR += p5-Test-CleanNamespaces
SUBDIR += p5-Test-Cmd
SUBDIR += p5-Test-Command
SUBDIR += p5-Test-Command-Simple
SUBDIR += p5-Test-Compile
SUBDIR += p5-Test-DBIx-Class
SUBDIR += p5-Test-Data
SUBDIR += p5-Test-Debugger
SUBDIR += p5-Test-Declare
SUBDIR += p5-Test-Deep
SUBDIR += p5-Test-Dependencies
SUBDIR += p5-Test-DependentModules
SUBDIR += p5-Test-Differences
SUBDIR += p5-Test-Distribution
SUBDIR += p5-Test-EOL
SUBDIR += p5-Test-Exception
SUBDIR += p5-Test-Expect
SUBDIR += p5-Test-FailWarnings
SUBDIR += p5-Test-Fake-HTTPD
SUBDIR += p5-Test-Fatal
SUBDIR += p5-Test-File
SUBDIR += p5-Test-File-Contents
SUBDIR += p5-Test-File-ShareDir
SUBDIR += p5-Test-Filename
SUBDIR += p5-Test-Fixme
SUBDIR += p5-Test-Fixture-DBIC-Schema
SUBDIR += p5-Test-Group
SUBDIR += p5-Test-HTML-Tidy
SUBDIR += p5-Test-Harness
SUBDIR += p5-Test-Harness-Straps
SUBDIR += p5-Test-HasVersion
SUBDIR += p5-Test-HexDifferences
SUBDIR += p5-Test-HexString
SUBDIR += p5-Test-Identity
SUBDIR += p5-Test-If
SUBDIR += p5-Test-InDistDir
SUBDIR += p5-Test-Inline
SUBDIR += p5-Test-Inter
SUBDIR += p5-Test-JSON
SUBDIR += p5-Test-Kwalitee
SUBDIR += p5-Test-Lazy
SUBDIR += p5-Test-LeakTrace
SUBDIR += p5-Test-LectroTest
SUBDIR += p5-Test-LoadAllModules
SUBDIR += p5-Test-Log4perl
SUBDIR += p5-Test-LongString
SUBDIR += p5-Test-Manifest
SUBDIR += p5-Test-ManyParams
SUBDIR += p5-Test-Memory-Cycle
SUBDIR += p5-Test-Mini
SUBDIR += p5-Test-Mini-Unit
SUBDIR += p5-Test-Mock-Guard
SUBDIR += p5-Test-Mock-LWP
SUBDIR += p5-Test-Mock-LWP-Dispatch
SUBDIR += p5-Test-MockDateTime
SUBDIR += p5-Test-MockModule
SUBDIR += p5-Test-MockObject
SUBDIR += p5-Test-MockRandom
SUBDIR += p5-Test-MockTime
SUBDIR += p5-Test-Modern
SUBDIR += p5-Test-Module-Used
SUBDIR += p5-Test-Moose-More
SUBDIR += p5-Test-More-UTF8
SUBDIR += p5-Test-Most
SUBDIR += p5-Test-Name-FromLine
SUBDIR += p5-Test-Needs
SUBDIR += p5-Test-Net-LDAP
SUBDIR += p5-Test-Net-RabbitMQ
SUBDIR += p5-Test-NoTabs
SUBDIR += p5-Test-NoWarnings
SUBDIR += p5-Test-Number-Delta
SUBDIR += p5-Test-Object
SUBDIR += p5-Test-OpenLDAP
SUBDIR += p5-Test-Output
SUBDIR += p5-Test-POE-Client-TCP
SUBDIR += p5-Test-POE-Server-TCP
SUBDIR += p5-Test-Parser
SUBDIR += p5-Test-PerlTidy
SUBDIR += p5-Test-Pod
SUBDIR += p5-Test-Pod-Coverage
SUBDIR += p5-Test-Pod-Coverage-Permissive
SUBDIR += p5-Test-Portability-Files
SUBDIR += p5-Test-Prereq
SUBDIR += p5-Test-RandomResults
SUBDIR += p5-Test-Refcount
SUBDIR += p5-Test-Reporter
SUBDIR += p5-Test-Reporter-Transport-Metabase
SUBDIR += p5-Test-Requires
SUBDIR += p5-Test-Requires-Git
SUBDIR += p5-Test-RequiresInternet
SUBDIR += p5-Test-Roo
SUBDIR += p5-Test-Script
SUBDIR += p5-Test-Script-Run
SUBDIR += p5-Test-SharedFork
SUBDIR += p5-Test-Signature
SUBDIR += p5-Test-Simple
SUBDIR += p5-Test-Singleton
SUBDIR += p5-Test-Spec
SUBDIR += p5-Test-Spelling
SUBDIR += p5-Test-Strict
SUBDIR += p5-Test-SubCalls
SUBDIR += p5-Test-Synopsis
SUBDIR += p5-Test-Sys-Info
SUBDIR += p5-Test-TAP-HTMLMatrix
SUBDIR += p5-Test-TAP-Model
SUBDIR += p5-Test-TCP
SUBDIR += p5-Test-TableDriven
SUBDIR += p5-Test-Taint
SUBDIR += p5-Test-TempDir-Tiny
SUBDIR += p5-Test-Time
SUBDIR += p5-Test-Timer
SUBDIR += p5-Test-TinyMocker
SUBDIR += p5-Test-Trap
SUBDIR += p5-Test-Unit
SUBDIR += p5-Test-UseAllModules
SUBDIR += p5-Test-Version
SUBDIR += p5-Test-WWW-Declare
SUBDIR += p5-Test-WWW-Mechanize
SUBDIR += p5-Test-WWW-Mechanize-CGI
SUBDIR += p5-Test-WWW-Mechanize-CGIApp
SUBDIR += p5-Test-WWW-Mechanize-Catalyst
SUBDIR += p5-Test-WWW-Mechanize-PSGI
SUBDIR += p5-Test-WWW-Selenium
SUBDIR += p5-Test-Warn
SUBDIR += p5-Test-Warnings
SUBDIR += p5-Test-Weaken
SUBDIR += p5-Test-Without-Module
SUBDIR += p5-Test-XML
SUBDIR += p5-Test-XML-Valid
SUBDIR += p5-Test-YAML
SUBDIR += p5-Test-YAML-Meta
SUBDIR += p5-Test-YAML-Valid
SUBDIR += p5-Test-utf8
SUBDIR += p5-Test2-Plugin-NoWarnings
SUBDIR += p5-Test2-Suite
SUBDIR += p5-Text-Levenshtein
SUBDIR += p5-Text-Levenshtein-Damerau
SUBDIR += p5-Text-LevenshteinXS
SUBDIR += p5-Text-Outdent
SUBDIR += p5-Text-vFile-asData
SUBDIR += p5-TheSchwartz
SUBDIR += p5-TheSchwartz-Simple
SUBDIR += p5-TheSchwartz-Worker-SendEmail
SUBDIR += p5-Thread-Apartment
SUBDIR += p5-Thread-Cancel
SUBDIR += p5-Thread-Pool-Simple
SUBDIR += p5-Thread-Queue
SUBDIR += p5-Thread-Queue-Duplex
SUBDIR += p5-Thread-Suspend
SUBDIR += p5-Thrift
SUBDIR += p5-Thrift-XS
SUBDIR += p5-Throwable
SUBDIR += p5-Tie-Array-Pack
SUBDIR += p5-Tie-Array-Sorted
SUBDIR += p5-Tie-CPHash
SUBDIR += p5-Tie-Cache
SUBDIR += p5-Tie-DB_File-SplitHash
SUBDIR += p5-Tie-DB_FileLock
SUBDIR += p5-Tie-File
SUBDIR += p5-Tie-File-AsHash
SUBDIR += p5-Tie-FileLRUCache
SUBDIR += p5-Tie-Function
SUBDIR += p5-Tie-Hash-Indexed
SUBDIR += p5-Tie-Hash-MultiValue
SUBDIR += p5-Tie-Hash-Regex
SUBDIR += p5-Tie-Hash-Sorted
SUBDIR += p5-Tie-Hash-TwoWay
SUBDIR += p5-Tie-IxHash
SUBDIR += p5-Tie-LLHash
SUBDIR += p5-Tie-RefHash
SUBDIR += p5-Tie-RefHash-Weak
SUBDIR += p5-Tie-RegexpHash
SUBDIR += p5-Tie-Restore
SUBDIR += p5-Tie-ShareLite
SUBDIR += p5-Tie-Simple
SUBDIR += p5-Tie-ToObject
SUBDIR += p5-Tie-Util
SUBDIR += p5-Tie-iCal
SUBDIR += p5-Time-Clock
SUBDIR += p5-Time-Crontab
SUBDIR += p5-Time-Duration
SUBDIR += p5-Time-Duration-Parse
SUBDIR += p5-Time-Format
SUBDIR += p5-Time-HiRes
SUBDIR += p5-Time-Interval
SUBDIR += p5-Time-Local
SUBDIR += p5-Time-Mock
SUBDIR += p5-Time-Object
SUBDIR += p5-Time-Out
SUBDIR += p5-Time-ParseDate
SUBDIR += p5-Time-Period
SUBDIR += p5-Time-Piece
SUBDIR += p5-Time-Piece-Range
SUBDIR += p5-Time-Progress
SUBDIR += p5-Time-Stopwatch
SUBDIR += p5-Time-Warp
SUBDIR += p5-Time-modules
SUBDIR += p5-Time-timegm
SUBDIR += p5-TimeDate
SUBDIR += p5-ToolSet
SUBDIR += p5-TraceFuncs
SUBDIR += p5-Tree-Binary
SUBDIR += p5-Tree-Binary-Dictionary
SUBDIR += p5-Tree-DAG_Node
SUBDIR += p5-Tree-Node
SUBDIR += p5-Tree-Parser
SUBDIR += p5-Tree-R
SUBDIR += p5-Tree-RedBlack
SUBDIR += p5-Tree-Simple
SUBDIR += p5-Tree-Simple-View
SUBDIR += p5-Tree-Simple-VisitorFactory
SUBDIR += p5-Tree-Trie
SUBDIR += p5-Type-Tie
SUBDIR += p5-Type-Tiny
SUBDIR += p5-Type-Tiny-Signatures
SUBDIR += p5-Type-Tiny-XS
SUBDIR += p5-Types-Core
SUBDIR += p5-Types-Path-Tiny
SUBDIR += p5-Types-Serialiser
SUBDIR += p5-Types-URI
SUBDIR += p5-Types-UUID
SUBDIR += p5-UDCode
SUBDIR += p5-UI-Dialog
SUBDIR += p5-UNIVERSAL-can
SUBDIR += p5-UNIVERSAL-isa
SUBDIR += p5-UNIVERSAL-moniker
SUBDIR += p5-UNIVERSAL-ref
SUBDIR += p5-UNIVERSAL-require
SUBDIR += p5-UNIVERSAL-which
SUBDIR += p5-UUID
SUBDIR += p5-UUID-Random
SUBDIR += p5-UUID-Random-Patch-UseMRS
SUBDIR += p5-UUID-Tiny
SUBDIR += p5-Uniq
SUBDIR += p5-Unix-Groups
SUBDIR += p5-Unix-Statgrab
SUBDIR += p5-Unix-Uptime
SUBDIR += p5-User-Identity
SUBDIR += p5-VCP-Dest-svk
SUBDIR += p5-VCP-Source-cvsbk
SUBDIR += p5-VCP-autrijus
SUBDIR += p5-VCS
SUBDIR += p5-VCS-CVS
SUBDIR += p5-VCS-Lite
SUBDIR += p5-Validation-Class
SUBDIR += p5-Variable-Eject
SUBDIR += p5-Variable-Magic
SUBDIR += p5-Want
SUBDIR += p5-WeakRef
SUBDIR += p5-Workflow
SUBDIR += p5-XML-Compile-Tester
SUBDIR += p5-XML-Pastor
SUBDIR += p5-XS-Object-Magic
SUBDIR += p5-XSLoader
SUBDIR += p5-Xporter
SUBDIR += p5-YAML-AppConfig
SUBDIR += p5-Yada-Yada-Yada
SUBDIR += p5-ZConf-GUI
SUBDIR += p5-ZML
SUBDIR += p5-accessors
SUBDIR += p5-accessors-fast
SUBDIR += p5-aliased
SUBDIR += p5-asa
SUBDIR += p5-autobox
SUBDIR += p5-autobox-Core
SUBDIR += p5-autodie
SUBDIR += p5-autovivification
SUBDIR += p5-bareword-filehandles
SUBDIR += p5-boolean
SUBDIR += p5-capitalization
SUBDIR += p5-carton
SUBDIR += p5-common-sense
SUBDIR += p5-constant
SUBDIR += p5-constant-boolean
SUBDIR += p5-constant-def
SUBDIR += p5-constant-defer
SUBDIR += p5-constant-lexical
SUBDIR += p5-cpan-listchanges
SUBDIR += p5-curry
SUBDIR += p5-enum
SUBDIR += p5-ex-lib
SUBDIR += p5-experimental
SUBDIR += p5-forks
SUBDIR += p5-github_creator
SUBDIR += p5-iCal-Parser
SUBDIR += p5-indirect
SUBDIR += p5-interface
SUBDIR += p5-latest
SUBDIR += p5-lexical-underscore
SUBDIR += p5-lib-abs
SUBDIR += p5-libalarm
SUBDIR += p5-libxml-enno
SUBDIR += p5-local-lib
SUBDIR += p5-match-simple
SUBDIR += p5-mem
SUBDIR += p5-mixin
SUBDIR += p5-mocked
SUBDIR += p5-multidimensional
SUBDIR += p5-namespace-autoclean
SUBDIR += p5-namespace-clean
SUBDIR += p5-namespace-clean-xs
SUBDIR += p5-namespace-sweep
SUBDIR += p5-orz
SUBDIR += p5-parent
SUBDIR += p5-perlkde
SUBDIR += p5-perlqt
SUBDIR += p5-pip
SUBDIR += p5-prefork
SUBDIR += p5-reaper
SUBDIR += p5-relative
SUBDIR += p5-rpm-build-perl
SUBDIR += p5-self
SUBDIR += p5-self-init
SUBDIR += p5-strictures
SUBDIR += p5-subatom
SUBDIR += p5-subversion
SUBDIR += p5-superclass
SUBDIR += p5-syntax
SUBDIR += p5-threads
SUBDIR += p5-threads-shared
SUBDIR += p5-true
SUBDIR += p5-uni-perl
SUBDIR += p5-version
SUBDIR += p65
SUBDIR += p8-platform
SUBDIR += paexec
SUBDIR += papi
SUBDIR += pas2dox
SUBDIR += pasm
SUBDIR += patch
SUBDIR += pcc-libs
SUBDIR += pccts
SUBDIR += pcl
SUBDIR += pcre
SUBDIR += pcre++
SUBDIR += pcre2
SUBDIR += pcsc-ada
SUBDIR += pcsc-lite
SUBDIR += pdcurses
SUBDIR += pear
SUBDIR += pear-Config
SUBDIR += pear-Console_Color
SUBDIR += pear-Console_CommandLine
SUBDIR += pear-Console_Getargs
SUBDIR += pear-Console_Table
SUBDIR += pear-Date
SUBDIR += pear-Date_Holidays
SUBDIR += pear-Date_Holidays_Austria
SUBDIR += pear-Date_Holidays_Brazil
SUBDIR += pear-Date_Holidays_Denmark
SUBDIR += pear-Date_Holidays_Discordian
SUBDIR += pear-Date_Holidays_EnglandWales
SUBDIR += pear-Date_Holidays_Germany
SUBDIR += pear-Date_Holidays_Iceland
SUBDIR += pear-Date_Holidays_Ireland
SUBDIR += pear-Date_Holidays_Italy
SUBDIR += pear-Date_Holidays_Japan
SUBDIR += pear-Date_Holidays_Netherlands
SUBDIR += pear-Date_Holidays_Norway
SUBDIR += pear-Date_Holidays_PHPdotNet
SUBDIR += pear-Date_Holidays_Romania
SUBDIR += pear-Date_Holidays_Slovenia
SUBDIR += pear-Date_Holidays_Sweden
SUBDIR += pear-Date_Holidays_UNO
SUBDIR += pear-Date_Holidays_USA
SUBDIR += pear-Date_Holidays_Ukraine
SUBDIR += pear-Event_Dispatcher
SUBDIR += pear-FSM
SUBDIR += pear-File_Iterator
SUBDIR += pear-HTML_BBCodeParser
SUBDIR += pear-HTML_CSS
SUBDIR += pear-HTML_Common
SUBDIR += pear-HTML_Common2
SUBDIR += pear-HTML_Form
SUBDIR += pear-HTML_Javascript
SUBDIR += pear-HTML_Page2
SUBDIR += pear-HTML_QuickForm
SUBDIR += pear-HTML_QuickForm2
SUBDIR += pear-HTML_QuickForm_Controller
SUBDIR += pear-HTML_QuickForm_Livesearch
SUBDIR += pear-HTML_QuickForm_Renderer_Tableless
SUBDIR += pear-HTML_QuickForm_SelectFilter
SUBDIR += pear-HTML_QuickForm_advmultiselect
SUBDIR += pear-HTML_Select
SUBDIR += pear-HTML_Select_Common
SUBDIR += pear-HTML_Table
SUBDIR += pear-HTML_Template_Flexy
SUBDIR += pear-HTML_Template_IT
SUBDIR += pear-HTML_Template_PHPLIB
SUBDIR += pear-HTML_Template_Sigma
SUBDIR += pear-HTML_TreeMenu
SUBDIR += pear-Horde_Alarm
SUBDIR += pear-Horde_Argv
SUBDIR += pear-Horde_Autoloader
SUBDIR += pear-Horde_Autoloader_Cache
SUBDIR += pear-Horde_Cache
SUBDIR += pear-Horde_Cli
SUBDIR += pear-Horde_Constraint
SUBDIR += pear-Horde_Controller
SUBDIR += pear-Horde_Core
SUBDIR += pear-Horde_Data
SUBDIR += pear-Horde_Date
SUBDIR += pear-Horde_Date_Parser
SUBDIR += pear-Horde_Exception
SUBDIR += pear-Horde_History
SUBDIR += pear-Horde_Icalendar
SUBDIR += pear-Horde_Injector
SUBDIR += pear-Horde_Itip
SUBDIR += pear-Horde_Lock
SUBDIR += pear-Horde_LoginTasks
SUBDIR += pear-Horde_Nls
SUBDIR += pear-Horde_Notification
SUBDIR += pear-Horde_Prefs
SUBDIR += pear-Horde_Queue
SUBDIR += pear-Horde_Rdo
SUBDIR += pear-Horde_Role
SUBDIR += pear-Horde_Scheduler
SUBDIR += pear-Horde_Serialize
SUBDIR += pear-Horde_Stream
SUBDIR += pear-Horde_Stream_Filter
SUBDIR += pear-Horde_Stream_Wrapper
SUBDIR += pear-Horde_Support
SUBDIR += pear-Horde_Thrift
SUBDIR += pear-Horde_Timezone
SUBDIR += pear-Horde_Token
SUBDIR += pear-Horde_Translation
SUBDIR += pear-Horde_Tree
SUBDIR += pear-Horde_Util
SUBDIR += pear-Horde_View
SUBDIR += pear-I18N
SUBDIR += pear-Math_Fraction
SUBDIR += pear-Net_Gearman
SUBDIR += pear-OLE
SUBDIR += pear-PEAR_Info
SUBDIR += pear-PEAR_PackageFileManager
SUBDIR += pear-PEAR_PackageFileManager2
SUBDIR += pear-PEAR_PackageFileManager_Plugins
SUBDIR += pear-PHPDoc
SUBDIR += pear-PHPTAL
SUBDIR += pear-PHPUnit_MockObject
SUBDIR += pear-PHP_ArrayOf
SUBDIR += pear-PHP_Beautifier
SUBDIR += pear-PHP_CodeBrowser
SUBDIR += pear-PHP_CodeCoverage
SUBDIR += pear-PHP_CodeSniffer
SUBDIR += pear-PHP_Compat
SUBDIR += pear-PHP_CompatInfo
SUBDIR += pear-PHP_Depend
SUBDIR += pear-PHP_PMD
SUBDIR += pear-PHP_Parser
SUBDIR += pear-PHP_ParserGenerator
SUBDIR += pear-PHP_Timer
SUBDIR += pear-PHP_TokenStream
SUBDIR += pear-PHP_UML
SUBDIR += pear-PPW
SUBDIR += pear-Pager
SUBDIR += pear-PhpDocumentor
SUBDIR += pear-Pirum
SUBDIR += pear-SebastianBergmann_FinderFacade
SUBDIR += pear-SebastianBergmann_Git
SUBDIR += pear-SebastianBergmann_PHPCPD
SUBDIR += pear-SebastianBergmann_PHPLOC
SUBDIR += pear-SebastianBergmann_Version
SUBDIR += pear-Structure_LinkedList
SUBDIR += pear-Structures_DataGrid
SUBDIR += pear-Structures_DataGrid_Renderer_Console
SUBDIR += pear-Structures_DataGrid_Renderer_HTMLSortForm
SUBDIR += pear-Structures_DataGrid_Renderer_HTMLTable
SUBDIR += pear-Structures_DataGrid_Renderer_XUL
SUBDIR += pear-Symfony_Component_Console
SUBDIR += pear-Symfony_Component_Finder
SUBDIR += pear-System_Command
SUBDIR += pear-Testing_Selenium
SUBDIR += pear-Text_Diff
SUBDIR += pear-TheSeer_DirectoryScanner
SUBDIR += pear-TheSeer_fDOMDocument
SUBDIR += pear-TheSeer_fXSL
SUBDIR += pear-TheSeer_phpDox
SUBDIR += pear-VFS
SUBDIR += pear-Validate
SUBDIR += pear-Validate_AU
SUBDIR += pear-Validate_Finance
SUBDIR += pear-Validate_Finance_CreditCard
SUBDIR += pear-Validate_US
SUBDIR += pear-Var_Dump
SUBDIR += pear-VersionControl_Git
SUBDIR += pear-VersionControl_SVN
SUBDIR += pear-XML_NITF
SUBDIR += pear-XML_Parser
SUBDIR += pear-XML_RSS
SUBDIR += pear-XML_SVG
SUBDIR += pear-XML_Serializer
SUBDIR += pear-XML_Transformer
SUBDIR += pear-XML_Tree
SUBDIR += pear-XML_Util
SUBDIR += pear-channel-doctrine
SUBDIR += pear-channel-ezc
SUBDIR += pear-channel-horde
SUBDIR += pear-channel-htmlpurifier
SUBDIR += pear-channel-openpear
SUBDIR += pear-channel-pdepend
SUBDIR += pear-channel-phing
SUBDIR += pear-channel-phpdoc
SUBDIR += pear-channel-phpmd
SUBDIR += pear-channel-phpunit
SUBDIR += pear-channel-pirum
SUBDIR += pear-channel-symfony
SUBDIR += pear-channel-symfony2
SUBDIR += pear-channel-theseer
SUBDIR += pear-channel-twig
SUBDIR += pear-codegen
SUBDIR += pear-ezc_Base
SUBDIR += pear-ezc_ConsoleTools
SUBDIR += pear-htmlpurifier
SUBDIR += pear-pdepend-staticReflection
SUBDIR += pear-phing
SUBDIR += pecl-APCu
SUBDIR += pecl-APCu4
SUBDIR += pecl-dio
SUBDIR += pecl-eio
SUBDIR += pecl-ev
SUBDIR += pecl-event
SUBDIR += pecl-expect
SUBDIR += pecl-gearman
SUBDIR += pecl-hrtime
SUBDIR += pecl-htscanner
SUBDIR += pecl-inotify
SUBDIR += pecl-intl
SUBDIR += pecl-jsmin
SUBDIR += pecl-json_post
SUBDIR += pecl-jsonc
SUBDIR += pecl-jsond
SUBDIR += pecl-jsonnet
SUBDIR += pecl-judy
SUBDIR += pecl-libevent
SUBDIR += pecl-memoize
SUBDIR += pecl-msgpack
SUBDIR += pecl-msgpack0
SUBDIR += pecl-ncurses
SUBDIR += pecl-newt
SUBDIR += pecl-params
SUBDIR += pecl-propro
SUBDIR += pecl-propro2
SUBDIR += pecl-pthreads
SUBDIR += pecl-qb
SUBDIR += pecl-raphf
SUBDIR += pecl-raphf2
SUBDIR += pecl-request
SUBDIR += pecl-runkit
SUBDIR += pecl-scream
SUBDIR += pecl-spl_types
SUBDIR += pecl-statgrab
SUBDIR += pecl-strict
SUBDIR += pecl-svn
SUBDIR += pecl-swoole
SUBDIR += pecl-sync
SUBDIR += pecl-test_helpers
SUBDIR += pecl-trace
SUBDIR += pecl-uopz
SUBDIR += pecl-uploadprogress
SUBDIR += pecl-uri_template
SUBDIR += pecl-uuid
SUBDIR += pecl-uv
SUBDIR += pecl-vld
SUBDIR += pecl-weakref
SUBDIR += pecl-xhprof
SUBDIR += pecl-yac
SUBDIR += pecl-zookeeper
SUBDIR += pep8
SUBDIR += performance
SUBDIR += perlconsole
SUBDIR += phabricator
SUBDIR += php-Psr_Log
SUBDIR += php-composer
SUBDIR += php-jq
SUBDIR += php-libawl
SUBDIR += php-maxminddb
SUBDIR += php-memoize
SUBDIR += php-scalar_objects
SUBDIR += php-uprofiler
SUBDIR += php-xdebug
SUBDIR += php5-blitz
SUBDIR += php5-blitz-devel
SUBDIR += php5-dav
SUBDIR += php5-geshi
SUBDIR += php5-ice
SUBDIR += php5-pinba
SUBDIR += php5-thrift
SUBDIR += php56-gettext
SUBDIR += php56-json
SUBDIR += php56-pcntl
SUBDIR += php56-readline
SUBDIR += php56-shmop
SUBDIR += php56-sysvmsg
SUBDIR += php56-sysvsem
SUBDIR += php56-sysvshm
SUBDIR += php56-tokenizer
SUBDIR += php70-gettext
SUBDIR += php70-intl
SUBDIR += php70-json
SUBDIR += php70-pcntl
SUBDIR += php70-readline
SUBDIR += php70-shmop
SUBDIR += php70-sysvmsg
SUBDIR += php70-sysvsem
SUBDIR += php70-sysvshm
SUBDIR += php70-tokenizer
SUBDIR += php71-gettext
SUBDIR += php71-intl
SUBDIR += php71-json
SUBDIR += php71-pcntl
SUBDIR += php71-readline
SUBDIR += php71-shmop
SUBDIR += php71-sysvmsg
SUBDIR += php71-sysvsem
SUBDIR += php71-sysvshm
SUBDIR += php71-tokenizer
SUBDIR += phpbt
SUBDIR += phpsh
SUBDIR += phpunit
SUBDIR += physfs
SUBDIR += physfs-devel
SUBDIR += picp
SUBDIR += picprog
SUBDIR += pig
SUBDIR += piklab
SUBDIR += pinba_engine
SUBDIR += pipestatus
SUBDIR += pire
SUBDIR += pit
SUBDIR += pkg-info.el
SUBDIR += pkgconf
SUBDIR += plan9port
SUBDIR += pmccabe
SUBDIR += pmd
SUBDIR += poco
SUBDIR += poco-ssl
SUBDIR += ponscripter-sekai
SUBDIR += popt
SUBDIR += poslib
SUBDIR += powerpc64-binutils
SUBDIR += powerpc64-gcc
SUBDIR += powerpc64-xtoolchain-gcc
SUBDIR += poxml
SUBDIR += ppl
SUBDIR += pragmarcs
SUBDIR += premake
SUBDIR += premake4
SUBDIR += privman
SUBDIR += projectcenter
SUBDIR += protobuf
SUBDIR += protobuf-c
SUBDIR += protobuf25
SUBDIR += pructl
SUBDIR += psptoolchain
SUBDIR += psptoolchain-binutils
SUBDIR += psptoolchain-gcc-stage1
SUBDIR += psptoolchain-gcc-stage2
SUBDIR += psptoolchain-gdb
SUBDIR += psptoolchain-newlib
SUBDIR += psptoolchain-pspsdk-stage1
SUBDIR += psptoolchain-pspsdk-stage2
SUBDIR += pstreams
SUBDIR += psvn
SUBDIR += pth
SUBDIR += pth-hard
SUBDIR += pthsem
SUBDIR += ptlib
SUBDIR += ptmalloc
SUBDIR += ptmalloc2
SUBDIR += pty
SUBDIR += ptypes
SUBDIR += publib
SUBDIR += pure-ffi
SUBDIR += pure-readline
SUBDIR += pure-stldict
SUBDIR += pure-stllib
SUBDIR += pushmi
SUBDIR += pwlib
SUBDIR += py-Acquisition
SUBDIR += py-AddOns
SUBDIR += py-Automat
SUBDIR += py-Breve
SUBDIR += py-BytecodeAssembler
SUBDIR += py-DateTime
SUBDIR += py-DocumentTemplate
SUBDIR += py-ExtensionClass
SUBDIR += py-InlineEgg
SUBDIR += py-Jinja
SUBDIR += py-Jinja2
SUBDIR += py-Jinja2-doc
SUBDIR += py-Missing
SUBDIR += py-MultiMapping
SUBDIR += py-PEAK-Rules
SUBDIR += py-Persistence
SUBDIR += py-Pint
SUBDIR += py-Products.ATContentTypes
SUBDIR += py-Products.ATReferenceBrowserWidget
SUBDIR += py-Products.Archetypes
SUBDIR += py-Products.BTreeFolder2
SUBDIR += py-Products.CMFActionIcons
SUBDIR += py-Products.CMFCalendar
SUBDIR += py-Products.CMFCore
SUBDIR += py-Products.CMFDefault
SUBDIR += py-Products.CMFDiffTool
SUBDIR += py-Products.CMFDynamicViewFTI
SUBDIR += py-Products.CMFEditions
SUBDIR += py-Products.CMFFormController
SUBDIR += py-Products.CMFPlacefulWorkflow
SUBDIR += py-Products.CMFQuickInstallerTool
SUBDIR += py-Products.CMFTestCase
SUBDIR += py-Products.CMFUid
SUBDIR += py-Products.DCWorkflow
SUBDIR += py-Products.ExtendedPathIndex
SUBDIR += py-Products.ExternalEditor
SUBDIR += py-Products.ExternalMethod
SUBDIR += py-Products.GenericSetup
SUBDIR += py-Products.LDAPMultiPlugins
SUBDIR += py-Products.LDAPUserFolder
SUBDIR += py-Products.MIMETools
SUBDIR += py-Products.Marshall
SUBDIR += py-Products.MimetypesRegistry
SUBDIR += py-Products.OFSP
SUBDIR += py-Products.PasswordResetTool
SUBDIR += py-Products.PlacelessTranslationService
SUBDIR += py-Products.PloneLanguageTool
SUBDIR += py-Products.PloneTestCase
SUBDIR += py-Products.PluginRegistry
SUBDIR += py-Products.PortalTransforms
SUBDIR += py-Products.PythonScripts
SUBDIR += py-Products.ResourceRegistries
SUBDIR += py-Products.StandardCacheManagers
SUBDIR += py-Products.ZCTextIndex
SUBDIR += py-Products.ZCatalog
SUBDIR += py-Products.ZSQLMethods
SUBDIR += py-Products.ZopeVersionControl
SUBDIR += py-Products.contentmigration
SUBDIR += py-Products.statusmessages
SUBDIR += py-Products.validation
SUBDIR += py-PyLD
SUBDIR += py-RPyC
SUBDIR += py-Record
SUBDIR += py-SymbolType
SUBDIR += py-TGScheduler
SUBDIR += py-ToscaWidgets
SUBDIR += py-TurboJinja
SUBDIR += py-XStatic
SUBDIR += py-XStatic-Angular
SUBDIR += py-XStatic-Angular-Bootstrap
SUBDIR += py-XStatic-Angular-FileUpload
SUBDIR += py-XStatic-Angular-Gettext
SUBDIR += py-XStatic-Angular-Schema-Form
SUBDIR += py-XStatic-Angular-lrdragndrop
SUBDIR += py-XStatic-Bootstrap-Datepicker
SUBDIR += py-XStatic-Bootstrap-SCSS
SUBDIR += py-XStatic-D3
SUBDIR += py-XStatic-Font-Awesome
SUBDIR += py-XStatic-Hogan
SUBDIR += py-XStatic-JQuery-Migrate
SUBDIR += py-XStatic-JQuery.TableSorter
SUBDIR += py-XStatic-JQuery.quicksearch
SUBDIR += py-XStatic-JSEncrypt
SUBDIR += py-XStatic-Jasmine
SUBDIR += py-XStatic-Rickshaw
SUBDIR += py-XStatic-Spin
SUBDIR += py-XStatic-bootswatch
SUBDIR += py-XStatic-jQuery
SUBDIR += py-XStatic-jquery-ui
SUBDIR += py-XStatic-mdi
SUBDIR += py-XStatic-objectpath
SUBDIR += py-XStatic-roboto-fontface
SUBDIR += py-XStatic-smart-table
SUBDIR += py-XStatic-term.js
SUBDIR += py-XStatic-tv4
SUBDIR += py-ZopeUndo
SUBDIR += py-adb
SUBDIR += py-akismet
SUBDIR += py-aniso8601
SUBDIR += py-anonfunc
SUBDIR += py-anyconfig
SUBDIR += py-anyjson
SUBDIR += py-apache_conf_parser
SUBDIR += py-apipkg
SUBDIR += py-appdirs
SUBDIR += py-application
SUBDIR += py-apptools
SUBDIR += py-apscheduler
SUBDIR += py-archetypes.querywidget
SUBDIR += py-archetypes.referencebrowserwidget
SUBDIR += py-archetypes.schemaextender
SUBDIR += py-argcomplete
SUBDIR += py-argh
SUBDIR += py-args
SUBDIR += py-arrow
SUBDIR += py-aspects
SUBDIR += py-aspyct
SUBDIR += py-astor
SUBDIR += py-astroid
SUBDIR += py-asyncio
SUBDIR += py-atomiclong
SUBDIR += py-atomicwrites
SUBDIR += py-attrs
SUBDIR += py-automaton
SUBDIR += py-avro
SUBDIR += py-babel
SUBDIR += py-babelfish
SUBDIR += py-backports.functools_lru_cache
SUBDIR += py-backports.shutil_get_terminal_size
SUBDIR += py-backports_abc
SUBDIR += py-bandit
SUBDIR += py-bcdoc
SUBDIR += py-billiard
SUBDIR += py-binplist
SUBDIR += py-biplist
SUBDIR += py-bison
SUBDIR += py-bitarray
SUBDIR += py-bitstring
SUBDIR += py-blessings
SUBDIR += py-blinker
SUBDIR += py-blist
SUBDIR += py-bluelet
SUBDIR += py-boto
SUBDIR += py-botocore
SUBDIR += py-cachetools
SUBDIR += py-calendar
SUBDIR += py-canonicaljson
SUBDIR += py-capstone
SUBDIR += py-castellan
SUBDIR += py-cclib
SUBDIR += py-celery
SUBDIR += py-cffi
SUBDIR += py-cfgparse
SUBDIR += py-chainmap
SUBDIR += py-characteristic
SUBDIR += py-check-manifest
SUBDIR += py-cheetah
SUBDIR += py-ciphon
SUBDIR += py-circuits
SUBDIR += py-cjson
SUBDIR += py-cld
SUBDIR += py-cliapp
SUBDIR += py-click
SUBDIR += py-click-log
SUBDIR += py-click-threading
SUBDIR += py-cliff
SUBDIR += py-clint
SUBDIR += py-clonedigger
SUBDIR += py-cloudpickle
SUBDIR += py-cluster
SUBDIR += py-cmd2
SUBDIR += py-cmdln
SUBDIR += py-cmdtest
SUBDIR += py-codecov
SUBDIR += py-codegen
SUBDIR += py-cog
SUBDIR += py-coil
SUBDIR += py-collective.monkeypatcher
SUBDIR += py-collective.z3cform.datetimewidget
SUBDIR += py-colorama
SUBDIR += py-colorlog
SUBDIR += py-columnize
SUBDIR += py-conditional
SUBDIR += py-configargparse
SUBDIR += py-configobj
SUBDIR += py-configparser
SUBDIR += py-constantly
SUBDIR += py-construct
SUBDIR += py-contextlib2
SUBDIR += py-country
SUBDIR += py-cov-core
SUBDIR += py-coverage
SUBDIR += py-crank
SUBDIR += py-crcmod
SUBDIR += py-ctags
SUBDIR += py-cuisine
SUBDIR += py-cursive
SUBDIR += py-curtsies
SUBDIR += py-cxx
SUBDIR += py-cycler
SUBDIR += py-d2to1
SUBDIR += py-daemon
SUBDIR += py-daemonize
SUBDIR += py-daemons
SUBDIR += py-dal
SUBDIR += py-darcsver
SUBDIR += py-darts.util.lru
SUBDIR += py-dateutil
SUBDIR += py-dbus
SUBDIR += py-debtcollector
SUBDIR += py-decorator
SUBDIR += py-decoratortools
SUBDIR += py-defusedxml
SUBDIR += py-delfick_error
SUBDIR += py-deliciousapi
SUBDIR += py-demjson
SUBDIR += py-dexml
SUBDIR += py-dialog
SUBDIR += py-diazo
SUBDIR += py-dill
SUBDIR += py-dirspec
SUBDIR += py-distorm
SUBDIR += py-django-rq
SUBDIR += py-django-rq-dashboard
SUBDIR += py-django-tastypie-mongoengine
SUBDIR += py-django16-tastypie-mongoengine
SUBDIR += py-docker-py
SUBDIR += py-docopt
SUBDIR += py-dogpile.cache
SUBDIR += py-doit
SUBDIR += py-durus
SUBDIR += py-dynrules
SUBDIR += py-efilter
SUBDIR += py-efl
SUBDIR += py-eggtestinfo
SUBDIR += py-entrypoints
SUBDIR += py-enum34
SUBDIR += py-envisage
SUBDIR += py-epdb
SUBDIR += py-epsilon
SUBDIR += py-evdev
SUBDIR += py-event
SUBDIR += py-exam
SUBDIR += py-extras
SUBDIR += py-extremes
SUBDIR += py-ezpyinline
SUBDIR += py-fabric
SUBDIR += py-fabric3
SUBDIR += py-fake-factory
SUBDIR += py-fam
SUBDIR += py-fasteners
SUBDIR += py-fastimport
SUBDIR += py-filemagic
SUBDIR += py-fileutils
SUBDIR += py-five.customerize
SUBDIR += py-five.formlib
SUBDIR += py-five.globalrequest
SUBDIR += py-five.localsitemanager
SUBDIR += py-flake8
SUBDIR += py-flake8-builtins
SUBDIR += py-flake8-docstrings
SUBDIR += py-flake8-import-order
SUBDIR += py-flake8-polyfill
SUBDIR += py-flake8-quotes
SUBDIR += py-flask-babel
SUBDIR += py-flexmock
SUBDIR += py-foolscap
SUBDIR += py-fortran
SUBDIR += py-freebsd
SUBDIR += py-freenas.dispatcher
SUBDIR += py-freenas.utils
SUBDIR += py-freezegun
SUBDIR += py-frozendict
SUBDIR += py-fs
SUBDIR += py-fsm
SUBDIR += py-fudge
SUBDIR += py-funcparserlib
SUBDIR += py-funcsigs
SUBDIR += py-functools32
SUBDIR += py-fusefs
SUBDIR += py-fusepy
SUBDIR += py-future
SUBDIR += py-futures
SUBDIR += py-futurist
SUBDIR += py-game
SUBDIR += py-game_sdl2
SUBDIR += py-gamin
SUBDIR += py-gdata
SUBDIR += py-gearman
SUBDIR += py-generate
SUBDIR += py-geojson
SUBDIR += py-geotypes
SUBDIR += py-gevent
SUBDIR += py-git-up
SUBDIR += py-gitdb
SUBDIR += py-gitless
SUBDIR += py-gitosis
SUBDIR += py-gitpython
SUBDIR += py-glance-store
SUBDIR += py-glob2
SUBDIR += py-gobject
SUBDIR += py-gobject3
SUBDIR += py-google-apputils
SUBDIR += py-grab
SUBDIR += py-greenlet
SUBDIR += py-grizzled
SUBDIR += py-grouch
SUBDIR += py-gyp
SUBDIR += py-hash_ring
SUBDIR += py-hghooks
SUBDIR += py-hgsubversion
SUBDIR += py-hgtools
SUBDIR += py-http-prompt
SUBDIR += py-humanize
SUBDIR += py-hypothesis
SUBDIR += py-icalendar
SUBDIR += py-ice
SUBDIR += py-incremental
SUBDIR += py-inflect
SUBDIR += py-iniparse
SUBDIR += py-initgroups
SUBDIR += py-instant
SUBDIR += py-interface
SUBDIR += py-intervaltree
SUBDIR += py-invoke
SUBDIR += py-ioflo
SUBDIR += py-ipaddr
SUBDIR += py-ipdb
SUBDIR += py-ipykernel
SUBDIR += py-ipython_genutils
SUBDIR += py-iso8601
SUBDIR += py-isodate
SUBDIR += py-isort
SUBDIR += py-iterpipes
SUBDIR += py-jaraco.classes
SUBDIR += py-jaraco.functools
SUBDIR += py-jaraco.itertools
SUBDIR += py-jaraco.logging
SUBDIR += py-jaraco.timing
SUBDIR += py-jaraco.util
SUBDIR += py-jcc
SUBDIR += py-jdcal
SUBDIR += py-jedi
SUBDIR += py-jellyfish
SUBDIR += py-jenkins-job-builder
SUBDIR += py-jep
SUBDIR += py-jira
SUBDIR += py-jmespath
SUBDIR += py-joblib
SUBDIR += py-jsmin
SUBDIR += py-json-py
SUBDIR += py-json-sempai
SUBDIR += py-jsonlib
SUBDIR += py-jsonlib2
SUBDIR += py-jsonpatch
SUBDIR += py-jsonpointer
SUBDIR += py-jsonrpclib
SUBDIR += py-jsonschema
SUBDIR += py-jupyter_client
SUBDIR += py-jupyter_core
SUBDIR += py-kaptan
SUBDIR += py-kayako
SUBDIR += py-kazoo
SUBDIR += py-keystoneauth1
SUBDIR += py-keystonemiddleware
SUBDIR += py-kid
SUBDIR += py-kitchen
SUBDIR += py-kjbuckets
SUBDIR += py-kqueue
SUBDIR += py-krosspython
SUBDIR += py-lazy
SUBDIR += py-lazy-object-proxy
SUBDIR += py-levenshtein
SUBDIR += py-liblarch
SUBDIR += py-libpeas
SUBDIR += py-libplist
SUBDIR += py-libusb1
SUBDIR += py-libusb115
SUBDIR += py-libvirt
SUBDIR += py-libzfs
SUBDIR += py-linecache2
SUBDIR += py-ll-core
SUBDIR += py-llfuse
SUBDIR += py-llvmlite
SUBDIR += py-lock_file
SUBDIR += py-lockfile
SUBDIR += py-log4py
SUBDIR += py-logan
SUBDIR += py-logbook
SUBDIR += py-logilab-common
SUBDIR += py-louie
SUBDIR += py-lxml
SUBDIR += py-magic
SUBDIR += py-mailcap-fix
SUBDIR += py-manuel
SUBDIR += py-matrix-angular-sdk
SUBDIR += py-mccabe
SUBDIR += py-meliae
SUBDIR += py-memory_profiler
SUBDIR += py-mercurialserver
SUBDIR += py-mez_xml
SUBDIR += py-microversion-parse
SUBDIR += py-mimeparse
SUBDIR += py-minimongo
SUBDIR += py-mock
SUBDIR += py-mongoengine
SUBDIR += py-mongokit
SUBDIR += py-monotonic
SUBDIR += py-more-itertools
SUBDIR += py-mox
SUBDIR += py-msgpack-python
SUBDIR += py-multi_key_dict
SUBDIR += py-multipledispatch
SUBDIR += py-mwlib
SUBDIR += py-mwlib.ext
SUBDIR += py-mwlib.rl
SUBDIR += py-mx-experimental
SUBDIR += py-mygpoclient
SUBDIR += py-nagioscheck
SUBDIR += py-natsort
SUBDIR += py-natural
SUBDIR += py-nbconvert
SUBDIR += py-nbformat
SUBDIR += py-ncurses
SUBDIR += py-nose
SUBDIR += py-nose-cov
SUBDIR += py-noseofyeti
SUBDIR += py-notifier
SUBDIR += py-notify
SUBDIR += py-numba
SUBDIR += py-ocempgui
SUBDIR += py-ode
SUBDIR += py-odfpy
SUBDIR += py-offtrac
SUBDIR += py-olefile
SUBDIR += py-oletools
SUBDIR += py-omnijson
SUBDIR += py-omniorb
SUBDIR += py-omniorb-3
SUBDIR += py-openstacksdk
SUBDIR += py-opster
SUBDIR += py-optik
SUBDIR += py-option_merge
SUBDIR += py-orbit
SUBDIR += py-ordered-set
SUBDIR += py-ordereddict
SUBDIR += py-os-brick
SUBDIR += py-os-client-config
SUBDIR += py-os-vif
SUBDIR += py-os-win
SUBDIR += py-osc-lib
SUBDIR += py-oslo.cache
SUBDIR += py-oslo.concurrency
SUBDIR += py-oslo.config
SUBDIR += py-oslo.context
SUBDIR += py-oslo.db
SUBDIR += py-oslo.i18n
SUBDIR += py-oslo.log
SUBDIR += py-oslo.messaging
SUBDIR += py-oslo.middleware
SUBDIR += py-oslo.policy
SUBDIR += py-oslo.privsep
SUBDIR += py-oslo.reports
SUBDIR += py-oslo.rootwrap
SUBDIR += py-oslo.serialization
SUBDIR += py-oslo.service
SUBDIR += py-oslo.utils
SUBDIR += py-oslo.versionedobjects
SUBDIR += py-oslo.vmware
SUBDIR += py-osprofiler
SUBDIR += py-palm
SUBDIR += py-parsedatetime
SUBDIR += py-path.py
SUBDIR += py-pathlib
SUBDIR += py-pathlib2
SUBDIR += py-pathtools
SUBDIR += py-paver
SUBDIR += py-pbr
SUBDIR += py-pefile
SUBDIR += py-period
SUBDIR += py-petname
SUBDIR += py-pex
SUBDIR += py-phabricator
SUBDIR += py-phonenumbers
SUBDIR += py-phply
SUBDIR += py-phpserialize
SUBDIR += py-pika
SUBDIR += py-pika-pool
SUBDIR += py-pinocchio
SUBDIR += py-pip
SUBDIR += py-pkgconfig
SUBDIR += py-plan
SUBDIR += py-plex
SUBDIR += py-pluggy
SUBDIR += py-ply
SUBDIR += py-podcastparser
SUBDIR += py-polib
SUBDIR += py-positional
SUBDIR += py-posix_ipc
SUBDIR += py-pp
SUBDIR += py-pqueue
SUBDIR += py-pretend
SUBDIR += py-prettytable
SUBDIR += py-prioritized_methods
SUBDIR += py-prompt_toolkit
SUBDIR += py-protobuf
SUBDIR += py-protocols
SUBDIR += py-protocols-devel
SUBDIR += py-ptrace
SUBDIR += py-pudb
SUBDIR += py-px
SUBDIR += py-py
SUBDIR += py-pyasn1
SUBDIR += py-pyasn1-modules
SUBDIR += py-pycadf
SUBDIR += py-pycalendar
SUBDIR += py-pycallgraph
SUBDIR += py-pycapsicum
SUBDIR += py-pycerberus
SUBDIR += py-pycmd
SUBDIR += py-pycodestyle
SUBDIR += py-pycparser
SUBDIR += py-pydenticon
SUBDIR += py-pydocstyle
SUBDIR += py-pydoop
SUBDIR += py-pyechonest
SUBDIR += py-pyee
SUBDIR += py-pyelftools
SUBDIR += py-pyev
SUBDIR += py-pyface
SUBDIR += py-pyflakes
SUBDIR += py-pygit2
SUBDIR += py-pygithub
SUBDIR += py-pygpx
SUBDIR += py-pyhashxx
SUBDIR += py-pyicu
SUBDIR += py-pyinotify
SUBDIR += py-pyinstaller
SUBDIR += py-pykde4
SUBDIR += py-pykdeuic4
SUBDIR += py-pyke
SUBDIR += py-pylru
SUBDIR += py-pylru-cache
SUBDIR += py-pymarc
SUBDIR += py-pympler
SUBDIR += py-pymtbl
SUBDIR += py-pyopencl
SUBDIR += py-pyparsing
SUBDIR += py-pyqi
SUBDIR += py-pyrfc3339
SUBDIR += py-pyro
SUBDIR += py-pyshapelib
SUBDIR += py-pystorm
SUBDIR += py-pyte
SUBDIR += py-pytemplate
SUBDIR += py-pytest
SUBDIR += py-pytest-asyncio
SUBDIR += py-pytest-cache
SUBDIR += py-pytest-capturelog
SUBDIR += py-pytest-django
SUBDIR += py-pytest-localserver
SUBDIR += py-pytest-runner
SUBDIR += py-pytest-timeout
SUBDIR += py-pytest-tornado
SUBDIR += py-pytest-xdist
SUBDIR += py-python-bugzilla
SUBDIR += py-python-distutils-extra
SUBDIR += py-python-editor
SUBDIR += py-python-gflags
SUBDIR += py-python-gist
SUBDIR += py-python-jenkins
SUBDIR += py-python-magic
SUBDIR += py-python-pcre
SUBDIR += py-python-statsd
SUBDIR += py-python2-pythondialog
SUBDIR += py-pythonbrew
SUBDIR += py-pytimeparse
SUBDIR += py-pytools
SUBDIR += py-pytrie
SUBDIR += py-pytvmaze
SUBDIR += py-pytz
SUBDIR += py-pyutil
SUBDIR += py-pyvalid
SUBDIR += py-pyvisa
SUBDIR += py-pyvisa-py
SUBDIR += py-pyxml2obj
SUBDIR += py-qpid
SUBDIR += py-qserve
SUBDIR += py-qt4
SUBDIR += py-qt4-assistant
SUBDIR += py-qt4-core
SUBDIR += py-qt4-dbus
SUBDIR += py-qt4-dbussupport
SUBDIR += py-qt4-declarative
SUBDIR += py-qt4-designer
SUBDIR += py-qt4-designerplugin
SUBDIR += py-qt4-help
SUBDIR += py-qt4-qscintilla2
SUBDIR += py-qt4-script
SUBDIR += py-qt4-scripttools
SUBDIR += py-qt4-test
SUBDIR += py-qt5
SUBDIR += py-qt5-core
SUBDIR += py-qt5-dbus
SUBDIR += py-qt5-dbussupport
SUBDIR += py-qt5-designer
SUBDIR += py-qt5-designerplugin
SUBDIR += py-qt5-help
SUBDIR += py-qt5-qscintilla2
SUBDIR += py-qt5-test
SUBDIR += py-rauth
SUBDIR += py-raven
SUBDIR += py-rcsparse
SUBDIR += py-rebulk
SUBDIR += py-rednose
SUBDIR += py-repl
SUBDIR += py-repoze.lru
SUBDIR += py-repoze.sphinx.autointerface
SUBDIR += py-repoze.tm2
SUBDIR += py-repoze.what
SUBDIR += py-repoze.what-pylons
SUBDIR += py-repoze.who
SUBDIR += py-repoze.who-friendlyform
SUBDIR += py-repoze.who-testutil
SUBDIR += py-repoze.xmliter
SUBDIR += py-requestsexceptions
SUBDIR += py-resolver
SUBDIR += py-resourcepackage
SUBDIR += py-responses
SUBDIR += py-retrying
SUBDIR += py-riak_pb
SUBDIR += py-rlcompleter2
SUBDIR += py-robotframework
SUBDIR += py-robotframework-pabot
SUBDIR += py-robotframework-ride
SUBDIR += py-robotframework-selenium2library
SUBDIR += py-robotremoteserver
SUBDIR += py-rope
SUBDIR += py-rose
SUBDIR += py-roxlib
SUBDIR += py-rply
SUBDIR += py-rq
SUBDIR += py-rtree
SUBDIR += py-rtslib-fb
SUBDIR += py-ruamel.ordereddict
SUBDIR += py-ruamel.yaml
SUBDIR += py-rubymarshal
SUBDIR += py-ruledispatch
SUBDIR += py-sanetime
SUBDIR += py-sarge
SUBDIR += py-scripttest
SUBDIR += py-sdl2
SUBDIR += py-selection
SUBDIR += py-selectors34
SUBDIR += py-semantic_version
SUBDIR += py-serpent
SUBDIR += py-setproctitle
SUBDIR += py-setuptools
SUBDIR += py-setuptools-git
SUBDIR += py-setuptools27
SUBDIR += py-setuptools33
SUBDIR += py-setuptools34
SUBDIR += py-setuptools35
SUBDIR += py-setuptools36
SUBDIR += py-setuptools_darcs
SUBDIR += py-setuptools_hg
SUBDIR += py-setuptools_scm
SUBDIR += py-sh
SUBDIR += py-shapely
SUBDIR += py-should_dsl
SUBDIR += py-simpleeval
SUBDIR += py-simplegeneric
SUBDIR += py-simplejson
SUBDIR += py-simpleparse
SUBDIR += py-simpletal
SUBDIR += py-simpy
SUBDIR += py-singledispatch
SUBDIR += py-sip
SUBDIR += py-six
SUBDIR += py-smmap
SUBDIR += py-sortedcontainers
SUBDIR += py-sourcemap
SUBDIR += py-spark
SUBDIR += py-speaklater
SUBDIR += py-spyder
SUBDIR += py-sqlcc
SUBDIR += py-statgrab
SUBDIR += py-statsd
SUBDIR += py-stdnum
SUBDIR += py-stevedore
SUBDIR += py-stopit
SUBDIR += py-streamparse
SUBDIR += py-structlog
SUBDIR += py-stsci.distutils
SUBDIR += py-subversion
SUBDIR += py-subvertpy
SUBDIR += py-sure
SUBDIR += py-sysctl
SUBDIR += py-sysv_ipc
SUBDIR += py-tables
SUBDIR += py-tabulate
SUBDIR += py-tapi
SUBDIR += py-tarantool-queue
SUBDIR += py-taskflow
SUBDIR += py-tblib
SUBDIR += py-tconfpy
SUBDIR += py-tempora
SUBDIR += py-tempstorage
SUBDIR += py-tenacity
SUBDIR += py-termcolor
SUBDIR += py-terminable_thread
SUBDIR += py-termstyle
SUBDIR += py-testgears
SUBDIR += py-testoob
SUBDIR += py-testpath
SUBDIR += py-testtools
SUBDIR += py-tgMochiKit
SUBDIR += py-thrift
SUBDIR += py-thriftpy
SUBDIR += py-timelib
SUBDIR += py-tinyarray
SUBDIR += py-tinyrpc
SUBDIR += py-tipper
SUBDIR += py-tooz
SUBDIR += py-total-ordering
SUBDIR += py-tox
SUBDIR += py-trace2html
SUBDIR += py-traceback2
SUBDIR += py-traitlets
SUBDIR += py-traits
SUBDIR += py-transaction
SUBDIR += py-trollius
SUBDIR += py-ttystatus
SUBDIR += py-turbocheetah
SUBDIR += py-turbojson
SUBDIR += py-turbojson11
SUBDIR += py-turbokid
SUBDIR += py-tvrage
SUBDIR += py-tw.forms
SUBDIR += py-twext
SUBDIR += py-twiggy
SUBDIR += py-twilio
SUBDIR += py-twine
SUBDIR += py-twisted
SUBDIR += py-twisted152
SUBDIR += py-twistedCore
SUBDIR += py-twistedFlow
SUBDIR += py-twistedRunner
SUBDIR += py-txaio
SUBDIR += py-typed-ast
SUBDIR += py-typing
SUBDIR += py-tzlocal
SUBDIR += py-ua_parser
SUBDIR += py-ujson
SUBDIR += py-uncompyle2
SUBDIR += py-unicodecsv
SUBDIR += py-unipath
SUBDIR += py-unittest2
SUBDIR += py-unpaddedbase64
SUBDIR += py-update_checker
SUBDIR += py-urlimport
SUBDIR += py-urwid
SUBDIR += py-urwidtrees
SUBDIR += py-usb
SUBDIR += py-user_agents
SUBDIR += py-utils
SUBDIR += py-validictory
SUBDIR += py-vcrpy
SUBDIR += py-vcversioner
SUBDIR += py-venusian
SUBDIR += py-versiontools
SUBDIR += py-virtualenv
SUBDIR += py-virtualenv-clone
SUBDIR += py-virtualenvwrapper
SUBDIR += py-voluptuous
SUBDIR += py-warlock
SUBDIR += py-watchdog
SUBDIR += py-wcwidth
SUBDIR += py-weakrefmethod
SUBDIR += py-weblib
SUBDIR += py-websockify
SUBDIR += py-wheel
SUBDIR += py-wrapt
SUBDIR += py-wsgi_intercept
SUBDIR += py-wsgi_xmlrpc
SUBDIR += py-wsgitools
SUBDIR += py-wsgiutils
SUBDIR += py-wsme
SUBDIR += py-xattr
SUBDIR += py-xcaplib
SUBDIR += py-xdg
SUBDIR += py-xerox
SUBDIR += py-xmltodict
SUBDIR += py-xoltar-toolkit
SUBDIR += py-xxhash
SUBDIR += py-yaml
SUBDIR += py-yandex-money-sdk
SUBDIR += py-yappi
SUBDIR += py-yapps2
SUBDIR += py-ydbf
SUBDIR += py-yum-metadata-parser
SUBDIR += py-yunomi
SUBDIR += py-z3c.autoinclude
SUBDIR += py-z3c.batching
SUBDIR += py-z3c.caching
SUBDIR += py-z3c.form
SUBDIR += py-z3c.formwidget.query
SUBDIR += py-z3c.zcmlhook
SUBDIR += py-zExceptions
SUBDIR += py-zLOG
SUBDIR += py-zc.buildout
SUBDIR += py-zclockfile
SUBDIR += py-zconfig
SUBDIR += py-zkpython
SUBDIR += py-zope.annotation
SUBDIR += py-zope.app.applicationcontrol
SUBDIR += py-zope.app.appsetup
SUBDIR += py-zope.app.basicskin
SUBDIR += py-zope.app.broken
SUBDIR += py-zope.app.cache
SUBDIR += py-zope.app.component
SUBDIR += py-zope.app.container
SUBDIR += py-zope.app.content
SUBDIR += py-zope.app.debug
SUBDIR += py-zope.app.dependable
SUBDIR += py-zope.app.error
SUBDIR += py-zope.app.exception
SUBDIR += py-zope.app.file
SUBDIR += py-zope.app.folder
SUBDIR += py-zope.app.form
SUBDIR += py-zope.app.generations
SUBDIR += py-zope.app.http
SUBDIR += py-zope.app.pagetemplate
SUBDIR += py-zope.app.publication
SUBDIR += py-zope.app.publisher
SUBDIR += py-zope.app.renderer
SUBDIR += py-zope.app.rotterdam
SUBDIR += py-zope.app.schema
SUBDIR += py-zope.app.testing
SUBDIR += py-zope.app.zcmlfiles
SUBDIR += py-zope.app.zopeappgenerations
SUBDIR += py-zope.applicationcontrol
SUBDIR += py-zope.broken
SUBDIR += py-zope.browser
SUBDIR += py-zope.browsermenu
SUBDIR += py-zope.browserpage
SUBDIR += py-zope.browserresource
SUBDIR += py-zope.cachedescriptors
SUBDIR += py-zope.component
SUBDIR += py-zope.componentvocabulary
SUBDIR += py-zope.configuration
SUBDIR += py-zope.container
SUBDIR += py-zope.contentprovider
SUBDIR += py-zope.contenttype
SUBDIR += py-zope.copy
SUBDIR += py-zope.copypastemove
SUBDIR += py-zope.datetime
SUBDIR += py-zope.deferredimport
SUBDIR += py-zope.deprecation
SUBDIR += py-zope.dottedname
SUBDIR += py-zope.dublincore
SUBDIR += py-zope.error
SUBDIR += py-zope.event
SUBDIR += py-zope.exceptions
SUBDIR += py-zope.filerepresentation
SUBDIR += py-zope.formlib
SUBDIR += py-zope.generations
SUBDIR += py-zope.globalrequest
SUBDIR += py-zope.i18n
SUBDIR += py-zope.interface
SUBDIR += py-zope.lifecycleevent
SUBDIR += py-zope.location
SUBDIR += py-zope.minmax
SUBDIR += py-zope.pagetemplate
SUBDIR += py-zope.processlifetime
SUBDIR += py-zope.ptresource
SUBDIR += py-zope.publisher
SUBDIR += py-zope.ramcache
SUBDIR += py-zope.schema
SUBDIR += py-zope.sequencesort
SUBDIR += py-zope.site
SUBDIR += py-zope.size
SUBDIR += py-zope.tales
SUBDIR += py-zope.testbrowser
SUBDIR += py-zope.testing
SUBDIR += py-zope.traversing
SUBDIR += py-zope.viewlet
SUBDIR += py3-Jinja2
SUBDIR += py3-babel
SUBDIR += py3-click
SUBDIR += py3-dbus
SUBDIR += py3-flake8
SUBDIR += py3-flake8-builtins
SUBDIR += py3-flake8-docstrings
SUBDIR += py3-flake8-import-order
SUBDIR += py3-flake8-polyfill
SUBDIR += py3-flake8-quotes
SUBDIR += py3-gobject3
SUBDIR += py3-hgtools
SUBDIR += py3-jsonschema
SUBDIR += py3-libpeas
SUBDIR += py3-lxml
SUBDIR += py3-mccabe
SUBDIR += py3-nose
SUBDIR += py3-py
SUBDIR += py3-pycodestyle
SUBDIR += py3-pydocstyle
SUBDIR += py3-pyflakes
SUBDIR += py3-pyicu
SUBDIR += py3-pylru-cache
SUBDIR += py3-pytest
SUBDIR += py3-pytest-runner
SUBDIR += py3-python-magic
SUBDIR += py3-pytz
SUBDIR += py3-rubymarshal
SUBDIR += py3-simplejson
SUBDIR += py3-threema-msgapi
SUBDIR += py3-vcversioner
SUBDIR += py3-xdg
SUBDIR += py3-yaml
SUBDIR += py_static_check
SUBDIR += pybugz
SUBDIR += pychecker
SUBDIR += pycount
SUBDIR += pydbus-common
SUBDIR += pygobject3-common
SUBDIR += pylint
SUBDIR += pymacs
SUBDIR += pyobfuscate
SUBDIR += pypersrc
SUBDIR += pyrex
SUBDIR += pyside
SUBDIR += pyside-tools
SUBDIR += pyst
SUBDIR += pysvn
SUBDIR += pythk
SUBDIR += pythontidy
SUBDIR += qbs
SUBDIR += qbzr
SUBDIR += qca
SUBDIR += qca-qt5
SUBDIR += qconf
SUBDIR += qct
SUBDIR += qdevelop
SUBDIR += qgit
SUBDIR += qjson
SUBDIR += qjson-qt5
SUBDIR += qmake
- SUBDIR += qmake4
- SUBDIR += qmake5
SUBDIR += qprog
SUBDIR += qross
SUBDIR += qscintilla2
SUBDIR += qscintilla2-designerplugin
SUBDIR += qscintilla2-designerplugin-qt5
SUBDIR += qscintilla2-qt5
SUBDIR += qt-maybe
SUBDIR += qt4
SUBDIR += qt4-assistant
SUBDIR += qt4-assistant-adp
SUBDIR += qt4-corelib
+ SUBDIR += qt4-dbus
SUBDIR += qt4-designer
SUBDIR += qt4-help
SUBDIR += qt4-help-tools
SUBDIR += qt4-libqtassistantclient
SUBDIR += qt4-linguist
SUBDIR += qt4-linguisttools
SUBDIR += qt4-makeqpf
SUBDIR += qt4-moc
SUBDIR += qt4-porting
SUBDIR += qt4-qdbusviewer
SUBDIR += qt4-qdoc3
+ SUBDIR += qt4-qmake
SUBDIR += qt4-qmlviewer
SUBDIR += qt4-qt3support
SUBDIR += qt4-qtsolutions-singleapplication
SUBDIR += qt4-qtsolutions-soap
SUBDIR += qt4-qvfb
SUBDIR += qt4-rcc
SUBDIR += qt4-script
SUBDIR += qt4-scripttools
SUBDIR += qt4-testlib
SUBDIR += qt4-uic
SUBDIR += qt4-uic3
SUBDIR += qt5
SUBDIR += qt5-assistant
SUBDIR += qt5-buildtools
SUBDIR += qt5-concurrent
SUBDIR += qt5-core
+ SUBDIR += qt5-dbus
SUBDIR += qt5-designer
SUBDIR += qt5-help
SUBDIR += qt5-linguist
SUBDIR += qt5-linguisttools
SUBDIR += qt5-location
SUBDIR += qt5-qdbus
SUBDIR += qt5-qdbusviewer
SUBDIR += qt5-qdoc
SUBDIR += qt5-qdoc-data
+ SUBDIR += qt5-qmake
SUBDIR += qt5-script
SUBDIR += qt5-scripttools
+ SUBDIR += qt5-scxml
SUBDIR += qt5-testlib
SUBDIR += qt5-uitools
SUBDIR += qtcreator
SUBDIR += qtscriptgenerator
SUBDIR += quickcheck++
SUBDIR += quilt
SUBDIR += radare2
SUBDIR += ragel
SUBDIR += raknet
SUBDIR += rapidjson
SUBDIR += rbenv
SUBDIR += rbtools
SUBDIR += rclint
SUBDIR += rcs
SUBDIR += rcs57
SUBDIR += re2
SUBDIR += re2c
SUBDIR += readline
SUBDIR += rebar
SUBDIR += rebar3
SUBDIR += regexx
SUBDIR += regexxer
SUBDIR += relx
SUBDIR += remake
SUBDIR += renpy
SUBDIR += renpy6
SUBDIR += replay
SUBDIR += rhtvision
SUBDIR += riscv64-binutils
SUBDIR += riscv64-gcc
SUBDIR += riscv64-xtoolchain-gcc
SUBDIR += rlog
SUBDIR += rlvm
SUBDIR += rlwrap
SUBDIR += roboctl
SUBDIR += robodoc
SUBDIR += root-doc
SUBDIR += rote
SUBDIR += rpc2
SUBDIR += rpm-spec-mode.el
SUBDIR += rsvndump
SUBDIR += rth
SUBDIR += ruby-bsearch
SUBDIR += ruby-build
SUBDIR += ruby-calendar
SUBDIR += ruby-date2
SUBDIR += ruby-gems
SUBDIR += ruby-korundum
SUBDIR += ruby-krossruby
SUBDIR += ruby-ncurses
SUBDIR += ruby-qtruby
SUBDIR += ruby-rbbr
SUBDIR += ruby-rbprof
SUBDIR += ruby-sdl
SUBDIR += ruby-setup.rb
SUBDIR += ruby-subversion
SUBDIR += rubygem-CFPropertyList
SUBDIR += rubygem-abstract
SUBDIR += rubygem-actionpack-action_caching
SUBDIR += rubygem-actionview4
SUBDIR += rubygem-actionview5
SUBDIR += rubygem-active_scaffold
SUBDIR += rubygem-activejob4
SUBDIR += rubygem-activejob5
SUBDIR += rubygem-activemessaging
SUBDIR += rubygem-activerecord-deprecated_finders
SUBDIR += rubygem-activesupport4
SUBDIR += rubygem-activesupport5
SUBDIR += rubygem-akismet
SUBDIR += rubygem-algebrick
SUBDIR += rubygem-algorithms
SUBDIR += rubygem-allison
SUBDIR += rubygem-analogger
SUBDIR += rubygem-annoy
SUBDIR += rubygem-ansi
SUBDIR += rubygem-apipie-bindings
SUBDIR += rubygem-apipie-params
SUBDIR += rubygem-app_config
SUBDIR += rubygem-arr-pm
SUBDIR += rubygem-arrayfields
SUBDIR += rubygem-ascii85
SUBDIR += rubygem-asetus
SUBDIR += rubygem-aspectr
SUBDIR += rubygem-ast
SUBDIR += rubygem-astrolabe
SUBDIR += rubygem-atomic
SUBDIR += rubygem-attic
SUBDIR += rubygem-attr_required
SUBDIR += rubygem-authlogic
SUBDIR += rubygem-awesome_print
SUBDIR += rubygem-aws-sdk
SUBDIR += rubygem-aws-sdk-core
SUBDIR += rubygem-aws-sdk-resources
SUBDIR += rubygem-aws-sdk-v1
SUBDIR += rubygem-aws-sigv4
SUBDIR += rubygem-axiom-types
SUBDIR += rubygem-backports
SUBDIR += rubygem-bacon
SUBDIR += rubygem-benelux
SUBDIR += rubygem-bin_utils
SUBDIR += rubygem-bindata
SUBDIR += rubygem-binding_of_caller
SUBDIR += rubygem-bit-struct
SUBDIR += rubygem-blankslate
SUBDIR += rubygem-blobstore_client
SUBDIR += rubygem-blockenspiel
SUBDIR += rubygem-bones
SUBDIR += rubygem-bosh-template
SUBDIR += rubygem-bosh_common
SUBDIR += rubygem-bson
SUBDIR += rubygem-bson1
SUBDIR += rubygem-buftok
SUBDIR += rubygem-bugspots
SUBDIR += rubygem-builder
SUBDIR += rubygem-builder32
SUBDIR += rubygem-byebug
SUBDIR += rubygem-cabin
SUBDIR += rubygem-caesars
SUBDIR += rubygem-cairo-gobject
SUBDIR += rubygem-capybara
SUBDIR += rubygem-celluloid
SUBDIR += rubygem-celluloid-essentials
SUBDIR += rubygem-celluloid-extras
SUBDIR += rubygem-celluloid-fsm
SUBDIR += rubygem-celluloid-io
SUBDIR += rubygem-celluloid-pool
SUBDIR += rubygem-celluloid-supervision
SUBDIR += rubygem-cf-uaa-lib
SUBDIR += rubygem-childprocess
SUBDIR += rubygem-chronic
SUBDIR += rubygem-chronic_duration
SUBDIR += rubygem-clamp
SUBDIR += rubygem-classifier
SUBDIR += rubygem-classifier-reborn
SUBDIR += rubygem-climate_control
SUBDIR += rubygem-clio
SUBDIR += rubygem-cliprompt
SUBDIR += rubygem-cloudfiles
SUBDIR += rubygem-cocaine
SUBDIR += rubygem-coercible
SUBDIR += rubygem-coffee-rails4
SUBDIR += rubygem-coffee-rails41
SUBDIR += rubygem-coffee-script
SUBDIR += rubygem-coffee-script-source
SUBDIR += rubygem-colorize
SUBDIR += rubygem-columnize
SUBDIR += rubygem-commander
SUBDIR += rubygem-concurrent-ruby
SUBDIR += rubygem-concurrent-ruby-edge
SUBDIR += rubygem-configatron
SUBDIR += rubygem-configstruct
SUBDIR += rubygem-configuration
SUBDIR += rubygem-cool.io
SUBDIR += rubygem-corefines
SUBDIR += rubygem-crack
SUBDIR += rubygem-cri
SUBDIR += rubygem-cucumber
SUBDIR += rubygem-cucumber-core
SUBDIR += rubygem-cucumber-wire
SUBDIR += rubygem-curses
SUBDIR += rubygem-cyoi
SUBDIR += rubygem-daemon_controller
SUBDIR += rubygem-daemons
SUBDIR += rubygem-debug_inspector
SUBDIR += rubygem-debugger-linecache
SUBDIR += rubygem-debugger-xml
SUBDIR += rubygem-deep_merge
SUBDIR += rubygem-deep_test
SUBDIR += rubygem-deface
SUBDIR += rubygem-default_value_for
SUBDIR += rubygem-delayed_job
SUBDIR += rubygem-delayer
SUBDIR += rubygem-delayer-deferred
SUBDIR += rubygem-deprecated
SUBDIR += rubygem-deprecated2
SUBDIR += rubygem-descendants_tracker
SUBDIR += rubygem-devise
SUBDIR += rubygem-devise-rails4
SUBDIR += rubygem-directory_watcher
SUBDIR += rubygem-ditz
SUBDIR += rubygem-docile
SUBDIR += rubygem-drydock
SUBDIR += rubygem-dynflow
SUBDIR += rubygem-edavis10-object_daddy
SUBDIR += rubygem-elif
SUBDIR += rubygem-enumerize
SUBDIR += rubygem-equalizer
SUBDIR += rubygem-errand
SUBDIR += rubygem-event-bus
SUBDIR += rubygem-eventmachine
SUBDIR += rubygem-excon
SUBDIR += rubygem-execjs
SUBDIR += rubygem-extlib
SUBDIR += rubygem-extras
SUBDIR += rubygem-facets
SUBDIR += rubygem-faraday_middleware-multi_json
SUBDIR += rubygem-fast-stemmer
SUBDIR += rubygem-fast_gettext
SUBDIR += rubygem-fast_stack
SUBDIR += rubygem-fast_xor
SUBDIR += rubygem-fastercsv
SUBDIR += rubygem-fastri
SUBDIR += rubygem-fastthread
SUBDIR += rubygem-fattr
SUBDIR += rubygem-ffi
SUBDIR += rubygem-ffi-compiler
SUBDIR += rubygem-ffi-yajl
SUBDIR += rubygem-file-tail
SUBDIR += rubygem-filesize
SUBDIR += rubygem-flexmock
SUBDIR += rubygem-fluent-logger
SUBDIR += rubygem-fog
SUBDIR += rubygem-fog-core
SUBDIR += rubygem-fog-json
SUBDIR += rubygem-font-awesome-rails
SUBDIR += rubygem-font-awesome-rails-rails4
SUBDIR += rubygem-foreigner
SUBDIR += rubygem-foreman
SUBDIR += rubygem-formatador
SUBDIR += rubygem-forwardable-extended
SUBDIR += rubygem-gdata
SUBDIR += rubygem-gem-compare
SUBDIR += rubygem-gem_plugin
SUBDIR += rubygem-gemcutter
SUBDIR += rubygem-gemnasium-gitlab-service
SUBDIR += rubygem-gemnasium-parser
SUBDIR += rubygem-gems
SUBDIR += rubygem-generator_spec
SUBDIR += rubygem-generator_spec-rails4
SUBDIR += rubygem-georuby
SUBDIR += rubygem-get_process_mem
SUBDIR += rubygem-getopt
SUBDIR += rubygem-gettext
SUBDIR += rubygem-gettext-setup
SUBDIR += rubygem-gh
SUBDIR += rubygem-gibbler
SUBDIR += rubygem-gio2
SUBDIR += rubygem-git
SUBDIR += rubygem-git-version-bump
SUBDIR += rubygem-github_api
SUBDIR += rubygem-gitlab-pygments.rb
SUBDIR += rubygem-gitlab_git
SUBDIR += rubygem-gitlab_meta
SUBDIR += rubygem-glib2
SUBDIR += rubygem-gobject-introspection
SUBDIR += rubygem-graf
SUBDIR += rubygem-grape
SUBDIR += rubygem-grape-entity
SUBDIR += rubygem-grape-swagger
SUBDIR += rubygem-grit
SUBDIR += rubygem-guess_html_encoding
SUBDIR += rubygem-gyoku
SUBDIR += rubygem-hamster
SUBDIR += rubygem-hashdiff
SUBDIR += rubygem-hashery
SUBDIR += rubygem-hashie
SUBDIR += rubygem-hashie2
SUBDIR += rubygem-health_check
SUBDIR += rubygem-highline
SUBDIR += rubygem-hike
SUBDIR += rubygem-hitimes
SUBDIR += rubygem-hoe
SUBDIR += rubygem-holidays
SUBDIR += rubygem-i18n
SUBDIR += rubygem-icalendar
SUBDIR += rubygem-ice_cube
SUBDIR += rubygem-ice_nine
SUBDIR += rubygem-inflecto
SUBDIR += rubygem-insist
SUBDIR += rubygem-instance_storage
SUBDIR += rubygem-interact
SUBDIR += rubygem-io-like
SUBDIR += rubygem-iobuffer
SUBDIR += rubygem-jammit
SUBDIR += rubygem-jasmine-core
SUBDIR += rubygem-jbuilder
SUBDIR += rubygem-jekyll-coffeescript
SUBDIR += rubygem-jeweler
SUBDIR += rubygem-jmespath
SUBDIR += rubygem-jquery-ui-themes
SUBDIR += rubygem-jruby-jars
SUBDIR += rubygem-json
SUBDIR += rubygem-json1
SUBDIR += rubygem-json_pure
SUBDIR += rubygem-json_pure1
SUBDIR += rubygem-kafo
SUBDIR += rubygem-kafo_parsers
SUBDIR += rubygem-kafo_wizards
SUBDIR += rubygem-kgio
SUBDIR += rubygem-launchy
SUBDIR += rubygem-launchy22
SUBDIR += rubygem-lazy_priority_queue
SUBDIR += rubygem-librarian
SUBDIR += rubygem-librarianp
SUBDIR += rubygem-libyajl2
SUBDIR += rubygem-licensee
SUBDIR += rubygem-listen
SUBDIR += rubygem-little-plugger
SUBDIR += rubygem-locale
SUBDIR += rubygem-lockfile
SUBDIR += rubygem-logging
SUBDIR += rubygem-logster
SUBDIR += rubygem-loquacious
SUBDIR += rubygem-lru_redux
SUBDIR += rubygem-lumberjack
SUBDIR += rubygem-main
SUBDIR += rubygem-map
SUBDIR += rubygem-memoist
SUBDIR += rubygem-memoizable
SUBDIR += rubygem-memoize
SUBDIR += rubygem-mercenary
SUBDIR += rubygem-message_bus
SUBDIR += rubygem-metaclass
SUBDIR += rubygem-metaid
SUBDIR += rubygem-metasm
SUBDIR += rubygem-method_source
SUBDIR += rubygem-micromachine
SUBDIR += rubygem-minitest
SUBDIR += rubygem-minitest4
SUBDIR += rubygem-mixlib-authentication
SUBDIR += rubygem-mixlib-cli
SUBDIR += rubygem-mixlib-config
SUBDIR += rubygem-mixlib-log
SUBDIR += rubygem-mixlib-shellout
SUBDIR += rubygem-mkrf
SUBDIR += rubygem-mocha
SUBDIR += rubygem-moneta
SUBDIR += rubygem-moneta06
SUBDIR += rubygem-mongo
SUBDIR += rubygem-msgpack
SUBDIR += rubygem-mspec
SUBDIR += rubygem-multi_json
SUBDIR += rubygem-multi_test
SUBDIR += rubygem-murmurhash3
SUBDIR += rubygem-mustache
SUBDIR += rubygem-mustermann
SUBDIR += rubygem-mustermann-grape
SUBDIR += rubygem-mutter
SUBDIR += rubygem-naught
SUBDIR += rubygem-needle
SUBDIR += rubygem-nenv
SUBDIR += rubygem-nesty
SUBDIR += rubygem-netaddr
SUBDIR += rubygem-newrelic-grape
SUBDIR += rubygem-newrelic_rpm
SUBDIR += rubygem-nice-ffi
SUBDIR += rubygem-nio4r
SUBDIR += rubygem-nio4r1
SUBDIR += rubygem-nori
SUBDIR += rubygem-notiffany
SUBDIR += rubygem-notify
SUBDIR += rubygem-nprogress-rails
SUBDIR += rubygem-numerizer
SUBDIR += rubygem-octopress-hooks
SUBDIR += rubygem-oj
SUBDIR += rubygem-omniauth_crowd
SUBDIR += rubygem-open3_backport
SUBDIR += rubygem-open4
SUBDIR += rubygem-orm_adapter
SUBDIR += rubygem-p4ruby
SUBDIR += rubygem-paint
SUBDIR += rubygem-paperclip
SUBDIR += rubygem-parser
SUBDIR += rubygem-patch_finder
SUBDIR += rubygem-pathutil
SUBDIR += rubygem-piston
SUBDIR += rubygem-pkg-config
SUBDIR += rubygem-platform
SUBDIR += rubygem-pleaserun
SUBDIR += rubygem-plist
SUBDIR += rubygem-pluggaloid
SUBDIR += rubygem-polyamorous
SUBDIR += rubygem-polyglot
SUBDIR += rubygem-popen4
SUBDIR += rubygem-posix-spawn
SUBDIR += rubygem-power_assert
SUBDIR += rubygem-powerbar
SUBDIR += rubygem-powerpack
SUBDIR += rubygem-pqueue
SUBDIR += rubygem-progressbar
SUBDIR += rubygem-protected_attributes
SUBDIR += rubygem-pry
SUBDIR += rubygem-pry-rails
SUBDIR += rubygem-pry-remote-em
SUBDIR += rubygem-ptreloaded
SUBDIR += rubygem-pygments.rb
SUBDIR += rubygem-r18n-core
SUBDIR += rubygem-racc
SUBDIR += rubygem-rack-mini-profiler
SUBDIR += rubygem-rack-raw-upload
SUBDIR += rubygem-rails-deprecated_sanitizer
SUBDIR += rubygem-rails-observers
SUBDIR += rubygem-rainbow
SUBDIR += rubygem-rake
SUBDIR += rubygem-rake-compiler
SUBDIR += rubygem-rake-contrib
SUBDIR += rubygem-ransack
SUBDIR += rubygem-rapt
SUBDIR += rubygem-rash
SUBDIR += rubygem-rb-fsevent
SUBDIR += rubygem-rb-inotify
SUBDIR += rubygem-rb-kqueue
SUBDIR += rubygem-rbtrace
SUBDIR += rubygem-rdoc
SUBDIR += rubygem-readwritesettings
SUBDIR += rubygem-recaptcha
SUBDIR += rubygem-redis-activesupport
SUBDIR += rubygem-redis-store
SUBDIR += rubygem-redmine_plugin_support
SUBDIR += rubygem-ref
SUBDIR += rubygem-request_store
SUBDIR += rubygem-require_all
SUBDIR += rubygem-retryable
SUBDIR += rubygem-rgl
SUBDIR += rubygem-rice
SUBDIR += rubygem-rodzilla
SUBDIR += rubygem-rotp
SUBDIR += rubygem-rr
SUBDIR += rubygem-rrd-ffi
SUBDIR += rubygem-rscm
SUBDIR += rubygem-rspec
SUBDIR += rubygem-rspec-core
SUBDIR += rubygem-rspec-expectations
SUBDIR += rubygem-rspec-logsplit
SUBDIR += rubygem-rspec-mocks
SUBDIR += rubygem-rspec-rails
SUBDIR += rubygem-rspec-support
SUBDIR += rubygem-rubocop
SUBDIR += rubygem-ruby-atmos-pure
SUBDIR += rubygem-ruby-bugzilla
SUBDIR += rubygem-ruby-filemagic
SUBDIR += rubygem-ruby-fogbugz
SUBDIR += rubygem-ruby-libvirt
SUBDIR += rubygem-ruby-ole
SUBDIR += rubygem-ruby-prof
SUBDIR += rubygem-ruby-progressbar
SUBDIR += rubygem-ruby-sdl-ffi
SUBDIR += rubygem-ruby2ruby
SUBDIR += rubygem-ruby_dep
SUBDIR += rubygem-ruby_parser
SUBDIR += rubygem-rubygame
SUBDIR += rubygem-rubygems-mirror
SUBDIR += rubygem-rubygems-tasks
SUBDIR += rubygem-rubygems-test
SUBDIR += rubygem-rubyinline
SUBDIR += rubygem-rubyinlineaccel
SUBDIR += rubygem-rubytree
SUBDIR += rubygem-rufus-scheduler
SUBDIR += rubygem-rugged
SUBDIR += rubygem-runt
SUBDIR += rubygem-ruport
SUBDIR += rubygem-safe_yaml
SUBDIR += rubygem-schash
SUBDIR += rubygem-sdoc
SUBDIR += rubygem-semantic_puppet
SUBDIR += rubygem-semi_semantic
SUBDIR += rubygem-sentry-raven
SUBDIR += rubygem-sequel
SUBDIR += rubygem-sequel3
SUBDIR += rubygem-settingslogic
SUBDIR += rubygem-sexp_processor
SUBDIR += rubygem-shoulda
SUBDIR += rubygem-shoulda-context
SUBDIR += rubygem-shoulda-matchers
SUBDIR += rubygem-sidekiq
SUBDIR += rubygem-sidekiq-cron
SUBDIR += rubygem-sidetiq
SUBDIR += rubygem-sigdump
SUBDIR += rubygem-simple_form
SUBDIR += rubygem-simplecov
SUBDIR += rubygem-slack-notifier
SUBDIR += rubygem-slim
SUBDIR += rubygem-slop
SUBDIR += rubygem-slop3
SUBDIR += rubygem-soap4r
SUBDIR += rubygem-spring
SUBDIR += rubygem-sprockets
SUBDIR += rubygem-sprockets-es6
SUBDIR += rubygem-sprockets-helpers
SUBDIR += rubygem-sprockets-rails
SUBDIR += rubygem-sprockets-sass
SUBDIR += rubygem-sprockets3
SUBDIR += rubygem-spruz
SUBDIR += rubygem-state_machine
SUBDIR += rubygem-state_machines
SUBDIR += rubygem-statsd
SUBDIR += rubygem-stella
SUBDIR += rubygem-stemmer
SUBDIR += rubygem-stomp
SUBDIR += rubygem-storable
SUBDIR += rubygem-stream
SUBDIR += rubygem-streetaddress
SUBDIR += rubygem-stringex
SUBDIR += rubygem-structured_warnings
SUBDIR += rubygem-stud
SUBDIR += rubygem-subexec
SUBDIR += rubygem-sugar-high
SUBDIR += rubygem-sumbur
SUBDIR += rubygem-sundawg_country_codes
SUBDIR += rubygem-svn2git
SUBDIR += rubygem-sysinfo
SUBDIR += rubygem-systemu
SUBDIR += rubygem-table_print
SUBDIR += rubygem-tdiff
SUBDIR += rubygem-templater
SUBDIR += rubygem-temple
SUBDIR += rubygem-term-ansicolor
SUBDIR += rubygem-test-unit
SUBDIR += rubygem-thor
SUBDIR += rubygem-thread_safe
SUBDIR += rubygem-thread_safe1
SUBDIR += rubygem-thrift
SUBDIR += rubygem-tilt
SUBDIR += rubygem-tilt1
SUBDIR += rubygem-timers
SUBDIR += rubygem-tins
SUBDIR += rubygem-titlecase
SUBDIR += rubygem-toml
SUBDIR += rubygem-tool
SUBDIR += rubygem-transaction-simple
SUBDIR += rubygem-travis
SUBDIR += rubygem-treetop
SUBDIR += rubygem-trollop
SUBDIR += rubygem-trollop1
SUBDIR += rubygem-turn
SUBDIR += rubygem-typed-array
SUBDIR += rubygem-tzinfo
SUBDIR += rubygem-unicode
SUBDIR += rubygem-unicode-display_width
SUBDIR += rubygem-uuid
SUBDIR += rubygem-uuidtools
SUBDIR += rubygem-validatable
SUBDIR += rubygem-versionomy
SUBDIR += rubygem-virtus
SUBDIR += rubygem-warbler
SUBDIR += rubygem-warden
SUBDIR += rubygem-wdm
SUBDIR += rubygem-web-console
SUBDIR += rubygem-web-console2
SUBDIR += rubygem-webby
SUBDIR += rubygem-windows_error
SUBDIR += rubygem-wmi-lite
SUBDIR += rubygem-xpath
SUBDIR += rubygem-yajl-ruby
SUBDIR += rubygem-yui-compressor
SUBDIR += rubygem-zentest
SUBDIR += rudeconfig
SUBDIR += rudiments
SUBDIR += runsnakerun
SUBDIR += rvi
SUBDIR += rvm
SUBDIR += sabre
SUBDIR += safe-iop
SUBDIR += sbt
SUBDIR += scalatest
SUBDIR += scandoc
SUBDIR += scons
SUBDIR += sdl12
SUBDIR += sdl20
SUBDIR += sdl2pp
SUBDIR += sdl_console
SUBDIR += sdl_gnat
SUBDIR += sdl_sge
SUBDIR += sdlmm
SUBDIR += sdlskk
SUBDIR += sdts++
SUBDIR += sedsed
SUBDIR += serd
SUBDIR += serdisplib
SUBDIR += sfio
SUBDIR += sfml
SUBDIR += sfml1
SUBDIR += sgb
SUBDIR += shapelib
SUBDIR += shedskin
SUBDIR += shflags
SUBDIR += shiboken
SUBDIR += shmap
SUBDIR += shtk
SUBDIR += shtool
SUBDIR += sigar
SUBDIR += sigslot
SUBDIR += silc-toolkit
SUBDIR += silentbob
SUBDIR += simavr
SUBDIR += simgear
SUBDIR += simian
SUBDIR += simple_components
SUBDIR += skalibs
SUBDIR += slf4j
SUBDIR += slibtool
SUBDIR += smack
SUBDIR += smake
SUBDIR += smc
SUBDIR += smokegen
SUBDIR += smokekde
SUBDIR += smokeqt
SUBDIR += smv
SUBDIR += soapui
SUBDIR += sonar-ant-task
SUBDIR += sonarqube
SUBDIR += sope2
SUBDIR += sope3
SUBDIR += sord
SUBDIR += sourcenav
SUBDIR += sparc64-binutils
SUBDIR += sparc64-gcc
SUBDIR += sparc64-xtoolchain-gcc
SUBDIR += spark
SUBDIR += sparsehash
SUBDIR += spatialindex
SUBDIR += spdict
SUBDIR += spdlog
SUBDIR += spice-protocol
SUBDIR += spin
SUBDIR += splint
SUBDIR += srecord
SUBDIR += st
SUBDIR += stack
SUBDIR += staf
SUBDIR += statcvs
SUBDIR += statik
SUBDIR += statsvn
SUBDIR += stfl
SUBDIR += stlfilt
SUBDIR += stlink
SUBDIR += storm
SUBDIR += stormlib-ghost++
SUBDIR += str
SUBDIR += strace
SUBDIR += streamhtmlparser
SUBDIR += stringencoders
SUBDIR += stxxl
SUBDIR += styx
SUBDIR += subcommander2
SUBDIR += subversion
SUBDIR += subversion-book
SUBDIR += subversion-static
SUBDIR += subversion18
SUBDIR += subversive
SUBDIR += svk
SUBDIR += svn2git
SUBDIR += svn_load_dirs
SUBDIR += svntrac
SUBDIR += swank-clojure
SUBDIR += swig13
SUBDIR += swig20
SUBDIR += swig30
SUBDIR += synfig
SUBDIR += sysconftool
SUBDIR += sysfsutils
SUBDIR += t1lib
SUBDIR += ta-lib
SUBDIR += tailor
SUBDIR += talloc
SUBDIR += tass64
SUBDIR += tbb
SUBDIR += tcl-memchan
SUBDIR += tcl-mmap
SUBDIR += tcl-signal
SUBDIR += tcl-trf
SUBDIR += tclap
SUBDIR += tclbsd
SUBDIR += tclcheck
SUBDIR += tcllauncher
SUBDIR += tcllib
SUBDIR += tcllibc
SUBDIR += tclmore
SUBDIR += tcloo
SUBDIR += tclreadline
SUBDIR += tclthread
SUBDIR += tcltls
SUBDIR += tclvfs
SUBDIR += tclxml
SUBDIR += tdl
SUBDIR += terminality
SUBDIR += tesla
SUBDIR += tevent
SUBDIR += tex-kpathsea
SUBDIR += tex-libtexlua
SUBDIR += tex-libtexluajit
SUBDIR += tex-synctex
SUBDIR += tex-web2c
SUBDIR += thrift
SUBDIR += thrift-c_glib
SUBDIR += thrift-cpp
SUBDIR += thunar-vcs-plugin
SUBDIR += tig
SUBDIR += tigcc
SUBDIR += tijmp
SUBDIR += tinylaf
SUBDIR += tinyq
SUBDIR += tkcon
SUBDIR += tkcvs
SUBDIR += tkinspect
SUBDIR += tkmerge
SUBDIR += tkp4
SUBDIR += tla
SUBDIR += tmake
SUBDIR += tnt
SUBDIR += toh
SUBDIR += tokamak
SUBDIR += tortoisehg
SUBDIR += tpasm
SUBDIR += tr-eric6
SUBDIR += trac-bitten
SUBDIR += tradcpp
SUBDIR += trio
SUBDIR += truc
SUBDIR += ua_parser-core
SUBDIR += uatraits
SUBDIR += uboot-mkimage
SUBDIR += uclcmd
SUBDIR += ucommon
SUBDIR += ucpp
SUBDIR += udis86
SUBDIR += ultragetopt
SUBDIR += umbrello
SUBDIR += umem
SUBDIR += umlgraph
SUBDIR += unibilium
SUBDIR += unittest-cpp
SUBDIR += universalindentgui
SUBDIR += upnp
SUBDIR += upp
SUBDIR += upslug
SUBDIR += urjtag
SUBDIR += utf8cpp
SUBDIR += uthash
SUBDIR += valgrind
SUBDIR += valgrind-devel
SUBDIR += varconf
SUBDIR += vasm
SUBDIR += vera++
SUBDIR += viewvc
SUBDIR += violet
SUBDIR += visualparadigm
SUBDIR += vstr
SUBDIR += vtable-dumper
SUBDIR += vtcl
SUBDIR += vxlog
SUBDIR += wand-libconfig
SUBDIR += wandio
SUBDIR += websocketpp
SUBDIR += websvn
SUBDIR += wininfo
SUBDIR += winpdb
SUBDIR += wizardkit
SUBDIR += wxGlade
SUBDIR += wxformbuilder
SUBDIR += xa65
SUBDIR += xc3sprog
SUBDIR += xdg-user-dirs
SUBDIR += xdg-utils
SUBDIR += xfce4-dev-tools
SUBDIR += xfce4-vala
SUBDIR += xlocale
SUBDIR += xmake
SUBDIR += xmltooling
SUBDIR += xorg-macros
SUBDIR += xparam
SUBDIR += xsd
SUBDIR += xtl
SUBDIR += xwpe
SUBDIR += xxgdb
SUBDIR += xxhash
SUBDIR += xxl
SUBDIR += yaggo
SUBDIR += yajl
SUBDIR += yajl-tcl
SUBDIR += yaml-cpp
SUBDIR += yaml-cpp03
SUBDIR += yasm
SUBDIR += yasm-devel
SUBDIR += z80-asm
SUBDIR += z80asm
SUBDIR += z80ex
SUBDIR += zeal
SUBDIR += zookeeper
SUBDIR += zpu-binutils
SUBDIR += zpu-gcc
SUBDIR += ztcl
SUBDIR += zthread
SUBDIR += zziplib
.include <bsd.port.subdir.mk>
Index: head/devel/qscintilla2-qt5/pkg-plist
===================================================================
--- head/devel/qscintilla2-qt5/pkg-plist (revision 434379)
+++ head/devel/qscintilla2-qt5/pkg-plist (revision 434380)
@@ -1,69 +1,69 @@
%%QT_INCDIR%%/Qsci/qsciabstractapis.h
%%QT_INCDIR%%/Qsci/qsciapis.h
%%QT_INCDIR%%/Qsci/qscicommand.h
%%QT_INCDIR%%/Qsci/qscicommandset.h
%%QT_INCDIR%%/Qsci/qscidocument.h
%%QT_INCDIR%%/Qsci/qsciglobal.h
%%QT_INCDIR%%/Qsci/qscilexer.h
%%QT_INCDIR%%/Qsci/qscilexeravs.h
%%QT_INCDIR%%/Qsci/qscilexerbash.h
%%QT_INCDIR%%/Qsci/qscilexerbatch.h
%%QT_INCDIR%%/Qsci/qscilexercmake.h
%%QT_INCDIR%%/Qsci/qscilexercoffeescript.h
%%QT_INCDIR%%/Qsci/qscilexercpp.h
%%QT_INCDIR%%/Qsci/qscilexercsharp.h
%%QT_INCDIR%%/Qsci/qscilexercss.h
%%QT_INCDIR%%/Qsci/qscilexercustom.h
%%QT_INCDIR%%/Qsci/qscilexerd.h
%%QT_INCDIR%%/Qsci/qscilexerdiff.h
%%QT_INCDIR%%/Qsci/qscilexerfortran.h
%%QT_INCDIR%%/Qsci/qscilexerfortran77.h
%%QT_INCDIR%%/Qsci/qscilexerhtml.h
%%QT_INCDIR%%/Qsci/qscilexeridl.h
%%QT_INCDIR%%/Qsci/qscilexerjava.h
%%QT_INCDIR%%/Qsci/qscilexerjavascript.h
%%QT_INCDIR%%/Qsci/qscilexerlua.h
%%QT_INCDIR%%/Qsci/qscilexermakefile.h
%%QT_INCDIR%%/Qsci/qscilexermatlab.h
%%QT_INCDIR%%/Qsci/qscilexeroctave.h
%%QT_INCDIR%%/Qsci/qscilexerpascal.h
%%QT_INCDIR%%/Qsci/qscilexerperl.h
%%QT_INCDIR%%/Qsci/qscilexerpo.h
%%QT_INCDIR%%/Qsci/qscilexerpostscript.h
%%QT_INCDIR%%/Qsci/qscilexerpov.h
%%QT_INCDIR%%/Qsci/qscilexerproperties.h
%%QT_INCDIR%%/Qsci/qscilexerpython.h
%%QT_INCDIR%%/Qsci/qscilexerruby.h
%%QT_INCDIR%%/Qsci/qscilexerspice.h
%%QT_INCDIR%%/Qsci/qscilexersql.h
%%QT_INCDIR%%/Qsci/qscilexertcl.h
%%QT_INCDIR%%/Qsci/qscilexertex.h
%%QT_INCDIR%%/Qsci/qscilexerverilog.h
%%QT_INCDIR%%/Qsci/qscilexervhdl.h
%%QT_INCDIR%%/Qsci/qscilexerxml.h
%%QT_INCDIR%%/Qsci/qscilexeryaml.h
%%QT_INCDIR%%/Qsci/qscimacro.h
%%QT_INCDIR%%/Qsci/qsciprinter.h
%%QT_INCDIR%%/Qsci/qsciscintilla.h
%%QT_INCDIR%%/Qsci/qsciscintillabase.h
%%QT_INCDIR%%/Qsci/qscistyle.h
%%QT_INCDIR%%/Qsci/qscistyledtext.h
-lib/libqscintilla2-qt5.so
-lib/libqscintilla2-qt5.so.12
-lib/libqscintilla2-qt5.so.12.0
-lib/libqscintilla2-qt5.so.12.0.1
+%%QT_LIBDIR%%/libqscintilla2-qt5.so
+%%QT_LIBDIR%%/libqscintilla2-qt5.so.12
+%%QT_LIBDIR%%/libqscintilla2-qt5.so.12.0
+%%QT_LIBDIR%%/libqscintilla2-qt5.so.12.0.1
%%QT_MKSPECDIR%%/features/qscintilla2.prf
%%QT_DATADIR%%/qsci/api/python/Python-2.4.api
%%QT_DATADIR%%/qsci/api/python/Python-2.5.api
%%QT_DATADIR%%/qsci/api/python/Python-2.6.api
%%QT_DATADIR%%/qsci/api/python/Python-2.7.api
%%QT_DATADIR%%/qsci/api/python/Python-3.1.api
%%QT_DATADIR%%/qsci/api/python/Python-3.2.api
%%QT_DATADIR%%/qsci/api/python/Python-3.3.api
%%QT_DATADIR%%/qsci/api/python/Python-3.4.api
%%QT_DATADIR%%/qsci/api/python/Python-3.5.api
%%NLS%%%%QT_L10NDIR%%/qscintilla_cs.qm
%%NLS%%%%QT_L10NDIR%%/qscintilla_de.qm
%%NLS%%%%QT_L10NDIR%%/qscintilla_es.qm
%%NLS%%%%QT_L10NDIR%%/qscintilla_fr.qm
%%NLS%%%%QT_L10NDIR%%/qscintilla_pt_br.qm
Index: head/devel/qt4-assistant/Makefile
===================================================================
--- head/devel/qt4-assistant/Makefile (revision 434379)
+++ head/devel/qt4-assistant/Makefile (revision 434380)
@@ -1,57 +1,58 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= assistant
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 4 documentation browser
USE_QT4= qmake_build moc_build rcc_build uic_build \
corelib gui help network sql webkit xml \
doc_run sql-sqlite3_run
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DESKTOP_ENTRIES="Qt 4 Assistant" "" \
"${PREFIX}/share/pixmaps/assistant-qt4.png" \
"${PREFIX}/${QT_BINDIR_REL}/assistant${_QT_BINSUFX}" \
"Development;Qt;" true
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/multimedia src/opengl src/openvg \
src/phonon src/qt3support src/s60installs src/s60main \
src/script src/scripttools src/svg src/testlib src/tools \
src/winmain src/xmlpatterns src/3rdparty/clucene \
src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
src/3rdparty/libpng src/3rdparty/libtiff src/3rdparty/phonon
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME}/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${REINPLACE_CMD} \
-e 's|^TARGET.*|TARGET=assistant${_QT_BINSUFX}|g' \
${BUILD_WRKSRC}/${PORTNAME}.pro
${MKDIR} ${WRKSRC}/mkspecs/modules
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${UIC} ${WRKSRC}/bin/uic
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
post-install:
${INSTALL_DATA} ${INSTALL_WRKSRC}/images/assistant-128.png \
${STAGEDIR}${PREFIX}/share/pixmaps/assistant-qt4.png
.include <bsd.port.mk>
Index: head/devel/qt4-assistant/pkg-plist
===================================================================
--- head/devel/qt4-assistant/pkg-plist (revision 434379)
+++ head/devel/qt4-assistant/pkg-plist (revision 434380)
@@ -1,3 +1,3 @@
-%%QT_BINDIR%%/assistant-qt4
-%%DEBUG%%%%QT_BINDIR%%/assistant-qt4.debug
+%%QT_BINDIR%%/assistant
+%%DEBUG%%%%QT_BINDIR%%/assistant.debug
share/pixmaps/assistant-qt4.png
Index: head/devel/qt4-corelib/Makefile
===================================================================
--- head/devel/qt4-corelib/Makefile (revision 434379)
+++ head/devel/qt4-corelib/Makefile (revision 434380)
@@ -1,83 +1,83 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= corelib
DISTVERSION= ${QT4_VERSION}
-PORTREVISION= 6
+PORTREVISION= 7
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt core non-graphical module
LIB_DEPENDS= libicui18n.so:devel/icu
USE_GNOME= glib20
USE_QT4= qmake_build moc_build
QT_DIST= yes
USES= iconv pkgconfig
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools src/sql \
src/svg src/testlib src/tools src/winmain src/xml \
src/xmlpatterns src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
.include "${.CURDIR:H:H}/devel/qt4/files/Makefile.options"
.if empty(QT4_OPTIONS:MCUPS)
CONFIGURE_ARGS+= -no-cups
.endif
.if empty(QT4_OPTIONS:MNAS)
CONFIGURE_ARGS+= -no-nas-sound
.endif
.if empty(QT4_OPTIONS:MQGTKSTYLE)
CONFIGURE_ARGS+= -no-gtkstyle
.endif
pre-everything::
@${CAT} ${PKGMESSAGE}
post-patch:
${REINPLACE_CMD} -e '${QT4_OPTIONS_REPLACE}' ${WRKSRC}/configure
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
post-configure:
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' \
${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
-E -e 's|(.*location=).*uic|\1${PREFIX}/${QT_BINDIR_REL}/${UIC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtCore.pc
post-install:
${MKDIR} ${STAGEDIR}${PREFIX}/${QT_PLUGINDIR_REL}
${TOUCH} ${STAGEDIR}${PREFIX}/${QT_PLUGINDIR_REL}/.keep_me
${MKDIR} ${STAGEDIR}${PREFIX}/${QT_MKSPECDIR_REL}
${INSTALL_DATA} ${WRKSRC}/mkspecs/qconfig.pri ${STAGEDIR}${PREFIX}/${QT_MKSPECDIR_REL}/
.include <bsd.port.mk>
Index: head/devel/qt4-dbus/Makefile
===================================================================
--- head/devel/qt4-dbus/Makefile (nonexistent)
+++ head/devel/qt4-dbus/Makefile (revision 434380)
@@ -0,0 +1,71 @@
+# Created by: lofi@FreeBSD.org
+# $FreeBSD$
+
+PORTNAME= dbus
+DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
+CATEGORIES= devel
+PKGNAMEPREFIX= qt4-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt D-Bus inter-process communication module
+
+LIB_DEPENDS= libdbus-1.so:devel/dbus
+
+BROKEN_sparc64= fails to compile: invalid conversion
+
+USES= pkgconfig
+USE_QT4= qmake_build moc_build rcc_build corelib xml
+QT_DIST= yes
+MAKE_JOBS_UNSAFE= yes
+
+HAS_CONFIGURE= yes
+USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
+
+ALL_TARGET= first
+CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
+MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
+ PATH=${WRKSRC}/bin:$$PATH
+
+DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
+ src/activeqt src/gui src/multimedia src/network src/opengl \
+ src/openvg src/phonon src/qt3support src/s60installs \
+ src/s60main src/script src/scripttools src/sql src/svg \
+ src/testlib src/tools src/winmain src/xmlpatterns \
+ src/3rdparty/clucene src/3rdparty/freetype \
+ src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
+ src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
+.for dne in ${DO_NOT_EXTRACT}
+EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
+.endfor
+
+BUILD_WRKSRC= ${WRKSRC}/tools/qdbus
+INSTALL_WRKSRC= ${BUILD_WRKSRC}
+
+.include <bsd.port.pre.mk>
+
+# Without this workaround, qdbus crashes.
+.if ${OPSYS} == FreeBSD && ${OSVERSION} > 1000000
+CXXFLAGS+= -fno-use-cxa-atexit
+.endif
+
+CONFIGURE_ARGS+= --no-gui \
+ --no-phonon
+
+pre-configure:
+ ${REINPLACE_CMD} -e 's|SUBDIRS = qdbus|SUBDIRS = ../../src/${PORTNAME} qdbus|g' \
+ ${BUILD_WRKSRC}/qdbus.pro
+ ${REINPLACE_CMD} -e 's|"/moc"|"/${MOC:T}"|' \
+ ${BUILD_WRKSRC}/qdbuscpp2xml/qdbuscpp2xml.cpp
+ ${MKDIR} ${WRKSRC}/mkspecs
+ ${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
+ ${LN} -sf ${MOC} ${WRKSRC}/bin/moc
+ ${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
+
+post-configure:
+ ${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' ${WRKSRC}/src/${PORTNAME}/Makefile
+ ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
+ -E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
+ ${WRKSRC}/lib/pkgconfig/QtDBus.pc
+
+.include <bsd.port.post.mk>
Property changes on: head/devel/qt4-dbus/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt4-dbus/pkg-plist
===================================================================
--- head/devel/qt4-dbus/pkg-plist (nonexistent)
+++ head/devel/qt4-dbus/pkg-plist (revision 434380)
@@ -0,0 +1,76 @@
+%%QT_BINDIR%%/qdbus
+%%DEBUG%%%%QT_BINDIR%%/qdbus.debug
+%%QT_BINDIR%%/qdbuscpp2xml
+%%DEBUG%%%%QT_BINDIR%%/qdbuscpp2xml.debug
+%%QT_BINDIR%%/qdbusxml2cpp
+%%DEBUG%%%%QT_BINDIR%%/qdbusxml2cpp.debug
+%%QT_INCDIR%%/Qt/QtDBus
+%%QT_INCDIR%%/Qt/qdbusabstractadaptor.h
+%%QT_INCDIR%%/Qt/qdbusabstractinterface.h
+%%QT_INCDIR%%/Qt/qdbusargument.h
+%%QT_INCDIR%%/Qt/qdbusconnection.h
+%%QT_INCDIR%%/Qt/qdbusconnectioninterface.h
+%%QT_INCDIR%%/Qt/qdbuscontext.h
+%%QT_INCDIR%%/Qt/qdbuserror.h
+%%QT_INCDIR%%/Qt/qdbusextratypes.h
+%%QT_INCDIR%%/Qt/qdbusinterface.h
+%%QT_INCDIR%%/Qt/qdbusmacros.h
+%%QT_INCDIR%%/Qt/qdbusmessage.h
+%%QT_INCDIR%%/Qt/qdbusmetatype.h
+%%QT_INCDIR%%/Qt/qdbuspendingcall.h
+%%QT_INCDIR%%/Qt/qdbuspendingreply.h
+%%QT_INCDIR%%/Qt/qdbusreply.h
+%%QT_INCDIR%%/Qt/qdbusserver.h
+%%QT_INCDIR%%/Qt/qdbusservicewatcher.h
+%%QT_INCDIR%%/Qt/qdbusunixfiledescriptor.h
+%%QT_INCDIR%%/Qt/qdbusvirtualobject.h
+%%QT_INCDIR%%/QtDBus/QDBusAbstractAdaptor
+%%QT_INCDIR%%/QtDBus/QDBusAbstractInterface
+%%QT_INCDIR%%/QtDBus/QDBusAbstractInterfaceBase
+%%QT_INCDIR%%/QtDBus/QDBusArgument
+%%QT_INCDIR%%/QtDBus/QDBusConnection
+%%QT_INCDIR%%/QtDBus/QDBusConnectionInterface
+%%QT_INCDIR%%/QtDBus/QDBusContext
+%%QT_INCDIR%%/QtDBus/QDBusError
+%%QT_INCDIR%%/QtDBus/QDBusInterface
+%%QT_INCDIR%%/QtDBus/QDBusMessage
+%%QT_INCDIR%%/QtDBus/QDBusMetaType
+%%QT_INCDIR%%/QtDBus/QDBusObjectPath
+%%QT_INCDIR%%/QtDBus/QDBusPendingCall
+%%QT_INCDIR%%/QtDBus/QDBusPendingCallWatcher
+%%QT_INCDIR%%/QtDBus/QDBusPendingReply
+%%QT_INCDIR%%/QtDBus/QDBusPendingReplyData
+%%QT_INCDIR%%/QtDBus/QDBusReply
+%%QT_INCDIR%%/QtDBus/QDBusServer
+%%QT_INCDIR%%/QtDBus/QDBusServiceWatcher
+%%QT_INCDIR%%/QtDBus/QDBusSignature
+%%QT_INCDIR%%/QtDBus/QDBusUnixFileDescriptor
+%%QT_INCDIR%%/QtDBus/QDBusVariant
+%%QT_INCDIR%%/QtDBus/QDBusVirtualObject
+%%QT_INCDIR%%/QtDBus/QtDBus
+%%QT_INCDIR%%/QtDBus/qdbusabstractadaptor.h
+%%QT_INCDIR%%/QtDBus/qdbusabstractinterface.h
+%%QT_INCDIR%%/QtDBus/qdbusargument.h
+%%QT_INCDIR%%/QtDBus/qdbusconnection.h
+%%QT_INCDIR%%/QtDBus/qdbusconnectioninterface.h
+%%QT_INCDIR%%/QtDBus/qdbuscontext.h
+%%QT_INCDIR%%/QtDBus/qdbuserror.h
+%%QT_INCDIR%%/QtDBus/qdbusextratypes.h
+%%QT_INCDIR%%/QtDBus/qdbusinterface.h
+%%QT_INCDIR%%/QtDBus/qdbusmacros.h
+%%QT_INCDIR%%/QtDBus/qdbusmessage.h
+%%QT_INCDIR%%/QtDBus/qdbusmetatype.h
+%%QT_INCDIR%%/QtDBus/qdbuspendingcall.h
+%%QT_INCDIR%%/QtDBus/qdbuspendingreply.h
+%%QT_INCDIR%%/QtDBus/qdbusreply.h
+%%QT_INCDIR%%/QtDBus/qdbusserver.h
+%%QT_INCDIR%%/QtDBus/qdbusservicewatcher.h
+%%QT_INCDIR%%/QtDBus/qdbusunixfiledescriptor.h
+%%QT_INCDIR%%/QtDBus/qdbusvirtualobject.h
+%%QT_LIBDIR%%/libQtDBus.prl
+%%QT_LIBDIR%%/libQtDBus.so
+%%QT_LIBDIR%%/libQtDBus.so.4
+%%QT_LIBDIR%%/libQtDBus.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQtDBus.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQtDBus.so.%%FULLVER%%.debug
+libdata/pkgconfig/QtDBus.pc
Property changes on: head/devel/qt4-dbus/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt4-dbus/files/patch-tools__qdbus__qdbus__qdbus.cpp
===================================================================
--- head/devel/qt4-dbus/files/patch-tools__qdbus__qdbus__qdbus.cpp (nonexistent)
+++ head/devel/qt4-dbus/files/patch-tools__qdbus__qdbus__qdbus.cpp (revision 434380)
@@ -0,0 +1,144 @@
+--- tools/qdbus/qdbus/qdbus.cpp.orig 2012-04-26 21:45:51.000000000 +0200
++++ tools/qdbus/qdbus/qdbus.cpp 2012-12-07 14:46:43.000000000 +0100
+@@ -54,7 +54,6 @@ QT_BEGIN_NAMESPACE
+ Q_DBUS_EXPORT extern bool qt_dbus_metaobject_skip_annotations;
+ QT_END_NAMESPACE
+
+-static QDBusConnection connection(QLatin1String(""));
+ static bool printArgumentsLiterally = false;
+
+ static void showUsage()
+@@ -111,7 +110,7 @@ static void printArg(const QVariant &v)
+ }
+ }
+
+-static void listObjects(const QString &service, const QString &path)
++static void listObjects(const QString &service, const QString &path, const QDBusConnection &connection)
+ {
+ // make a low-level call, to avoid introspecting the Introspectable interface
+ QDBusMessage call = QDBusMessage::createMethodCall(service, path.isEmpty() ? QLatin1String("/") : path,
+@@ -144,13 +143,13 @@ static void listObjects(const QString &s
+ if (child.tagName() == QLatin1String("node")) {
+ QString sub = path + QLatin1Char('/') + child.attribute(QLatin1String("name"));
+ printf("%s\n", qPrintable(sub));
+- listObjects(service, sub);
++ listObjects(service, sub, connection);
+ }
+ child = child.nextSiblingElement();
+ }
+ }
+
+-static void listInterface(const QString &service, const QString &path, const QString &interface)
++static void listInterface(const QString &service, const QString &path, const QString &interface, const QDBusConnection &connection)
+ {
+ QDBusInterface iface(service, path, interface, connection);
+ if (!iface.isValid()) {
+@@ -204,7 +203,7 @@ static void listInterface(const QString
+ }
+ }
+
+-static void listAllInterfaces(const QString &service, const QString &path)
++static void listAllInterfaces(const QString &service, const QString &path, const QDBusConnection &connection)
+ {
+ // make a low-level call, to avoid introspecting the Introspectable interface
+ QDBusMessage call = QDBusMessage::createMethodCall(service, path.isEmpty() ? QLatin1String("/") : path,
+@@ -229,7 +228,7 @@ static void listAllInterfaces(const QStr
+ if (child.tagName() == QLatin1String("interface")) {
+ QString ifaceName = child.attribute(QLatin1String("name"));
+ if (QDBusUtil::isValidInterfaceName(ifaceName))
+- listInterface(service, path, ifaceName);
++ listInterface(service, path, ifaceName, connection);
+ else {
+ qWarning("Invalid D-BUS interface name '%s' found while parsing introspection",
+ qPrintable(ifaceName));
+@@ -253,7 +252,7 @@ static QStringList readList(QStringList
+ return retval;
+ }
+
+-static int placeCall(const QString &service, const QString &path, const QString &interface,
++static int placeCall(const QString &service, const QString &path, const QString &interface, const QDBusConnection &connection,
+ const QString &member, const QStringList& arguments, bool try_prop=true)
+ {
+ QDBusInterface iface(service, path, interface, connection);
+@@ -291,7 +290,7 @@ static int placeCall(const QString &serv
+ proparg += interface;
+ proparg += member;
+ proparg += args.first();
+- if (!placeCall(service, path, "org.freedesktop.DBus.Properties", "Set", proparg, false))
++ if (!placeCall(service, path, "org.freedesktop.DBus.Properties", connection, "Set", proparg, false))
+ return 0;
+ }
+ fprintf(stderr, "Cannot find '%s.%s' in object %s at %s\n",
+@@ -387,7 +386,7 @@ static int placeCall(const QString &serv
+ QStringList proparg;
+ proparg += interface;
+ proparg += member;
+- if (!placeCall(service, path, "org.freedesktop.DBus.Properties", "Get", proparg, false))
++ if (!placeCall(service, path, "org.freedesktop.DBus.Properties", connection, "Get", proparg, false))
+ return 0;
+ }
+ if (err.type() == QDBusError::ServiceUnknown)
+@@ -448,6 +447,7 @@ int main(int argc, char **argv)
+ QCoreApplication app(argc, argv);
+ QStringList args = app.arguments();
+ args.takeFirst();
++ QDBusConnection connection(QLatin1String(""));
+
+ bool connectionOpened = false;
+ while (!args.isEmpty() && args.at(0).startsWith(QLatin1Char('-'))) {
+@@ -481,7 +481,7 @@ int main(int argc, char **argv)
+ QDBusConnectionInterface *bus = connection.interface();
+ if (args.isEmpty()) {
+ printAllServices(bus);
+- exit(0);
++ return 0;
+ }
+
+ QString service = args.takeFirst();
+@@ -491,22 +491,22 @@ int main(int argc, char **argv)
+ return 0;
+ }
+ fprintf(stderr, "Service '%s' is not a valid name.\n", qPrintable(service));
+- exit(1);
++ return 1;
+ }
+
+ if (args.isEmpty()) {
+- listObjects(service, QString());
+- exit(0);
++ listObjects(service, QString(), connection);
++ return 0;
+ }
+
+ QString path = args.takeFirst();
+ if (!QDBusUtil::isValidObjectPath(path)) {
+ fprintf(stderr, "Path '%s' is not a valid path name.\n", qPrintable(path));
+- exit(1);
++ return 1;
+ }
+ if (args.isEmpty()) {
+- listAllInterfaces(service, path);
+- exit(0);
++ listAllInterfaces(service, path, connection);
++ return 0;
+ }
+
+ QString interface = args.takeFirst();
+@@ -521,14 +521,13 @@ int main(int argc, char **argv)
+ }
+ if (!interface.isEmpty() && !QDBusUtil::isValidInterfaceName(interface)) {
+ fprintf(stderr, "Interface '%s' is not a valid interface name.\n", qPrintable(interface));
+- exit(1);
++ return 1;
+ }
+ if (!QDBusUtil::isValidMemberName(member)) {
+ fprintf(stderr, "Method name '%s' is not a valid member name.\n", qPrintable(member));
+- exit(1);
++ return 1;
+ }
+
+- int ret = placeCall(service, path, interface, member, args);
+- exit(ret);
++ return placeCall(service, path, interface, connection, member, args);
+ }
+
Property changes on: head/devel/qt4-dbus/files/patch-tools__qdbus__qdbus__qdbus.cpp
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt4-designer/Makefile
===================================================================
--- head/devel/qt4-designer/Makefile (revision 434379)
+++ head/devel/qt4-designer/Makefile (revision 434380)
@@ -1,75 +1,76 @@
# Created by: Michael Nottebrock <lofi@FreeBSD.org>
# $FreeBSD$
PORTNAME= designer
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 4 graphical user interface designer
USE_QT4= qmake_build moc_build rcc_build uic_build assistant_run \
qt3support corelib declarative gui network script sql xml \
webkit
QT_DIST= yes
HAS_CONFIGURE= yes
# Try to fix linking when previous version is installed
CONFIGURE_ARGS= -L${WRKSRC}/lib -no-phonon
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DESKTOP_ENTRIES="Qt 4 Designer" "" \
"${PREFIX}/share/pixmaps/designer-qt4.png" \
"${PREFIX}/${QT_BINDIR_REL}/designer${_QT_BINSUFX}" \
"Development;Qt;" true
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/multimedia src/opengl src/openvg \
src/s60installs src/s60main src/scripttools src/sql src/svg \
src/testlib src/winmain src/xmlpatterns src/3rdparty/clucene \
src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
src/3rdparty/libpng src/3rdparty/libtiff
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${REINPLACE_CMD} -e 's|^TARGET.*|TARGET=designer${_QT_BINSUFX}|g' \
${BUILD_WRKSRC}/src/${PORTNAME}/${PORTNAME}.pro
${REINPLACE_CMD} -e '/QLatin1String/ s|("assistant")|("assistant${_QT_BINSUFX}")|' \
${BUILD_WRKSRC}/src/${PORTNAME}/assistantclient.cpp
# fix build when previous version is installed
${REINPLACE_CMD} -e '/^CONFIG/s|depend_prl||' \
${BUILD_WRKSRC}/src/components/lib/lib.pro
${MKDIR} ${WRKSRC}/mkspecs/modules
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${UIC} ${WRKSRC}/bin/uic
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
pre-install:
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-everywhere-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
-E -e 's|(.*location=).*uic|\1${PREFIX}/${QT_BINDIR_REL}/${UIC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtUiTools.pc \
${WRKSRC}/lib/pkgconfig/QtDesigner.pc \
${WRKSRC}/lib/pkgconfig/QtDesignerComponents.pc
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
${BUILD_WRKSRC}/src/lib/Makefile \
${BUILD_WRKSRC}/src/uitools/Makefile \
${BUILD_WRKSRC}/src/components/lib/Makefile
post-install:
${INSTALL_DATA} ${INSTALL_WRKSRC}/src/designer/images/designer.png \
${STAGEDIR}${PREFIX}/share/pixmaps/designer-qt4.png
.include <bsd.port.mk>
Index: head/devel/qt4-designer/pkg-plist
===================================================================
--- head/devel/qt4-designer/pkg-plist (revision 434379)
+++ head/devel/qt4-designer/pkg-plist (revision 434380)
@@ -1,108 +1,108 @@
-%%QT_BINDIR%%/designer-qt4
-%%DEBUG%%%%QT_BINDIR%%/designer-qt4.debug
+%%QT_BINDIR%%/designer
+%%DEBUG%%%%QT_BINDIR%%/designer.debug
%%QT_INCDIR%%/QtDesigner/QAbstractExtensionFactory
%%QT_INCDIR%%/QtDesigner/QAbstractExtensionManager
%%QT_INCDIR%%/QtDesigner/QAbstractFormBuilder
%%QT_INCDIR%%/QtDesigner/QDesignerActionEditorInterface
%%QT_INCDIR%%/QtDesigner/QDesignerBrushManagerInterface
%%QT_INCDIR%%/QtDesigner/QDesignerComponents
%%QT_INCDIR%%/QtDesigner/QDesignerContainerExtension
%%QT_INCDIR%%/QtDesigner/QDesignerCustomWidgetCollectionInterface
%%QT_INCDIR%%/QtDesigner/QDesignerCustomWidgetInterface
%%QT_INCDIR%%/QtDesigner/QDesignerDnDItemInterface
%%QT_INCDIR%%/QtDesigner/QDesignerDynamicPropertySheetExtension
%%QT_INCDIR%%/QtDesigner/QDesignerExportWidget
%%QT_INCDIR%%/QtDesigner/QDesignerExtraInfoExtension
%%QT_INCDIR%%/QtDesigner/QDesignerFormEditorInterface
%%QT_INCDIR%%/QtDesigner/QDesignerFormEditorPluginInterface
%%QT_INCDIR%%/QtDesigner/QDesignerFormWindowCursorInterface
%%QT_INCDIR%%/QtDesigner/QDesignerFormWindowInterface
%%QT_INCDIR%%/QtDesigner/QDesignerFormWindowManagerInterface
%%QT_INCDIR%%/QtDesigner/QDesignerFormWindowToolInterface
%%QT_INCDIR%%/QtDesigner/QDesignerIconCacheInterface
%%QT_INCDIR%%/QtDesigner/QDesignerIntegrationInterface
%%QT_INCDIR%%/QtDesigner/QDesignerLanguageExtension
%%QT_INCDIR%%/QtDesigner/QDesignerLayoutDecorationExtension
%%QT_INCDIR%%/QtDesigner/QDesignerMemberSheetExtension
%%QT_INCDIR%%/QtDesigner/QDesignerMetaDataBaseInterface
%%QT_INCDIR%%/QtDesigner/QDesignerMetaDataBaseItemInterface
%%QT_INCDIR%%/QtDesigner/QDesignerObjectInspectorInterface
%%QT_INCDIR%%/QtDesigner/QDesignerPromotionInterface
%%QT_INCDIR%%/QtDesigner/QDesignerPropertyEditorInterface
%%QT_INCDIR%%/QtDesigner/QDesignerPropertySheetExtension
%%QT_INCDIR%%/QtDesigner/QDesignerResourceBrowserInterface
%%QT_INCDIR%%/QtDesigner/QDesignerTaskMenuExtension
%%QT_INCDIR%%/QtDesigner/QDesignerWidgetBoxInterface
%%QT_INCDIR%%/QtDesigner/QDesignerWidgetDataBaseInterface
%%QT_INCDIR%%/QtDesigner/QDesignerWidgetDataBaseItemInterface
%%QT_INCDIR%%/QtDesigner/QDesignerWidgetFactoryInterface
%%QT_INCDIR%%/QtDesigner/QExtensionFactory
%%QT_INCDIR%%/QtDesigner/QExtensionManager
%%QT_INCDIR%%/QtDesigner/QFormBuilder
%%QT_INCDIR%%/QtDesigner/QtDesigner
%%QT_INCDIR%%/QtDesigner/abstractactioneditor.h
%%QT_INCDIR%%/QtDesigner/abstractbrushmanager.h
%%QT_INCDIR%%/QtDesigner/abstractdnditem.h
%%QT_INCDIR%%/QtDesigner/abstractformbuilder.h
%%QT_INCDIR%%/QtDesigner/abstractformeditor.h
%%QT_INCDIR%%/QtDesigner/abstractformeditorplugin.h
%%QT_INCDIR%%/QtDesigner/abstractformwindow.h
%%QT_INCDIR%%/QtDesigner/abstractformwindowcursor.h
%%QT_INCDIR%%/QtDesigner/abstractformwindowmanager.h
%%QT_INCDIR%%/QtDesigner/abstractformwindowtool.h
%%QT_INCDIR%%/QtDesigner/abstracticoncache.h
%%QT_INCDIR%%/QtDesigner/abstractintegration.h
%%QT_INCDIR%%/QtDesigner/abstractlanguage.h
%%QT_INCDIR%%/QtDesigner/abstractmetadatabase.h
%%QT_INCDIR%%/QtDesigner/abstractobjectinspector.h
%%QT_INCDIR%%/QtDesigner/abstractpromotioninterface.h
%%QT_INCDIR%%/QtDesigner/abstractpropertyeditor.h
%%QT_INCDIR%%/QtDesigner/abstractresourcebrowser.h
%%QT_INCDIR%%/QtDesigner/abstractwidgetbox.h
%%QT_INCDIR%%/QtDesigner/abstractwidgetdatabase.h
%%QT_INCDIR%%/QtDesigner/abstractwidgetfactory.h
%%QT_INCDIR%%/QtDesigner/container.h
%%QT_INCDIR%%/QtDesigner/customwidget.h
%%QT_INCDIR%%/QtDesigner/default_extensionfactory.h
%%QT_INCDIR%%/QtDesigner/dynamicpropertysheet.h
%%QT_INCDIR%%/QtDesigner/extension.h
%%QT_INCDIR%%/QtDesigner/extension_global.h
%%QT_INCDIR%%/QtDesigner/extrainfo.h
%%QT_INCDIR%%/QtDesigner/formbuilder.h
%%QT_INCDIR%%/QtDesigner/layoutdecoration.h
%%QT_INCDIR%%/QtDesigner/membersheet.h
%%QT_INCDIR%%/QtDesigner/propertysheet.h
%%QT_INCDIR%%/QtDesigner/qdesigner_components.h
%%QT_INCDIR%%/QtDesigner/qdesigner_components_global.h
%%QT_INCDIR%%/QtDesigner/qdesignerexportwidget.h
%%QT_INCDIR%%/QtDesigner/qextensionmanager.h
%%QT_INCDIR%%/QtDesigner/sdk_global.h
%%QT_INCDIR%%/QtDesigner/taskmenu.h
%%QT_INCDIR%%/QtDesigner/uilib_global.h
%%QT_INCDIR%%/QtUiTools/QUiLoader
%%QT_INCDIR%%/QtUiTools/QtUiTools
%%QT_INCDIR%%/QtUiTools/quiloader.h
%%QT_LIBDIR%%/libQtDesigner.prl
%%QT_LIBDIR%%/libQtDesigner.so
%%QT_LIBDIR%%/libQtDesigner.so.4
%%QT_LIBDIR%%/libQtDesigner.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQtDesigner.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQtDesigner.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQtDesignerComponents.prl
%%QT_LIBDIR%%/libQtDesignerComponents.so
%%QT_LIBDIR%%/libQtDesignerComponents.so.4
%%QT_LIBDIR%%/libQtDesignerComponents.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQtDesignerComponents.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQtDesignerComponents.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQtUiTools.a
%%QT_LIBDIR%%/libQtUiTools.prl
%%QT_PLUGINDIR%%/designer/libqdeclarativeview.so
%%DEBUG%%%%QT_PLUGINDIR%%/designer/libqdeclarativeview.so.debug
%%QT_PLUGINDIR%%/designer/libqt3supportwidgets.so
%%DEBUG%%%%QT_PLUGINDIR%%/designer/libqt3supportwidgets.so.debug
%%QT_PLUGINDIR%%/designer/libqwebview.so
%%DEBUG%%%%QT_PLUGINDIR%%/designer/libqwebview.so.debug
libdata/pkgconfig/QtDesigner.pc
libdata/pkgconfig/QtDesignerComponents.pc
libdata/pkgconfig/QtUiTools.pc
share/pixmaps/designer-qt4.png
Index: head/devel/qt4-help/Makefile
===================================================================
--- head/devel/qt4-help/Makefile (revision 434379)
+++ head/devel/qt4-help/Makefile (revision 434380)
@@ -1,55 +1,56 @@
# Created by: danny@ricin.com
# $FreeBSD$
PORTNAME= help
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt online help integration module
USE_QT4= qmake_build moc_build rcc_build corelib clucene \
gui sql sql-sqlite3_run xml network
QT_DIST= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/multimedia src/opengl src/openvg \
src/phonon src/qt3support src/s60installs src/s60main \
src/script src/scripttools src/svg src/testlib src/tools \
src/winmain src/xmlpatterns src/3rdparty/clucene \
src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
src/3rdparty/libpng src/3rdparty/libtiff src/3rdparty/phonon \
src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/assistant/lib
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
post-configure:
${REINPLACE_CMD} \
-e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' \
${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
-E -e 's|(.*location=).*rcc|\1${PREFIX}/${QT_BINDIR_REL}/rcc|g' \
${WRKSRC}/lib/pkgconfig/QtHelp.pc
.include <bsd.port.mk>
Index: head/devel/qt4-help-tools/Makefile
===================================================================
--- head/devel/qt4-help-tools/Makefile (revision 434379)
+++ head/devel/qt4-help-tools/Makefile (revision 434380)
@@ -1,48 +1,49 @@
# Created by: danny@ricin.com
# $FreeBSD$
PORTNAME= help
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
PKGNAMESUFFIX= -tools
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt utilities for generating documentation
USE_QT4= qmake_build moc_build rcc_build uic_build corelib \
gui sql xml doc help
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/svg \
src/testlib src/tools src/winmain src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/assistant/tools
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${REINPLACE_CMD} -e 's|assistant||' \
${BUILD_WRKSRC}/tools.pro
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${UIC} ${WRKSRC}/bin/uic
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
.include <bsd.port.mk>
Index: head/devel/qt4-linguist/Makefile
===================================================================
--- head/devel/qt4-linguist/Makefile (revision 434379)
+++ head/devel/qt4-linguist/Makefile (revision 434380)
@@ -1,58 +1,58 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= linguist
DISTVERSION= ${QT4_VERSION}
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 4 localization tools
USE_QT4= qmake_build designer_build moc_build rcc_build uic_build \
assistant_run gui linguisttools_run network xml
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DESKTOP_ENTRIES="Qt 4 Linguist" "" \
"${PREFIX}/share/pixmaps/linguist-qt4.png" \
"${PREFIX}/${QT_BINDIR_REL}/linguist${_QT_BINSUFX}" \
"Development;Qt;" true
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/svg \
src/testlib src/tools src/winmain src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${REINPLACE_CMD} -E -e 's|^TARGET[[:blank:]]*=[[:blank:]]*([a-z]+)|TARGET=\1${_QT_BINSUFX}|g' \
${BUILD_WRKSRC}/${PORTNAME}.pro ${BUILD_WRKSRC}/${PORTNAME}/${PORTNAME}.pro \
${BUILD_WRKSRC}/lrelease/lrelease.pro ${BUILD_WRKSRC}/lupdate/lupdate.pro
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${UIC} ${WRKSRC}/bin/uic
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
post-install:
${INSTALL_DATA} ${INSTALL_WRKSRC}/linguist/images/icons/linguist-128-32.png \
${STAGEDIR}${PREFIX}/share/pixmaps/linguist-qt4.png
.include <bsd.port.mk>
Index: head/devel/qt4-linguist/pkg-plist
===================================================================
--- head/devel/qt4-linguist/pkg-plist (revision 434379)
+++ head/devel/qt4-linguist/pkg-plist (revision 434380)
@@ -1,16 +1,16 @@
-%%QT_BINDIR%%/linguist-qt4
-%%DEBUG%%%%QT_BINDIR%%/linguist-qt4.debug
+%%QT_BINDIR%%/linguist
+%%DEBUG%%%%QT_BINDIR%%/linguist.debug
share/pixmaps/linguist-qt4.png
%%QT_DATADIR%%/phrasebooks/danish.qph
%%QT_DATADIR%%/phrasebooks/dutch.qph
%%QT_DATADIR%%/phrasebooks/finnish.qph
%%QT_DATADIR%%/phrasebooks/french.qph
%%QT_DATADIR%%/phrasebooks/german.qph
%%QT_DATADIR%%/phrasebooks/hungarian.qph
%%QT_DATADIR%%/phrasebooks/italian.qph
%%QT_DATADIR%%/phrasebooks/japanese.qph
%%QT_DATADIR%%/phrasebooks/norwegian.qph
%%QT_DATADIR%%/phrasebooks/polish.qph
%%QT_DATADIR%%/phrasebooks/russian.qph
%%QT_DATADIR%%/phrasebooks/spanish.qph
%%QT_DATADIR%%/phrasebooks/swedish.qph
Index: head/devel/qt4-linguisttools/Makefile
===================================================================
--- head/devel/qt4-linguisttools/Makefile (revision 434379)
+++ head/devel/qt4-linguisttools/Makefile (revision 434380)
@@ -1,47 +1,48 @@
# $FreeBSD$
PORTNAME= linguisttools
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 4 localization tools
USE_QT4= qmake_build xml
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/svg \
src/testlib src/tools src/winmain src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/linguist
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${REINPLACE_CMD} -E -e 's|^TARGET[[:blank:]]*=[[:blank:]]*([a-z]+)|TARGET=\1${_QT_BINSUFX}|g' \
${BUILD_WRKSRC}/linguist.pro ${BUILD_WRKSRC}/linguist/linguist.pro \
${BUILD_WRKSRC}/lrelease/lrelease.pro ${BUILD_WRKSRC}/lupdate/lupdate.pro
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
post-patch:
@${REINPLACE_CMD} -e '/SUBDIRS.*linguist/ d' \
${WRKSRC}/tools/linguist/linguist.pro
.include <bsd.port.mk>
Index: head/devel/qt4-linguisttools/pkg-plist
===================================================================
--- head/devel/qt4-linguisttools/pkg-plist (revision 434379)
+++ head/devel/qt4-linguisttools/pkg-plist (revision 434380)
@@ -1,6 +1,6 @@
%%QT_BINDIR%%/lconvert
%%DEBUG%%%%QT_BINDIR%%/lconvert.debug
-%%QT_BINDIR%%/lrelease-qt4
-%%DEBUG%%%%QT_BINDIR%%/lrelease-qt4.debug
-%%QT_BINDIR%%/lupdate-qt4
-%%DEBUG%%%%QT_BINDIR%%/lupdate-qt4.debug
+%%QT_BINDIR%%/lrelease
+%%DEBUG%%%%QT_BINDIR%%/lrelease.debug
+%%QT_BINDIR%%/lupdate
+%%DEBUG%%%%QT_BINDIR%%/lupdate.debug
Index: head/devel/qt4-makeqpf/Makefile
===================================================================
--- head/devel/qt4-makeqpf/Makefile (revision 434379)
+++ head/devel/qt4-makeqpf/Makefile (revision 434380)
@@ -1,48 +1,49 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= makeqpf
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt QPF2 font generator
BROKEN_sparc64= does not compile
USE_QT4= qmake_build moc_build rcc_build uic_build corelib gui
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/svg \
src/testlib src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${REINPLACE_CMD} -e 's|^TARGET[[:blank:]]*=[[:blank:]]*|TARGET=${PORTNAME}${_QT_BINSUFX}|g' \
${BUILD_WRKSRC}/${PORTNAME}.pro
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${UIC} ${WRKSRC}/bin/uic
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
.include <bsd.port.mk>
Index: head/devel/qt4-makeqpf/pkg-plist
===================================================================
--- head/devel/qt4-makeqpf/pkg-plist (revision 434379)
+++ head/devel/qt4-makeqpf/pkg-plist (revision 434380)
@@ -1,2 +1,2 @@
-%%QT_BINDIR%%/makeqpf-qt4
-%%DEBUG%%%%QT_BINDIR%%/makeqpf-qt4.debug
+%%QT_BINDIR%%/makeqpf
+%%DEBUG%%%%QT_BINDIR%%/makeqpf.debug
Index: head/devel/qt4-moc/Makefile
===================================================================
--- head/devel/qt4-moc/Makefile (revision 434379)
+++ head/devel/qt4-moc/Makefile (revision 434380)
@@ -1,47 +1,47 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= moc
DISTVERSION= ${QT4_VERSION}
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt Meta-Object Compiler
USE_QT4= qmake_build
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools src/sql \
src/svg src/testlib src/winmain src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${REINPLACE_CMD} -e 's|^TARGET.*|TARGET=${MOC:T}|g' \
${BUILD_WRKSRC}/${PORTNAME}.pro
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
pre-build:
cd ${BUILD_WRKSRC}/../bootstrap && ${MAKE}
.include <bsd.port.mk>
Index: head/devel/qt4-moc/pkg-plist
===================================================================
--- head/devel/qt4-moc/pkg-plist (revision 434379)
+++ head/devel/qt4-moc/pkg-plist (revision 434380)
@@ -1,2 +1,2 @@
-%%QT_BINDIR%%/moc-qt4
-%%DEBUG%%%%QT_BINDIR%%/moc-qt4.debug
+%%QT_BINDIR%%/moc
+%%DEBUG%%%%QT_BINDIR%%/moc.debug
Index: head/devel/qt4-porting/Makefile
===================================================================
--- head/devel/qt4-porting/Makefile (revision 434379)
+++ head/devel/qt4-porting/Makefile (revision 434380)
@@ -1,43 +1,44 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= porting
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt utility to assist with porting from Qt 3 to Qt 4
USE_QT4= qmake_build moc_build rcc_build corelib xml
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools src/sql \
src/svg src/testlib src/tools src/winmain src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
.include <bsd.port.mk>
Index: head/devel/qt4-qdbusviewer/Makefile
===================================================================
--- head/devel/qt4-qdbusviewer/Makefile (revision 434379)
+++ head/devel/qt4-qdbusviewer/Makefile (revision 434380)
@@ -1,56 +1,57 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= qdbusviewer
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 4 graphical interface to D-Bus
LIB_DEPENDS= libdbus-1.so:devel/dbus
USES= pkgconfig
USE_QT4= qmake_build moc_build rcc_build corelib dbus gui xml \
clucene
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DESKTOP_ENTRIES="Qt 4 D-Bus viewer" "" \
"${PREFIX}/share/pixmaps/qdbusviewer-qt4.png" \
"${PREFIX}/${QT_BINDIR_REL}/qdbusviewer" \
"Development;Qt;" true
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/multimedia src/network src/opengl src/openvg \
src/phonon src/qt3support src/s60installs src/s60main \
src/script src/scripttools src/sql src/svg src/testlib \
src/tools src/winmain src/xmlpatterns src/3rdparty/clucene \
src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
src/3rdparty/libpng src/3rdparty/libtiff src/3rdparty/phonon \
src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/qdbus/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
post-patch:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
post-install:
${INSTALL_DATA} ${INSTALL_WRKSRC}/images/qdbusviewer-128.png \
${STAGEDIR}${PREFIX}/share/pixmaps/qdbusviewer-qt4.png
.include <bsd.port.mk>
Index: head/devel/qt4-qdoc3/Makefile
===================================================================
--- head/devel/qt4-qdoc3/Makefile (revision 434379)
+++ head/devel/qt4-qdoc3/Makefile (revision 434380)
@@ -1,36 +1,37 @@
# Created by: Maxim Ignatenko <gelraen.ua@gmail.com>
# $FreeBSD$
PORTNAME= qdoc3
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel textproc
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt documentation generator
USE_QT4= qmake_build corelib gui xml
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/multimedia src/opengl src/openvg \
src/s60installs src/s60main src/scripttools src/sql src/svg \
src/testlib src/winmain src/xmlpatterns
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs/modules
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
.include <bsd.port.mk>
Index: head/devel/qt4-qmake/Makefile
===================================================================
--- head/devel/qt4-qmake/Makefile (nonexistent)
+++ head/devel/qt4-qmake/Makefile (revision 434380)
@@ -0,0 +1,82 @@
+# Created by: lofi@FreeBSD.org, mi@aldan.algebra.com
+# $FreeBSD$
+
+PORTNAME= qmake
+DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
+CATEGORIES= devel
+PKGNAMEPREFIX= qt4-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt Makefile generator
+
+USE_QT4= # empty
+QT_DIST= yes
+REINPLACE_ARGS= -i ""
+WRKSRC_SUBDIR= ${PORTNAME}
+MAKEFILE= ${FILESDIR}/Makefile.bsd
+MAKE_ENV+= FILESDIR="${FILESDIR}" \
+ QMAKE_COMPILER="${QMAKE_COMPILER}" \
+ QMAKE="${QMAKE}" \
+ QT_BINDIR_REL="${QT_BINDIR_REL}" \
+ QT_MKSPECDIR_REL="${QT_MKSPECDIR_REL}"
+TODAY_CMD= /bin/date +%Y-%m-%d
+
+SUB_FILES= qconfig.cpp
+SUB_LIST= TODAY="$$(${TODAY_CMD})" \
+ ${PLIST_SUB:NPREFIX=*}
+
+EXTRACT_AFTER_ARGS= \
+ '${DISTNAME}/mkspecs' \
+ '${DISTNAME}/include/*/*' \
+ '${DISTNAME}/src/*/*.h' \
+ '${DISTNAME}/qmake' \
+ '${DISTNAME}/src/corelib/tools' \
+ '${DISTNAME}/src/corelib/io' \
+ '${DISTNAME}/src/corelib/global' \
+ '${DISTNAME}/src/corelib/plugin' \
+ '${DISTNAME}/src/corelib/kernel' \
+ '${DISTNAME}/src/corelib/codecs' \
+ '${DISTNAME}/src/corelib/xml' \
+ '${DISTNAME}/src/3rdparty/md4' \
+ '${DISTNAME}/src/3rdparty/md5' \
+ '${DISTNAME}/src/3rdparty/sha1' \
+ '${DISTNAME}/tools/shared/symbian' \
+ '${DISTNAME}/tools/shared/windows'
+
+EXTRA_PATCHES= # empty
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
+ -e 's|release|release thread|' \
+ -e 's|uic|${UIC:T}|' \
+ -e 's|moc|${MOC:T}|' \
+ ${WRKSRC:H}/mkspecs/common/freebsd.conf
+ @${REINPLACE_CMD} -e 's|@QMAKE_QTOBJS@||g' ${WRKSRC}/Makefile.unix
+ @${REINPLACE_CMD} -e 's|unix.conf|freebsd.conf|' \
+ ${WRKSRC:H}/mkspecs/freebsd-icc/qmake.conf
+ @${RM} -R ${WRKSRC:H}/mkspecs/freebsd-g++46
+
+# Add mkspec for clang
+ @${CP} -a ${WRKSRC:H}/mkspecs/freebsd-g++ \
+ ${WRKSRC:H}/mkspecs/freebsd-clang
+ @${REINPLACE_CMD} -e 's|g++|clang|g' \
+ -e '/gcc-base-unix.conf/d' \
+ ${WRKSRC:H}/mkspecs/freebsd-clang/qmake.conf
+
+ @${RM} ${WRKSRC:H}/mkspecs/*/*.orig
+
+do-configure: apply-slist
+ ${MV} ${WRKDIR}/qconfig.cpp \
+ ${WRKSRC:H}/src/corelib/global/qconfig.cpp
+ ${ECHO} '/* empty */' > ${WRKSRC}/qconfig.h
+ ${LN} ${WRKSRC}/qconfig.h ${WRKSRC:H}/src/corelib/global/qconfig.h
+
+do-install:
+ ${MKDIR} ${STAGEDIR}${PREFIX}/${QT_BINDIR_REL}
+ ${INSTALL_PROGRAM} ${WRKSRC}/${QMAKE:T} ${STAGEDIR}${PREFIX}/${QT_BINDIR_REL}
+ ${MKDIR} ${STAGEDIR}${PREFIX}/${QT_MKSPECDIR_REL:H} && \
+ cd ${WRKSRC}/.. && ${COPYTREE_SHARE} mkspecs ${STAGEDIR}${PREFIX}/${QT_MKSPECDIR_REL:H}
+ ${LN} -sf freebsd-${QMAKE_COMPILER} ${STAGEDIR}${PREFIX}/share/qt4/mkspecs/default
+
+.include <bsd.port.mk>
Property changes on: head/devel/qt4-qmake/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt4-qmake/pkg-plist
===================================================================
--- head/devel/qt4-qmake/pkg-plist (nonexistent)
+++ head/devel/qt4-qmake/pkg-plist (revision 434380)
@@ -0,0 +1,557 @@
+%%QT_BINDIR%%/qmake
+%%QT_MKSPECDIR%%/aix-g++-64/qmake.conf
+%%QT_MKSPECDIR%%/aix-g++-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/aix-g++/qmake.conf
+%%QT_MKSPECDIR%%/aix-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/aix-xlc-64/qmake.conf
+%%QT_MKSPECDIR%%/aix-xlc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/aix-xlc/qmake.conf
+%%QT_MKSPECDIR%%/aix-xlc/qplatformdefs.h
+%%QT_MKSPECDIR%%/blackberry-armv7le-qcc/qmake.conf
+%%QT_MKSPECDIR%%/blackberry-armv7le-qcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/blackberry-playbook-armv7le-qcc/qmake.conf
+%%QT_MKSPECDIR%%/blackberry-playbook-armv7le-qcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/blackberry-playbook-x86-qcc/qmake.conf
+%%QT_MKSPECDIR%%/blackberry-playbook-x86-qcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/blackberry-x86-qcc/qmake.conf
+%%QT_MKSPECDIR%%/blackberry-x86-qcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/aix/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/armcc.conf
+%%QT_MKSPECDIR%%/common/c89/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/clang-unix.conf
+%%QT_MKSPECDIR%%/common/clang.conf
+%%QT_MKSPECDIR%%/common/freebsd.conf
+%%QT_MKSPECDIR%%/common/g++-base.conf
+%%QT_MKSPECDIR%%/common/g++-macx.conf
+%%QT_MKSPECDIR%%/common/g++-unix.conf
+%%QT_MKSPECDIR%%/common/g++.conf
+%%QT_MKSPECDIR%%/common/gcc-base-ios.conf
+%%QT_MKSPECDIR%%/common/gcc-base-macx.conf
+%%QT_MKSPECDIR%%/common/gcc-base-unix.conf
+%%QT_MKSPECDIR%%/common/gcc-base.conf
+%%QT_MKSPECDIR%%/common/ghs-base-integrity.conf
+%%QT_MKSPECDIR%%/common/integrity/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/ios.conf
+%%QT_MKSPECDIR%%/common/ios/GLES/gl.h
+%%QT_MKSPECDIR%%/common/ios/GLES2/gl2.h
+%%QT_MKSPECDIR%%/common/ios/arch.conf
+%%QT_MKSPECDIR%%/common/ios/clang.conf
+%%QT_MKSPECDIR%%/common/ios/g++.conf
+%%QT_MKSPECDIR%%/common/ios/llvm.conf
+%%QT_MKSPECDIR%%/common/ios/qmake.conf
+%%QT_MKSPECDIR%%/common/ios/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/ios/versions.conf
+%%QT_MKSPECDIR%%/common/linux.conf
+%%QT_MKSPECDIR%%/common/llvm.conf
+%%QT_MKSPECDIR%%/common/mac.conf
+%%QT_MKSPECDIR%%/common/mac/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/posix/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/qcc-base-qnx.conf
+%%QT_MKSPECDIR%%/common/qcc-base.conf
+%%QT_MKSPECDIR%%/common/qnx/qmake.conf
+%%QT_MKSPECDIR%%/common/qnx/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/qws.conf
+%%QT_MKSPECDIR%%/common/symbian/appCaptionForTranslation.cpp
+%%QT_MKSPECDIR%%/common/symbian/backup_registration.xml
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknBitmapAnimation.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknDoc.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknFontAccess.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknInputLanguageInfo.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknLayoutFont.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknPopupFader.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknServerApp.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknUtils.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknsBasicBackgroundControlContext.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknsConstants.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknsDrawUtils.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknsItemID.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknsSkinInstance.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/AknsUtils.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/ApAccessPointItem.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/ApDataHandler.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/ApUtils.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/CDirectoryLocalizer.h
+%%QT_MKSPECDIR%%/common/symbian/header-wrappers/DocumentHandler.h
+%%QT_MKSPECDIR%%/common/symbian/packageNameForTranslation.cpp
+%%QT_MKSPECDIR%%/common/symbian/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/symbian/stl-off/new
+%%QT_MKSPECDIR%%/common/symbian/symbian-makefile.conf
+%%QT_MKSPECDIR%%/common/symbian/symbian-mmp.conf
+%%QT_MKSPECDIR%%/common/symbian/symbian.conf
+%%QT_MKSPECDIR%%/common/symbian/symbianincludes.h
+%%QT_MKSPECDIR%%/common/symbian/template.applite
+%%QT_MKSPECDIR%%/common/unix.conf
+%%QT_MKSPECDIR%%/common/wince/qmake.conf
+%%QT_MKSPECDIR%%/common/wince/qplatformdefs.h
+%%QT_MKSPECDIR%%/cygwin-g++/qmake.conf
+%%QT_MKSPECDIR%%/cygwin-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/darwin-g++/qmake.conf
+%%QT_MKSPECDIR%%/darwin-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/default
+%%QT_MKSPECDIR%%/features/build_pass.prf
+%%QT_MKSPECDIR%%/features/dbusadaptors.prf
+%%QT_MKSPECDIR%%/features/dbusinterfaces.prf
+%%QT_MKSPECDIR%%/features/debug.prf
+%%QT_MKSPECDIR%%/features/debug_and_release.prf
+%%QT_MKSPECDIR%%/features/declarative_debug.prf
+%%QT_MKSPECDIR%%/features/default_post.prf
+%%QT_MKSPECDIR%%/features/default_pre.prf
+%%QT_MKSPECDIR%%/features/designer.prf
+%%QT_MKSPECDIR%%/features/device_config.prf
+%%QT_MKSPECDIR%%/features/dll.prf
+%%QT_MKSPECDIR%%/features/egl.prf
+%%QT_MKSPECDIR%%/features/enable_backup.prf
+%%QT_MKSPECDIR%%/features/exclusive_builds.prf
+%%QT_MKSPECDIR%%/features/help.prf
+%%QT_MKSPECDIR%%/features/include_source_dir.prf
+%%QT_MKSPECDIR%%/features/incredibuild_xge.prf
+%%QT_MKSPECDIR%%/features/lex.prf
+%%QT_MKSPECDIR%%/features/link_pkgconfig.prf
+%%QT_MKSPECDIR%%/features/mac/default_post.prf
+%%QT_MKSPECDIR%%/features/mac/default_pre.prf
+%%QT_MKSPECDIR%%/features/mac/dwarf2.prf
+%%QT_MKSPECDIR%%/features/mac/objective_c.prf
+%%QT_MKSPECDIR%%/features/mac/ppc.prf
+%%QT_MKSPECDIR%%/features/mac/ppc64.prf
+%%QT_MKSPECDIR%%/features/mac/rez.prf
+%%QT_MKSPECDIR%%/features/mac/sdk.prf
+%%QT_MKSPECDIR%%/features/mac/x86.prf
+%%QT_MKSPECDIR%%/features/mac/x86_64.prf
+%%QT_MKSPECDIR%%/features/moc.prf
+%%QT_MKSPECDIR%%/features/no_debug_info.prf
+%%QT_MKSPECDIR%%/features/qdbus.prf
+%%QT_MKSPECDIR%%/features/qt.prf
+%%QT_MKSPECDIR%%/features/qt_config.prf
+%%QT_MKSPECDIR%%/features/qt_functions.prf
+%%QT_MKSPECDIR%%/features/qtestlib.prf
+%%QT_MKSPECDIR%%/features/qtopia.prf
+%%QT_MKSPECDIR%%/features/qtopiainc.prf
+%%QT_MKSPECDIR%%/features/qtopialib.prf
+%%QT_MKSPECDIR%%/features/qttest_p4.prf
+%%QT_MKSPECDIR%%/features/release.prf
+%%QT_MKSPECDIR%%/features/resources.prf
+%%QT_MKSPECDIR%%/features/shared.prf
+%%QT_MKSPECDIR%%/features/silent.prf
+%%QT_MKSPECDIR%%/features/static.prf
+%%QT_MKSPECDIR%%/features/static_and_shared.prf
+%%QT_MKSPECDIR%%/features/staticlib.prf
+%%QT_MKSPECDIR%%/features/symbian/add_mmp_rules.prf
+%%QT_MKSPECDIR%%/features/symbian/application_icon.prf
+%%QT_MKSPECDIR%%/features/symbian/armcc_warnings.prf
+%%QT_MKSPECDIR%%/features/symbian/data_caging_paths.prf
+%%QT_MKSPECDIR%%/features/symbian/debug.prf
+%%QT_MKSPECDIR%%/features/symbian/def_files.prf
+%%QT_MKSPECDIR%%/features/symbian/def_files_disabled.prf
+%%QT_MKSPECDIR%%/features/symbian/default_post.prf
+%%QT_MKSPECDIR%%/features/symbian/default_pre.prf
+%%QT_MKSPECDIR%%/features/symbian/do_not_build_as_thumb.prf
+%%QT_MKSPECDIR%%/features/symbian/epocallowdlldata.prf
+%%QT_MKSPECDIR%%/features/symbian/localize_deployment.prf
+%%QT_MKSPECDIR%%/features/symbian/moc.prf
+%%QT_MKSPECDIR%%/features/symbian/nested_exceptions.prf
+%%QT_MKSPECDIR%%/features/symbian/opengl.prf
+%%QT_MKSPECDIR%%/features/symbian/platform_paths.prf
+%%QT_MKSPECDIR%%/features/symbian/prepend_includepath.prf
+%%QT_MKSPECDIR%%/features/symbian/qt.prf
+%%QT_MKSPECDIR%%/features/symbian/qt_config.prf
+%%QT_MKSPECDIR%%/features/symbian/release.prf
+%%QT_MKSPECDIR%%/features/symbian/run_on_phone.prf
+%%QT_MKSPECDIR%%/features/symbian/sis_targets.prf
+%%QT_MKSPECDIR%%/features/symbian/stl.prf
+%%QT_MKSPECDIR%%/features/symbian/stl_off.prf
+%%QT_MKSPECDIR%%/features/symbian/symbian_appbooster.prf
+%%QT_MKSPECDIR%%/features/symbian/symbian_building.prf
+%%QT_MKSPECDIR%%/features/symbian/thread.prf
+%%QT_MKSPECDIR%%/features/testcase.prf
+%%QT_MKSPECDIR%%/features/uic.prf
+%%QT_MKSPECDIR%%/features/uitools.prf
+%%QT_MKSPECDIR%%/features/unix/bsymbolic_functions.prf
+%%QT_MKSPECDIR%%/features/unix/dylib.prf
+%%QT_MKSPECDIR%%/features/unix/gdb_dwarf_index.prf
+%%QT_MKSPECDIR%%/features/unix/hide_symbols.prf
+%%QT_MKSPECDIR%%/features/unix/largefile.prf
+%%QT_MKSPECDIR%%/features/unix/opengl.prf
+%%QT_MKSPECDIR%%/features/unix/openvg.prf
+%%QT_MKSPECDIR%%/features/unix/separate_debug_info.prf
+%%QT_MKSPECDIR%%/features/unix/thread.prf
+%%QT_MKSPECDIR%%/features/unix/x11.prf
+%%QT_MKSPECDIR%%/features/unix/x11inc.prf
+%%QT_MKSPECDIR%%/features/unix/x11lib.prf
+%%QT_MKSPECDIR%%/features/unix/x11sm.prf
+%%QT_MKSPECDIR%%/features/use_c_linker.prf
+%%QT_MKSPECDIR%%/features/vxworks.prf
+%%QT_MKSPECDIR%%/features/warn_off.prf
+%%QT_MKSPECDIR%%/features/warn_on.prf
+%%QT_MKSPECDIR%%/features/win32/console.prf
+%%QT_MKSPECDIR%%/features/win32/default_post.prf
+%%QT_MKSPECDIR%%/features/win32/default_pre.prf
+%%QT_MKSPECDIR%%/features/win32/dumpcpp.prf
+%%QT_MKSPECDIR%%/features/win32/embed_manifest_dll.prf
+%%QT_MKSPECDIR%%/features/win32/embed_manifest_exe.prf
+%%QT_MKSPECDIR%%/features/win32/exceptions.prf
+%%QT_MKSPECDIR%%/features/win32/exceptions_off.prf
+%%QT_MKSPECDIR%%/features/win32/ltcg.prf
+%%QT_MKSPECDIR%%/features/win32/msvc_mp.prf
+%%QT_MKSPECDIR%%/features/win32/opengl.prf
+%%QT_MKSPECDIR%%/features/win32/openvg.prf
+%%QT_MKSPECDIR%%/features/win32/qaxcontainer.prf
+%%QT_MKSPECDIR%%/features/win32/qaxserver.prf
+%%QT_MKSPECDIR%%/features/win32/qt_dll.prf
+%%QT_MKSPECDIR%%/features/win32/rtti.prf
+%%QT_MKSPECDIR%%/features/win32/rtti_off.prf
+%%QT_MKSPECDIR%%/features/win32/stl.prf
+%%QT_MKSPECDIR%%/features/win32/stl_off.prf
+%%QT_MKSPECDIR%%/features/win32/thread.prf
+%%QT_MKSPECDIR%%/features/win32/thread_off.prf
+%%QT_MKSPECDIR%%/features/win32/windows.prf
+%%QT_MKSPECDIR%%/features/yacc.prf
+%%QT_MKSPECDIR%%/freebsd-clang/qmake.conf
+%%QT_MKSPECDIR%%/freebsd-clang/qplatformdefs.h
+%%QT_MKSPECDIR%%/freebsd-g++/qmake.conf
+%%QT_MKSPECDIR%%/freebsd-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/freebsd-icc/qmake.conf
+%%QT_MKSPECDIR%%/freebsd-icc/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpux-acc-64/qmake.conf
+%%QT_MKSPECDIR%%/hpux-acc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpux-acc-o64/qmake.conf
+%%QT_MKSPECDIR%%/hpux-acc-o64/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpux-acc/qmake.conf
+%%QT_MKSPECDIR%%/hpux-acc/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpux-g++-64/qmake.conf
+%%QT_MKSPECDIR%%/hpux-g++-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpux-g++/qmake.conf
+%%QT_MKSPECDIR%%/hpux-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpuxi-acc-32/qmake.conf
+%%QT_MKSPECDIR%%/hpuxi-acc-32/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpuxi-acc-64/qmake.conf
+%%QT_MKSPECDIR%%/hpuxi-acc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpuxi-g++-64/qmake.conf
+%%QT_MKSPECDIR%%/hpuxi-g++-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/hurd-g++/qmake.conf
+%%QT_MKSPECDIR%%/hurd-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/irix-cc-64/qmake.conf
+%%QT_MKSPECDIR%%/irix-cc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/irix-cc/qmake.conf
+%%QT_MKSPECDIR%%/irix-cc/qplatformdefs.h
+%%QT_MKSPECDIR%%/irix-g++-64/qmake.conf
+%%QT_MKSPECDIR%%/irix-g++-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/irix-g++/qmake.conf
+%%QT_MKSPECDIR%%/irix-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-arm-gnueabi-g++/qmake.conf
+%%QT_MKSPECDIR%%/linux-arm-gnueabi-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-cxx/qmake.conf
+%%QT_MKSPECDIR%%/linux-cxx/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-ecc-64/qmake.conf
+%%QT_MKSPECDIR%%/linux-ecc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-g++-32/qmake.conf
+%%QT_MKSPECDIR%%/linux-g++-32/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-g++-64/qmake.conf
+%%QT_MKSPECDIR%%/linux-g++-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-g++-maemo/qmake.conf
+%%QT_MKSPECDIR%%/linux-g++-maemo/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-g++/qmake.conf
+%%QT_MKSPECDIR%%/linux-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-icc-32/qmake.conf
+%%QT_MKSPECDIR%%/linux-icc-32/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-icc-64/qmake.conf
+%%QT_MKSPECDIR%%/linux-icc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-icc/qmake.conf
+%%QT_MKSPECDIR%%/linux-icc/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-kcc/qmake.conf
+%%QT_MKSPECDIR%%/linux-kcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-llvm/qmake.conf
+%%QT_MKSPECDIR%%/linux-llvm/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-lsb-g++/qmake.conf
+%%QT_MKSPECDIR%%/linux-lsb-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-pgcc/qmake.conf
+%%QT_MKSPECDIR%%/linux-pgcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/lynxos-g++/qmake.conf
+%%QT_MKSPECDIR%%/lynxos-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-g++/Info.plist.app
+%%QT_MKSPECDIR%%/macx-g++/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-g++/qmake.conf
+%%QT_MKSPECDIR%%/macx-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-g++40/Info.plist.app
+%%QT_MKSPECDIR%%/macx-g++40/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-g++40/qmake.conf
+%%QT_MKSPECDIR%%/macx-g++40/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-g++42/Info.plist.app
+%%QT_MKSPECDIR%%/macx-g++42/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-g++42/qmake.conf
+%%QT_MKSPECDIR%%/macx-g++42/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-icc/qmake.conf
+%%QT_MKSPECDIR%%/macx-icc/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-llvm/Info.plist.app
+%%QT_MKSPECDIR%%/macx-llvm/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-llvm/qmake.conf
+%%QT_MKSPECDIR%%/macx-llvm/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-pbuilder/Info.plist.app
+%%QT_MKSPECDIR%%/macx-pbuilder/qmake.conf
+%%QT_MKSPECDIR%%/macx-pbuilder/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-xcode/Info.plist.app
+%%QT_MKSPECDIR%%/macx-xcode/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-xcode/qmake.conf
+%%QT_MKSPECDIR%%/macx-xcode/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-xlc/qmake.conf
+%%QT_MKSPECDIR%%/macx-xlc/qplatformdefs.h
+%%QT_MKSPECDIR%%/modules/README
+%%QT_MKSPECDIR%%/netbsd-g++/qmake.conf
+%%QT_MKSPECDIR%%/netbsd-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/openbsd-g++/qmake.conf
+%%QT_MKSPECDIR%%/openbsd-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qnx-armv7le-qcc/qmake.conf
+%%QT_MKSPECDIR%%/qnx-armv7le-qcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/qnx-x86-qcc/qmake.conf
+%%QT_MKSPECDIR%%/qnx-x86-qcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/freebsd-generic-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/freebsd-generic-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/integrity-arm-cxarm/qmake.conf
+%%QT_MKSPECDIR%%/qws/integrity-arm-cxarm/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/integrity-ppc-cxppc/qmake.conf
+%%QT_MKSPECDIR%%/qws/integrity-ppc-cxppc/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/integrity-x86-cx86/qmake.conf
+%%QT_MKSPECDIR%%/qws/integrity-x86-cx86/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-arm-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-arm-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-arm-gnueabi-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-arm-gnueabi-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-armv6-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-armv6-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-avr32-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-avr32-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-cellon-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-cellon-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-dm7000-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-dm7000-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-dm800-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-dm800-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-generic-g++-32/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-generic-g++-32/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-generic-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-generic-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-ipaq-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-ipaq-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-lsb-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-lsb-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-mips-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-mips-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-nacl-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-nacl-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-powerpc-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-powerpc-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-sh-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-sh-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-sh4al-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-sh4al-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-sharp-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-sharp-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-x86-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-x86-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-x86_64-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-x86_64-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/linux-zylonite-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/linux-zylonite-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/macx-generic-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/macx-generic-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/macx-nacl-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/macx-nacl-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/qnx-arm-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/qnx-arm-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/qnx-armv7-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/qnx-armv7-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/qnx-generic-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/qnx-generic-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/qnx-i386-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/qnx-i386-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/qnx-ppc-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/qnx-ppc-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qws/solaris-generic-g++/qmake.conf
+%%QT_MKSPECDIR%%/qws/solaris-generic-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/sco-cc/qmake.conf
+%%QT_MKSPECDIR%%/sco-cc/qplatformdefs.h
+%%QT_MKSPECDIR%%/sco-g++/qmake.conf
+%%QT_MKSPECDIR%%/sco-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/solaris-cc-64-stlport/qmake.conf
+%%QT_MKSPECDIR%%/solaris-cc-64-stlport/qplatformdefs.h
+%%QT_MKSPECDIR%%/solaris-cc-64/qmake.conf
+%%QT_MKSPECDIR%%/solaris-cc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/solaris-cc-stlport/qmake.conf
+%%QT_MKSPECDIR%%/solaris-cc-stlport/qplatformdefs.h
+%%QT_MKSPECDIR%%/solaris-cc/qmake.conf
+%%QT_MKSPECDIR%%/solaris-cc/qplatformdefs.h
+%%QT_MKSPECDIR%%/solaris-g++-64/qmake.conf
+%%QT_MKSPECDIR%%/solaris-g++-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/solaris-g++/qmake.conf
+%%QT_MKSPECDIR%%/solaris-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/symbian-abld/qmake.conf
+%%QT_MKSPECDIR%%/symbian-abld/qplatformdefs.h
+%%QT_MKSPECDIR%%/symbian-armcc/features/default_post.prf
+%%QT_MKSPECDIR%%/symbian-armcc/qmake.conf
+%%QT_MKSPECDIR%%/symbian-armcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/symbian-gcce/features/default_post.prf
+%%QT_MKSPECDIR%%/symbian-gcce/qmake.conf
+%%QT_MKSPECDIR%%/symbian-gcce/qplatformdefs.h
+%%QT_MKSPECDIR%%/symbian-sbsv2/flm/qt/qmake_clean.flm
+%%QT_MKSPECDIR%%/symbian-sbsv2/flm/qt/qmake_emulator_deployment.flm
+%%QT_MKSPECDIR%%/symbian-sbsv2/flm/qt/qmake_extra_pre_targetdep.flm
+%%QT_MKSPECDIR%%/symbian-sbsv2/flm/qt/qmake_post_link.flm
+%%QT_MKSPECDIR%%/symbian-sbsv2/flm/qt/qmake_store_build.flm
+%%QT_MKSPECDIR%%/symbian-sbsv2/flm/qt/qt.xml
+%%QT_MKSPECDIR%%/symbian-sbsv2/qmake.conf
+%%QT_MKSPECDIR%%/symbian-sbsv2/qplatformdefs.h
+%%QT_MKSPECDIR%%/tru64-cxx/qmake.conf
+%%QT_MKSPECDIR%%/tru64-cxx/qplatformdefs.h
+%%QT_MKSPECDIR%%/tru64-g++/qmake.conf
+%%QT_MKSPECDIR%%/tru64-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unixware-cc/qmake.conf
+%%QT_MKSPECDIR%%/unixware-cc/qplatformdefs.h
+%%QT_MKSPECDIR%%/unixware-g++/qmake.conf
+%%QT_MKSPECDIR%%/unixware-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/linux-armcc/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/linux-armcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/linux-clang/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/linux-clang/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/linux-host-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/linux-host-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-clang/Info.plist.app
+%%QT_MKSPECDIR%%/unsupported/macx-clang/Info.plist.lib
+%%QT_MKSPECDIR%%/unsupported/macx-clang/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-clang/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-clang-libc++/Info.plist.app
+%%QT_MKSPECDIR%%/unsupported/macx-clang-libc++/Info.plist.lib
+%%QT_MKSPECDIR%%/unsupported/macx-clang-libc++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-clang-libc++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-clang-legacy/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-clang-legacy/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-clang/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-clang/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-g++-legacy/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-g++-legacy/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-llvm-legacy/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-llvm-legacy/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-llvm/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-iosdevice-llvm/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-clang-legacy/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-clang-legacy/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-clang/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-clang/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-g++-legacy/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-g++-legacy/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-llvm-legacy/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-llvm-legacy/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-llvm/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/macx-iossimulator-llvm/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/qnx-X11-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/qnx-X11-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/qws/integrity-x86-cx86/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/qws/integrity-x86-cx86/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/qws/linux-x86-openkode-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/qws/linux-x86-openkode-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/qws/qnx-641/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/qws/qnx-641/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-dcc/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-dcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-dcc/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-dcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/win32-g++-4.6-cross/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/win32-g++-4.6-cross/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/win32-g++-cross/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/win32-g++-cross/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-borland/qmake.conf
+%%QT_MKSPECDIR%%/win32-borland/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-g++-4.6/qmake.conf
+%%QT_MKSPECDIR%%/win32-g++-4.6/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-g++/qmake.conf
+%%QT_MKSPECDIR%%/win32-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-icc/qmake.conf
+%%QT_MKSPECDIR%%/win32-icc/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2003/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2003/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2010/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2010/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2012/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2012/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2013/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2013/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2015/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2015/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince50standard-armv4i-msvc2005/default_post.prf
+%%QT_MKSPECDIR%%/wince50standard-armv4i-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wince50standard-armv4i-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince50standard-armv4i-msvc2008/default_post.prf
+%%QT_MKSPECDIR%%/wince50standard-armv4i-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wince50standard-armv4i-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince50standard-mipsii-msvc2005/default_post.prf
+%%QT_MKSPECDIR%%/wince50standard-mipsii-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wince50standard-mipsii-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince50standard-mipsii-msvc2008/default_post.prf
+%%QT_MKSPECDIR%%/wince50standard-mipsii-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wince50standard-mipsii-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince50standard-mipsiv-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wince50standard-mipsiv-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince50standard-mipsiv-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wince50standard-mipsiv-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince50standard-sh4-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wince50standard-sh4-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince50standard-sh4-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wince50standard-sh4-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince50standard-x86-msvc2005/default_post.prf
+%%QT_MKSPECDIR%%/wince50standard-x86-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wince50standard-x86-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince50standard-x86-msvc2008/default_post.prf
+%%QT_MKSPECDIR%%/wince50standard-x86-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wince50standard-x86-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince60standard-armv4i-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wince60standard-armv4i-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince60standard-x86-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wince60standard-x86-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince70embedded-armv4i-msvc2008/default_post.prf
+%%QT_MKSPECDIR%%/wince70embedded-armv4i-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wince70embedded-armv4i-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince70embedded-x86-msvc2008/default_post.prf
+%%QT_MKSPECDIR%%/wince70embedded-x86-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wince70embedded-x86-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wincewm50pocket-msvc2005/default_post.prf
+%%QT_MKSPECDIR%%/wincewm50pocket-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wincewm50pocket-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wincewm50pocket-msvc2008/default_post.prf
+%%QT_MKSPECDIR%%/wincewm50pocket-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wincewm50pocket-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wincewm50smart-msvc2005/default_post.prf
+%%QT_MKSPECDIR%%/wincewm50smart-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wincewm50smart-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wincewm50smart-msvc2008/default_post.prf
+%%QT_MKSPECDIR%%/wincewm50smart-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wincewm50smart-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wincewm60professional-msvc2005/default_post.prf
+%%QT_MKSPECDIR%%/wincewm60professional-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wincewm60professional-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wincewm60professional-msvc2008/default_post.prf
+%%QT_MKSPECDIR%%/wincewm60professional-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wincewm60professional-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wincewm60standard-msvc2005/default_post.prf
+%%QT_MKSPECDIR%%/wincewm60standard-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wincewm60standard-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wincewm60standard-msvc2008/default_post.prf
+%%QT_MKSPECDIR%%/wincewm60standard-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wincewm60standard-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wincewm65professional-msvc2005/default_post.prf
+%%QT_MKSPECDIR%%/wincewm65professional-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wincewm65professional-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wincewm65professional-msvc2008/default_post.prf
+%%QT_MKSPECDIR%%/wincewm65professional-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wincewm65professional-msvc2008/qplatformdefs.h
Property changes on: head/devel/qt4-qmake/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt4-qmake/files/Makefile.bsd
===================================================================
--- head/devel/qt4-qmake/files/Makefile.bsd (nonexistent)
+++ head/devel/qt4-qmake/files/Makefile.bsd (revision 434380)
@@ -0,0 +1,47 @@
+# $FreeBSD$
+
+_OBJS!= ${MAKE} -f Makefile.unix -V OBJS -V QOBJS
+# We'd like to avoid using qconfig.cpp, but can't -- see the comment
+# next to -DHAVE_CONFIG_CPP below:
+#_OBJS:= ${_OBJS:S/qconfig.o//}
+SRCS:= ${_OBJS:.o=.cpp}
+NO_MAN= true # qmake.1 anyone?
+
+.PATH: ${.CURDIR} ${.CURDIR:H}/src/corelib/tools ${.CURDIR:H}/src/corelib/io \
+ ${.CURDIR:H}/src/corelib/global ${.CURDIR:H}/src/corelib/plugin \
+ ${.CURDIR:H}/src/corelib/kernel ${.CURDIR:H}/src/corelib/codecs \
+ ${.CURDIR:H}/src/corelib/xml ${.CURDIR:H}/src/3rdparty/md4 \
+ ${.CURDIR:H}/src/3rdparty/md5 ${.CURDIR:H}/src/3rdparty/sha1 \
+ ${.CURDIR:H}/tools/shared/symbian ${.CURDIR:H}/tools/shared/windows
+
+CXXFLAGS+=-I${.CURDIR:H}/mkspecs/freebsd-${QMAKE_COMPILER}
+
+.for s in src/corelib/arch/generic src/corelib/global src/corelib/tools \
+ src/corelib/kernel src/corelib/codecs \
+ src/3rdparty/md5 src/3rdparty/md4 src/3rdparty/sha1 \
+ tools/shared include/QtCore include
+CXXFLAGS+=-I${.CURDIR:H}/$s
+.endfor
+
+.for g in /. /unix /win32 /mac /symbian /integrity
+.PATH: ${.CURDIR}/generators$g
+CXXFLAGS+=-I${.CURDIR}/generators$g
+.endfor
+
+CXXFLAGS+=-I. -I"${FILESDIR}"
+
+CXXFLAGS+=-DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT \
+ -DQT_NO_STL -DQT_BUILD_QMAKE -DQT_NO_COMPRESS -DHAVE_QCONFIG_CPP \
+ -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT \
+ -DQT_BOOTSTRAPPED -DQMAKE_OPENSOURCE_EDITION
+
+# I guess, qconfig.cpp used to be optional, but no longer is -- due to
+# bit-rot in Qt sources. So we still have to compile it, but, by not
+# adding the following define, we reduce the seemingly needless usage of
+# it:
+# -DHAVE_QCONFIG_CPP
+
+PROG_CXX=${QMAKE:T}
+BINDIR= ${PREFIX}/${QT_BINDIR_REL}
+
+.include <bsd.prog.mk>
Property changes on: head/devel/qt4-qmake/files/Makefile.bsd
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt4-qmake/files/patch-mkspecs__common__clang-unix.conf
===================================================================
--- head/devel/qt4-qmake/files/patch-mkspecs__common__clang-unix.conf (nonexistent)
+++ head/devel/qt4-qmake/files/patch-mkspecs__common__clang-unix.conf (revision 434380)
@@ -0,0 +1,18 @@
+--- ../mkspecs/common/clang-unix.conf.orig 2013-12-05 22:57:53.135156000 +0000
++++ ../mkspecs/common/clang-unix.conf 2013-12-05 23:09:36.960149415 +0000
+@@ -0,0 +1,15 @@
++#
++# Qmake configuration for the Clang compiler on *nix-systems
++#
++# Before making changes to this file, please read the comment in
++# gcc-base.conf, to make sure the change goes in the right place.
++#
++# To verify that your change has the desired effect on the final configuration
++# you can use the manual test in tests/manual/mkspecs.
++#
++
++include(gcc-base-unix.conf)
++include(clang.conf)
++
++QMAKE_LFLAGS_RELEASE += -Wl,-O1
++QMAKE_LFLAGS_NOUNDEF += -Wl,--no-undefined
Property changes on: head/devel/qt4-qmake/files/patch-mkspecs__common__clang-unix.conf
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt4-qmake/files/patch-mkspecs__common__freebsd.conf
===================================================================
--- head/devel/qt4-qmake/files/patch-mkspecs__common__freebsd.conf (nonexistent)
+++ head/devel/qt4-qmake/files/patch-mkspecs__common__freebsd.conf (revision 434380)
@@ -0,0 +1,55 @@
+--- ../mkspecs/common/freebsd.conf.orig 2013-12-05 22:57:28.140145000 +0000
++++ ../mkspecs/common/freebsd.conf 2013-12-05 23:10:22.897149108 +0000
+@@ -0,0 +1,52 @@
++#
++# qmake configuration for FreeBSD
++#
++
++QMAKE_CFLAGS_THREAD = -pthread -D_THREAD_SAFE
++
++QMAKE_CXXFLAGS_THREAD = $$QMAKE_CFLAGS_THREAD
++
++# Addon software goes into /usr/local on the BSDs, by default we will look there
++QMAKE_INCDIR = $$[QT_INSTALL_HEADERS] /usr/local/include
++QMAKE_LIBDIR = $$[QT_INSTALL_LIBS] /usr/local/lib
++QMAKE_INCDIR_X11 = /usr/local/include
++QMAKE_LIBDIR_X11 = /usr/local/lib
++QMAKE_INCDIR_QT = $$[QT_INSTALL_HEADERS]
++QMAKE_LIBDIR_QT = $$[QT_INSTALL_LIBS]
++QMAKE_INCDIR_OPENGL = /usr/local/include
++QMAKE_LIBDIR_OPENGL = /usr/local/lib
++
++QMAKE_LFLAGS_THREAD = -pthread
++
++QMAKE_LIBS =
++QMAKE_LIBS_DYNLOAD =
++QMAKE_LIBS_X11 = -lXext -lX11 -lm
++QMAKE_LIBS_X11SM = -lSM -lICE
++QMAKE_LIBS_OPENGL = -lGL
++QMAKE_LIBS_OPENGL_QT = -lGL
++QMAKE_LIBS_THREAD =
++
++QMAKE_MOC = $$[QT_INSTALL_BINS]/moc
++QMAKE_UIC = $$[QT_INSTALL_BINS]/uic
++
++QMAKE_AR = ar cqs
++QMAKE_OBJCOPY = objcopy
++QMAKE_RANLIB =
++
++QMAKE_TAR = tar -cf
++QMAKE_GZIP = gzip -9f
++
++QMAKE_COPY = cp -f
++QMAKE_COPY_FILE = $$QMAKE_COPY
++QMAKE_COPY_DIR = $$QMAKE_COPY -R
++QMAKE_MOVE = mv -f
++QMAKE_DEL_FILE = rm -f
++QMAKE_DEL_DIR = rmdir
++QMAKE_STRIP = strip
++QMAKE_STRIPFLAGS_LIB += --strip-unneeded
++QMAKE_CHK_DIR_EXISTS = test -d
++QMAKE_MKDIR = mkdir -p
++QMAKE_INSTALL_FILE = install -m 644 -p
++QMAKE_INSTALL_PROGRAM = install -m 755 -p
++
++include(unix.conf)
Property changes on: head/devel/qt4-qmake/files/patch-mkspecs__common__freebsd.conf
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt4-qmake/files/patch-mkspecs__freebsd-g++__qmake.conf
===================================================================
--- head/devel/qt4-qmake/files/patch-mkspecs__freebsd-g++__qmake.conf (nonexistent)
+++ head/devel/qt4-qmake/files/patch-mkspecs__freebsd-g++__qmake.conf (revision 434380)
@@ -0,0 +1,51 @@
+--- ../mkspecs/freebsd-g++/qmake.conf.orig 2013-06-07 05:17:00.000000000 +0000
++++ ../mkspecs/freebsd-g++/qmake.conf 2013-12-05 23:07:25.210153920 +0000
+@@ -8,47 +8,7 @@
+ CONFIG += qt warn_on release link_prl gdb_dwarf_index
+ QT += core gui
+
+-QMAKE_CFLAGS_THREAD = -pthread -D_THREAD_SAFE
+-
+-QMAKE_CXXFLAGS_THREAD = $$QMAKE_CFLAGS_THREAD
+-
+-# Addon software goes into /usr/local on the BSDs, by default we will look there
+-QMAKE_INCDIR = /usr/local/include
+-QMAKE_LIBDIR = /usr/local/lib
+-QMAKE_INCDIR_X11 = /usr/X11R6/include
+-QMAKE_LIBDIR_X11 = /usr/X11R6/lib
+-QMAKE_INCDIR_QT = $$[QT_INSTALL_HEADERS]
+-QMAKE_LIBDIR_QT = $$[QT_INSTALL_LIBS]
+-QMAKE_INCDIR_OPENGL = /usr/X11R6/include
+-QMAKE_LIBDIR_OPENGL = /usr/X11R6/lib
+-
+-QMAKE_LFLAGS_THREAD = -pthread
+-
+-QMAKE_LIBS =
+-QMAKE_LIBS_DYNLOAD =
+-QMAKE_LIBS_X11 = -lXext -lX11 -lm
+-QMAKE_LIBS_X11SM = -lSM -lICE
+-QMAKE_LIBS_OPENGL = -lGL
+-QMAKE_LIBS_OPENGL_QT = -lGL
+-QMAKE_LIBS_THREAD =
+-
+-QMAKE_MOC = $$[QT_INSTALL_BINS]/moc
+-QMAKE_UIC = $$[QT_INSTALL_BINS]/uic
+-
+-QMAKE_AR = ar cqs
+-QMAKE_OBJCOPY = objcopy
+-QMAKE_RANLIB =
+-
+-QMAKE_TAR = tar -cf
+-QMAKE_GZIP = gzip -9f
+-
+-QMAKE_COPY = cp -f
+-QMAKE_MOVE = mv -f
+-QMAKE_DEL_FILE = rm -f
+-QMAKE_DEL_DIR = rmdir
+-QMAKE_CHK_DIR_EXISTS = test -d
+-QMAKE_MKDIR = mkdir -p
+-include(../common/unix.conf)
++include(../common/freebsd.conf)
+ include(../common/gcc-base-unix.conf)
+ include(../common/g++-unix.conf)
+ load(qt_config)
Property changes on: head/devel/qt4-qmake/files/patch-mkspecs__freebsd-g++__qmake.conf
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt4-qmake/files/qconfig.cpp.in
===================================================================
--- head/devel/qt4-qmake/files/qconfig.cpp.in (nonexistent)
+++ head/devel/qt4-qmake/files/qconfig.cpp.in (revision 434380)
@@ -0,0 +1,21 @@
+/*
+ * $FreeBSD$
+ */
+
+/* Installation date */
+static const char qt_configure_installation [12+11] = "qt_instdate=%%TODAY%%";
+
+#define QT_CONFIGURE_LICENSEE "Open Source";
+#define QT_CONFIGURE_LICENSED_PRODUCTS "OpenSource";
+#define QT_CONFIGURE_PREFIX_PATH "%%PREFIX%%";
+#define QT_CONFIGURE_DOCUMENTATION_PATH "%%PREFIX%%/%%QT_DOCDIR%%";
+#define QT_CONFIGURE_HEADERS_PATH "%%PREFIX%%/%%QT_INCDIR%%";
+#define QT_CONFIGURE_LIBRARIES_PATH "%%PREFIX%%/%%QT_LIBDIR%%";
+#define QT_CONFIGURE_BINARIES_PATH "%%PREFIX%%/%%QT_BINDIR%%";
+#define QT_CONFIGURE_PLUGINS_PATH "%%PREFIX%%/%%QT_PLUGINDIR%%";
+#define QT_CONFIGURE_IMPORTS_PATH "%%PREFIX%%/%%QT_IMPORTDIR%%";
+#define QT_CONFIGURE_DATA_PATH "%%PREFIX%%/%%QT_DATADIR%%";
+#define QT_CONFIGURE_TRANSLATIONS_PATH "%%PREFIX%%/%%QT_L10NDIR%%";
+#define QT_CONFIGURE_SETTINGS_PATH "%%PREFIX%%/%%QT_ETCDIR%%";
+#define QT_CONFIGURE_EXAMPLES_PATH "%%PREFIX%%/%%QT_EXAMPLEDIR%%/examples";
+#define QT_CONFIGURE_DEMOS_PATH "%%PREFIX%%/%%QT_EXAMPLEDIR%%/demos/";
Property changes on: head/devel/qt4-qmake/files/qconfig.cpp.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt4-qmake/files/patch-option.cpp
===================================================================
--- head/devel/qt4-qmake/files/patch-option.cpp (nonexistent)
+++ head/devel/qt4-qmake/files/patch-option.cpp (revision 434380)
@@ -0,0 +1,11 @@
+--- ./option.cpp.orig 2012-09-11 01:36:36.000000000 +0000
++++ ./option.cpp 2012-10-27 21:51:28.131151563 +0000
+@@ -482,7 +482,7 @@
+ env_argc++;
+ }
+ } else {
+- if(!env_argv || env_argc > env_size) {
++ if(!env_argv || env_argc >= env_size) {
+ env_argv = (char **)realloc(env_argv, sizeof(char *)*(env_size+=10));
+ for(int i2 = env_argc; i2 < env_size; i2++)
+ env_argv[i2] = NULL;
Property changes on: head/devel/qt4-qmake/files/patch-option.cpp
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt4-qmlviewer/Makefile
===================================================================
--- head/devel/qt4-qmlviewer/Makefile (revision 434379)
+++ head/devel/qt4-qmlviewer/Makefile (revision 434380)
@@ -1,51 +1,52 @@
# Created by: gahr
# $FreeBSD$
PORTNAME= qmlviewer
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 4 utility for QML application testing
USE_QT4= qmake_build moc_build rcc_build uic_build declarative script \
svg xmlpatterns sql opengl network corelib
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
# qtlogo.png is installed by qt4-gui
DESKTOP_ENTRIES="Qt 4 QML viewer" "" \
"${PREFIX}/share/pixmaps/qtlogo.png" \
"${PREFIX}/${QT_BINDIR_REL}/qmlviewer" \
"Development;Qt;" true
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/multimedia src/openvg \
src/phonon src/qt3support src/s60installs src/s60main \
src/scripttools src/sql src/svg src/testlib \
src/winmain src/xmlpatterns src/3rdparty/clucene \
src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
src/3rdparty/libpng src/3rdparty/libtiff src/3rdparty/phonon \
src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/qml/
INSTALL_WRKSRC= ${BUILD_WRKSRC}
post-patch:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
${LN} -sf ${UIC} ${WRKSRC}/bin/uic
.include <bsd.port.mk>
Index: head/devel/qt4-qt3support/Makefile
===================================================================
--- head/devel/qt4-qt3support/Makefile (revision 434379)
+++ head/devel/qt4-qt3support/Makefile (revision 434380)
@@ -1,49 +1,50 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= qt3support
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel x11-toolkits
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 3 compatibility module
USE_QT4= qmake_build moc_build corelib gui network sql xml
QT_DIST= yes
USES= pkgconfig
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/multimedia src/opengl src/openvg \
src/phonon src/s60installs src/s60main src/script \
src/scripttools src/svg src/testlib src/tools src/winmain \
src/xmlpatterns src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
post-configure:
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
${WRKSRC}/lib/pkgconfig/Qt3Support.pc
.include <bsd.port.mk>
Index: head/devel/qt4-qvfb/Makefile
===================================================================
--- head/devel/qt4-qvfb/Makefile (revision 434379)
+++ head/devel/qt4-qvfb/Makefile (revision 434380)
@@ -1,58 +1,59 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= qvfb
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 4 virtual framebuffer utility
USE_QT4= qmake_build moc_build rcc_build uic_build corelib gui opengl
QT_DIST= yes
USE_XORG= xtst
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DESKTOP_ENTRIES="Qt 4 Virtual Framebuffer" "" \
"${PREFIX}/share/pixmaps/qvfb-qt4.png" \
"${PREFIX}/${QT_BINDIR_REL}/qvfb${_QT_BINSUFX}" \
"Development;Qt;" true
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/svg \
src/testlib src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
CONFIGURE_ARGS+= -I../../include/Qt -I../../include
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${REINPLACE_CMD} -e 's|^TARGET.*|TARGET=qvfb${_QT_BINSUFX}|g' \
${BUILD_WRKSRC}/qvfb.pro
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${UIC} ${WRKSRC}/bin/uic
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
post-install:
${INSTALL_DATA} ${INSTALL_WRKSRC}/images/logo.png \
${STAGEDIR}${PREFIX}/share/pixmaps/qvfb-qt4.png
.include <bsd.port.mk>
Index: head/devel/qt4-qvfb/pkg-plist
===================================================================
--- head/devel/qt4-qvfb/pkg-plist (revision 434379)
+++ head/devel/qt4-qvfb/pkg-plist (revision 434380)
@@ -1,3 +1,3 @@
-%%QT_BINDIR%%/qvfb-qt4
-%%DEBUG%%%%QT_BINDIR%%/qvfb-qt4.debug
+%%QT_BINDIR%%/qvfb
+%%DEBUG%%%%QT_BINDIR%%/qvfb.debug
share/pixmaps/qvfb-qt4.png
Index: head/devel/qt4-rcc/Makefile
===================================================================
--- head/devel/qt4-rcc/Makefile (revision 434379)
+++ head/devel/qt4-rcc/Makefile (revision 434380)
@@ -1,44 +1,45 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= rcc
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt Resource Compiler
USE_QT4= qmake_build
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools src/sql \
src/svg src/testlib src/winmain src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
pre-build:
cd ${BUILD_WRKSRC}/../bootstrap && ${MAKE}
.include <bsd.port.mk>
Index: head/devel/qt4-script/Makefile
===================================================================
--- head/devel/qt4-script/Makefile (revision 434379)
+++ head/devel/qt4-script/Makefile (revision 434380)
@@ -1,51 +1,52 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= script
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt scripting module
USES= pkgconfig
USE_QT4= qmake_build moc_build corelib
QT_DIST= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH MAKEOBJDIR=.
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/scripttools src/sql src/svg \
src/testlib src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
post-configure:
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtScript.pc
.include <bsd.port.mk>
Index: head/devel/qt4-scripttools/Makefile
===================================================================
--- head/devel/qt4-scripttools/Makefile (revision 434379)
+++ head/devel/qt4-scripttools/Makefile (revision 434380)
@@ -1,50 +1,51 @@
# $FreeBSD$
PORTNAME= scripttools
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt Script additional components
USE_QT4= qmake_build moc_build rcc_build gui script
QT_DIST= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/sql src/svg src/testlib src/tools src/winmain \
src/xml src/xmlpatterns src/3rdparty/clucene \
src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
src/3rdparty/libpng src/3rdparty/libtiff src/3rdparty/phonon \
src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
post-configure:
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtScriptTools.pc
.include <bsd.port.mk>
Index: head/devel/qt4-testlib/Makefile
===================================================================
--- head/devel/qt4-testlib/Makefile (revision 434379)
+++ head/devel/qt4-testlib/Makefile (revision 434380)
@@ -1,49 +1,50 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= testlib
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt unit testing module
USE_QT4= qmake_build moc_build corelib
QT_DIST= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools src/sql \
src/svg src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/testlib
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
post-configure:
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtTest.pc
.include <bsd.port.mk>
Index: head/devel/qt4-uic/Makefile
===================================================================
--- head/devel/qt4-uic/Makefile (revision 434379)
+++ head/devel/qt4-uic/Makefile (revision 434380)
@@ -1,46 +1,47 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= uic
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt User Interface Compiler
USE_QT4= qmake_build
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools src/sql \
src/svg src/testlib src/winmain src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${REINPLACE_CMD} -e 's|^TARGET.*|TARGET=${UIC:T}|g' \
${BUILD_WRKSRC}/${PORTNAME}.pro
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
pre-build:
cd ${BUILD_WRKSRC}/../bootstrap && ${MAKE}
.include <bsd.port.mk>
Index: head/devel/qt4-uic/pkg-plist
===================================================================
--- head/devel/qt4-uic/pkg-plist (revision 434379)
+++ head/devel/qt4-uic/pkg-plist (revision 434380)
@@ -1,2 +1,2 @@
-%%QT_BINDIR%%/uic-qt4
-%%DEBUG%%%%QT_BINDIR%%/uic-qt4.debug
+%%QT_BINDIR%%/uic
+%%DEBUG%%%%QT_BINDIR%%/uic.debug
Index: head/devel/qt4-uic3/Makefile
===================================================================
--- head/devel/qt4-uic3/Makefile (revision 434379)
+++ head/devel/qt4-uic3/Makefile (revision 434380)
@@ -1,40 +1,41 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= uic3
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 3-compatible User Interface Compiler
USE_QT4= qmake_build qt3support corelib gui network sql xml porting
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/s60installs src/s60main src/script \
src/scripttools src/sql src/svg src/testlib src/winmain \
src/xmlpatterns src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
.include <bsd.port.mk>
Index: head/devel/qt5/Makefile.sqldrivers
===================================================================
--- head/devel/qt5/Makefile.sqldrivers (revision 434379)
+++ head/devel/qt5/Makefile.sqldrivers (revision 434380)
@@ -1,23 +1,23 @@
# $FreeBSD$
PORTNAME?= ${DB:tl}
DISTVERSION?= ${QT5_VERSION}
CATEGORIES?= databases
PKGNAMEPREFIX?= qt5-sqldrivers-
MAINTAINER?= kde@FreeBSD.org
COMMENT?= Qt ${DB_DESC} database plugin
USE_QT5+= core sql qmake_build buildtools_build
QT_DIST?= base
HAS_CONFIGURE= yes
CONFIGURE_ARGS+=-no-gui -no-xcb
BUILD_WRKSRC?= ${WRKSRC}/src/plugins/sqldrivers/${DB:tl}
INSTALL_WRKSRC?=${BUILD_WRKSRC}
-PLIST_FILES+= ${QT_LIBDIR_REL}/cmake/Qt5Sql/Qt5Sql_Q${DB}DriverPlugin.cmake \
+PLIST_FILES+= ${QT_CMAKEDIR_REL}/Qt5Sql/Qt5Sql_Q${DB}DriverPlugin.cmake \
${QT_PLUGINDIR_REL}/sqldrivers/libqsql${DB:tl:C/^sql//}.so \
%%DEBUG%%${QT_PLUGINDIR_REL}/sqldrivers/libqsql${DB:tl:C/^sql//}.so.debug
.include <bsd.port.mk>
Index: head/devel/qt5/distinfo
===================================================================
--- head/devel/qt5/distinfo (revision 434379)
+++ head/devel/qt5/distinfo (revision 434380)
@@ -1,45 +1,59 @@
-TIMESTAMP = 1476003740
-SHA256 (KDE/Qt/5.6.2/qt3d-opensource-src-5.6.2.tar.xz) = a21786db6e0f5c6c70213fe1a3530ed3d7f28f28401a0f793970e9bc860ce941
-SIZE (KDE/Qt/5.6.2/qt3d-opensource-src-5.6.2.tar.xz) = 19763124
-SHA256 (KDE/Qt/5.6.2/qtbase-opensource-src-5.6.2.tar.xz) = 2f6eae93c5d982fe0a387a01aeb3435571433e23e9d9d9246741faf51f1ee787
-SIZE (KDE/Qt/5.6.2/qtbase-opensource-src-5.6.2.tar.xz) = 46825164
-SHA256 (KDE/Qt/5.6.2/qtcanvas3d-opensource-src-5.6.2.tar.xz) = d7584d006b03f99692ccabce922e755a6f12bb1ed1fbc99c2b84842b9e0aa0ad
-SIZE (KDE/Qt/5.6.2/qtcanvas3d-opensource-src-5.6.2.tar.xz) = 10836672
-SHA256 (KDE/Qt/5.6.2/qtconnectivity-opensource-src-5.6.2.tar.xz) = 1b672923e0703d62f605ccec97b454b1a04c1f0db47f54b687d009e84eabedf9
-SIZE (KDE/Qt/5.6.2/qtconnectivity-opensource-src-5.6.2.tar.xz) = 2639772
-SHA256 (KDE/Qt/5.6.2/qtdeclarative-opensource-src-5.6.2.tar.xz) = 0086a986bc36b398ba518c404d08cdff0a0d7978c30aa3fa2ab73d71654209da
-SIZE (KDE/Qt/5.6.2/qtdeclarative-opensource-src-5.6.2.tar.xz) = 18813016
-SHA256 (KDE/Qt/5.6.2/qtgraphicaleffects-opensource-src-5.6.2.tar.xz) = 1e9f0fac2c72a812d396db74b2d9d12f513d2ec9135d5982ca85aee7f00be75e
-SIZE (KDE/Qt/5.6.2/qtgraphicaleffects-opensource-src-5.6.2.tar.xz) = 14751100
-SHA256 (KDE/Qt/5.6.2/qtimageformats-opensource-src-5.6.2.tar.xz) = 4fb153be62dac393cbcebab65040b3b9d6edecd1ebbe5e543401b0e45bd147e4
-SIZE (KDE/Qt/5.6.2/qtimageformats-opensource-src-5.6.2.tar.xz) = 1909556
-SHA256 (KDE/Qt/5.6.2/qtlocation-opensource-src-5.6.2.tar.xz) = 7a8995206ed0220f943a33c037527a1a8243d5386f5ca77bf88152675c28d23a
-SIZE (KDE/Qt/5.6.2/qtlocation-opensource-src-5.6.2.tar.xz) = 3148448
-SHA256 (KDE/Qt/5.6.2/qtmultimedia-opensource-src-5.6.2.tar.xz) = cb9a70a7c6c0eb5be4a3fcaf9590863479e95a255308bbf07d5b7aa303bb8caf
-SIZE (KDE/Qt/5.6.2/qtmultimedia-opensource-src-5.6.2.tar.xz) = 3492628
-SHA256 (KDE/Qt/5.6.2/qtquickcontrols-opensource-src-5.6.2.tar.xz) = 5ed0f2292be10222dfb1b57a05472798fd759279f65455d91c02ef4fb746102c
-SIZE (KDE/Qt/5.6.2/qtquickcontrols-opensource-src-5.6.2.tar.xz) = 5952696
-SHA256 (KDE/Qt/5.6.2/qtquickcontrols2-opensource-src-5.6.2.tar.xz) = 09dc1710aa4701aebe145829eb99bab94d0870cf578f7dddcec0af92286dfec1
-SIZE (KDE/Qt/5.6.2/qtquickcontrols2-opensource-src-5.6.2.tar.xz) = 882160
-SHA256 (KDE/Qt/5.6.2/qtscript-opensource-src-5.6.2.tar.xz) = e06ef6b271cae2187b57cd4ffdd6759428fd47f94a060e2ed2af024a8c14110e
-SIZE (KDE/Qt/5.6.2/qtscript-opensource-src-5.6.2.tar.xz) = 2587484
-SHA256 (KDE/Qt/5.6.2/qtsensors-opensource-src-5.6.2.tar.xz) = a7809081aab4f2f0d7a4f40c3abb02e1690bb390d1dd410d7c6c5019a5053427
-SIZE (KDE/Qt/5.6.2/qtsensors-opensource-src-5.6.2.tar.xz) = 1973888
-SHA256 (KDE/Qt/5.6.2/qtserialbus-opensource-src-5.6.2.tar.xz) = b39260091691532382935ed51de9ead8e66cfb5f7a6e5410c17cd0695ccaf826
-SIZE (KDE/Qt/5.6.2/qtserialbus-opensource-src-5.6.2.tar.xz) = 234612
-SHA256 (KDE/Qt/5.6.2/qtserialport-opensource-src-5.6.2.tar.xz) = af76281bad2c2bd283189635316b46091f6712134b845ae1b9e3016eec94f376
-SIZE (KDE/Qt/5.6.2/qtserialport-opensource-src-5.6.2.tar.xz) = 256852
-SHA256 (KDE/Qt/5.6.2/qtsvg-opensource-src-5.6.2.tar.xz) = f7a361bf661b31ae7779513559dd0b774171911bc57f5cfb6bed6878ddc8bc4e
-SIZE (KDE/Qt/5.6.2/qtsvg-opensource-src-5.6.2.tar.xz) = 1723056
-SHA256 (KDE/Qt/5.6.2/qttools-opensource-src-5.6.2.tar.xz) = db2bb4318786257a47172c377d9c456d5d5ec760d5d69240a4693dc87989e1b7
-SIZE (KDE/Qt/5.6.2/qttools-opensource-src-5.6.2.tar.xz) = 9794512
-SHA256 (KDE/Qt/5.6.2/qttranslations-opensource-src-5.6.2.tar.xz) = 7d793b447c1673206e0c5512883ad1435554dbaebf2152475b6d4a7ba6efa421
-SIZE (KDE/Qt/5.6.2/qttranslations-opensource-src-5.6.2.tar.xz) = 1204148
-SHA256 (KDE/Qt/5.6.2/qtwebchannel-opensource-src-5.6.2.tar.xz) = 700efdef5f51bdb77093f4db212afe275ad35a710ea08ba0e9e9cbc8f09f1a52
-SIZE (KDE/Qt/5.6.2/qtwebchannel-opensource-src-5.6.2.tar.xz) = 119792
-SHA256 (KDE/Qt/5.6.2/qtwebsockets-opensource-src-5.6.2.tar.xz) = 3cd9d4bbff8e6be5e252f00fc9ecb9ac2d8a193020288c7d1e82583daeb5ba35
-SIZE (KDE/Qt/5.6.2/qtwebsockets-opensource-src-5.6.2.tar.xz) = 171004
-SHA256 (KDE/Qt/5.6.2/qtx11extras-opensource-src-5.6.2.tar.xz) = 71ffde1cfaeec310677b69ecd16cb5992e8885cf3e73b4cec7d6e7a115b40ced
-SIZE (KDE/Qt/5.6.2/qtx11extras-opensource-src-5.6.2.tar.xz) = 33640
-SHA256 (KDE/Qt/5.6.2/qtxmlpatterns-opensource-src-5.6.2.tar.xz) = 7c6df3eebf188d8ce6822a22cebbc63da5ac27047cf1bd7236d5b988244782cc
-SIZE (KDE/Qt/5.6.2/qtxmlpatterns-opensource-src-5.6.2.tar.xz) = 1323576
+TIMESTAMP = 1484477552
+SHA256 (KDE/Qt/5.7.1/qt3d-opensource-src-5.7.1.tar.xz) = 1d74cf431777b8086d771ab0d4d2c01f9c28eb14cc2d73d7f838a665d1f707ea
+SIZE (KDE/Qt/5.7.1/qt3d-opensource-src-5.7.1.tar.xz) = 19474848
+SHA256 (KDE/Qt/5.7.1/qtbase-opensource-src-5.7.1.tar.xz) = edcdf549d94d98aff08e201dcb3ca25bc3628a37b1309e320d5f556b6b66557e
+SIZE (KDE/Qt/5.7.1/qtbase-opensource-src-5.7.1.tar.xz) = 44992616
+SHA256 (KDE/Qt/5.7.1/qtcanvas3d-opensource-src-5.7.1.tar.xz) = a887083817b77710f6b5401cec4713a03147ed16fa5cf5fb8de4495807bebdb4
+SIZE (KDE/Qt/5.7.1/qtcanvas3d-opensource-src-5.7.1.tar.xz) = 10851540
+SHA256 (KDE/Qt/5.7.1/qtcharts-opensource-src-5.7.1.tar.xz) = 85feee6992cdef1ab42947a83cbf806a29224d704ee5dc97ee5038c75b633fe3
+SIZE (KDE/Qt/5.7.1/qtcharts-opensource-src-5.7.1.tar.xz) = 4086256
+SHA256 (KDE/Qt/5.7.1/qtconnectivity-opensource-src-5.7.1.tar.xz) = b3e8b9068304dc5605a8fdf0695102032fd1a216f2c2d4d53a7e4d4dda3ab966
+SIZE (KDE/Qt/5.7.1/qtconnectivity-opensource-src-5.7.1.tar.xz) = 2690688
+SHA256 (KDE/Qt/5.7.1/qtdatavis3d-opensource-src-5.7.1.tar.xz) = 1bff85dcdeed98ad8f0e191f77e7c0e9d57af719c51791044b9c15e939b800f8
+SIZE (KDE/Qt/5.7.1/qtdatavis3d-opensource-src-5.7.1.tar.xz) = 5155740
+SHA256 (KDE/Qt/5.7.1/qtdeclarative-opensource-src-5.7.1.tar.xz) = fd13dd3059d20694a857ed30ee56a2ade908c0cb93246f9804a65f7a2d775d56
+SIZE (KDE/Qt/5.7.1/qtdeclarative-opensource-src-5.7.1.tar.xz) = 18976920
+SHA256 (KDE/Qt/5.7.1/qtdeclarative-render2d-opensource-src-5.7.1.tar.xz) = 831913488bb887993ae8701e5966f53875667a774c0230fc5dc39d6077828c7f
+SIZE (KDE/Qt/5.7.1/qtdeclarative-render2d-opensource-src-5.7.1.tar.xz) = 74340
+SHA256 (KDE/Qt/5.7.1/qtgamepad-opensource-src-5.7.1.tar.xz) = bb2b2165e3bcbf37a7e03c3e1cac4fe9771b087dad7ab9566ba5f7f4f4929182
+SIZE (KDE/Qt/5.7.1/qtgamepad-opensource-src-5.7.1.tar.xz) = 360940
+SHA256 (KDE/Qt/5.7.1/qtgraphicaleffects-opensource-src-5.7.1.tar.xz) = 2c68fabe599fa2f318562dc22003df6797e91d00761dbf1f337cdc7fbacd4dc8
+SIZE (KDE/Qt/5.7.1/qtgraphicaleffects-opensource-src-5.7.1.tar.xz) = 14486948
+SHA256 (KDE/Qt/5.7.1/qtimageformats-opensource-src-5.7.1.tar.xz) = 4f97a2a2b269f8a45576256ad9f452320c9c9de6d9c7cc1751fdeac36b0f77f4
+SIZE (KDE/Qt/5.7.1/qtimageformats-opensource-src-5.7.1.tar.xz) = 2004376
+SHA256 (KDE/Qt/5.7.1/qtlocation-opensource-src-5.7.1.tar.xz) = f9e9e64e757008c2341504a1916a219ee0cf2b1b42bfa72156e62dfe9dfbf39f
+SIZE (KDE/Qt/5.7.1/qtlocation-opensource-src-5.7.1.tar.xz) = 3194112
+SHA256 (KDE/Qt/5.7.1/qtmultimedia-opensource-src-5.7.1.tar.xz) = a52b177fbf02600a0c8bd995ce7c2041c673bc1332c02b60e0e95bb9ebab7def
+SIZE (KDE/Qt/5.7.1/qtmultimedia-opensource-src-5.7.1.tar.xz) = 3563676
+SHA256 (KDE/Qt/5.7.1/qtquickcontrols-opensource-src-5.7.1.tar.xz) = 6feb1a736bf93af98c40d04cde6b36c113e4cdf84ccb9b306ca92ef9b1779e9d
+SIZE (KDE/Qt/5.7.1/qtquickcontrols-opensource-src-5.7.1.tar.xz) = 5943024
+SHA256 (KDE/Qt/5.7.1/qtquickcontrols2-opensource-src-5.7.1.tar.xz) = f2e8acd0badbf604f28258b063c94ba71e28147c53c435ae9eb484497cf3e7ec
+SIZE (KDE/Qt/5.7.1/qtquickcontrols2-opensource-src-5.7.1.tar.xz) = 2212812
+SHA256 (KDE/Qt/5.7.1/qtscript-opensource-src-5.7.1.tar.xz) = 5bf91a1c53020d91d454d4bb0f930ada98c5fc008fda78f2d7171152920da426
+SIZE (KDE/Qt/5.7.1/qtscript-opensource-src-5.7.1.tar.xz) = 2608180
+SHA256 (KDE/Qt/5.7.1/qtscxml-opensource-src-5.7.1.tar.xz) = 9dad4ab220a715b6a63df1d4a196bfa963a1ce7e6e57e7b36462c5dab09db38c
+SIZE (KDE/Qt/5.7.1/qtscxml-opensource-src-5.7.1.tar.xz) = 346948
+SHA256 (KDE/Qt/5.7.1/qtsensors-opensource-src-5.7.1.tar.xz) = ccb3942edb5e615e9a43c147d87a09f19690eafbc56be0cdf4f73b7e510f3b10
+SIZE (KDE/Qt/5.7.1/qtsensors-opensource-src-5.7.1.tar.xz) = 1987144
+SHA256 (KDE/Qt/5.7.1/qtserialbus-opensource-src-5.7.1.tar.xz) = 727edbe0f29659119cfcfbc9ce7c7063af319ec441bc9a5156ebda28e820b157
+SIZE (KDE/Qt/5.7.1/qtserialbus-opensource-src-5.7.1.tar.xz) = 239676
+SHA256 (KDE/Qt/5.7.1/qtserialport-opensource-src-5.7.1.tar.xz) = 76d5e19bd392b72602ba3bfe3c0d03c10962674604cf814efa2c910f98cf5a26
+SIZE (KDE/Qt/5.7.1/qtserialport-opensource-src-5.7.1.tar.xz) = 265616
+SHA256 (KDE/Qt/5.7.1/qtsvg-opensource-src-5.7.1.tar.xz) = b0f017db8cf18e655e8a6635bc4ddbdbad6f8ef839857451b78942630a4c3947
+SIZE (KDE/Qt/5.7.1/qtsvg-opensource-src-5.7.1.tar.xz) = 1751536
+SHA256 (KDE/Qt/5.7.1/qttools-opensource-src-5.7.1.tar.xz) = 64197022686c3d8b11a8639f102e2caf03cc325a30e7a32ba66881648ac2dfac
+SIZE (KDE/Qt/5.7.1/qttools-opensource-src-5.7.1.tar.xz) = 10011108
+SHA256 (KDE/Qt/5.7.1/qttranslations-opensource-src-5.7.1.tar.xz) = 16ecdb09532724e80fa6202e5604d80877923b652b771b6020cea36bee0258e7
+SIZE (KDE/Qt/5.7.1/qttranslations-opensource-src-5.7.1.tar.xz) = 1206116
+SHA256 (KDE/Qt/5.7.1/qtvirtualkeyboard-opensource-src-5.7.1.tar.xz) = b28b8b937ed15d794c5ebc93e9556d08a0c9761a434864ebf2b454554e652add
+SIZE (KDE/Qt/5.7.1/qtvirtualkeyboard-opensource-src-5.7.1.tar.xz) = 10014088
+SHA256 (KDE/Qt/5.7.1/qtwebchannel-opensource-src-5.7.1.tar.xz) = 63ab3ac76ff993009cfa978162a764e05b763cacb70d1a862893f8de4492319b
+SIZE (KDE/Qt/5.7.1/qtwebchannel-opensource-src-5.7.1.tar.xz) = 122436
+SHA256 (KDE/Qt/5.7.1/qtwebkit-opensource-src-5.7.1.tar.xz) = a46cf7c89339645f94a5777e8ae5baccf75c5fc87ab52c9dafc25da3327b5f03
+SIZE (KDE/Qt/5.7.1/qtwebkit-opensource-src-5.7.1.tar.xz) = 35298736
+SHA256 (KDE/Qt/5.7.1/qtwebsockets-opensource-src-5.7.1.tar.xz) = 5c2a75b68e7f2e98530659b33bb08edee83013832dbf99cc5b40afc8a90652d1
+SIZE (KDE/Qt/5.7.1/qtwebsockets-opensource-src-5.7.1.tar.xz) = 193204
+SHA256 (KDE/Qt/5.7.1/qtx11extras-opensource-src-5.7.1.tar.xz) = 5f5a0c2cc66ec01c2f2f31eff32fea26bd0bc03741a5dfd803b13870aa4ce427
+SIZE (KDE/Qt/5.7.1/qtx11extras-opensource-src-5.7.1.tar.xz) = 59656
+SHA256 (KDE/Qt/5.7.1/qtxmlpatterns-opensource-src-5.7.1.tar.xz) = a805938c2ab1379d7dc83dcec606edd7950b5155c073b9eb53c53e62deb5f8e5
+SIZE (KDE/Qt/5.7.1/qtxmlpatterns-opensource-src-5.7.1.tar.xz) = 1352472
Index: head/devel/qt5/files/extrapatch-src_corelib_global_qcompilerdetection.h
===================================================================
--- head/devel/qt5/files/extrapatch-src_corelib_global_qcompilerdetection.h (revision 434379)
+++ head/devel/qt5/files/extrapatch-src_corelib_global_qcompilerdetection.h (nonexistent)
@@ -1,31 +0,0 @@
---- src/corelib/global/qcompilerdetection.h.orig 2015-10-13 04:35:31 UTC
-+++ src/corelib/global/qcompilerdetection.h
-@@ -941,13 +941,26 @@
- # undef Q_COMPILER_CONSTEXPR
- # endif
- # endif // Q_OS_QNX
--# if (defined(Q_CC_CLANG) || defined(Q_CC_INTEL)) && defined(Q_OS_MAC) && defined(__GNUC_LIBSTD__) \
-- && ((__GNUC_LIBSTD__-0) * 100 + __GNUC_LIBSTD_MINOR__-0 <= 402)
-+# if (defined(Q_CC_CLANG) || defined(Q_CC_INTEL)) && !defined(_LIBCPP_VERSION)
- // Apple has not updated libstdc++ since 2007, which means it does not have
- // <initializer_list> or std::move. Let's disable these features
-+// The same applies to FreeBSD's base libstdc++ version used in FreeBSD 9.x.
- # undef Q_COMPILER_INITIALIZER_LISTS
- # undef Q_COMPILER_RVALUE_REFS
- # undef Q_COMPILER_REF_QUALIFIERS
-+// FreeBSD's base libstdc++ does not support std::u{16,32}string.
-+# undef Q_COMPILER_UNICODE_STRINGS
-+// FreeBSD's base libstdc++ does not support std::declval, which is used in
-+// together with noexcept in some headers such as qpair.h (as of Qt 5.5).
-+// Since there is no macro checking for std::declval, just disable noexcept
-+// altogether.
-+# undef Q_COMPILER_NOEXCEPT
-+// FreeBSD's base libstdc++ is missing constexpr keywords on important
-+// functions like std::numeric_limits<>::min(). Disable constexpr even if clang
-+// advertises support for it.
-+# undef Q_COMPILER_CONSTEXPR
-+// FreeBSD's base libstdc++ does not support std::nullptr_t.
-+# undef Q_COMPILER_NULLPTR
- // Also disable <atomic>, since it's clearly not there
- # undef Q_COMPILER_ATOMICS
- # endif
Property changes on: head/devel/qt5/files/extrapatch-src_corelib_global_qcompilerdetection.h
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/devel/qt5/files/extrapatch-configure
===================================================================
--- head/devel/qt5/files/extrapatch-configure (revision 434379)
+++ head/devel/qt5/files/extrapatch-configure (revision 434380)
@@ -1,177 +1,177 @@
* The "build qmake" chunk is required for qtbase ports other than devel/qmake5
to use the already built qmake instead of always building their own copy.
* All the other chunks are part of the changes required to avoid ports/194088.
We want to avoid passing -I${LOCALBASE}/include and -L${LOCALBASE}/lib to the
compiler since in Qt5 at least for the Qt ports themselves those parameters
will be passed before the build directories, and consequently an older
installed version will be used when building a new Qt port and cause
problems. See QTBUG-40825 for a discussion we have started upstream.
This part of the solution comprises both filtering the output of the
pkg-config calls so it does not contain those parameters as well as
changing the default value of DEFAULT_LIBDIRS in bsd.qt.mk (in the
qtbase-post-patch target). It is used in the pkg-config filtering as well
as the value of QMAKE_DEFAULT_LIBDIRS in mkspecs/qconfig.pri (which qmake
uses to filter out those same paths when processing .pro files).
---- configure.orig 2015-03-16 17:16:10.000000000 +0100
-+++ configure 2015-05-01 09:35:38.595937000 +0200
-@@ -3853,7 +3853,7 @@
+--- configure.orig 2015-03-16 17:16:10.000000000 +0100
++++ configure 2016-04-18 12:35:38.595937000 +0200
+@@ -3878,7 +3878,7 @@
}
# build qmake
-if true; then ###[ '!' -f "$outpath/bin/qmake" ];
+if [ '!' -e "$outpath/bin/qmake" ]; then
echo "Creating qmake..."
mkdir -p "$outpath/qmake" || exit
-@@ -4777,8 +4777,8 @@
+@@ -5045,8 +5045,8 @@
SQLITE_AUTODETECT_FAILED="no"
if [ "$CFG_SQLITE" = "system" ]; then
if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists sqlite3 2>/dev/null; then
- QT_CFLAGS_SQLITE=`$PKG_CONFIG --cflags sqlite3 2>/dev/null`
- QT_LFLAGS_SQLITE=`$PKG_CONFIG --libs sqlite3 2>/dev/null`
+ QT_CFLAGS_SQLITE=`$PKG_CONFIG --cflags sqlite3 2>/dev/null | filterIncludeOptions`
+ QT_LFLAGS_SQLITE=`$PKG_CONFIG --libs sqlite3 2>/dev/null | filterLibraryOptions`
else
QT_CFLAGS_SQLITE=
QT_LFLAGS_SQLITE="-lsqlite3 -lz"
-@@ -4881,8 +4881,8 @@
- fi
- if [ "$CFG_DBUS" = "linked" ]; then
+@@ -5149,8 +5149,8 @@
+ # runtime: no detection (cannot fail), load libdbus-1 at runtime
+ if [ "$CFG_DBUS" = "auto" ] || [ "$CFG_DBUS" = "linked" ]; then
if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --atleast-version="$MIN_DBUS_1_VERSION" dbus-1 2>/dev/null; then
- QT_CFLAGS_DBUS=`$PKG_CONFIG --cflags dbus-1 2>/dev/null`
- QT_LIBS_DBUS=`$PKG_CONFIG --libs dbus-1 2>/dev/null`
+ QT_CFLAGS_DBUS=`$PKG_CONFIG --cflags dbus-1 2>/dev/null | filterIncludeOptions`
+ QT_LIBS_DBUS=`$PKG_CONFIG --libs dbus-1 2>/dev/null | filterLibraryOptions`
else
QT_LIBS_DBUS="-ldbus-1"
fi
-@@ -4928,8 +4928,8 @@
+@@ -5201,8 +5201,8 @@
# auto-detect Glib support
if [ "$CFG_GLIB" != "no" ]; then
if [ -n "$PKG_CONFIG" ]; then
- QT_CFLAGS_GLIB=`$PKG_CONFIG --cflags glib-2.0 gthread-2.0 2>/dev/null`
- QT_LIBS_GLIB=`$PKG_CONFIG --libs glib-2.0 gthread-2.0 2>/dev/null`
+ QT_CFLAGS_GLIB=`$PKG_CONFIG --cflags glib-2.0 gthread-2.0 2>/dev/null | filterIncludeOptions`
+ QT_LIBS_GLIB=`$PKG_CONFIG --libs glib-2.0 gthread-2.0 2>/dev/null | filterLibraryOptions`
fi
if compileTest unix/glib "Glib" $QT_CFLAGS_GLIB $QT_LIBS_GLIB; then
CFG_GLIB=yes
-@@ -4952,9 +4952,9 @@
+@@ -5225,9 +5225,9 @@
# auto-detect GTK style support
- if [ "$CFG_GLIB" = "yes" -a "$CFG_QGTKSTYLE" != "no" ]; then
+ if [ "$CFG_GLIB" = "yes" -a "$CFG_GTK" != "no" ]; then
if [ -n "$PKG_CONFIG" ]; then
-- QT_CFLAGS_QGTK2=`$PKG_CONFIG --cflags gtk+-2.0 ">=" 2.18 atk 2>/dev/null`
-- QT_LIBS_QGTK2=`$PKG_CONFIG --libs gtk+-2.0 2>/dev/null`
+- QT_CFLAGS_QGTK3=`$PKG_CONFIG --cflags gtk+-3.0 2>/dev/null`
+- QT_LIBS_QGTK3=`$PKG_CONFIG --libs gtk+-3.0 2>/dev/null`
- QT_LIBS_QGOBJECT=`$PKG_CONFIG --libs gobject-2.0 2>/dev/null`
-+ QT_CFLAGS_QGTK2=`$PKG_CONFIG --cflags gtk+-2.0 ">=" 2.18 atk 2>/dev/null | filterIncludeOptions`
-+ QT_LIBS_QGTK2=`$PKG_CONFIG --libs gtk+-2.0 2>/dev/null | filterLibraryOptions`
++ QT_CFLAGS_QGTK3=`$PKG_CONFIG --cflags gtk+-3.0 2>/dev/null | filterIncludeOptions`
++ QT_LIBS_QGTK3=`$PKG_CONFIG --libs gtk+-3.0 2>/dev/null | filterLibraryOptions`
+ QT_LIBS_QGOBJECT=`$PKG_CONFIG --libs gobject-2.0 2>/dev/null | filterLibraryOptions`
fi
- if [ -n "$QT_CFLAGS_QGTK2" ] ; then
- CFG_QGTKSTYLE=yes
-@@ -5001,8 +5001,8 @@
+ if [ -n "$QT_CFLAGS_QGTK3" ] ; then
+ CFG_GTK=yes
+@@ -5272,8 +5272,8 @@
# Auto-detect PulseAudio support
if [ "$CFG_PULSEAUDIO" != "no" ]; then
if [ -n "$PKG_CONFIG" ]; then
- QT_CFLAGS_PULSEAUDIO=`$PKG_CONFIG --cflags libpulse '>=' 0.9.10 libpulse-mainloop-glib 2>/dev/null`
- QT_LIBS_PULSEAUDIO=`$PKG_CONFIG --libs libpulse '>=' 0.9.10 libpulse-mainloop-glib 2>/dev/null`
+ QT_CFLAGS_PULSEAUDIO=`$PKG_CONFIG --cflags libpulse '>=' 0.9.10 libpulse-mainloop-glib 2>/dev/null | filterIncludeOptions`
+ QT_LIBS_PULSEAUDIO=`$PKG_CONFIG --libs libpulse '>=' 0.9.10 libpulse-mainloop-glib 2>/dev/null | filterLibraryOptions`
fi
if compileTest unix/pulseaudio "PulseAudio" $QT_CFLAGS_PULSEAUDIO $QT_LIBS_PULSEAUDIO; then
CFG_PULSEAUDIO=yes
-@@ -5165,8 +5165,8 @@
+@@ -5436,8 +5436,8 @@
# auto-detect FontConfig support
if [ "$CFG_FONTCONFIG" != "no" ]; then
if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists fontconfig --exists freetype2 2>/dev/null; then
- QT_CFLAGS_FONTCONFIG=`$PKG_CONFIG --cflags fontconfig --cflags freetype2 2>/dev/null`
- QT_LIBS_FONTCONFIG=`$PKG_CONFIG --libs fontconfig --libs freetype2 2>/dev/null`
+ QT_CFLAGS_FONTCONFIG=`$PKG_CONFIG --cflags fontconfig --cflags freetype2 2>/dev/null | filterIncludeOptions`
+ QT_LIBS_FONTCONFIG=`$PKG_CONFIG --libs fontconfig --libs freetype2 2>/dev/null | filterLibraryOptions`
else
QT_CFLAGS_FONTCONFIG=
QT_LIBS_FONTCONFIG="-lfreetype -lfontconfig"
@@ -5192,9 +5192,9 @@
if [ "$CFG_LIBUDEV" != "no" ]; then
if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists libudev 2>/dev/null; then
- QMAKE_INCDIR_LIBUDEV=`$PKG_CONFIG --cflags-only-I libudev 2>/dev/null | sed -e 's,^-I,,g' -e 's, -I, ,g'`
- QMAKE_LIBS_LIBUDEV=`$PKG_CONFIG --libs libudev 2>/dev/null`
- QMAKE_CFLAGS_LIBUDEV=`$PKG_CONFIG --cflags libudev 2>/dev/null`
+ QMAKE_INCDIR_LIBUDEV=`$PKG_CONFIG --cflags-only-I libudev 2>/dev/null | filterIncludeOptions | sed -e 's,^-I,,g' -e 's, -I, ,g'`
+ QMAKE_LIBS_LIBUDEV=`$PKG_CONFIG --libs libudev 2>/dev/null | filterLibraryOptions`
+ QMAKE_CFLAGS_LIBUDEV=`$PKG_CONFIG --cflags libudev 2>/dev/null | filterIncludeOptions`
QMakeVar set QMAKE_INCDIR_LIBUDEV "$QMAKE_INCDIR_LIBUDEV"
QMakeVar set QMAKE_LIBS_LIBUDEV "$QMAKE_LIBS_LIBUDEV"
fi
@@ -5333,8 +5333,8 @@
if [ "$CFG_XCB" != "no" ]; then
if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists "xcb >= 1.5" 2>/dev/null; then
- QMAKE_CFLAGS_XCB="`$PKG_CONFIG --cflags xcb 2>/dev/null`"
- QMAKE_LIBS_XCB="`$PKG_CONFIG --libs xcb 2>/dev/null`"
+ QMAKE_CFLAGS_XCB="`$PKG_CONFIG --cflags xcb 2>/dev/null | filterIncludeOptions`"
+ QMAKE_LIBS_XCB="`$PKG_CONFIG --libs xcb 2>/dev/null | filterLibraryOptions`"
fi
if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists "x11" 2> /dev/null; then
QMAKE_X11_PREFIX="`$PKG_CONFIG --variable=prefix x11`"
-@@ -5353,16 +5353,16 @@
+@@ -5631,16 +5631,16 @@
CFG_XCB="system"
if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists "xcb >= 1.5" 2>/dev/null; then
XCB_PACKAGES="xcb xcb-shm xcb-sync xcb-xfixes xcb-randr xcb-image xcb-keysyms xcb-icccm xcb-shape"
- QMAKE_CFLAGS_XCB="`$PKG_CONFIG --cflags $XCB_PACKAGES 2>/dev/null`"
- QMAKE_LIBS_XCB="`$PKG_CONFIG --libs $XCB_PACKAGES 2>/dev/null`"
+ QMAKE_CFLAGS_XCB="`$PKG_CONFIG --cflags $XCB_PACKAGES 2>/dev/null | filterIncludeOptions`"
+ QMAKE_LIBS_XCB="`$PKG_CONFIG --libs $XCB_PACKAGES 2>/dev/null | filterLibraryOptions`"
fi
# libxcb version 1.10 was the first version that enables xcb-xkb by default,
# therefore the minimal xcb-xkb version we support is 1.10
CFG_XKB=no
if $PKG_CONFIG --exists "xcb-xkb >= 1.10" 2>/dev/null; then
- QMAKE_CFLAGS_XKB="`$PKG_CONFIG --cflags xcb xcb-xkb 2>/dev/null`"
- QMAKE_LIBS_XKB="`$PKG_CONFIG --libs xcb xcb-xkb 2>/dev/null`"
+ QMAKE_CFLAGS_XKB="`$PKG_CONFIG --cflags xcb xcb-xkb 2>/dev/null | filterIncludeOptions`"
+ QMAKE_LIBS_XKB="`$PKG_CONFIG --libs xcb xcb-xkb 2>/dev/null | filterLibraryOptions`"
if compileTest qpa/xcb-xkb "xcb-xkb" $QMAKE_CFLAGS_XKB $QMAKE_LIBS_XKB; then
CFG_XKB=yes
fi
@@ -5416,8 +5416,8 @@
if [ "$CFG_DIRECTFB" != "no" ]; then
if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists directfb 2>/dev/null; then
- QMAKE_CFLAGS_DIRECTFB=`$PKG_CONFIG --cflags directfb 2>/dev/null`
- QMAKE_LIBS_DIRECTFB=`$PKG_CONFIG --libs directfb 2>/dev/null`
+ QMAKE_CFLAGS_DIRECTFB=`$PKG_CONFIG --cflags directfb 2>/dev/null | filterIncludeOptions`
+ QMAKE_LIBS_DIRECTFB=`$PKG_CONFIG --libs directfb 2>/dev/null | filterLibraryOptions`
if compileTest qpa/directfb "DirectFB" $QMAKE_CFLAGS_DIRECTFB $QMAKE_LIBS_DIRECTFB; then
CFG_DIRECTFB=yes
elif [ "$CFG_DIRECTFB" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
-@@ -5470,8 +5470,8 @@
+@@ -5776,8 +5776,8 @@
if [ "$CFG_XKBCOMMON" != "no" ] && [ "$CFG_XKBCOMMON" != "qt" ]; then
# Check if there is a suitable system-wide xkbcommon
if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists "xkbcommon xkbcommon-x11 >= $MIN_REQ_XKBCOMMON" 2>/dev/null; then
- QMAKE_CFLAGS_XKBCOMMON="`$PKG_CONFIG --cflags xkbcommon xkbcommon-x11 2>/dev/null`"
- QMAKE_LIBS_XKBCOMMON="`$PKG_CONFIG --libs xkbcommon xkbcommon-x11 2>/dev/null`"
+ QMAKE_CFLAGS_XKBCOMMON="`$PKG_CONFIG --cflags xkbcommon xkbcommon-x11 2>/dev/null | filterIncludeOptions`"
+ QMAKE_LIBS_XKBCOMMON="`$PKG_CONFIG --libs xkbcommon xkbcommon-x11 2>/dev/null | filterLibraryOptions`"
QMakeVar set QMAKE_CFLAGS_XKBCOMMON "$QMAKE_CFLAGS_XKBCOMMON"
QMakeVar set QMAKE_LIBS_XKBCOMMON "$QMAKE_LIBS_XKBCOMMON"
-@@ -5524,9 +5524,9 @@
+@@ -5830,9 +5830,9 @@
fi
if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists egl 2>/dev/null; then
- QMAKE_INCDIR_EGL=`$PKG_CONFIG --cflags-only-I egl 2>/dev/null | sed -e 's,^-I,,g' -e 's, -I, ,g'`
- QMAKE_LIBS_EGL=`$PKG_CONFIG --libs egl 2>/dev/null`
- QMAKE_CFLAGS_EGL=`$PKG_CONFIG --cflags egl 2>/dev/null`
+ QMAKE_INCDIR_EGL=`$PKG_CONFIG --cflags-only-I egl 2>/dev/null | filterIncludeOptions | sed -e 's,^-I,,g' -e 's, -I, ,g'`
+ QMAKE_LIBS_EGL=`$PKG_CONFIG --libs egl 2>/dev/null | filterLibraryOptions`
+ QMAKE_CFLAGS_EGL=`$PKG_CONFIG --cflags egl 2>/dev/null | filterIncludeOptions`
QMakeVar set QMAKE_INCDIR_EGL "$QMAKE_INCDIR_EGL"
QMakeVar set QMAKE_LIBS_EGL "$QMAKE_LIBS_EGL"
QMakeVar set QMAKE_CFLAGS_EGL "`echo " $QMAKE_CFLAGS_EGL " | sed -e 's, -I[^ ]* , ,g;s,^ ,,;s, $,,'`"
Index: head/devel/qt5/files/extrapatch-mkspecs_features_create__cmake.prf
===================================================================
--- head/devel/qt5/files/extrapatch-mkspecs_features_create__cmake.prf (nonexistent)
+++ head/devel/qt5/files/extrapatch-mkspecs_features_create__cmake.prf (revision 434380)
@@ -0,0 +1,77 @@
+As we moved the libraries of Qt5 from /usr/local/lib to /usr/local/lib/qt5 the
+cmake files would get installed into /usr/local/lib/qt5/cmake. This however is
+not really convenient for use with other applications depending on Qt via cmake.
+
+For ports we could modify cmake.mk to always append /usr/local/lib/qt5 to the
+search path. This would however still break applications outside of the ports
+tree that users want to compile via cmake. An other option would be to patch
+devel/cmake to add /usr/local/lib/qt5/cmake to the default search paths.
+
+We chose the third option. To patch qmake's internal cmake generation function
+to fix up the paths so that cmake files still land in the the "correct" location
+in /usr/local/lib/cmake -- as this seemed to be the least intrusive method.
+
+
+
+--- mkspecs/features/create_cmake.prf.orig 2016-05-11 09:21:02.000000000 +0200
++++ mkspecs/features/create_cmake.prf 2016-06-03 18:21:42.389363000 +0200
+@@ -48,7 +52,7 @@
+ }
+
+ CMAKE_INCLUDE_DIR = $$cmakeRelativePath($$[QT_INSTALL_HEADERS], $$[QT_INSTALL_PREFIX])
+-contains(CMAKE_INCLUDE_DIR, "^\\.\\./.*") {
++contains(CMAKE_INCLUDE_DIR, "^\\.\\./.*")|freebsd {
+ CMAKE_INCLUDE_DIR = $$[QT_INSTALL_HEADERS]/
+ CMAKE_INCLUDE_DIR_IS_ABSOLUTE = True
+ }
+@@ -56,7 +60,7 @@
+ !exists($$first(QT.$${MODULE}_private.includes)): CMAKE_NO_PRIVATE_INCLUDES = true
+
+ CMAKE_LIB_DIR = $$cmakeRelativePath($$[QT_INSTALL_LIBS], $$[QT_INSTALL_PREFIX])
+-contains(CMAKE_LIB_DIR,"^\\.\\./.*") {
++contains(CMAKE_LIB_DIR,"^\\.\\./.*")|freebsd {
+ CMAKE_LIB_DIR = $$[QT_INSTALL_LIBS]/
+ CMAKE_LIB_DIR_IS_ABSOLUTE = True
+ } else {
+@@ -67,20 +71,20 @@
+ }
+
+ CMAKE_BIN_DIR = $$cmakeRelativePath($$[QT_HOST_BINS], $$[QT_INSTALL_PREFIX])
+-contains(CMAKE_BIN_DIR, "^\\.\\./.*") {
++contains(CMAKE_BIN_DIR, "^\\.\\./.*")|freebsd {
+ CMAKE_BIN_DIR = $$[QT_HOST_BINS]/
+ CMAKE_BIN_DIR_IS_ABSOLUTE = True
+ }
+
+ CMAKE_PLUGIN_DIR = $$cmakeRelativePath($$[QT_INSTALL_PLUGINS], $$[QT_INSTALL_PREFIX])
+-contains(CMAKE_PLUGIN_DIR, "^\\.\\./.*") {
++contains(CMAKE_PLUGIN_DIR, "^\\.\\./.*")|freebsd {
+ CMAKE_PLUGIN_DIR = $$[QT_INSTALL_PLUGINS]/
+ CMAKE_PLUGIN_DIR_IS_ABSOLUTE = True
+ }
+
+ win32:!wince:!static:!staticlib {
+ CMAKE_DLL_DIR = $$cmakeRelativePath($$[QT_INSTALL_BINS], $$[QT_INSTALL_PREFIX])
+- contains(CMAKE_DLL_DIR, "^\\.\\./.*") {
++ contains(CMAKE_DLL_DIR, "^\\.\\./.*")|freebsd {
+ CMAKE_DLL_DIR = $$[QT_INSTALL_BINS]/
+ CMAKE_DLL_DIR_IS_ABSOLUTE = True
+ }
+@@ -167,7 +171,7 @@
+ cmake_target_file
+
+ cmake_qt5_plugin_file.files = $$cmake_target_file.output
+- cmake_qt5_plugin_file.path = $$[QT_INSTALL_LIBS]/cmake/Qt5$${CMAKE_MODULE_NAME}
++ cmake_qt5_plugin_file.path = $$[QT_INSTALL_PREFIX]/lib/cmake/Qt5$${CMAKE_MODULE_NAME}
+ INSTALLS += cmake_qt5_plugin_file
+
+ return()
+@@ -314,7 +318,7 @@
+ cmake_qt5_module_files.files += $$cmake_macros_file.output
+ }
+
+-cmake_qt5_module_files.path = $$[QT_INSTALL_LIBS]/cmake/Qt5$${CMAKE_MODULE_NAME}
++cmake_qt5_module_files.path = $$[QT_INSTALL_PREFIX]/lib/cmake/Qt5$${CMAKE_MODULE_NAME}
+
+ # We are generating cmake files. Most developers of Qt are not aware of cmake,
+ # so we require automatic tests to be available. The only module which should
Property changes on: head/devel/qt5/files/extrapatch-mkspecs_features_create__cmake.prf
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt5/files/extrapatch-mkspecs_features_qt__module.prf
===================================================================
--- head/devel/qt5/files/extrapatch-mkspecs_features_qt__module.prf (revision 434379)
+++ head/devel/qt5/files/extrapatch-mkspecs_features_qt__module.prf (revision 434380)
@@ -1,26 +1,26 @@
The first hunk fixes the install location of the pkconfig files:
FreeBSD installs pkgconfig files to $LOCALBASE/libdata/pkgconfig
- qmake uses QMAKE_PKGCONFIG_DESTDIR as relative path to $$QT_LIBDIR
- respectively as absolute path.
+ qmake uses QMAKE_PKGCONFIG_DESTDIR as relative path to $$QT_LIBDIR.
+ As this is now '${PREFIX}/lib/qt5' we need to go up two levels.
The second hunk stops qmake from generating la files.
--- mkspecs/features/qt_module.prf.orig 2016-09-16 05:49:42 UTC
+++ mkspecs/features/qt_module.prf
@@ -247,7 +247,7 @@ load(qt_targets)
# this builds on top of qt_common
!internal_module:!lib_bundle:if(unix|mingw) {
CONFIG += create_pc
- QMAKE_PKGCONFIG_DESTDIR = pkgconfig
-+ QMAKE_PKGCONFIG_DESTDIR = ../libdata/pkgconfig
++ QMAKE_PKGCONFIG_DESTDIR = ../../libdata/pkgconfig
host_build: \
QMAKE_PKGCONFIG_LIBDIR = $$[QT_HOST_LIBS]
else: \
@@ -267,7 +267,6 @@ load(qt_targets)
QMAKE_PKGCONFIG_INSTALL_REPLACE += pclib_replace
}
!lib_bundle:unix {
- CONFIG += create_libtool
host_build: \
QMAKE_LIBTOOL_LIBDIR = $$[QT_HOST_LIBS]
else: \
Index: head/devel/qt5-concurrent/pkg-plist
===================================================================
--- head/devel/qt5-concurrent/pkg-plist (revision 434379)
+++ head/devel/qt5-concurrent/pkg-plist (revision 434380)
@@ -1,33 +1,33 @@
%%QT_INCDIR%%/QtConcurrent/QtConcurrent
%%QT_INCDIR%%/QtConcurrent/QtConcurrentDepends
%%QT_INCDIR%%/QtConcurrent/QtConcurrentFilter
%%QT_INCDIR%%/QtConcurrent/QtConcurrentMap
%%QT_INCDIR%%/QtConcurrent/QtConcurrentRun
%%QT_INCDIR%%/QtConcurrent/QtConcurrentVersion
%%QT_INCDIR%%/QtConcurrent/qtconcurrent_global.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentcompilertest.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentexception.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentfilter.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentfilterkernel.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentfunctionwrappers.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentiteratekernel.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentmap.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentmapkernel.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentmedian.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentreducekernel.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentrun.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentrunbase.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentstoredfunctioncall.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentthreadengine.h
%%QT_INCDIR%%/QtConcurrent/qtconcurrentversion.h
-%%QT_LIBDIR%%/cmake/Qt5Concurrent/Qt5ConcurrentConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Concurrent/Qt5ConcurrentConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Concurrent/Qt5ConcurrentConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Concurrent/Qt5ConcurrentConfigVersion.cmake
%%QT_LIBDIR%%/libQt5Concurrent.prl
%%QT_LIBDIR%%/libQt5Concurrent.so
%%QT_LIBDIR%%/libQt5Concurrent.so.5
%%QT_LIBDIR%%/libQt5Concurrent.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Concurrent.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Concurrent.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_concurrent.pri
%%QT_MKSPECDIR%%/modules/qt_lib_concurrent_private.pri
libdata/pkgconfig/Qt5Concurrent.pc
Index: head/devel/qt5-core/Makefile
===================================================================
--- head/devel/qt5-core/Makefile (revision 434379)
+++ head/devel/qt5-core/Makefile (revision 434380)
@@ -1,46 +1,45 @@
# $FreeBSD$
PORTNAME= core
DISTVERSION= ${QT5_VERSION}
-PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt5-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt core non-graphical module
LIB_DEPENDS= libicui18n.so:devel/icu \
libpcre.so:devel/pcre
USES= execinfo
USE_GNOME= glib20
USE_QT5= qmake_build buildtools_build
QT_DIST= base
HAS_CONFIGURE= yes
# Disable (almost) everything to install minimal qconfig.h.
# -no-feature-* adds QT_NO_* (for features which have no switch or
# that need to be detected).
CONFIGURE_ARGS= -no-accessibility -no-gif -no-libpng -no-libjpeg \
-no-openssl -no-gui -no-widgets -no-cups \
- -no-iconv -no-dbus -no-xcb -no-opengl \
+ -no-iconv -no-dbus -no-opengl \
-no-alsa -no-egl -no-evdev -no-feature-concurrent \
- -no-fontconfig -no-freetype -no-gtkstyle -no-harfbuzz \
- -no-libudev -no-pulseaudio -no-xcb -no-xinput -no-xkb \
- -no-xkbcommon -no-xrender -no-xshape -no-xsync -no-xvideo
+ -no-fontconfig -no-freetype -no-gtk -no-harfbuzz \
+ -no-libudev -no-pulseaudio -no-xcb -no-xinput2 -no-xkb -no-xcb-xlib \
+ -no-xkbcommon -no-xrender -no-xshape -no-xsync -no-libinput
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
BUILD_WRKSRC= ${WRKSRC}/src/corelib
INSTALL_WRKSRC= ${BUILD_WRKSRC}
QT_DEFINES= GLIB
QT_CONFIG= glib icu
.include <bsd.port.pre.mk>
post-install:
# Allow qconfig.h to be customized by single ports.
${AWK} 'BEGIN{print "#include <QtCore/qconfig-modules.h>"}{print}' \
${STAGEDIR}${PREFIX}/${QT_INCDIR_REL}/QtCore/qconfig.h > ${WRKDIR}/qconfig.h
${MV} ${WRKDIR}/qconfig.h ${STAGEDIR}${PREFIX}/${QT_INCDIR_REL}/QtCore/qconfig.h
.include <bsd.port.post.mk>
Index: head/devel/qt5-core/files/patch-git_ea9a8672
===================================================================
--- head/devel/qt5-core/files/patch-git_ea9a8672 (nonexistent)
+++ head/devel/qt5-core/files/patch-git_ea9a8672 (revision 434380)
@@ -0,0 +1,25 @@
+From ea9a8672a19588e89c0bda8e0c31424687c1e05f Mon Sep 17 00:00:00 2001
+From: Thiago Macieira <thiago.macieira@intel.com>
+Date: Thu, 3 Nov 2016 12:14:56 -0700
+Subject: [PATCH] Fix build with ICC on macOS: <atomic> is properly supported
+
+I'm guess I introduced the regression in the commit
+18ed6f20ad4327fa2ffbb687ac2f3ca7429c4348, which I wasn't sure about.
+
+Change-Id: Ic46ff326a6ba46bc877cfffd14839f84fdf796e7
+Reviewed-by: Jake Petroules <jake.petroules@qt.io>
+--- src/corelib/global/qcompilerdetection.h.orig 2017-02-10 22:14:51 UTC
++++ src/corelib/global/qcompilerdetection.h
+@@ -1066,12 +1066,6 @@
+ # ifndef _HAS_VARIADIC_TEMPLATES
+ # undef Q_COMPILER_VARIADIC_TEMPLATES
+ # endif
+-# elif defined(_LIBCPP_VERSION)
+-// libc++ uses __has_feature(cxx_atomic), so disable the feature if the compiler
+-// doesn't support it. That's required for the Intel compiler 14.x or earlier on OS X, for example.
+-# if !__has_feature(cxx_atomic)
+-# undef Q_COMPILER_ATOMICS
+-# endif
+ # endif
+ # if defined(Q_COMPILER_THREADSAFE_STATICS) && defined(Q_OS_MAC)
+ // Apple's low-level implementation of the C++ support library
Property changes on: head/devel/qt5-core/files/patch-git_ea9a8672
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt5-core/files/patch-src_corelib_corelib.pro
===================================================================
--- head/devel/qt5-core/files/patch-src_corelib_corelib.pro (nonexistent)
+++ head/devel/qt5-core/files/patch-src_corelib_corelib.pro (revision 434380)
@@ -0,0 +1,32 @@
+As we moved the libraries of Qt5 from /usr/local/lib to /usr/local/lib/qt5 the
+cmake files would get installed into /usr/local/lib/qt5/cmake. This however is
+not really convenient for use with other applications depending on Qt via cmake.
+
+For ports we could modify cmake.mk to always append /usr/local/lib/qt5 to the
+search path. This would however still break applications outside of the ports
+tree that users want to compile via cmake. An other option would be to patch
+devel/cmake to add /usr/local/lib/qt5/cmake to the default search paths.
+
+We chose the third option. To patch qmake's internal cmake generation function
+to fix up the paths so that cmake files still land in the the "correct" location
+in /usr/local/lib/cmake -- as this seemed to be the least intrusive method.
+
+
+
+--- src/corelib/corelib.pro.orig 2017-02-04 18:51:27 UTC
++++ src/corelib/corelib.pro
+@@ -113,12 +113,12 @@ cmake_extras_mkspec_dir_for_install.inpu
+ cmake_extras_mkspec_dir_for_install.output = $$DESTDIR/cmake/install/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake
+
+ cmake_qt5_umbrella_module_files.files = $$cmake_umbrella_config_file.output $$cmake_umbrella_config_version_file.output
+-cmake_qt5_umbrella_module_files.path = $$[QT_INSTALL_LIBS]/cmake/Qt5
++cmake_qt5_umbrella_module_files.path = $$[QT_INSTALL_PREFIX]/lib/cmake/Qt5
+
+ QMAKE_SUBSTITUTES += ctest_macros_file cmake_umbrella_config_file cmake_umbrella_config_version_file cmake_extras_mkspec_dir cmake_extras_mkspec_dir_for_install
+
+ ctest_qt5_module_files.files += $$ctest_macros_file.output $$cmake_extras_mkspec_dir_for_install.output
+
+-ctest_qt5_module_files.path = $$[QT_INSTALL_LIBS]/cmake/Qt5Core
++ctest_qt5_module_files.path = $$[QT_INSTALL_PREFIX]/lib/cmake/Qt5Core
+
+ INSTALLS += ctest_qt5_module_files cmake_qt5_umbrella_module_files
Property changes on: head/devel/qt5-core/files/patch-src_corelib_corelib.pro
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt5-core/pkg-plist
===================================================================
--- head/devel/qt5-core/pkg-plist (revision 434379)
+++ head/devel/qt5-core/pkg-plist (revision 434380)
@@ -1,681 +1,675 @@
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/cp949codetbl_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractanimation_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstracteventdispatcher_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractfileengine_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractitemmodel_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractproxymodel_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractstate_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstracttransition_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qanimationgroup_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qbig5codec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qbytearray_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qbytedata_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcfsocketnotifier_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcollator_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcore_mac_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcore_unix_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcoreapplication_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcorecmdlineargs_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcoreglobaldata_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcrashhandler_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdatastream_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdataurl_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdatetime_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdatetimeparser_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdebug_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdir_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdoublescanprint_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qelfparser_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeucjpcodec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeuckrcodec_p.h
-%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_blackberry_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_cf_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_glib_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_unix_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_win_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_winrt_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventloop_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventtransition_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfactoryloader_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfile_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfiledevice_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfileinfo_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfileselector_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemengine_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystementry_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemiterator_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemmetadata_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_fsevents_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_inotify_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_kqueue_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_polling_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_win_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfinalstate_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfreelist_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfsfileengine_iterator_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfsfileengine_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfunctions_fake_env_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfunctions_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfutureinterface_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfuturewatcher_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qgb18030codec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qharfbuzz_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qhistorystate_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qhooks_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qiconvcodec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qicucodec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qiodevice_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qipaddress_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qisciicodec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qitemselectionmodel_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjiscodec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjni_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjnihelpers_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjpunicode_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjson_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjsonparser_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjsonwriter_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlatincodec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlibrary_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocale_data_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocale_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocale_tools_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlockfile_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qloggingregistry_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmachparser_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetaobject_moc_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetaobject_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetaobjectbuilder_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetatype_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetatypeswitcher_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimedatabase_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimeglobpattern_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimemagicrule_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimemagicrulematcher_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimeprovider_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimetype_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimetypeparser_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmutex_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmutexpool_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qnoncontiguousbytedevice_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qnumeric_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qobject_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qorderedmutexlocker_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qparallelanimationgroup_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qpodlist_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qpoll_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qppsattribute_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qppsattributeprivate_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qppsobject_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qppsobjectprivate_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qprocess_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qpropertyanimation_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qreadwritelock_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qresource_iterator_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qresource_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qringbuffer_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsavefile_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qscopedpointer_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsequentialanimationgroup_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsettings_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsharedmemory_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsignaleventgenerator_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsignaltransition_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsimd_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsimplecodec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsjiscodec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstate_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstatemachine_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstorageinfo_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstringalgorithms_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstringiterator_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsystemerror_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsystemlibrary_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsystemsemaphore_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qt_pch.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtemporaryfile_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtextcodec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtextstream_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qthread_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qthreadpool_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimerinfo_unix_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimezoneprivate_data_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimezoneprivate_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtldurl_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtools_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtranslator_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtsciicodec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qunicodetables_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qunicodetools_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qurl_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qurltlds_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qutfcodec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qvariant_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qvariantanimation_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwindowscodec_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwindowspipereader_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwindowspipewriter_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwinoverlappedionotifier_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qxmlstream_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qxmlutils_p.h
%%QT_INCDIR%%/QtCore/QAbstractAnimation
%%QT_INCDIR%%/QtCore/QAbstractEventDispatcher
%%QT_INCDIR%%/QtCore/QAbstractItemModel
%%QT_INCDIR%%/QtCore/QAbstractListModel
%%QT_INCDIR%%/QtCore/QAbstractNativeEventFilter
%%QT_INCDIR%%/QtCore/QAbstractProxyModel
%%QT_INCDIR%%/QtCore/QAbstractState
%%QT_INCDIR%%/QtCore/QAbstractTableModel
%%QT_INCDIR%%/QtCore/QAbstractTransition
%%QT_INCDIR%%/QtCore/QAnimationDriver
%%QT_INCDIR%%/QtCore/QAnimationGroup
%%QT_INCDIR%%/QtCore/QArgument
%%QT_INCDIR%%/QtCore/QArrayData
%%QT_INCDIR%%/QtCore/QArrayDataPointer
%%QT_INCDIR%%/QtCore/QArrayDataPointerRef
%%QT_INCDIR%%/QtCore/QAssociativeIterable
%%QT_INCDIR%%/QtCore/QAtomicInt
%%QT_INCDIR%%/QtCore/QAtomicInteger
%%QT_INCDIR%%/QtCore/QAtomicPointer
-%%QT_INCDIR%%/QtCore/QBBSystemLocaleData
%%QT_INCDIR%%/QtCore/QBasicMutex
%%QT_INCDIR%%/QtCore/QBasicTimer
%%QT_INCDIR%%/QtCore/QBitArray
%%QT_INCDIR%%/QtCore/QBitRef
%%QT_INCDIR%%/QtCore/QBuffer
%%QT_INCDIR%%/QtCore/QByteArray
%%QT_INCDIR%%/QtCore/QByteArrayData
%%QT_INCDIR%%/QtCore/QByteArrayDataPtr
%%QT_INCDIR%%/QtCore/QByteArrayList
%%QT_INCDIR%%/QtCore/QByteArrayListIterator
%%QT_INCDIR%%/QtCore/QByteArrayMatcher
%%QT_INCDIR%%/QtCore/QByteRef
%%QT_INCDIR%%/QtCore/QCache
%%QT_INCDIR%%/QtCore/QChar
%%QT_INCDIR%%/QtCore/QCharRef
%%QT_INCDIR%%/QtCore/QChildEvent
%%QT_INCDIR%%/QtCore/QCollator
%%QT_INCDIR%%/QtCore/QCollatorSortKey
%%QT_INCDIR%%/QtCore/QCommandLineOption
%%QT_INCDIR%%/QtCore/QCommandLineParser
+%%QT_INCDIR%%/QtCore/QConstOverload
%%QT_INCDIR%%/QtCore/QContiguousCache
%%QT_INCDIR%%/QtCore/QContiguousCacheData
%%QT_INCDIR%%/QtCore/QContiguousCacheTypedData
%%QT_INCDIR%%/QtCore/QCoreApplication
%%QT_INCDIR%%/QtCore/QCryptographicHash
%%QT_INCDIR%%/QtCore/QDataStream
%%QT_INCDIR%%/QtCore/QDate
%%QT_INCDIR%%/QtCore/QDateTime
%%QT_INCDIR%%/QtCore/QDebug
%%QT_INCDIR%%/QtCore/QDebugStateSaver
%%QT_INCDIR%%/QtCore/QDeferredDeleteEvent
%%QT_INCDIR%%/QtCore/QDir
%%QT_INCDIR%%/QtCore/QDirIterator
%%QT_INCDIR%%/QtCore/QDynamicPropertyChangeEvent
%%QT_INCDIR%%/QtCore/QEasingCurve
%%QT_INCDIR%%/QtCore/QElapsedTimer
%%QT_INCDIR%%/QtCore/QEnableSharedFromThis
%%QT_INCDIR%%/QtCore/QEvent
%%QT_INCDIR%%/QtCore/QEventLoop
%%QT_INCDIR%%/QtCore/QEventLoopLocker
%%QT_INCDIR%%/QtCore/QEventTransition
%%QT_INCDIR%%/QtCore/QException
%%QT_INCDIR%%/QtCore/QExplicitlySharedDataPointer
%%QT_INCDIR%%/QtCore/QFactoryInterface
%%QT_INCDIR%%/QtCore/QFile
%%QT_INCDIR%%/QtCore/QFileDevice
%%QT_INCDIR%%/QtCore/QFileInfo
%%QT_INCDIR%%/QtCore/QFileInfoList
%%QT_INCDIR%%/QtCore/QFileSelector
%%QT_INCDIR%%/QtCore/QFileSystemWatcher
%%QT_INCDIR%%/QtCore/QFinalState
%%QT_INCDIR%%/QtCore/QFlag
%%QT_INCDIR%%/QtCore/QFlags
%%QT_INCDIR%%/QtCore/QForeachContainer
%%QT_INCDIR%%/QtCore/QFunctionPointer
%%QT_INCDIR%%/QtCore/QFuture
%%QT_INCDIR%%/QtCore/QFutureInterface
%%QT_INCDIR%%/QtCore/QFutureInterfaceBase
%%QT_INCDIR%%/QtCore/QFutureIterator
%%QT_INCDIR%%/QtCore/QFutureSynchronizer
%%QT_INCDIR%%/QtCore/QFutureWatcher
%%QT_INCDIR%%/QtCore/QFutureWatcherBase
%%QT_INCDIR%%/QtCore/QGenericArgument
%%QT_INCDIR%%/QtCore/QGenericReturnArgument
%%QT_INCDIR%%/QtCore/QGlobalStatic
%%QT_INCDIR%%/QtCore/QHash
%%QT_INCDIR%%/QtCore/QHashData
%%QT_INCDIR%%/QtCore/QHashDummyValue
%%QT_INCDIR%%/QtCore/QHashFunctions
%%QT_INCDIR%%/QtCore/QHashIterator
%%QT_INCDIR%%/QtCore/QHashNode
%%QT_INCDIR%%/QtCore/QHistoryState
%%QT_INCDIR%%/QtCore/QIODevice
%%QT_INCDIR%%/QtCore/QIdentityProxyModel
%%QT_INCDIR%%/QtCore/QIncompatibleFlag
%%QT_INCDIR%%/QtCore/QIntegerForSize
%%QT_INCDIR%%/QtCore/QInternal
%%QT_INCDIR%%/QtCore/QItemSelection
%%QT_INCDIR%%/QtCore/QItemSelectionModel
%%QT_INCDIR%%/QtCore/QItemSelectionRange
%%QT_INCDIR%%/QtCore/QJsonArray
%%QT_INCDIR%%/QtCore/QJsonDocument
%%QT_INCDIR%%/QtCore/QJsonObject
%%QT_INCDIR%%/QtCore/QJsonParseError
%%QT_INCDIR%%/QtCore/QJsonValue
%%QT_INCDIR%%/QtCore/QJsonValuePtr
%%QT_INCDIR%%/QtCore/QJsonValueRef
%%QT_INCDIR%%/QtCore/QJsonValueRefPtr
%%QT_INCDIR%%/QtCore/QLatin1Char
%%QT_INCDIR%%/QtCore/QLatin1Literal
%%QT_INCDIR%%/QtCore/QLatin1String
%%QT_INCDIR%%/QtCore/QLibrary
%%QT_INCDIR%%/QtCore/QLibraryInfo
%%QT_INCDIR%%/QtCore/QLine
%%QT_INCDIR%%/QtCore/QLineF
%%QT_INCDIR%%/QtCore/QLinkedList
%%QT_INCDIR%%/QtCore/QLinkedListData
%%QT_INCDIR%%/QtCore/QLinkedListIterator
%%QT_INCDIR%%/QtCore/QLinkedListNode
%%QT_INCDIR%%/QtCore/QList
%%QT_INCDIR%%/QtCore/QListData
%%QT_INCDIR%%/QtCore/QListIterator
%%QT_INCDIR%%/QtCore/QListSpecialMethods
%%QT_INCDIR%%/QtCore/QLocale
%%QT_INCDIR%%/QtCore/QLockFile
%%QT_INCDIR%%/QtCore/QLoggingCategory
%%QT_INCDIR%%/QtCore/QMap
%%QT_INCDIR%%/QtCore/QMapData
%%QT_INCDIR%%/QtCore/QMapDataBase
%%QT_INCDIR%%/QtCore/QMapIterator
%%QT_INCDIR%%/QtCore/QMapNode
%%QT_INCDIR%%/QtCore/QMapNodeBase
%%QT_INCDIR%%/QtCore/QMargins
%%QT_INCDIR%%/QtCore/QMarginsF
%%QT_INCDIR%%/QtCore/QMessageAuthenticationCode
%%QT_INCDIR%%/QtCore/QMessageLogContext
%%QT_INCDIR%%/QtCore/QMessageLogger
%%QT_INCDIR%%/QtCore/QMetaClassInfo
%%QT_INCDIR%%/QtCore/QMetaEnum
%%QT_INCDIR%%/QtCore/QMetaMethod
%%QT_INCDIR%%/QtCore/QMetaObject
%%QT_INCDIR%%/QtCore/QMetaProperty
%%QT_INCDIR%%/QtCore/QMetaType
%%QT_INCDIR%%/QtCore/QMimeData
%%QT_INCDIR%%/QtCore/QMimeDatabase
%%QT_INCDIR%%/QtCore/QMimeType
%%QT_INCDIR%%/QtCore/QModelIndex
%%QT_INCDIR%%/QtCore/QModelIndexList
%%QT_INCDIR%%/QtCore/QMultiHash
%%QT_INCDIR%%/QtCore/QMultiMap
%%QT_INCDIR%%/QtCore/QMutableByteArrayListIterator
%%QT_INCDIR%%/QtCore/QMutableFutureIterator
%%QT_INCDIR%%/QtCore/QMutableHashIterator
%%QT_INCDIR%%/QtCore/QMutableLinkedListIterator
%%QT_INCDIR%%/QtCore/QMutableListIterator
%%QT_INCDIR%%/QtCore/QMutableMapIterator
%%QT_INCDIR%%/QtCore/QMutableSetIterator
%%QT_INCDIR%%/QtCore/QMutableStringListIterator
%%QT_INCDIR%%/QtCore/QMutableVectorIterator
%%QT_INCDIR%%/QtCore/QMutex
%%QT_INCDIR%%/QtCore/QMutexLocker
%%QT_INCDIR%%/QtCore/QNoDebug
+%%QT_INCDIR%%/QtCore/QNonConstOverload
%%QT_INCDIR%%/QtCore/QObject
%%QT_INCDIR%%/QtCore/QObjectCleanupHandler
%%QT_INCDIR%%/QtCore/QObjectData
%%QT_INCDIR%%/QtCore/QObjectList
%%QT_INCDIR%%/QtCore/QObjectUserData
%%QT_INCDIR%%/QtCore/QPair
%%QT_INCDIR%%/QtCore/QParallelAnimationGroup
%%QT_INCDIR%%/QtCore/QPauseAnimation
%%QT_INCDIR%%/QtCore/QPersistentModelIndex
%%QT_INCDIR%%/QtCore/QPluginLoader
%%QT_INCDIR%%/QtCore/QPoint
%%QT_INCDIR%%/QtCore/QPointF
%%QT_INCDIR%%/QtCore/QPointer
%%QT_INCDIR%%/QtCore/QProcess
%%QT_INCDIR%%/QtCore/QProcessEnvironment
%%QT_INCDIR%%/QtCore/QPropertyAnimation
%%QT_INCDIR%%/QtCore/QQueue
%%QT_INCDIR%%/QtCore/QReadLocker
%%QT_INCDIR%%/QtCore/QReadWriteLock
%%QT_INCDIR%%/QtCore/QRect
%%QT_INCDIR%%/QtCore/QRectF
%%QT_INCDIR%%/QtCore/QRegExp
%%QT_INCDIR%%/QtCore/QRegularExpression
%%QT_INCDIR%%/QtCore/QRegularExpressionMatch
%%QT_INCDIR%%/QtCore/QRegularExpressionMatchIterator
%%QT_INCDIR%%/QtCore/QResource
%%QT_INCDIR%%/QtCore/QReturnArgument
%%QT_INCDIR%%/QtCore/QRunnable
%%QT_INCDIR%%/QtCore/QSaveFile
%%QT_INCDIR%%/QtCore/QScopedArrayPointer
%%QT_INCDIR%%/QtCore/QScopedPointer
%%QT_INCDIR%%/QtCore/QScopedPointerArrayDeleter
%%QT_INCDIR%%/QtCore/QScopedPointerDeleteLater
%%QT_INCDIR%%/QtCore/QScopedPointerDeleter
%%QT_INCDIR%%/QtCore/QScopedPointerObjectDeleteLater
%%QT_INCDIR%%/QtCore/QScopedPointerPodDeleter
%%QT_INCDIR%%/QtCore/QScopedValueRollback
%%QT_INCDIR%%/QtCore/QSemaphore
%%QT_INCDIR%%/QtCore/QSequentialAnimationGroup
%%QT_INCDIR%%/QtCore/QSequentialIterable
%%QT_INCDIR%%/QtCore/QSet
%%QT_INCDIR%%/QtCore/QSetIterator
%%QT_INCDIR%%/QtCore/QSettings
%%QT_INCDIR%%/QtCore/QSharedData
%%QT_INCDIR%%/QtCore/QSharedDataPointer
%%QT_INCDIR%%/QtCore/QSharedMemory
%%QT_INCDIR%%/QtCore/QSharedPointer
%%QT_INCDIR%%/QtCore/QSignalBlocker
%%QT_INCDIR%%/QtCore/QSignalMapper
%%QT_INCDIR%%/QtCore/QSignalTransition
%%QT_INCDIR%%/QtCore/QSize
%%QT_INCDIR%%/QtCore/QSizeF
%%QT_INCDIR%%/QtCore/QSocketNotifier
%%QT_INCDIR%%/QtCore/QSortFilterProxyModel
%%QT_INCDIR%%/QtCore/QStack
%%QT_INCDIR%%/QtCore/QStandardPaths
%%QT_INCDIR%%/QtCore/QState
%%QT_INCDIR%%/QtCore/QStateMachine
%%QT_INCDIR%%/QtCore/QStaticArrayData
%%QT_INCDIR%%/QtCore/QStaticAssertFailure
%%QT_INCDIR%%/QtCore/QStaticByteArrayData
%%QT_INCDIR%%/QtCore/QStaticPlugin
%%QT_INCDIR%%/QtCore/QStaticStringData
%%QT_INCDIR%%/QtCore/QStorageInfo
%%QT_INCDIR%%/QtCore/QString
%%QT_INCDIR%%/QtCore/QStringBuilder
%%QT_INCDIR%%/QtCore/QStringData
%%QT_INCDIR%%/QtCore/QStringDataPtr
%%QT_INCDIR%%/QtCore/QStringList
%%QT_INCDIR%%/QtCore/QStringListIterator
%%QT_INCDIR%%/QtCore/QStringListModel
%%QT_INCDIR%%/QtCore/QStringMatcher
%%QT_INCDIR%%/QtCore/QStringRef
%%QT_INCDIR%%/QtCore/QSysInfo
%%QT_INCDIR%%/QtCore/QSystemSemaphore
%%QT_INCDIR%%/QtCore/QTemporaryDir
%%QT_INCDIR%%/QtCore/QTemporaryFile
%%QT_INCDIR%%/QtCore/QTextBoundaryFinder
%%QT_INCDIR%%/QtCore/QTextCodec
%%QT_INCDIR%%/QtCore/QTextDecoder
%%QT_INCDIR%%/QtCore/QTextEncoder
%%QT_INCDIR%%/QtCore/QTextStream
%%QT_INCDIR%%/QtCore/QTextStreamFunction
%%QT_INCDIR%%/QtCore/QTextStreamManipulator
%%QT_INCDIR%%/QtCore/QThread
%%QT_INCDIR%%/QtCore/QThreadPool
%%QT_INCDIR%%/QtCore/QThreadStorage
%%QT_INCDIR%%/QtCore/QThreadStorageData
%%QT_INCDIR%%/QtCore/QTime
%%QT_INCDIR%%/QtCore/QTimeLine
%%QT_INCDIR%%/QtCore/QTimeZone
%%QT_INCDIR%%/QtCore/QTimer
%%QT_INCDIR%%/QtCore/QTimerEvent
%%QT_INCDIR%%/QtCore/QTranslator
%%QT_INCDIR%%/QtCore/QTypeInfo
%%QT_INCDIR%%/QtCore/QTypeInfoMerger
%%QT_INCDIR%%/QtCore/QTypeInfoQuery
%%QT_INCDIR%%/QtCore/QUnhandledException
%%QT_INCDIR%%/QtCore/QUrl
%%QT_INCDIR%%/QtCore/QUrlQuery
%%QT_INCDIR%%/QtCore/QUrlTwoFlags
%%QT_INCDIR%%/QtCore/QUuid
%%QT_INCDIR%%/QtCore/QVarLengthArray
%%QT_INCDIR%%/QtCore/QVariant
%%QT_INCDIR%%/QtCore/QVariantAnimation
%%QT_INCDIR%%/QtCore/QVariantComparisonHelper
%%QT_INCDIR%%/QtCore/QVariantHash
%%QT_INCDIR%%/QtCore/QVariantList
%%QT_INCDIR%%/QtCore/QVariantMap
%%QT_INCDIR%%/QtCore/QVector
%%QT_INCDIR%%/QtCore/QVectorIterator
%%QT_INCDIR%%/QtCore/QVersionNumber
%%QT_INCDIR%%/QtCore/QWaitCondition
%%QT_INCDIR%%/QtCore/QWeakPointer
%%QT_INCDIR%%/QtCore/QWinEventNotifier
%%QT_INCDIR%%/QtCore/QWriteLocker
%%QT_INCDIR%%/QtCore/QXmlStreamAttribute
%%QT_INCDIR%%/QtCore/QXmlStreamAttributes
%%QT_INCDIR%%/QtCore/QXmlStreamEntityDeclaration
%%QT_INCDIR%%/QtCore/QXmlStreamEntityDeclarations
%%QT_INCDIR%%/QtCore/QXmlStreamEntityResolver
%%QT_INCDIR%%/QtCore/QXmlStreamNamespaceDeclaration
%%QT_INCDIR%%/QtCore/QXmlStreamNamespaceDeclarations
%%QT_INCDIR%%/QtCore/QXmlStreamNotationDeclaration
%%QT_INCDIR%%/QtCore/QXmlStreamNotationDeclarations
%%QT_INCDIR%%/QtCore/QXmlStreamReader
%%QT_INCDIR%%/QtCore/QXmlStreamStringRef
%%QT_INCDIR%%/QtCore/QXmlStreamWriter
%%QT_INCDIR%%/QtCore/Q_PID
+%%QT_INCDIR%%/QtCore/Q_SECURITY_ATTRIBUTES
+%%QT_INCDIR%%/QtCore/Q_STARTUPINFO
%%QT_INCDIR%%/QtCore/Qt
%%QT_INCDIR%%/QtCore/QtAlgorithms
%%QT_INCDIR%%/QtCore/QtCleanUpFunction
%%QT_INCDIR%%/QtCore/QtConfig
%%QT_INCDIR%%/QtCore/QtContainerFwd
%%QT_INCDIR%%/QtCore/QtCore
%%QT_INCDIR%%/QtCore/QtCoreDepends
%%QT_INCDIR%%/QtCore/QtCoreVersion
%%QT_INCDIR%%/QtCore/QtDebug
%%QT_INCDIR%%/QtCore/QtEndian
%%QT_INCDIR%%/QtCore/QtGlobal
%%QT_INCDIR%%/QtCore/QtMath
%%QT_INCDIR%%/QtCore/QtMessageHandler
%%QT_INCDIR%%/QtCore/QtMsgHandler
%%QT_INCDIR%%/QtCore/QtNumeric
%%QT_INCDIR%%/QtCore/QtPlugin
%%QT_INCDIR%%/QtCore/QtPluginInstanceFunction
%%QT_INCDIR%%/QtCore/QtPluginMetaDataFunction
%%QT_INCDIR%%/QtCore/qabstractanimation.h
%%QT_INCDIR%%/QtCore/qabstracteventdispatcher.h
%%QT_INCDIR%%/QtCore/qabstractitemmodel.h
%%QT_INCDIR%%/QtCore/qabstractnativeeventfilter.h
%%QT_INCDIR%%/QtCore/qabstractproxymodel.h
%%QT_INCDIR%%/QtCore/qabstractstate.h
%%QT_INCDIR%%/QtCore/qabstracttransition.h
%%QT_INCDIR%%/QtCore/qalgorithms.h
%%QT_INCDIR%%/QtCore/qanimationgroup.h
%%QT_INCDIR%%/QtCore/qarraydata.h
%%QT_INCDIR%%/QtCore/qarraydataops.h
%%QT_INCDIR%%/QtCore/qarraydatapointer.h
%%QT_INCDIR%%/QtCore/qatomic.h
-%%QT_INCDIR%%/QtCore/qatomic_armv5.h
-%%QT_INCDIR%%/QtCore/qatomic_armv6.h
-%%QT_INCDIR%%/QtCore/qatomic_armv7.h
%%QT_INCDIR%%/QtCore/qatomic_bootstrap.h
%%QT_INCDIR%%/QtCore/qatomic_cxx11.h
-%%QT_INCDIR%%/QtCore/qatomic_gcc.h
-%%QT_INCDIR%%/QtCore/qatomic_ia64.h
%%QT_INCDIR%%/QtCore/qatomic_msvc.h
-%%QT_INCDIR%%/QtCore/qatomic_unix.h
-%%QT_INCDIR%%/QtCore/qatomic_x86.h
%%QT_INCDIR%%/QtCore/qbasicatomic.h
%%QT_INCDIR%%/QtCore/qbasictimer.h
%%QT_INCDIR%%/QtCore/qbitarray.h
%%QT_INCDIR%%/QtCore/qbuffer.h
%%QT_INCDIR%%/QtCore/qbytearray.h
%%QT_INCDIR%%/QtCore/qbytearraylist.h
%%QT_INCDIR%%/QtCore/qbytearraymatcher.h
%%QT_INCDIR%%/QtCore/qcache.h
%%QT_INCDIR%%/QtCore/qchar.h
%%QT_INCDIR%%/QtCore/qcollator.h
%%QT_INCDIR%%/QtCore/qcommandlineoption.h
%%QT_INCDIR%%/QtCore/qcommandlineparser.h
%%QT_INCDIR%%/QtCore/qcompilerdetection.h
%%QT_INCDIR%%/QtCore/qconfig-dist.h
%%QT_INCDIR%%/QtCore/qconfig-large.h
%%QT_INCDIR%%/QtCore/qconfig-medium.h
%%QT_INCDIR%%/QtCore/qconfig-minimal.h
%%QT_INCDIR%%/QtCore/qconfig-nacl.h
%%QT_INCDIR%%/QtCore/qconfig-small.h
%%QT_INCDIR%%/QtCore/qconfig.h
%%QT_INCDIR%%/QtCore/qcontainerfwd.h
%%QT_INCDIR%%/QtCore/qcontiguouscache.h
%%QT_INCDIR%%/QtCore/qcoreapplication.h
%%QT_INCDIR%%/QtCore/qcoreevent.h
%%QT_INCDIR%%/QtCore/qcryptographichash.h
%%QT_INCDIR%%/QtCore/qdatastream.h
%%QT_INCDIR%%/QtCore/qdatetime.h
%%QT_INCDIR%%/QtCore/qdebug.h
%%QT_INCDIR%%/QtCore/qdir.h
%%QT_INCDIR%%/QtCore/qdiriterator.h
%%QT_INCDIR%%/QtCore/qeasingcurve.h
%%QT_INCDIR%%/QtCore/qelapsedtimer.h
%%QT_INCDIR%%/QtCore/qendian.h
%%QT_INCDIR%%/QtCore/qeventloop.h
%%QT_INCDIR%%/QtCore/qeventtransition.h
%%QT_INCDIR%%/QtCore/qexception.h
%%QT_INCDIR%%/QtCore/qfactoryinterface.h
%%QT_INCDIR%%/QtCore/qfeatures.h
%%QT_INCDIR%%/QtCore/qfile.h
%%QT_INCDIR%%/QtCore/qfiledevice.h
%%QT_INCDIR%%/QtCore/qfileinfo.h
%%QT_INCDIR%%/QtCore/qfileselector.h
%%QT_INCDIR%%/QtCore/qfilesystemwatcher.h
%%QT_INCDIR%%/QtCore/qfinalstate.h
%%QT_INCDIR%%/QtCore/qflags.h
%%QT_INCDIR%%/QtCore/qfunctions_nacl.h
%%QT_INCDIR%%/QtCore/qfunctions_vxworks.h
%%QT_INCDIR%%/QtCore/qfunctions_wince.h
%%QT_INCDIR%%/QtCore/qfunctions_winrt.h
%%QT_INCDIR%%/QtCore/qfuture.h
%%QT_INCDIR%%/QtCore/qfutureinterface.h
%%QT_INCDIR%%/QtCore/qfuturesynchronizer.h
%%QT_INCDIR%%/QtCore/qfuturewatcher.h
%%QT_INCDIR%%/QtCore/qgenericatomic.h
%%QT_INCDIR%%/QtCore/qglobal.h
%%QT_INCDIR%%/QtCore/qglobalstatic.h
%%QT_INCDIR%%/QtCore/qhash.h
%%QT_INCDIR%%/QtCore/qhashfunctions.h
%%QT_INCDIR%%/QtCore/qhistorystate.h
%%QT_INCDIR%%/QtCore/qidentityproxymodel.h
%%QT_INCDIR%%/QtCore/qiodevice.h
%%QT_INCDIR%%/QtCore/qisenum.h
%%QT_INCDIR%%/QtCore/qitemselectionmodel.h
%%QT_INCDIR%%/QtCore/qiterator.h
%%QT_INCDIR%%/QtCore/qjsonarray.h
%%QT_INCDIR%%/QtCore/qjsondocument.h
%%QT_INCDIR%%/QtCore/qjsonobject.h
%%QT_INCDIR%%/QtCore/qjsonvalue.h
%%QT_INCDIR%%/QtCore/qlibrary.h
%%QT_INCDIR%%/QtCore/qlibraryinfo.h
%%QT_INCDIR%%/QtCore/qline.h
%%QT_INCDIR%%/QtCore/qlinkedlist.h
%%QT_INCDIR%%/QtCore/qlist.h
%%QT_INCDIR%%/QtCore/qlocale.h
-%%QT_INCDIR%%/QtCore/qlocale_blackberry.h
%%QT_INCDIR%%/QtCore/qlockfile.h
%%QT_INCDIR%%/QtCore/qlogging.h
%%QT_INCDIR%%/QtCore/qloggingcategory.h
%%QT_INCDIR%%/QtCore/qmap.h
%%QT_INCDIR%%/QtCore/qmargins.h
%%QT_INCDIR%%/QtCore/qmath.h
%%QT_INCDIR%%/QtCore/qmessageauthenticationcode.h
%%QT_INCDIR%%/QtCore/qmetaobject.h
%%QT_INCDIR%%/QtCore/qmetatype.h
%%QT_INCDIR%%/QtCore/qmimedata.h
%%QT_INCDIR%%/QtCore/qmimedatabase.h
%%QT_INCDIR%%/QtCore/qmimetype.h
%%QT_INCDIR%%/QtCore/qmutex.h
%%QT_INCDIR%%/QtCore/qnamespace.h
%%QT_INCDIR%%/QtCore/qnumeric.h
%%QT_INCDIR%%/QtCore/qobject.h
%%QT_INCDIR%%/QtCore/qobject_impl.h
%%QT_INCDIR%%/QtCore/qobjectcleanuphandler.h
%%QT_INCDIR%%/QtCore/qobjectdefs.h
%%QT_INCDIR%%/QtCore/qobjectdefs_impl.h
%%QT_INCDIR%%/QtCore/qpair.h
%%QT_INCDIR%%/QtCore/qparallelanimationgroup.h
%%QT_INCDIR%%/QtCore/qpauseanimation.h
%%QT_INCDIR%%/QtCore/qplugin.h
%%QT_INCDIR%%/QtCore/qpluginloader.h
%%QT_INCDIR%%/QtCore/qpoint.h
%%QT_INCDIR%%/QtCore/qpointer.h
%%QT_INCDIR%%/QtCore/qprocess.h
%%QT_INCDIR%%/QtCore/qprocessordetection.h
%%QT_INCDIR%%/QtCore/qpropertyanimation.h
%%QT_INCDIR%%/QtCore/qqueue.h
%%QT_INCDIR%%/QtCore/qreadwritelock.h
%%QT_INCDIR%%/QtCore/qrect.h
%%QT_INCDIR%%/QtCore/qrefcount.h
%%QT_INCDIR%%/QtCore/qregexp.h
%%QT_INCDIR%%/QtCore/qregularexpression.h
%%QT_INCDIR%%/QtCore/qresource.h
%%QT_INCDIR%%/QtCore/qresultstore.h
%%QT_INCDIR%%/QtCore/qrunnable.h
%%QT_INCDIR%%/QtCore/qsavefile.h
%%QT_INCDIR%%/QtCore/qscopedpointer.h
%%QT_INCDIR%%/QtCore/qscopedvaluerollback.h
%%QT_INCDIR%%/QtCore/qsemaphore.h
%%QT_INCDIR%%/QtCore/qsequentialanimationgroup.h
%%QT_INCDIR%%/QtCore/qset.h
%%QT_INCDIR%%/QtCore/qsettings.h
%%QT_INCDIR%%/QtCore/qshareddata.h
%%QT_INCDIR%%/QtCore/qsharedmemory.h
%%QT_INCDIR%%/QtCore/qsharedpointer.h
%%QT_INCDIR%%/QtCore/qsharedpointer_impl.h
%%QT_INCDIR%%/QtCore/qsignalmapper.h
%%QT_INCDIR%%/QtCore/qsignaltransition.h
%%QT_INCDIR%%/QtCore/qsize.h
%%QT_INCDIR%%/QtCore/qsocketnotifier.h
%%QT_INCDIR%%/QtCore/qsortfilterproxymodel.h
%%QT_INCDIR%%/QtCore/qstack.h
%%QT_INCDIR%%/QtCore/qstandardpaths.h
%%QT_INCDIR%%/QtCore/qstate.h
%%QT_INCDIR%%/QtCore/qstatemachine.h
%%QT_INCDIR%%/QtCore/qstorageinfo.h
%%QT_INCDIR%%/QtCore/qstring.h
%%QT_INCDIR%%/QtCore/qstringbuilder.h
%%QT_INCDIR%%/QtCore/qstringlist.h
%%QT_INCDIR%%/QtCore/qstringlistmodel.h
%%QT_INCDIR%%/QtCore/qstringmatcher.h
%%QT_INCDIR%%/QtCore/qsysinfo.h
%%QT_INCDIR%%/QtCore/qsystemdetection.h
%%QT_INCDIR%%/QtCore/qsystemsemaphore.h
%%QT_INCDIR%%/QtCore/qt_windows.h
%%QT_INCDIR%%/QtCore/qtcoreversion.h
%%QT_INCDIR%%/QtCore/qtemporarydir.h
%%QT_INCDIR%%/QtCore/qtemporaryfile.h
%%QT_INCDIR%%/QtCore/qtextboundaryfinder.h
%%QT_INCDIR%%/QtCore/qtextcodec.h
%%QT_INCDIR%%/QtCore/qtextstream.h
%%QT_INCDIR%%/QtCore/qthread.h
%%QT_INCDIR%%/QtCore/qthreadpool.h
%%QT_INCDIR%%/QtCore/qthreadstorage.h
%%QT_INCDIR%%/QtCore/qtimeline.h
%%QT_INCDIR%%/QtCore/qtimer.h
%%QT_INCDIR%%/QtCore/qtimezone.h
%%QT_INCDIR%%/QtCore/qtranslator.h
%%QT_INCDIR%%/QtCore/qtypeinfo.h
%%QT_INCDIR%%/QtCore/qtypetraits.h
%%QT_INCDIR%%/QtCore/qurl.h
%%QT_INCDIR%%/QtCore/qurlquery.h
%%QT_INCDIR%%/QtCore/quuid.h
%%QT_INCDIR%%/QtCore/qvariant.h
%%QT_INCDIR%%/QtCore/qvariantanimation.h
%%QT_INCDIR%%/QtCore/qvarlengtharray.h
%%QT_INCDIR%%/QtCore/qvector.h
%%QT_INCDIR%%/QtCore/qversionnumber.h
%%QT_INCDIR%%/QtCore/qversiontagging.h
%%QT_INCDIR%%/QtCore/qwaitcondition.h
%%QT_INCDIR%%/QtCore/qwineventnotifier.h
%%QT_INCDIR%%/QtCore/qxmlstream.h
-%%QT_LIBDIR%%/cmake/Qt5/Qt5Config.cmake
-%%QT_LIBDIR%%/cmake/Qt5/Qt5ConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5Core/Qt5CTestMacros.cmake
-%%QT_LIBDIR%%/cmake/Qt5Core/Qt5CoreConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Core/Qt5CoreConfigExtras.cmake
-%%QT_LIBDIR%%/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake
-%%QT_LIBDIR%%/cmake/Qt5Core/Qt5CoreConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5Core/Qt5CoreMacros.cmake
+%%QT_CMAKEDIR%%/Qt5/Qt5Config.cmake
+%%QT_CMAKEDIR%%/Qt5/Qt5ConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Core/Qt5CTestMacros.cmake
+%%QT_CMAKEDIR%%/Qt5Core/Qt5CoreConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Core/Qt5CoreConfigExtras.cmake
+%%QT_CMAKEDIR%%/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake
+%%QT_CMAKEDIR%%/Qt5Core/Qt5CoreConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Core/Qt5CoreMacros.cmake
%%QT_LIBDIR%%/libQt5Core.prl
%%QT_LIBDIR%%/libQt5Core.so
%%QT_LIBDIR%%/libQt5Core.so.5
%%QT_LIBDIR%%/libQt5Core.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Core.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Core.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_core.pri
%%QT_MKSPECDIR%%/modules/qt_lib_core_private.pri
libdata/pkgconfig/Qt5Core.pc
-@comment Ensure that a (even empty) qconfig-modules.h exists.
-@exec touch %%QT_INCDIR%%/QtCore/qconfig-modules.h
Index: head/devel/qt5-dbus/pkg-plist
===================================================================
--- head/devel/qt5-dbus/pkg-plist (nonexistent)
+++ head/devel/qt5-dbus/pkg-plist (revision 434380)
@@ -0,0 +1,79 @@
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/dbus_minimal_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbus_symbols_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusabstractadaptor_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusabstractinterface_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusargument_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusconnection_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusconnectionmanager_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbuscontext_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusintegrator_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusinterface_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusintrospection_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusmessage_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusmetaobject_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusmetatype_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbuspendingcall_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusthreaddebug_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusutil_p.h
+%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusxmlparser_p.h
+%%QT_INCDIR%%/QtDBus/QDBusAbstractAdaptor
+%%QT_INCDIR%%/QtDBus/QDBusAbstractInterface
+%%QT_INCDIR%%/QtDBus/QDBusAbstractInterfaceBase
+%%QT_INCDIR%%/QtDBus/QDBusArgument
+%%QT_INCDIR%%/QtDBus/QDBusConnection
+%%QT_INCDIR%%/QtDBus/QDBusConnectionInterface
+%%QT_INCDIR%%/QtDBus/QDBusContext
+%%QT_INCDIR%%/QtDBus/QDBusError
+%%QT_INCDIR%%/QtDBus/QDBusInterface
+%%QT_INCDIR%%/QtDBus/QDBusMessage
+%%QT_INCDIR%%/QtDBus/QDBusMetaType
+%%QT_INCDIR%%/QtDBus/QDBusObjectPath
+%%QT_INCDIR%%/QtDBus/QDBusPendingCall
+%%QT_INCDIR%%/QtDBus/QDBusPendingCallWatcher
+%%QT_INCDIR%%/QtDBus/QDBusPendingReply
+%%QT_INCDIR%%/QtDBus/QDBusPendingReplyData
+%%QT_INCDIR%%/QtDBus/QDBusReply
+%%QT_INCDIR%%/QtDBus/QDBusServer
+%%QT_INCDIR%%/QtDBus/QDBusServiceWatcher
+%%QT_INCDIR%%/QtDBus/QDBusSignature
+%%QT_INCDIR%%/QtDBus/QDBusUnixFileDescriptor
+%%QT_INCDIR%%/QtDBus/QDBusVariant
+%%QT_INCDIR%%/QtDBus/QDBusVirtualObject
+%%QT_INCDIR%%/QtDBus/QtDBus
+%%QT_INCDIR%%/QtDBus/QtDBusDepends
+%%QT_INCDIR%%/QtDBus/QtDBusVersion
+%%QT_INCDIR%%/QtDBus/qdbusabstractadaptor.h
+%%QT_INCDIR%%/QtDBus/qdbusabstractinterface.h
+%%QT_INCDIR%%/QtDBus/qdbusargument.h
+%%QT_INCDIR%%/QtDBus/qdbusconnection.h
+%%QT_INCDIR%%/QtDBus/qdbusconnectioninterface.h
+%%QT_INCDIR%%/QtDBus/qdbuscontext.h
+%%QT_INCDIR%%/QtDBus/qdbuserror.h
+%%QT_INCDIR%%/QtDBus/qdbusextratypes.h
+%%QT_INCDIR%%/QtDBus/qdbusinterface.h
+%%QT_INCDIR%%/QtDBus/qdbusmacros.h
+%%QT_INCDIR%%/QtDBus/qdbusmessage.h
+%%QT_INCDIR%%/QtDBus/qdbusmetatype.h
+%%QT_INCDIR%%/QtDBus/qdbuspendingcall.h
+%%QT_INCDIR%%/QtDBus/qdbuspendingreply.h
+%%QT_INCDIR%%/QtDBus/qdbusreply.h
+%%QT_INCDIR%%/QtDBus/qdbusserver.h
+%%QT_INCDIR%%/QtDBus/qdbusservicewatcher.h
+%%QT_INCDIR%%/QtDBus/qdbusunixfiledescriptor.h
+%%QT_INCDIR%%/QtDBus/qdbusvirtualobject.h
+%%QT_INCDIR%%/QtDBus/qtdbusversion.h
+%%QT_CMAKEDIR%%/Qt5DBus/Qt5DBusConfig.cmake
+%%QT_CMAKEDIR%%/Qt5DBus/Qt5DBusConfigExtras.cmake
+%%QT_CMAKEDIR%%/Qt5DBus/Qt5DBusConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5DBus/Qt5DBusMacros.cmake
+%%QT_LIBDIR%%/libQt5DBus.prl
+%%QT_LIBDIR%%/libQt5DBus.so
+%%QT_LIBDIR%%/libQt5DBus.so.5
+%%QT_LIBDIR%%/libQt5DBus.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQt5DBus.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQt5DBus.so.%%FULLVER%%.debug
+%%QT_BINDIR%%/qdbuscpp2xml
+%%QT_BINDIR%%/qdbusxml2cpp
+%%QT_MKSPECDIR%%/modules/qt_lib_dbus.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_dbus_private.pri
+libdata/pkgconfig/Qt5DBus.pc
Property changes on: head/devel/qt5-dbus/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt5-dbus/Makefile
===================================================================
--- head/devel/qt5-dbus/Makefile (nonexistent)
+++ head/devel/qt5-dbus/Makefile (revision 434380)
@@ -0,0 +1,41 @@
+# $FreeBSD$
+
+PORTNAME= dbus
+DISTVERSION= ${QT5_VERSION}
+CATEGORIES= devel
+PKGNAMEPREFIX= qt5-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt D-Bus inter-process communication module
+
+LIB_DEPENDS= libdbus-1.so:devel/dbus
+
+USE_QT5= core qmake_build buildtools_build
+QT_DIST= base
+HAS_CONFIGURE= yes
+CONFIGURE_ARGS= -no-gui -no-xcb
+USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
+
+BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
+INSTALL_WRKSRC= ${BUILD_WRKSRC}
+
+TOOLS= qdbuscpp2xml qdbusxml2cpp
+
+QT_DEFINES= DBUS
+QT_CONFIG= dbus
+
+post-build:
+.for t in ${TOOLS}
+ @cd ${WRKSRC}/src/tools/${t} && \
+ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \
+ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET}
+.endfor
+
+post-install:
+.for t in ${TOOLS}
+ @cd ${WRKSRC}/src/tools/${t} && \
+ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \
+ ${MAKE_ARGS} ${INSTALL_TARGET}
+.endfor
+
+.include <bsd.port.mk>
Property changes on: head/devel/qt5-dbus/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt5-designer/pkg-plist
===================================================================
--- head/devel/qt5-designer/pkg-plist (revision 434379)
+++ head/devel/qt5-designer/pkg-plist (revision 434380)
@@ -1,202 +1,202 @@
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/abstractdialoggui_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/abstractintrospection_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/actioneditor_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/actionprovider_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/actionrepository_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/codedialog_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/connectionedit_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/csshighlighter_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/deviceprofile_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/dialoggui_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/extensionfactory_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/formbuilderextra_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/formlayoutmenu_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/formwindowbase_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/grid_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/gridpanel_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/htmlhighlighter_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/iconloader_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/iconselector_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/invisible_widget_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/layout_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/layoutinfo_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/lib_pch.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/metadatabase_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/morphmenu_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/newactiondialog_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/newformwidget_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/orderdialog_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/plaintexteditor_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/plugindialog_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/pluginmanager_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/previewconfigurationwidget_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/previewmanager_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/promotionmodel_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/promotiontaskmenu_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/properties_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/propertylineedit_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_command2_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_command_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_dnditem_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_dockwidget_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_formbuilder_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_formeditorcommand_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_formwindowcommand_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_formwindowmanager_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_introspection_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_membersheet_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_menu_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_menubar_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_objectinspector_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_promotion_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_promotiondialog_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_propertycommand_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_propertyeditor_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_propertysheet_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_qsettings_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_stackedbox_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_tabwidget_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_taskmenu_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_toolbar_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_toolbox_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_utils_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_widget_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_widgetbox_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_widgetitem_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qlayout_widget_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qsimpleresource_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qtresourceeditordialog_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qtresourcemodel_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qtresourceview_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/rcc_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/resourcebuilder_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/richtexteditor_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/shared_enums_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/shared_global_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/shared_settings_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/sheet_delegate_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/signalslotdialog_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/spacer_widget_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/stylesheeteditor_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/textbuilder_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/textpropertyeditor_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/ui4_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/widgetdatabase_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/widgetfactory_p.h
%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/zoomwidget_p.h
%%QT_INCDIR%%/QtDesigner/QAbstractExtensionFactory
%%QT_INCDIR%%/QtDesigner/QAbstractExtensionManager
%%QT_INCDIR%%/QtDesigner/QAbstractFormBuilder
%%QT_INCDIR%%/QtDesigner/QDesignerActionEditorInterface
%%QT_INCDIR%%/QtDesigner/QDesignerComponents
%%QT_INCDIR%%/QtDesigner/QDesignerContainerExtension
%%QT_INCDIR%%/QtDesigner/QDesignerCustomWidgetCollectionInterface
%%QT_INCDIR%%/QtDesigner/QDesignerCustomWidgetInterface
%%QT_INCDIR%%/QtDesigner/QDesignerDnDItemInterface
%%QT_INCDIR%%/QtDesigner/QDesignerDynamicPropertySheetExtension
%%QT_INCDIR%%/QtDesigner/QDesignerExportWidget
%%QT_INCDIR%%/QtDesigner/QDesignerExtraInfoExtension
%%QT_INCDIR%%/QtDesigner/QDesignerFormEditorInterface
%%QT_INCDIR%%/QtDesigner/QDesignerFormEditorPluginInterface
%%QT_INCDIR%%/QtDesigner/QDesignerFormWindowCursorInterface
%%QT_INCDIR%%/QtDesigner/QDesignerFormWindowInterface
%%QT_INCDIR%%/QtDesigner/QDesignerFormWindowManagerInterface
%%QT_INCDIR%%/QtDesigner/QDesignerFormWindowToolInterface
%%QT_INCDIR%%/QtDesigner/QDesignerIntegration
%%QT_INCDIR%%/QtDesigner/QDesignerIntegrationInterface
%%QT_INCDIR%%/QtDesigner/QDesignerLanguageExtension
%%QT_INCDIR%%/QtDesigner/QDesignerLayoutDecorationExtension
%%QT_INCDIR%%/QtDesigner/QDesignerMemberSheetExtension
%%QT_INCDIR%%/QtDesigner/QDesignerMetaDataBaseInterface
%%QT_INCDIR%%/QtDesigner/QDesignerMetaDataBaseItemInterface
%%QT_INCDIR%%/QtDesigner/QDesignerNewFormWidgetInterface
%%QT_INCDIR%%/QtDesigner/QDesignerObjectInspectorInterface
%%QT_INCDIR%%/QtDesigner/QDesignerOptionsPageInterface
%%QT_INCDIR%%/QtDesigner/QDesignerPromotionInterface
%%QT_INCDIR%%/QtDesigner/QDesignerPropertyEditorInterface
%%QT_INCDIR%%/QtDesigner/QDesignerPropertySheetExtension
%%QT_INCDIR%%/QtDesigner/QDesignerResourceBrowserInterface
%%QT_INCDIR%%/QtDesigner/QDesignerSettingsInterface
%%QT_INCDIR%%/QtDesigner/QDesignerTaskMenuExtension
%%QT_INCDIR%%/QtDesigner/QDesignerWidgetBoxInterface
%%QT_INCDIR%%/QtDesigner/QDesignerWidgetDataBaseInterface
%%QT_INCDIR%%/QtDesigner/QDesignerWidgetDataBaseItemInterface
%%QT_INCDIR%%/QtDesigner/QDesignerWidgetFactoryInterface
%%QT_INCDIR%%/QtDesigner/QExtensionFactory
%%QT_INCDIR%%/QtDesigner/QExtensionManager
%%QT_INCDIR%%/QtDesigner/QFormBuilder
%%QT_INCDIR%%/QtDesigner/QtDesigner
%%QT_INCDIR%%/QtDesigner/QtDesignerDepends
%%QT_INCDIR%%/QtDesigner/QtDesignerVersion
%%QT_INCDIR%%/QtDesigner/abstractactioneditor.h
%%QT_INCDIR%%/QtDesigner/abstractdnditem.h
%%QT_INCDIR%%/QtDesigner/abstractformbuilder.h
%%QT_INCDIR%%/QtDesigner/abstractformeditor.h
%%QT_INCDIR%%/QtDesigner/abstractformeditorplugin.h
%%QT_INCDIR%%/QtDesigner/abstractformwindow.h
%%QT_INCDIR%%/QtDesigner/abstractformwindowcursor.h
%%QT_INCDIR%%/QtDesigner/abstractformwindowmanager.h
%%QT_INCDIR%%/QtDesigner/abstractformwindowtool.h
%%QT_INCDIR%%/QtDesigner/abstractintegration.h
%%QT_INCDIR%%/QtDesigner/abstractlanguage.h
%%QT_INCDIR%%/QtDesigner/abstractmetadatabase.h
%%QT_INCDIR%%/QtDesigner/abstractnewformwidget.h
%%QT_INCDIR%%/QtDesigner/abstractobjectinspector.h
%%QT_INCDIR%%/QtDesigner/abstractoptionspage.h
%%QT_INCDIR%%/QtDesigner/abstractpromotioninterface.h
%%QT_INCDIR%%/QtDesigner/abstractpropertyeditor.h
%%QT_INCDIR%%/QtDesigner/abstractresourcebrowser.h
%%QT_INCDIR%%/QtDesigner/abstractsettings.h
%%QT_INCDIR%%/QtDesigner/abstractwidgetbox.h
%%QT_INCDIR%%/QtDesigner/abstractwidgetdatabase.h
%%QT_INCDIR%%/QtDesigner/abstractwidgetfactory.h
%%QT_INCDIR%%/QtDesigner/container.h
%%QT_INCDIR%%/QtDesigner/customwidget.h
%%QT_INCDIR%%/QtDesigner/default_extensionfactory.h
%%QT_INCDIR%%/QtDesigner/dynamicpropertysheet.h
%%QT_INCDIR%%/QtDesigner/extension.h
%%QT_INCDIR%%/QtDesigner/extension_global.h
%%QT_INCDIR%%/QtDesigner/extrainfo.h
%%QT_INCDIR%%/QtDesigner/formbuilder.h
%%QT_INCDIR%%/QtDesigner/layoutdecoration.h
%%QT_INCDIR%%/QtDesigner/membersheet.h
%%QT_INCDIR%%/QtDesigner/propertysheet.h
%%QT_INCDIR%%/QtDesigner/qdesigner_components.h
%%QT_INCDIR%%/QtDesigner/qdesigner_components_global.h
%%QT_INCDIR%%/QtDesigner/qdesignerexportwidget.h
%%QT_INCDIR%%/QtDesigner/qextensionmanager.h
%%QT_INCDIR%%/QtDesigner/qtdesignerversion.h
%%QT_INCDIR%%/QtDesigner/sdk_global.h
%%QT_INCDIR%%/QtDesigner/taskmenu.h
%%QT_INCDIR%%/QtDesigner/uilib_global.h
%%QT_INCDIR%%/QtDesignerComponents/%%FULLVER%%/QtDesignerComponents/private/lib_pch.h
%%QT_INCDIR%%/QtDesignerComponents/QtDesignerComponents
%%QT_INCDIR%%/QtDesignerComponents/QtDesignerComponentsDepends
%%QT_INCDIR%%/QtDesignerComponents/QtDesignerComponentsVersion
%%QT_INCDIR%%/QtDesignerComponents/qtdesignercomponentsversion.h
-%%QT_LIBDIR%%/cmake/Qt5Designer/Qt5DesignerConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Designer/Qt5DesignerConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5Designer/Qt5Designer_QQuickWidgetPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Designer/Qt5Designer_QWebViewPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Designer/Qt5DesignerConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Designer/Qt5DesignerConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Designer/Qt5Designer_QQuickWidgetPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Designer/Qt5Designer_QWebViewPlugin.cmake
+%%QT_BINDIR%%/designer
%%QT_LIBDIR%%/libQt5Designer.prl
%%QT_LIBDIR%%/libQt5Designer.so
%%QT_LIBDIR%%/libQt5Designer.so.5
%%QT_LIBDIR%%/libQt5Designer.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Designer.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Designer.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt5DesignerComponents.prl
%%QT_LIBDIR%%/libQt5DesignerComponents.so
%%QT_LIBDIR%%/libQt5DesignerComponents.so.5
%%QT_LIBDIR%%/libQt5DesignerComponents.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5DesignerComponents.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5DesignerComponents.so.%%FULLVER%%.debug
-%%QT_BINDIR%%/designer
%%QT_MKSPECDIR%%/modules/qt_lib_designer.pri
%%QT_MKSPECDIR%%/modules/qt_lib_designer_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_designercomponents_private.pri
%%QT_PLUGINDIR%%/designer/libqquickwidget.so
%%DEBUG%%%%QT_PLUGINDIR%%/designer/libqquickwidget.so.debug
%%QT_PLUGINDIR%%/designer/libqwebview.so
%%DEBUG%%%%QT_PLUGINDIR%%/designer/libqwebview.so.debug
libdata/pkgconfig/Qt5Designer.pc
share/pixmaps/designer-qt5.png
Index: head/devel/qt5-help/Makefile
===================================================================
--- head/devel/qt5-help/Makefile (revision 434379)
+++ head/devel/qt5-help/Makefile (revision 434380)
@@ -1,21 +1,20 @@
# $FreeBSD$
PORTNAME= help
DISTVERSION= ${QT5_VERSION}
-PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt5-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt online help integration module
USE_QT5= core gui network sql widgets \
buildtools_build sql-sqlite3_run
QT_DIST= tools
USES= qmake
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
BUILD_WRKSRC= ${WRKSRC}/src/assistant
INSTALL_WRKSRC= ${WRKSRC}/src/assistant
.include <bsd.port.mk>
Index: head/devel/qt5-help/files/patch-src__assistant__assistant.pro
===================================================================
--- head/devel/qt5-help/files/patch-src__assistant__assistant.pro (revision 434379)
+++ head/devel/qt5-help/files/patch-src__assistant__assistant.pro (revision 434380)
@@ -1,28 +1,27 @@
Only enter the directories we want to build, otherwise we might fail due to
missing dependencies.
-clucene/ is built in textproc/clucene-qt5, assistant/ is built in
-devel/qt5-assistant.
+assistant/ is built in devel/qt5-assistant.
---- src/assistant/assistant.pro.orig 2016-08-31 07:07:13 UTC
+--- src/assistant/assistant.pro.orig 2016-06-10 14:46:48 UTC
+++ src/assistant/assistant.pro
@@ -2,19 +2,16 @@ TEMPLATE = subdirs
SUBDIRS += clucene \
help \
- assistant \
qhelpgenerator \
qcollectiongenerator \
qhelpconverter
help.depends = clucene
-assistant.depends = help
qhelpgenerator.depends = help
qcollectiongenerator.depends = help
qhelpconverter.depends = help
qtNomakeTools( \
- assistant \
qhelpgenerator \
qcollectiongenerator \
qhelpconverter \
Index: head/devel/qt5-help/pkg-plist
===================================================================
--- head/devel/qt5-help/pkg-plist (revision 434379)
+++ head/devel/qt5-help/pkg-plist (revision 434380)
@@ -1,81 +1,81 @@
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qanalyzer_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qclucene-config_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qclucene_global_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qdocument_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qfield_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qfilter_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qhits_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qindexreader_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qindexwriter_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qquery_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qqueryparser_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qreader_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qsearchable_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qsort_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qterm_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qtoken_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qtokenizer_p.h
%%QT_INCDIR%%/QtCLucene/%%FULLVER%%/QtCLucene/private/qtokenstream_p.h
%%QT_INCDIR%%/QtCLucene/QtCLucene
%%QT_INCDIR%%/QtCLucene/QtCLuceneDepends
%%QT_INCDIR%%/QtCLucene/QtCLuceneVersion
%%QT_INCDIR%%/QtCLucene/qtcluceneversion.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qclucenefieldnames_p.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpcollectionhandler_p.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpdatainterface_p.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpdbreader_p.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpengine_p.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpgenerator_p.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpprojectdata_p.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpsearchindex_default_p.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpsearchindexreader_clucene_p.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpsearchindexreader_default_p.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpsearchindexreader_p.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpsearchindexwriter_clucene_p.h
%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpsearchindexwriter_default_p.h
%%QT_INCDIR%%/QtHelp/QHelpContentItem
%%QT_INCDIR%%/QtHelp/QHelpContentModel
%%QT_INCDIR%%/QtHelp/QHelpContentWidget
%%QT_INCDIR%%/QtHelp/QHelpEngine
%%QT_INCDIR%%/QtHelp/QHelpEngineCore
%%QT_INCDIR%%/QtHelp/QHelpGlobal
%%QT_INCDIR%%/QtHelp/QHelpIndexModel
%%QT_INCDIR%%/QtHelp/QHelpIndexWidget
%%QT_INCDIR%%/QtHelp/QHelpSearchEngine
%%QT_INCDIR%%/QtHelp/QHelpSearchQuery
%%QT_INCDIR%%/QtHelp/QHelpSearchQueryWidget
%%QT_INCDIR%%/QtHelp/QHelpSearchResultWidget
%%QT_INCDIR%%/QtHelp/QtHelp
%%QT_INCDIR%%/QtHelp/QtHelpDepends
%%QT_INCDIR%%/QtHelp/QtHelpVersion
%%QT_INCDIR%%/QtHelp/qhelp_global.h
%%QT_INCDIR%%/QtHelp/qhelpcontentwidget.h
%%QT_INCDIR%%/QtHelp/qhelpengine.h
%%QT_INCDIR%%/QtHelp/qhelpenginecore.h
%%QT_INCDIR%%/QtHelp/qhelpindexwidget.h
%%QT_INCDIR%%/QtHelp/qhelpsearchengine.h
%%QT_INCDIR%%/QtHelp/qhelpsearchquerywidget.h
%%QT_INCDIR%%/QtHelp/qhelpsearchresultwidget.h
%%QT_INCDIR%%/QtHelp/qthelpversion.h
-%%QT_LIBDIR%%/cmake/Qt5Help/Qt5HelpConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Help/Qt5HelpConfigExtras.cmake
-%%QT_LIBDIR%%/cmake/Qt5Help/Qt5HelpConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Help/Qt5HelpConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Help/Qt5HelpConfigExtras.cmake
+%%QT_CMAKEDIR%%/Qt5Help/Qt5HelpConfigVersion.cmake
%%QT_LIBDIR%%/libQt5CLucene.prl
%%QT_LIBDIR%%/libQt5CLucene.so
%%QT_LIBDIR%%/libQt5CLucene.so.5
%%QT_LIBDIR%%/libQt5CLucene.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5CLucene.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5CLucene.so.%%FULLVER%%.debug
+%%QT_MKSPECDIR%%/modules/qt_lib_clucene_private.pri
%%QT_LIBDIR%%/libQt5Help.prl
%%QT_LIBDIR%%/libQt5Help.so
%%QT_LIBDIR%%/libQt5Help.so.5
%%QT_LIBDIR%%/libQt5Help.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Help.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Help.so.%%FULLVER%%.debug
%%QT_BINDIR%%/qcollectiongenerator
%%QT_BINDIR%%/qhelpconverter
%%QT_BINDIR%%/qhelpgenerator
-%%QT_MKSPECDIR%%/modules/qt_lib_clucene_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_help.pri
%%QT_MKSPECDIR%%/modules/qt_lib_help_private.pri
libdata/pkgconfig/Qt5Help.pc
Index: head/devel/qt5-linguisttools/files/patch-src_linguist_linguist.pro
===================================================================
--- head/devel/qt5-linguisttools/files/patch-src_linguist_linguist.pro (nonexistent)
+++ head/devel/qt5-linguisttools/files/patch-src_linguist_linguist.pro (revision 434380)
@@ -0,0 +1,41 @@
+As we moved the libraries of Qt5 from /usr/local/lib to /usr/local/lib/qt5 the
+cmake files would get installed into /usr/local/lib/qt5/cmake. This howeever is
+not really convenient for use with other applications depending on Qt via cmake.
+
+For ports we could modify cmake.mk to always append /usr/local/lib/qt5 to the
+search path. This would however still break applications outside of the ports
+tree that users want to compile via cmake. An other option would be to patch
+devel/cmake to add /usr/local/lib/qt5/cmake to the default search paths.
+
+We chose the third option. To patch qmake's internal cmake generation function
+to fix up the paths so that cmake files still land in the the "correct" location
+in /usr/local/lib/cmake -- as this seemed to be the least intrusive method.
+
+--- src/linguist/linguist.pro.orig 2016-06-03 17:47:52 UTC
++++ src/linguist/linguist.pro
+@@ -17,7 +17,7 @@ CMAKE_INSTALL_LIBS_DIR = $$cmakeTargetPa
+ contains(CMAKE_INSTALL_LIBS_DIR, ^(/usr)?/lib(64)?.*): CMAKE_USR_MOVE_WORKAROUND = $$CMAKE_INSTALL_LIBS_DIR
+
+ CMAKE_LIB_DIR = $$cmakeRelativePath($$[QT_INSTALL_LIBS], $$[QT_INSTALL_PREFIX])
+-!contains(CMAKE_LIB_DIR,"^\\.\\./.*") {
++!contains(CMAKE_LIB_DIR,"^\\.\\./.*")|freebsd {
+ CMAKE_RELATIVE_INSTALL_LIBS_DIR = $$cmakeRelativePath($$[QT_INSTALL_PREFIX], $$[QT_INSTALL_LIBS])
+ # We need to go up another two levels because the CMake files are
+ # installed in $${CMAKE_LIB_DIR}/cmake/Qt5$${CMAKE_MODULE_NAME}
+@@ -27,7 +27,7 @@ CMAKE_LIB_DIR = $$cmakeRelativePath($$[Q
+ }
+
+ CMAKE_BIN_DIR = $$cmakeRelativePath($$[QT_HOST_BINS], $$[QT_INSTALL_PREFIX])
+-contains(CMAKE_BIN_DIR, "^\\.\\./.*") {
++contains(CMAKE_BIN_DIR, "^\\.\\./.*")|freebsd {
+ CMAKE_BIN_DIR = $$[QT_HOST_BINS]/
+ CMAKE_BIN_DIR_IS_ABSOLUTE = True
+ }
+@@ -45,6 +45,6 @@ cmake_linguist_macros_file.CONFIG = verb
+ QMAKE_SUBSTITUTES += cmake_linguist_config_file cmake_linguist_config_version_file cmake_linguist_macros_file
+
+ cmake_linguist_tools_files.files += $$cmake_linguist_config_file.output $$cmake_linguist_config_version_file.output $$cmake_linguist_macros_file.output
+-cmake_linguist_tools_files.path = $$[QT_INSTALL_LIBS]/cmake/Qt5LinguistTools
++cmake_linguist_tools_files.path = $$[QT_INSTALL_PREFIX]/lib/cmake/Qt5LinguistTools
+ cmake_linguist_tools_files.CONFIG = no_check_exists
+ INSTALLS += cmake_linguist_tools_files
Property changes on: head/devel/qt5-linguisttools/files/patch-src_linguist_linguist.pro
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt5-linguisttools/pkg-plist
===================================================================
--- head/devel/qt5-linguisttools/pkg-plist (revision 434379)
+++ head/devel/qt5-linguisttools/pkg-plist (revision 434380)
@@ -1,8 +1,8 @@
-%%QT_LIBDIR%%/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake
+%%QT_CMAKEDIR%%/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake
+%%QT_CMAKEDIR%%/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake
%%QT_BINDIR%%/lconvert
%%QT_BINDIR%%/lrelease
%%QT_BINDIR%%/lupdate
man/man1/lrelease.1.gz
man/man1/lupdate.1.gz
Index: head/devel/qt5-location/pkg-plist
===================================================================
--- head/devel/qt5-location/pkg-plist (revision 434379)
+++ head/devel/qt5-location/pkg-plist (revision 434380)
@@ -1,237 +1,240 @@
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qabstractgeotilecache_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qcache3q_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocameracapabilities_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocameradata_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocameratiles_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocodereply_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocodingmanager_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocodingmanagerengine_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeofiletilecache_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomaneuver_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomap_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomap_p_p.h
-%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomapcontroller_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomappingmanager_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomappingmanager_p_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomappingmanagerengine_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomappingmanagerengine_p_p.h
-%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomapscene_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomaptype_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomaptype_p_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroute_p.h
+%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouteparser_p.h
+%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouteparser_p_p.h
+%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouteparserosrmv4_p.h
+%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouteparserosrmv5_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroutereply_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouterequest_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroutesegment_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroutingmanager_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroutingmanagerengine_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoserviceprovider_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmap_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmap_p_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmappingmanagerengine_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmappingmanagerengine_p_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmapreply_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmapreply_p_p.h
+%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmapscene_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilefetcher_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilefetcher_p_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilerequestmanager_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilespec_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilespec_p_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplace_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceattribute_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacecategory_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacecontactdetail_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacecontent_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacecontentrequest_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceeditorial_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceicon_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceimage_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacemanagerengine_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceproposedsearchresult_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceratings_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacereply_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceresult_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacereview_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacesearchresult_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacesupplier_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceuser_p.h
%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/unsupportedreplies_p.h
%%QT_INCDIR%%/QtLocation/QGeoCodeReply
%%QT_INCDIR%%/QtLocation/QGeoCodingManager
%%QT_INCDIR%%/QtLocation/QGeoCodingManagerEngine
%%QT_INCDIR%%/QtLocation/QGeoManeuver
%%QT_INCDIR%%/QtLocation/QGeoRoute
%%QT_INCDIR%%/QtLocation/QGeoRouteReply
%%QT_INCDIR%%/QtLocation/QGeoRouteRequest
%%QT_INCDIR%%/QtLocation/QGeoRouteSegment
%%QT_INCDIR%%/QtLocation/QGeoRoutingManager
%%QT_INCDIR%%/QtLocation/QGeoRoutingManagerEngine
%%QT_INCDIR%%/QtLocation/QGeoServiceProvider
%%QT_INCDIR%%/QtLocation/QGeoServiceProviderFactory
%%QT_INCDIR%%/QtLocation/QLocation
%%QT_INCDIR%%/QtLocation/QPlace
%%QT_INCDIR%%/QtLocation/QPlaceAttribute
%%QT_INCDIR%%/QtLocation/QPlaceCategory
%%QT_INCDIR%%/QtLocation/QPlaceContactDetail
%%QT_INCDIR%%/QtLocation/QPlaceContent
%%QT_INCDIR%%/QtLocation/QPlaceContentReply
%%QT_INCDIR%%/QtLocation/QPlaceContentRequest
%%QT_INCDIR%%/QtLocation/QPlaceDetailsReply
%%QT_INCDIR%%/QtLocation/QPlaceEditorial
%%QT_INCDIR%%/QtLocation/QPlaceIcon
%%QT_INCDIR%%/QtLocation/QPlaceIdReply
%%QT_INCDIR%%/QtLocation/QPlaceImage
%%QT_INCDIR%%/QtLocation/QPlaceManager
%%QT_INCDIR%%/QtLocation/QPlaceManagerEngine
%%QT_INCDIR%%/QtLocation/QPlaceMatchReply
%%QT_INCDIR%%/QtLocation/QPlaceMatchRequest
%%QT_INCDIR%%/QtLocation/QPlaceProposedSearchResult
%%QT_INCDIR%%/QtLocation/QPlaceRatings
%%QT_INCDIR%%/QtLocation/QPlaceReply
%%QT_INCDIR%%/QtLocation/QPlaceResult
%%QT_INCDIR%%/QtLocation/QPlaceReview
%%QT_INCDIR%%/QtLocation/QPlaceSearchReply
%%QT_INCDIR%%/QtLocation/QPlaceSearchRequest
%%QT_INCDIR%%/QtLocation/QPlaceSearchResult
%%QT_INCDIR%%/QtLocation/QPlaceSearchSuggestionReply
%%QT_INCDIR%%/QtLocation/QPlaceSupplier
%%QT_INCDIR%%/QtLocation/QPlaceUser
%%QT_INCDIR%%/QtLocation/QtLocation
%%QT_INCDIR%%/QtLocation/QtLocationDepends
%%QT_INCDIR%%/QtLocation/QtLocationVersion
%%QT_INCDIR%%/QtLocation/placemacro.h
%%QT_INCDIR%%/QtLocation/qgeocodereply.h
%%QT_INCDIR%%/QtLocation/qgeocodingmanager.h
%%QT_INCDIR%%/QtLocation/qgeocodingmanagerengine.h
%%QT_INCDIR%%/QtLocation/qgeomaneuver.h
%%QT_INCDIR%%/QtLocation/qgeoroute.h
%%QT_INCDIR%%/QtLocation/qgeoroutereply.h
%%QT_INCDIR%%/QtLocation/qgeorouterequest.h
%%QT_INCDIR%%/QtLocation/qgeoroutesegment.h
%%QT_INCDIR%%/QtLocation/qgeoroutingmanager.h
%%QT_INCDIR%%/QtLocation/qgeoroutingmanagerengine.h
%%QT_INCDIR%%/QtLocation/qgeoserviceprovider.h
%%QT_INCDIR%%/QtLocation/qgeoserviceproviderfactory.h
%%QT_INCDIR%%/QtLocation/qlocation.h
%%QT_INCDIR%%/QtLocation/qlocationglobal.h
%%QT_INCDIR%%/QtLocation/qplace.h
%%QT_INCDIR%%/QtLocation/qplaceattribute.h
%%QT_INCDIR%%/QtLocation/qplacecategory.h
%%QT_INCDIR%%/QtLocation/qplacecontactdetail.h
%%QT_INCDIR%%/QtLocation/qplacecontent.h
%%QT_INCDIR%%/QtLocation/qplacecontentreply.h
%%QT_INCDIR%%/QtLocation/qplacecontentrequest.h
%%QT_INCDIR%%/QtLocation/qplacedetailsreply.h
%%QT_INCDIR%%/QtLocation/qplaceeditorial.h
%%QT_INCDIR%%/QtLocation/qplaceicon.h
%%QT_INCDIR%%/QtLocation/qplaceidreply.h
%%QT_INCDIR%%/QtLocation/qplaceimage.h
%%QT_INCDIR%%/QtLocation/qplacemanager.h
%%QT_INCDIR%%/QtLocation/qplacemanagerengine.h
%%QT_INCDIR%%/QtLocation/qplacematchreply.h
%%QT_INCDIR%%/QtLocation/qplacematchrequest.h
%%QT_INCDIR%%/QtLocation/qplaceproposedsearchresult.h
%%QT_INCDIR%%/QtLocation/qplaceratings.h
%%QT_INCDIR%%/QtLocation/qplacereply.h
%%QT_INCDIR%%/QtLocation/qplaceresult.h
%%QT_INCDIR%%/QtLocation/qplacereview.h
%%QT_INCDIR%%/QtLocation/qplacesearchreply.h
%%QT_INCDIR%%/QtLocation/qplacesearchrequest.h
%%QT_INCDIR%%/QtLocation/qplacesearchresult.h
%%QT_INCDIR%%/QtLocation/qplacesearchsuggestionreply.h
%%QT_INCDIR%%/QtLocation/qplacesupplier.h
%%QT_INCDIR%%/QtLocation/qplaceuser.h
%%QT_INCDIR%%/QtLocation/qtlocationversion.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qdeclarativegeoaddress_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qdeclarativegeolocation_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qdoublevector2d_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qdoublevector3d_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeoaddress_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeocircle_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeocoordinate_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeolocation_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeopositioninfosource_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeoprojection_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeorectangle_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeoshape_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qlocationdata_simulator_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qlocationutils_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qnmeapositioninfosource_p.h
%%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qpositioningglobal_p.h
%%QT_INCDIR%%/QtPositioning/QGeoAddress
%%QT_INCDIR%%/QtPositioning/QGeoAreaMonitorInfo
%%QT_INCDIR%%/QtPositioning/QGeoAreaMonitorSource
%%QT_INCDIR%%/QtPositioning/QGeoCircle
%%QT_INCDIR%%/QtPositioning/QGeoCoordinate
%%QT_INCDIR%%/QtPositioning/QGeoLocation
%%QT_INCDIR%%/QtPositioning/QGeoPositionInfo
%%QT_INCDIR%%/QtPositioning/QGeoPositionInfoSource
%%QT_INCDIR%%/QtPositioning/QGeoPositionInfoSourceFactory
%%QT_INCDIR%%/QtPositioning/QGeoRectangle
%%QT_INCDIR%%/QtPositioning/QGeoSatelliteInfo
%%QT_INCDIR%%/QtPositioning/QGeoSatelliteInfoSource
%%QT_INCDIR%%/QtPositioning/QGeoShape
%%QT_INCDIR%%/QtPositioning/QNmeaPositionInfoSource
%%QT_INCDIR%%/QtPositioning/QtPositioning
%%QT_INCDIR%%/QtPositioning/QtPositioningDepends
%%QT_INCDIR%%/QtPositioning/QtPositioningVersion
%%QT_INCDIR%%/QtPositioning/qgeoaddress.h
%%QT_INCDIR%%/QtPositioning/qgeoareamonitorinfo.h
%%QT_INCDIR%%/QtPositioning/qgeoareamonitorsource.h
%%QT_INCDIR%%/QtPositioning/qgeocircle.h
%%QT_INCDIR%%/QtPositioning/qgeocoordinate.h
%%QT_INCDIR%%/QtPositioning/qgeolocation.h
%%QT_INCDIR%%/QtPositioning/qgeopositioninfo.h
%%QT_INCDIR%%/QtPositioning/qgeopositioninfosource.h
%%QT_INCDIR%%/QtPositioning/qgeopositioninfosourcefactory.h
%%QT_INCDIR%%/QtPositioning/qgeorectangle.h
%%QT_INCDIR%%/QtPositioning/qgeosatelliteinfo.h
%%QT_INCDIR%%/QtPositioning/qgeosatelliteinfosource.h
%%QT_INCDIR%%/QtPositioning/qgeoshape.h
%%QT_INCDIR%%/QtPositioning/qnmeapositioninfosource.h
%%QT_INCDIR%%/QtPositioning/qpositioningglobal.h
%%QT_INCDIR%%/QtPositioning/qtpositioningversion.h
-%%QT_LIBDIR%%/cmake/Qt5Location/Qt5LocationConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Location/Qt5LocationConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5Location/Qt5Location_QGeoServiceProviderFactoryMapbox.cmake
-%%QT_LIBDIR%%/cmake/Qt5Location/Qt5Location_QGeoServiceProviderFactoryNokia.cmake
-%%QT_LIBDIR%%/cmake/Qt5Location/Qt5Location_QGeoServiceProviderFactoryOsm.cmake
-%%QT_LIBDIR%%/cmake/Qt5Positioning/Qt5PositioningConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Positioning/Qt5PositioningConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactoryGeoclue.cmake
-%%QT_LIBDIR%%/cmake/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactoryPoll.cmake
+%%QT_CMAKEDIR%%/Qt5Location/Qt5LocationConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Location/Qt5LocationConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Location/Qt5Location_QGeoServiceProviderFactoryMapbox.cmake
+%%QT_CMAKEDIR%%/Qt5Location/Qt5Location_QGeoServiceProviderFactoryNokia.cmake
+%%QT_CMAKEDIR%%/Qt5Location/Qt5Location_QGeoServiceProviderFactoryOsm.cmake
+%%QT_CMAKEDIR%%/Qt5Positioning/Qt5PositioningConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Positioning/Qt5PositioningConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactoryGeoclue.cmake
+%%QT_CMAKEDIR%%/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactoryPoll.cmake
%%QT_LIBDIR%%/libQt5Location.prl
%%QT_LIBDIR%%/libQt5Location.so
%%QT_LIBDIR%%/libQt5Location.so.5
%%QT_LIBDIR%%/libQt5Location.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Location.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Location.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt5Positioning.prl
%%QT_LIBDIR%%/libQt5Positioning.so
%%QT_LIBDIR%%/libQt5Positioning.so.5
%%QT_LIBDIR%%/libQt5Positioning.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Positioning.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Positioning.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_location.pri
%%QT_MKSPECDIR%%/modules/qt_lib_location_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_positioning.pri
%%QT_MKSPECDIR%%/modules/qt_lib_positioning_private.pri
%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_mapbox.so
%%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_mapbox.so.debug
%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_nokia.so
%%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_nokia.so.debug
%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_osm.so
%%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_osm.so.debug
%%QT_PLUGINDIR%%/position/libqtposition_geoclue.so
%%DEBUG%%%%QT_PLUGINDIR%%/position/libqtposition_geoclue.so.debug
%%QT_PLUGINDIR%%/position/libqtposition_positionpoll.so
%%DEBUG%%%%QT_PLUGINDIR%%/position/libqtposition_positionpoll.so.debug
%%QT_QMLDIR%%/QtLocation/libdeclarative_location.so
%%DEBUG%%%%QT_QMLDIR%%/QtLocation/libdeclarative_location.so.debug
%%QT_QMLDIR%%/QtLocation/plugins.qmltypes
%%QT_QMLDIR%%/QtLocation/qmldir
%%QT_QMLDIR%%/QtPositioning/libdeclarative_positioning.so
%%DEBUG%%%%QT_QMLDIR%%/QtPositioning/libdeclarative_positioning.so.debug
%%QT_QMLDIR%%/QtPositioning/plugins.qmltypes
%%QT_QMLDIR%%/QtPositioning/qmldir
libdata/pkgconfig/Qt5Location.pc
libdata/pkgconfig/Qt5Positioning.pc
Index: head/devel/qt5-qmake/Makefile
===================================================================
--- head/devel/qt5-qmake/Makefile (nonexistent)
+++ head/devel/qt5-qmake/Makefile (revision 434380)
@@ -0,0 +1,51 @@
+# $FreeBSD$
+
+PORTNAME= qmake
+DISTVERSION= ${QT5_VERSION}
+CATEGORIES= devel
+PKGNAMEPREFIX= qt5-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt Makefile generator
+
+USE_QT5= # empty
+USES= compiler:c++11-lib pkgconfig shebangfix
+SHEBANG_FILES= util/harfbuzz/update-harfbuzz \
+ util/unicode/x11/makeencodings \
+ src/3rdparty/freetype/src/tools/afblue.pl
+QT_DIST= base
+REINPLACE_ARGS= -i ""
+HAS_CONFIGURE= yes
+# Disable everything to install minimal qconfig.pri.
+CONFIGURE_ARGS= -no-accessibility -no-openssl -no-gui -no-cups \
+ -no-iconv -no-icu -no-dbus -no-xcb -no-opengl \
+ -no-glib -no-audio-backend -no-fontconfig \
+ -no-gtk -no-xinput2 -no-xrender \
+ -no-evdev -no-xkbcommon -no-alsa \
+ -no-freetype -no-gif -no-harfbuzz -no-libjpeg \
+ -no-libpng -no-pulseaudio -no-widgets
+# Features yet to be removed from qconfig.pri.
+TBR_CONFIG= concurrent|inotify|xlib
+QMAKESPEC= ${WRKSRC}/mkspecs/freebsd-${QMAKE_COMPILER}
+INSTALL_TARGET= sub-qmake-qmake-aux-pro-install_subtargets install_mkspecs
+
+BUILD_WRKSRC= ${WRKSRC}/${PORTNAME}
+
+post-patch:
+# Prevent qconfig.pri from being module dependent.
+ @${REINPLACE_CMD} -E -e '/"\$$QT_CONFIG +(${TBR_CONFIG})"/ d' \
+ ${WRKSRC}/configure
+# Clean up files created by patching
+ @${RM} ${WRKSRC}/mkspecs/*/*.orig
+
+post-build:
+# Complete configure stage to generate *.pri files.
+ @cd ${WRKSRC} && \
+ ${SETENV} CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}" \
+ CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" \
+ ${CONFIGURE_ENV} ${CONFIGURE_CMD} ${CONFIGURE_ARGS}
+# Cleanup qmodule.pri to make it module agnostic.
+ @${REINPLACE_CMD} -En -e '/^(CONFIG|QT_BUILD_PARTS|.*_DIR) / p' \
+ ${WRKSRC}/mkspecs/qmodule.pri
+
+.include <bsd.port.mk>
Property changes on: head/devel/qt5-qmake/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt5-qmake/files/patch-configure
===================================================================
--- head/devel/qt5-qmake/files/patch-configure (nonexistent)
+++ head/devel/qt5-qmake/files/patch-configure (revision 434380)
@@ -0,0 +1,25 @@
+--- configure.orig 2016-02-24 19:25:11 UTC
++++ configure
+@@ -4108,11 +4108,11 @@ if [ '!' -e "$outpath/bin/qmake" ]; then
+ echo "QT_MAJOR_VERSION = $QT_MAJOR_VERSION" >> "$mkfile"
+ echo "QT_MINOR_VERSION = $QT_MINOR_VERSION" >> "$mkfile"
+ echo "QT_PATCH_VERSION = $QT_PATCH_VERSION" >> "$mkfile"
+- echo "EXTRA_CFLAGS = $EXTRA_CFLAGS" >> "$mkfile"
+- echo "EXTRA_CXXFLAGS = $EXTRA_CXXFLAGS" >> "$mkfile"
++ echo "EXTRA_CFLAGS = $EXTRA_CFLAGS $CFLAGS" >> "$mkfile"
++ echo "EXTRA_CXXFLAGS = $EXTRA_CXXFLAGS $CXXFLAGS" >> "$mkfile"
+ echo "QTOBJS =" $EXTRA_OBJS >> "$mkfile"
+ echo "QTSRCS =" $EXTRA_SRCS >> "$mkfile"
+- echo "LFLAGS = $EXTRA_LFLAGS" >> "$mkfile"
++ echo "LFLAGS = $EXTRA_LFLAGS $LDFLAGS" >> "$mkfile"
+ echo "EXEEXT = $EXEEXT" >> "$mkfile"
+ echo "RM_F = rm -f" >> "$mkfile"
+ echo "RM_RF = rm -rf" >> "$mkfile"
+@@ -4131,6 +4131,7 @@ if [ '!' -e "$outpath/bin/qmake" ]; then
+ fi
+ fi
+ done
++ exit 0
+
+ if [ "$OPT_VERBOSE" = yes ]; then
+ # Show the output of make
Property changes on: head/devel/qt5-qmake/files/patch-configure
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt5-qmake/files/patch-mkspecs__common__freebsd.conf
===================================================================
--- head/devel/qt5-qmake/files/patch-mkspecs__common__freebsd.conf (nonexistent)
+++ head/devel/qt5-qmake/files/patch-mkspecs__common__freebsd.conf (revision 434380)
@@ -0,0 +1,43 @@
+--- ./mkspecs/common/freebsd.conf.orig 2013-12-05 17:36:29.064198097 +0000
++++ ./mkspecs/common/freebsd.conf 2013-12-05 17:38:34.413200492 +0000
+@@ -0,0 +1,40 @@
++#
++# qmake configuration for FreeBSD
++#
++
++MAKEFILE_GENERATOR = UNIX
++QMAKE_PLATFORM = freebsd bsd
++
++QMAKE_CFLAGS_THREAD = -pthread -D_THREAD_SAFE
++
++QMAKE_CXXFLAGS_THREAD = $$QMAKE_CFLAGS_THREAD
++
++# Addon software goes into /usr/local on the BSDs, by default we will look there
++QMAKE_INCDIR = %%LOCALBASE%%/include
++QMAKE_LIBDIR = %%LOCALBASE%%/lib
++
++# Required at least by Qt5ConfigExtras.cmake so ports can include GL/gl.h.
++QMAKE_INCDIR_OPENGL = %%LOCALBASE%%/include
++QMAKE_LIBDIR_OPENGL = %%LOCALBASE%%/lib
++
++QMAKE_LFLAGS_NOUNDEF = -Wl,--no-undefined
++QMAKE_LFLAGS_THREAD = -pthread
++
++QMAKE_LIBS =
++QMAKE_LIBS_DYNLOAD =
++QMAKE_LIBS_EXECINFO = -lexecinfo
++QMAKE_LIBS_X11 = -lXext -lX11 -lm
++QMAKE_LIBS_OPENGL = -lGL
++QMAKE_LIBS_THREAD =
++
++QMAKE_AR = ar cqs
++QMAKE_OBJCOPY = objcopy
++QMAKE_NM = nm -P
++QMAKE_RANLIB =
++
++QMAKE_STRIP = strip
++QMAKE_STRIPFLAGS_LIB += --strip-unneeded
++QMAKE_INSTALL_FILE = install -m 644 -p
++QMAKE_INSTALL_PROGRAM = install -m 755 -p
++
++include(unix.conf)
Property changes on: head/devel/qt5-qmake/files/patch-mkspecs__common__freebsd.conf
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt5-qmake/pkg-plist
===================================================================
--- head/devel/qt5-qmake/pkg-plist (nonexistent)
+++ head/devel/qt5-qmake/pkg-plist (revision 434380)
@@ -0,0 +1,510 @@
+%%QT_BINDIR%%/qmake
+%%QT_MKSPECDIR%%/aix-g++-64/qmake.conf
+%%QT_MKSPECDIR%%/aix-g++-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/aix-g++/qmake.conf
+%%QT_MKSPECDIR%%/aix-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/aix-xlc-64/qmake.conf
+%%QT_MKSPECDIR%%/aix-xlc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/aix-xlc/qmake.conf
+%%QT_MKSPECDIR%%/aix-xlc/qplatformdefs.h
+%%QT_MKSPECDIR%%/android-clang/qmake.conf
+%%QT_MKSPECDIR%%/android-clang/qplatformdefs.h
+%%QT_MKSPECDIR%%/android-g++/qmake.conf
+%%QT_MKSPECDIR%%/android-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/aix/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/android-base-head.conf
+%%QT_MKSPECDIR%%/common/android-base-tail.conf
+%%QT_MKSPECDIR%%/common/android/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/angle.conf
+%%QT_MKSPECDIR%%/common/bsd/bsd.conf
+%%QT_MKSPECDIR%%/common/bsd/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/c89/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/clang-mac.conf
+%%QT_MKSPECDIR%%/common/clang.conf
+%%QT_MKSPECDIR%%/common/freebsd.conf
+%%QT_MKSPECDIR%%/common/g++-base.conf
+%%QT_MKSPECDIR%%/common/g++-macx.conf
+%%QT_MKSPECDIR%%/common/g++-unix.conf
+%%QT_MKSPECDIR%%/common/g++.conf
+%%QT_MKSPECDIR%%/common/gcc-base-mac.conf
+%%QT_MKSPECDIR%%/common/gcc-base-unix.conf
+%%QT_MKSPECDIR%%/common/gcc-base.conf
+%%QT_MKSPECDIR%%/common/ghs-base.conf
+%%QT_MKSPECDIR%%/common/ghs-integrity-armv7.conf
+%%QT_MKSPECDIR%%/common/ghs-integrity-x86.conf
+%%QT_MKSPECDIR%%/common/integrity/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/ios.conf
+%%QT_MKSPECDIR%%/common/ios/GLES2/gl2.h
+%%QT_MKSPECDIR%%/common/ios/clang.conf
+%%QT_MKSPECDIR%%/common/ios/qmake.conf
+%%QT_MKSPECDIR%%/common/linux-android.conf
+%%QT_MKSPECDIR%%/common/linux.conf
+%%QT_MKSPECDIR%%/common/llvm.conf
+%%QT_MKSPECDIR%%/common/mac.conf
+%%QT_MKSPECDIR%%/common/mac/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/macx.conf
+%%QT_MKSPECDIR%%/common/msvc-base.conf
+%%QT_MKSPECDIR%%/common/msvc-desktop.conf
+%%QT_MKSPECDIR%%/common/nacl/g++-nacl32.conf
+%%QT_MKSPECDIR%%/common/nacl/g++-nacl64.conf
+%%QT_MKSPECDIR%%/common/nacl/nacl-base.conf
+%%QT_MKSPECDIR%%/common/nacl/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/posix/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/qcc-base-qnx-aarch64le.conf
+%%QT_MKSPECDIR%%/common/qcc-base-qnx-armle-v7.conf
+%%QT_MKSPECDIR%%/common/qcc-base-qnx-x86-64.conf
+%%QT_MKSPECDIR%%/common/qcc-base-qnx-x86.conf
+%%QT_MKSPECDIR%%/common/qcc-base-qnx.conf
+%%QT_MKSPECDIR%%/common/qcc-base.conf
+%%QT_MKSPECDIR%%/common/qnx/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/sanitize.conf
+%%QT_MKSPECDIR%%/common/shell-unix.conf
+%%QT_MKSPECDIR%%/common/shell-win32.conf
+%%QT_MKSPECDIR%%/common/unix.conf
+%%QT_MKSPECDIR%%/common/wince/qmake.conf
+%%QT_MKSPECDIR%%/common/wince/qplatformdefs.h
+%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_150x150.png
+%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_30x30.png
+%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_310x150.png
+%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_310x310.png
+%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_44x44.png
+%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_480x800.png
+%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_620x300.png
+%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_70x70.png
+%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_71x71.png
+%%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_store.png
+%%QT_MKSPECDIR%%/common/winrt_winphone/manifests/10.0/AppxManifest.xml.in
+%%QT_MKSPECDIR%%/common/winrt_winphone/manifests/8.1/AppxManifest.xml.in
+%%QT_MKSPECDIR%%/common/winrt_winphone/manifests/8.1_wp/AppxManifest.xml.in
+%%QT_MKSPECDIR%%/common/winrt_winphone/qmake.conf
+%%QT_MKSPECDIR%%/common/winrt_winphone/qplatformdefs.h
+%%QT_MKSPECDIR%%/cygwin-g++/qmake.conf
+%%QT_MKSPECDIR%%/cygwin-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/darwin-g++/qmake.conf
+%%QT_MKSPECDIR%%/darwin-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/common/linux_arm_device_post.conf
+%%QT_MKSPECDIR%%/devices/common/linux_device_post.conf
+%%QT_MKSPECDIR%%/devices/common/linux_device_pre.conf
+%%QT_MKSPECDIR%%/devices/linux-archos-gen8-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-archos-gen8-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qeglfshooks_8726m.cpp
+%%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-arm-generic-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-arm-generic-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-arm-hisilicon-hix5hd2-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-arm-hisilicon-hix5hd2-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-arm-trident-pnx8473-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-arm-trident-pnx8473-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-beagleboard-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-beagleboard-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-drive-cx-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-drive-cx-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-imx53qsb-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-imx53qsb-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-imx6-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-imx6-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-imx7-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-imx7-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-jetson-tk1-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-jetson-tk1-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-jetson-tk1-pro-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-jetson-tk1-pro-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qdirectfbeglhooks_bcm97425.cpp
+%%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-nuc-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-nuc-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-odroid-xu3-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-odroid-xu3-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-rasp-pi-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-rasp-pi-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-rasp-pi2-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-rasp-pi2-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-rpi3-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-rpi3-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-rpi3-vc4-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-rpi3-vc4-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7108-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7108-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7540-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7540-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-snowball-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-snowball-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/devices/linux-tegra2-g++/qmake.conf
+%%QT_MKSPECDIR%%/devices/linux-tegra2-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/features/android/android.prf
+%%QT_MKSPECDIR%%/features/android/android_deployment_settings.prf
+%%QT_MKSPECDIR%%/features/android/sdk.prf
+%%QT_MKSPECDIR%%/features/benchmark.prf
+%%QT_MKSPECDIR%%/features/build_pass.prf
+%%QT_MKSPECDIR%%/features/cmake_functions.prf
+%%QT_MKSPECDIR%%/features/configure.prf
+%%QT_MKSPECDIR%%/features/create_cmake.prf
+%%QT_MKSPECDIR%%/features/ctest_testcase.prf
+%%QT_MKSPECDIR%%/features/ctest_testcase_common.prf
+%%QT_MKSPECDIR%%/features/ctest_testcase_installed.prf
+%%QT_MKSPECDIR%%/features/data/android/dx.bat
+%%QT_MKSPECDIR%%/features/data/cmake/ExtraSourceIncludes.cmake.in
+%%QT_MKSPECDIR%%/features/data/cmake/Qt5BasicConfig.cmake.in
+%%QT_MKSPECDIR%%/features/data/cmake/Qt5ConfigVersion.cmake.in
+%%QT_MKSPECDIR%%/features/data/cmake/Qt5PluginTarget.cmake.in
+%%QT_MKSPECDIR%%/features/data/dummy.cpp
+%%QT_MKSPECDIR%%/features/data/mac/objc_namespace.sh
+%%QT_MKSPECDIR%%/features/data/unix/findclasslist.pl
+%%QT_MKSPECDIR%%/features/dbusadaptors.prf
+%%QT_MKSPECDIR%%/features/dbuscommon.pri
+%%QT_MKSPECDIR%%/features/dbusinterfaces.prf
+%%QT_MKSPECDIR%%/features/declarative_debug.prf
+%%QT_MKSPECDIR%%/features/default_post.prf
+%%QT_MKSPECDIR%%/features/default_pre.prf
+%%QT_MKSPECDIR%%/features/designer_defines.prf
+%%QT_MKSPECDIR%%/features/device_config.prf
+%%QT_MKSPECDIR%%/features/egl.prf
+%%QT_MKSPECDIR%%/features/exceptions.prf
+%%QT_MKSPECDIR%%/features/exceptions_off.prf
+%%QT_MKSPECDIR%%/features/exclusive_builds.prf
+%%QT_MKSPECDIR%%/features/exclusive_builds_post.prf
+%%QT_MKSPECDIR%%/features/file_copies.prf
+%%QT_MKSPECDIR%%/features/gcov.prf
+%%QT_MKSPECDIR%%/features/include_source_dir.prf
+%%QT_MKSPECDIR%%/features/incredibuild_xge.prf
+%%QT_MKSPECDIR%%/features/java.prf
+%%QT_MKSPECDIR%%/features/lex.prf
+%%QT_MKSPECDIR%%/features/link_ltcg.prf
+%%QT_MKSPECDIR%%/features/link_pkgconfig.prf
+%%QT_MKSPECDIR%%/features/ltcg.prf
+%%QT_MKSPECDIR%%/features/mac/asset_catalogs.prf
+%%QT_MKSPECDIR%%/features/mac/default_post.prf
+%%QT_MKSPECDIR%%/features/mac/default_pre.prf
+%%QT_MKSPECDIR%%/features/mac/objective_c.prf
+%%QT_MKSPECDIR%%/features/mac/rez.prf
+%%QT_MKSPECDIR%%/features/mac/sdk.prf
+%%QT_MKSPECDIR%%/features/mac/toolchain.prf
+%%QT_MKSPECDIR%%/features/mac/unsupported/objc_namespace.prf
+%%QT_MKSPECDIR%%/features/moc.prf
+%%QT_MKSPECDIR%%/features/no_debug_info.prf
+%%QT_MKSPECDIR%%/features/plugin_bundle.prf
+%%QT_MKSPECDIR%%/features/precompile_header.prf
+%%QT_MKSPECDIR%%/features/qfeatures.prf
+%%QT_MKSPECDIR%%/features/qgltf.prf
+%%QT_MKSPECDIR%%/features/qlalr.prf
+%%QT_MKSPECDIR%%/features/qml1_module.prf
+%%QT_MKSPECDIR%%/features/qml1_plugin.prf
+%%QT_MKSPECDIR%%/features/qml_debug.prf
+%%QT_MKSPECDIR%%/features/qml_module.prf
+%%QT_MKSPECDIR%%/features/qml_plugin.prf
+%%QT_MKSPECDIR%%/features/qmltestcase.prf
+%%QT_MKSPECDIR%%/features/qpa/basicunixfontdatabase.prf
+%%QT_MKSPECDIR%%/features/qpa/genericunixfontdatabase.prf
+%%QT_MKSPECDIR%%/features/qt.prf
+%%QT_MKSPECDIR%%/features/qt_android_deps.prf
+%%QT_MKSPECDIR%%/features/qt_app.prf
+%%QT_MKSPECDIR%%/features/qt_build_config.prf
+%%QT_MKSPECDIR%%/features/qt_build_extra.prf
+%%QT_MKSPECDIR%%/features/qt_build_paths.prf
+%%QT_MKSPECDIR%%/features/qt_clear_installs.prf
+%%QT_MKSPECDIR%%/features/qt_common.prf
+%%QT_MKSPECDIR%%/features/qt_config.prf
+%%QT_MKSPECDIR%%/features/qt_docs.prf
+%%QT_MKSPECDIR%%/features/qt_docs_targets.prf
+%%QT_MKSPECDIR%%/features/qt_example_installs.prf
+%%QT_MKSPECDIR%%/features/qt_functions.prf
+%%QT_MKSPECDIR%%/features/qt_helper_lib.prf
+%%QT_MKSPECDIR%%/features/qt_installs.prf
+%%QT_MKSPECDIR%%/features/qt_module.prf
+%%QT_MKSPECDIR%%/features/qt_module_headers.prf
+%%QT_MKSPECDIR%%/features/qt_module_pris.prf
+%%QT_MKSPECDIR%%/features/qt_parts.prf
+%%QT_MKSPECDIR%%/features/qt_plugin.prf
+%%QT_MKSPECDIR%%/features/qt_targets.prf
+%%QT_MKSPECDIR%%/features/qt_tool.prf
+%%QT_MKSPECDIR%%/features/resolve_config.prf
+%%QT_MKSPECDIR%%/features/resolve_target.prf
+%%QT_MKSPECDIR%%/features/resources.prf
+%%QT_MKSPECDIR%%/features/sanitizer.prf
+%%QT_MKSPECDIR%%/features/silent.prf
+%%QT_MKSPECDIR%%/features/simd.prf
+%%QT_MKSPECDIR%%/features/spec_post.prf
+%%QT_MKSPECDIR%%/features/spec_pre.prf
+%%QT_MKSPECDIR%%/features/static_runtime.prf
+%%QT_MKSPECDIR%%/features/testcase.prf
+%%QT_MKSPECDIR%%/features/testcase_targets.prf
+%%QT_MKSPECDIR%%/features/testcocoon.prf
+%%QT_MKSPECDIR%%/features/testlib_defines.prf
+%%QT_MKSPECDIR%%/features/toolchain.prf
+%%QT_MKSPECDIR%%/features/uic.prf
+%%QT_MKSPECDIR%%/features/unix/bsymbolic_functions.prf
+%%QT_MKSPECDIR%%/features/unix/hide_symbols.prf
+%%QT_MKSPECDIR%%/features/unix/largefile.prf
+%%QT_MKSPECDIR%%/features/unix/opengl.prf
+%%QT_MKSPECDIR%%/features/unix/openvg.prf
+%%QT_MKSPECDIR%%/features/unix/separate_debug_info.prf
+%%QT_MKSPECDIR%%/features/unix/thread.prf
+%%QT_MKSPECDIR%%/features/unix/x11.prf
+%%QT_MKSPECDIR%%/features/unix/x11inc.prf
+%%QT_MKSPECDIR%%/features/unix/x11lib.prf
+%%QT_MKSPECDIR%%/features/unix/x11sm.prf
+%%QT_MKSPECDIR%%/features/use_c_linker.prf
+%%QT_MKSPECDIR%%/features/vxworks.prf
+%%QT_MKSPECDIR%%/features/warn_off.prf
+%%QT_MKSPECDIR%%/features/warn_on.prf
+%%QT_MKSPECDIR%%/features/wayland-scanner.prf
+%%QT_MKSPECDIR%%/features/win32/console.prf
+%%QT_MKSPECDIR%%/features/win32/default_pre.prf
+%%QT_MKSPECDIR%%/features/win32/dumpcpp.prf
+%%QT_MKSPECDIR%%/features/win32/idcidl.prf
+%%QT_MKSPECDIR%%/features/win32/msvc_mp.prf
+%%QT_MKSPECDIR%%/features/win32/opengl.prf
+%%QT_MKSPECDIR%%/features/win32/openvg.prf
+%%QT_MKSPECDIR%%/features/win32/qt_config.prf
+%%QT_MKSPECDIR%%/features/win32/qt_dll.prf
+%%QT_MKSPECDIR%%/features/win32/rtti.prf
+%%QT_MKSPECDIR%%/features/win32/rtti_off.prf
+%%QT_MKSPECDIR%%/features/win32/separate_debug_info.prf
+%%QT_MKSPECDIR%%/features/win32/stl.prf
+%%QT_MKSPECDIR%%/features/win32/stl_off.prf
+%%QT_MKSPECDIR%%/features/win32/windeployqt.prf
+%%QT_MKSPECDIR%%/features/win32/windows.prf
+%%QT_MKSPECDIR%%/features/winrt/console.prf
+%%QT_MKSPECDIR%%/features/winrt/default_pre.prf
+%%QT_MKSPECDIR%%/features/winrt/package_manifest.prf
+%%QT_MKSPECDIR%%/features/xctest.prf
+%%QT_MKSPECDIR%%/features/yacc.prf
+%%QT_MKSPECDIR%%/freebsd-clang/qmake.conf
+%%QT_MKSPECDIR%%/freebsd-clang/qplatformdefs.h
+%%QT_MKSPECDIR%%/freebsd-g++/qmake.conf
+%%QT_MKSPECDIR%%/freebsd-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/haiku-g++/qmake.conf
+%%QT_MKSPECDIR%%/haiku-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpux-acc-64/qmake.conf
+%%QT_MKSPECDIR%%/hpux-acc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpux-acc-o64/qmake.conf
+%%QT_MKSPECDIR%%/hpux-acc-o64/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpux-acc/qmake.conf
+%%QT_MKSPECDIR%%/hpux-acc/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpux-g++-64/qmake.conf
+%%QT_MKSPECDIR%%/hpux-g++-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpux-g++/qmake.conf
+%%QT_MKSPECDIR%%/hpux-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpuxi-acc-32/qmake.conf
+%%QT_MKSPECDIR%%/hpuxi-acc-32/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpuxi-acc-64/qmake.conf
+%%QT_MKSPECDIR%%/hpuxi-acc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/hpuxi-g++-64/qmake.conf
+%%QT_MKSPECDIR%%/hpuxi-g++-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/hurd-g++/qmake.conf
+%%QT_MKSPECDIR%%/hurd-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/integrity-armv7-imx6/qmake.conf
+%%QT_MKSPECDIR%%/integrity-armv7-imx6/qplatformdefs.h
+%%QT_MKSPECDIR%%/integrity-armv7/qmake.conf
+%%QT_MKSPECDIR%%/integrity-armv7/qplatformdefs.h
+%%QT_MKSPECDIR%%/integrity-x86/qmake.conf
+%%QT_MKSPECDIR%%/integrity-x86/qplatformdefs.h
+%%QT_MKSPECDIR%%/irix-cc-64/qmake.conf
+%%QT_MKSPECDIR%%/irix-cc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/irix-cc/qmake.conf
+%%QT_MKSPECDIR%%/irix-cc/qplatformdefs.h
+%%QT_MKSPECDIR%%/irix-g++-64/qmake.conf
+%%QT_MKSPECDIR%%/irix-g++-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/irix-g++/qmake.conf
+%%QT_MKSPECDIR%%/irix-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-arm-gnueabi-g++/qmake.conf
+%%QT_MKSPECDIR%%/linux-arm-gnueabi-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-clang-libc++/qmake.conf
+%%QT_MKSPECDIR%%/linux-clang-libc++/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-clang/qmake.conf
+%%QT_MKSPECDIR%%/linux-clang/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-cxx/qmake.conf
+%%QT_MKSPECDIR%%/linux-cxx/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-g++-32/qmake.conf
+%%QT_MKSPECDIR%%/linux-g++-32/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-g++-64/qmake.conf
+%%QT_MKSPECDIR%%/linux-g++-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-g++/qmake.conf
+%%QT_MKSPECDIR%%/linux-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-icc-32/qmake.conf
+%%QT_MKSPECDIR%%/linux-icc-32/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-icc-64/qmake.conf
+%%QT_MKSPECDIR%%/linux-icc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-icc/qmake.conf
+%%QT_MKSPECDIR%%/linux-icc/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-kcc/qmake.conf
+%%QT_MKSPECDIR%%/linux-kcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-llvm/qmake.conf
+%%QT_MKSPECDIR%%/linux-llvm/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-lsb-g++/qmake.conf
+%%QT_MKSPECDIR%%/linux-lsb-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/linux-pgcc/qmake.conf
+%%QT_MKSPECDIR%%/linux-pgcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/lynxos-g++/qmake.conf
+%%QT_MKSPECDIR%%/lynxos-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-clang-32/Info.plist.app
+%%QT_MKSPECDIR%%/macx-clang-32/Info.plist.dSYM.in
+%%QT_MKSPECDIR%%/macx-clang-32/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-clang-32/qmake.conf
+%%QT_MKSPECDIR%%/macx-clang-32/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-clang/Info.plist.app
+%%QT_MKSPECDIR%%/macx-clang/Info.plist.dSYM.in
+%%QT_MKSPECDIR%%/macx-clang/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-clang/qmake.conf
+%%QT_MKSPECDIR%%/macx-clang/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-g++-32/Info.plist.app
+%%QT_MKSPECDIR%%/macx-g++-32/Info.plist.dSYM.in
+%%QT_MKSPECDIR%%/macx-g++-32/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-g++-32/qmake.conf
+%%QT_MKSPECDIR%%/macx-g++-32/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-g++/Info.plist.app
+%%QT_MKSPECDIR%%/macx-g++/Info.plist.dSYM.in
+%%QT_MKSPECDIR%%/macx-g++/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-g++/qmake.conf
+%%QT_MKSPECDIR%%/macx-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-g++40/Info.plist.app
+%%QT_MKSPECDIR%%/macx-g++40/Info.plist.dSYM.in
+%%QT_MKSPECDIR%%/macx-g++40/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-g++40/qmake.conf
+%%QT_MKSPECDIR%%/macx-g++40/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-g++42/Info.plist.app
+%%QT_MKSPECDIR%%/macx-g++42/Info.plist.dSYM.in
+%%QT_MKSPECDIR%%/macx-g++42/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-g++42/qmake.conf
+%%QT_MKSPECDIR%%/macx-g++42/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-icc/Info.plist.app
+%%QT_MKSPECDIR%%/macx-icc/Info.plist.dSYM.in
+%%QT_MKSPECDIR%%/macx-icc/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-icc/qmake.conf
+%%QT_MKSPECDIR%%/macx-icc/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-ios-clang/Default-568h@2x.png
+%%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.app
+%%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.dSYM.in
+%%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-ios-clang/LaunchScreen.xib
+%%QT_MKSPECDIR%%/macx-ios-clang/features/default_post.prf
+%%QT_MKSPECDIR%%/macx-ios-clang/features/default_pre.prf
+%%QT_MKSPECDIR%%/macx-ios-clang/features/exclusive_builds_post.prf
+%%QT_MKSPECDIR%%/macx-ios-clang/features/qt.prf
+%%QT_MKSPECDIR%%/macx-ios-clang/features/qt_config.prf
+%%QT_MKSPECDIR%%/macx-ios-clang/features/qt_parts.prf
+%%QT_MKSPECDIR%%/macx-ios-clang/features/resolve_config.prf
+%%QT_MKSPECDIR%%/macx-ios-clang/features/sdk.prf
+%%QT_MKSPECDIR%%/macx-ios-clang/features/testcase.prf
+%%QT_MKSPECDIR%%/macx-ios-clang/features/testcase_targets.prf
+%%QT_MKSPECDIR%%/macx-ios-clang/features/xcodebuild.prf
+%%QT_MKSPECDIR%%/macx-ios-clang/ios_destinations.sh
+%%QT_MKSPECDIR%%/macx-ios-clang/ios_devices.pl
+%%QT_MKSPECDIR%%/macx-ios-clang/qmake.conf
+%%QT_MKSPECDIR%%/macx-ios-clang/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-ios-clang/xcodebuild.mk
+%%QT_MKSPECDIR%%/macx-llvm/Info.plist.app
+%%QT_MKSPECDIR%%/macx-llvm/Info.plist.dSYM.in
+%%QT_MKSPECDIR%%/macx-llvm/Info.plist.lib
+%%QT_MKSPECDIR%%/macx-llvm/qmake.conf
+%%QT_MKSPECDIR%%/macx-llvm/qplatformdefs.h
+%%QT_MKSPECDIR%%/macx-xcode/QtTest.plist
+%%QT_MKSPECDIR%%/macx-xcode/WorkspaceSettings.xcsettings
+%%QT_MKSPECDIR%%/macx-xcode/default.xcscheme
+%%QT_MKSPECDIR%%/macx-xcode/qmake.conf
+%%QT_MKSPECDIR%%/macx-xcode/qplatformdefs.h
+%%QT_MKSPECDIR%%/netbsd-g++/qmake.conf
+%%QT_MKSPECDIR%%/netbsd-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/openbsd-g++/qmake.conf
+%%QT_MKSPECDIR%%/openbsd-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/qconfig.pri
+%%QT_MKSPECDIR%%/qdevice.pri
+%%QT_MKSPECDIR%%/qfeatures.pri
+%%QT_MKSPECDIR%%/qhost.pri
+%%QT_MKSPECDIR%%/qmodule.pri
+%%QT_MKSPECDIR%%/qnx-aarch64le-qcc/qmake.conf
+%%QT_MKSPECDIR%%/qnx-aarch64le-qcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/qnx-armle-v7-qcc/qmake.conf
+%%QT_MKSPECDIR%%/qnx-armle-v7-qcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/qnx-x86-64-qcc/qmake.conf
+%%QT_MKSPECDIR%%/qnx-x86-64-qcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/qnx-x86-qcc/qmake.conf
+%%QT_MKSPECDIR%%/qnx-x86-qcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/sco-cc/qmake.conf
+%%QT_MKSPECDIR%%/sco-cc/qplatformdefs.h
+%%QT_MKSPECDIR%%/sco-g++/qmake.conf
+%%QT_MKSPECDIR%%/sco-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/solaris-cc-64-stlport/qmake.conf
+%%QT_MKSPECDIR%%/solaris-cc-64-stlport/qplatformdefs.h
+%%QT_MKSPECDIR%%/solaris-cc-64/qmake.conf
+%%QT_MKSPECDIR%%/solaris-cc-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/solaris-cc-stlport/qmake.conf
+%%QT_MKSPECDIR%%/solaris-cc-stlport/qplatformdefs.h
+%%QT_MKSPECDIR%%/solaris-cc/qmake.conf
+%%QT_MKSPECDIR%%/solaris-cc/qplatformdefs.h
+%%QT_MKSPECDIR%%/solaris-g++-64/qmake.conf
+%%QT_MKSPECDIR%%/solaris-g++-64/qplatformdefs.h
+%%QT_MKSPECDIR%%/solaris-g++/qmake.conf
+%%QT_MKSPECDIR%%/solaris-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/tru64-cxx/qmake.conf
+%%QT_MKSPECDIR%%/tru64-cxx/qplatformdefs.h
+%%QT_MKSPECDIR%%/tru64-g++/qmake.conf
+%%QT_MKSPECDIR%%/tru64-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unixware-cc/qmake.conf
+%%QT_MKSPECDIR%%/unixware-cc/qplatformdefs.h
+%%QT_MKSPECDIR%%/unixware-g++/qmake.conf
+%%QT_MKSPECDIR%%/unixware-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/linux-host-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/linux-host-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/nacl-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/nacl-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/nacl64-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/nacl64-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/qnx-X11-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/qnx-X11-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-dcc/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-dcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-dcc/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-dcc/qplatformdefs.h
+%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-g++/qmake.conf
+%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-clang-msvc2015/qmake.conf
+%%QT_MKSPECDIR%%/win32-clang-msvc2015/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-g++/qmake.conf
+%%QT_MKSPECDIR%%/win32-g++/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-icc/qmake.conf
+%%QT_MKSPECDIR%%/win32-icc/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2010/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2010/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2012/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2012/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2013/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2013/qplatformdefs.h
+%%QT_MKSPECDIR%%/win32-msvc2015/qmake.conf
+%%QT_MKSPECDIR%%/win32-msvc2015/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince60standard-armv4i-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wince60standard-armv4i-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince60standard-x86-msvc2005/qmake.conf
+%%QT_MKSPECDIR%%/wince60standard-x86-msvc2005/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince70embedded-armv4i-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wince70embedded-armv4i-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince70embedded-x86-msvc2008/qmake.conf
+%%QT_MKSPECDIR%%/wince70embedded-x86-msvc2008/qplatformdefs.h
+%%QT_MKSPECDIR%%/wince80colibri-armv7-msvc2012/qmake.conf
+%%QT_MKSPECDIR%%/wince80colibri-armv7-msvc2012/qplatformdefs.h
+%%QT_MKSPECDIR%%/winphone-arm-msvc2013/qmake.conf
+%%QT_MKSPECDIR%%/winphone-arm-msvc2013/qplatformdefs.h
+%%QT_MKSPECDIR%%/winphone-x86-msvc2013/qmake.conf
+%%QT_MKSPECDIR%%/winphone-x86-msvc2013/qplatformdefs.h
+%%QT_MKSPECDIR%%/winrt-arm-msvc2013/qmake.conf
+%%QT_MKSPECDIR%%/winrt-arm-msvc2013/qplatformdefs.h
+%%QT_MKSPECDIR%%/winrt-arm-msvc2015/qmake.conf
+%%QT_MKSPECDIR%%/winrt-arm-msvc2015/qplatformdefs.h
+%%QT_MKSPECDIR%%/winrt-x64-msvc2013/qmake.conf
+%%QT_MKSPECDIR%%/winrt-x64-msvc2013/qplatformdefs.h
+%%QT_MKSPECDIR%%/winrt-x64-msvc2015/qmake.conf
+%%QT_MKSPECDIR%%/winrt-x64-msvc2015/qplatformdefs.h
+%%QT_MKSPECDIR%%/winrt-x86-msvc2013/qmake.conf
+%%QT_MKSPECDIR%%/winrt-x86-msvc2013/qplatformdefs.h
+%%QT_MKSPECDIR%%/winrt-x86-msvc2015/qmake.conf
+%%QT_MKSPECDIR%%/winrt-x86-msvc2015/qplatformdefs.h
Property changes on: head/devel/qt5-qmake/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt5-script/pkg-plist
===================================================================
--- head/devel/qt5-script/pkg-plist (revision 434379)
+++ head/devel/qt5-script/pkg-plist (revision 434380)
@@ -1,69 +1,69 @@
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptable_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptactivationobject_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptast_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptastfwd_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptastvisitor_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptclassobject_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptcontext_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptdeclarativeclass_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptdeclarativeobject_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptengine_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptengineagent_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptfunction_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptglobalobject_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptgrammar_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptlexer_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptobject_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptparser_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptprogram_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptqobject_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptstaticscopeobject_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptstring_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptsyntaxchecker_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptvalue_p.h
%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptvariant_p.h
%%QT_INCDIR%%/QtScript/QScriptClass
%%QT_INCDIR%%/QtScript/QScriptClassPropertyIterator
%%QT_INCDIR%%/QtScript/QScriptContext
%%QT_INCDIR%%/QtScript/QScriptContextInfo
%%QT_INCDIR%%/QtScript/QScriptContextInfoList
%%QT_INCDIR%%/QtScript/QScriptEngine
%%QT_INCDIR%%/QtScript/QScriptEngineAgent
%%QT_INCDIR%%/QtScript/QScriptExtensionInterface
%%QT_INCDIR%%/QtScript/QScriptExtensionPlugin
%%QT_INCDIR%%/QtScript/QScriptProgram
%%QT_INCDIR%%/QtScript/QScriptString
%%QT_INCDIR%%/QtScript/QScriptSyntaxCheckResult
%%QT_INCDIR%%/QtScript/QScriptValue
%%QT_INCDIR%%/QtScript/QScriptValueIterator
%%QT_INCDIR%%/QtScript/QScriptValueList
%%QT_INCDIR%%/QtScript/QScriptable
%%QT_INCDIR%%/QtScript/QtScript
%%QT_INCDIR%%/QtScript/QtScriptDepends
%%QT_INCDIR%%/QtScript/QtScriptVersion
%%QT_INCDIR%%/QtScript/qscriptable.h
%%QT_INCDIR%%/QtScript/qscriptclass.h
%%QT_INCDIR%%/QtScript/qscriptclasspropertyiterator.h
%%QT_INCDIR%%/QtScript/qscriptcontext.h
%%QT_INCDIR%%/QtScript/qscriptcontextinfo.h
%%QT_INCDIR%%/QtScript/qscriptengine.h
%%QT_INCDIR%%/QtScript/qscriptengineagent.h
%%QT_INCDIR%%/QtScript/qscriptextensioninterface.h
%%QT_INCDIR%%/QtScript/qscriptextensionplugin.h
%%QT_INCDIR%%/QtScript/qscriptprogram.h
%%QT_INCDIR%%/QtScript/qscriptstring.h
%%QT_INCDIR%%/QtScript/qscriptvalue.h
%%QT_INCDIR%%/QtScript/qscriptvalueiterator.h
%%QT_INCDIR%%/QtScript/qtscriptglobal.h
%%QT_INCDIR%%/QtScript/qtscriptversion.h
-%%QT_LIBDIR%%/cmake/Qt5Script/Qt5ScriptConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Script/Qt5ScriptConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Script/Qt5ScriptConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Script/Qt5ScriptConfigVersion.cmake
%%QT_LIBDIR%%/libQt5Script.prl
%%QT_LIBDIR%%/libQt5Script.so
%%QT_LIBDIR%%/libQt5Script.so.5
%%QT_LIBDIR%%/libQt5Script.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Script.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Script.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_script.pri
%%QT_MKSPECDIR%%/modules/qt_lib_script_private.pri
libdata/pkgconfig/Qt5Script.pc
Index: head/devel/qt5-scripttools/pkg-plist
===================================================================
--- head/devel/qt5-scripttools/pkg-plist (revision 434379)
+++ head/devel/qt5-scripttools/pkg-plist (revision 434380)
@@ -1,101 +1,101 @@
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptbreakpointdata_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptbreakpointsmodel_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptbreakpointswidget_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptbreakpointswidgetinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptbreakpointswidgetinterface_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptcompletionproviderinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptcompletiontask_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptcompletiontaskinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptcompletiontaskinterface_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebugger_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggeragent_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggeragent_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerbackend_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerbackend_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercodefinderwidget_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercodefinderwidgetinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercodefinderwidgetinterface_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercodeview_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercodeviewinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercodeviewinterface_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercodewidget_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercodewidgetinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercodewidgetinterface_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercommand_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercommandexecutor_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercommandschedulerfrontend_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercommandschedulerinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercommandschedulerjob_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggercommandschedulerjob_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerconsole_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerconsolecommand_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerconsolecommand_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerconsolecommandgroupdata_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerconsolecommandjob_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerconsolecommandjob_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerconsolecommandmanager_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerconsoleglobalobject_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerconsolehistorianinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerconsolewidget_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerconsolewidgetinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerconsolewidgetinterface_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerevent_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggereventhandlerinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerfrontend_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerfrontend_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerjob_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerjob_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerjobschedulerinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerlocalsmodel_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerlocalswidget_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerlocalswidgetinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerlocalswidgetinterface_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerobjectsnapshotdelta_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerresponse_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerresponsehandlerinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerscriptedconsolecommand_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerscriptsmodel_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerscriptswidget_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerscriptswidgetinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerscriptswidgetinterface_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerstackmodel_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerstackwidget_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerstackwidgetinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerstackwidgetinterface_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerstandardwidgetfactory_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggervalue_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggervalueproperty_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebuggerwidgetfactoryinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebugoutputwidget_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebugoutputwidgetinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptdebugoutputwidgetinterface_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptedit_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptenginedebuggerfrontend_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscripterrorlogwidget_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscripterrorlogwidgetinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscripterrorlogwidgetinterface_p_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptmessagehandlerinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptobjectsnapshot_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptscriptdata_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptstdmessagehandler_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptsyntaxhighlighter_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscripttooltipproviderinterface_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptvalueproperty_p.h
%%QT_INCDIR%%/QtScriptTools/%%FULLVER%%/QtScriptTools/private/qscriptxmlparser_p.h
%%QT_INCDIR%%/QtScriptTools/QScriptEngineDebugger
%%QT_INCDIR%%/QtScriptTools/QtScriptTools
%%QT_INCDIR%%/QtScriptTools/QtScriptToolsDepends
%%QT_INCDIR%%/QtScriptTools/QtScriptToolsVersion
%%QT_INCDIR%%/QtScriptTools/qscriptenginedebugger.h
%%QT_INCDIR%%/QtScriptTools/qtscripttoolsversion.h
-%%QT_LIBDIR%%/cmake/Qt5ScriptTools/Qt5ScriptToolsConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5ScriptTools/Qt5ScriptToolsConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5ScriptTools/Qt5ScriptToolsConfig.cmake
+%%QT_CMAKEDIR%%/Qt5ScriptTools/Qt5ScriptToolsConfigVersion.cmake
%%QT_LIBDIR%%/libQt5ScriptTools.prl
%%QT_LIBDIR%%/libQt5ScriptTools.so
%%QT_LIBDIR%%/libQt5ScriptTools.so.5
%%QT_LIBDIR%%/libQt5ScriptTools.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5ScriptTools.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5ScriptTools.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_scripttools.pri
%%QT_MKSPECDIR%%/modules/qt_lib_scripttools_private.pri
libdata/pkgconfig/Qt5ScriptTools.pc
Index: head/devel/qt5-scxml/Makefile
===================================================================
--- head/devel/qt5-scxml/Makefile (nonexistent)
+++ head/devel/qt5-scxml/Makefile (revision 434380)
@@ -0,0 +1,16 @@
+# $FreeBSD$
+
+PORTNAME= scxml
+DISTVERSION= ${QT5_VERSION}
+CATEGORIES= devel
+PKGNAMEPREFIX= qt5-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt5 SXCML module
+
+USE_QT5= core network qml buildtools_build
+QT_DIST= ${PORTNAME}
+USES= qmake
+USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
+
+.include <bsd.port.mk>
Property changes on: head/devel/qt5-scxml/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt5-scxml/pkg-plist
===================================================================
--- head/devel/qt5-scxml/pkg-plist (nonexistent)
+++ head/devel/qt5-scxml/pkg-plist (revision 434380)
@@ -0,0 +1,63 @@
+%%QT_INCDIR%%/QtScxml/%%FULLVER%%/QtScxml/private/qscxmlcppdatamodel_p.h
+%%QT_INCDIR%%/QtScxml/%%FULLVER%%/QtScxml/private/qscxmldatamodel_p.h
+%%QT_INCDIR%%/QtScxml/%%FULLVER%%/QtScxml/private/qscxmlecmascriptplatformproperties_p.h
+%%QT_INCDIR%%/QtScxml/%%FULLVER%%/QtScxml/private/qscxmlevent_p.h
+%%QT_INCDIR%%/QtScxml/%%FULLVER%%/QtScxml/private/qscxmlexecutablecontent_p.h
+%%QT_INCDIR%%/QtScxml/%%FULLVER%%/QtScxml/private/qscxmlglobals_p.h
+%%QT_INCDIR%%/QtScxml/%%FULLVER%%/QtScxml/private/qscxmlparser_p.h
+%%QT_INCDIR%%/QtScxml/%%FULLVER%%/QtScxml/private/qscxmlqstates_p.h
+%%QT_INCDIR%%/QtScxml/%%FULLVER%%/QtScxml/private/qscxmlstatemachine_p.h
+%%QT_INCDIR%%/QtScxml/QScxmlBaseTransition
+%%QT_INCDIR%%/QtScxml/QScxmlCppDataModel
+%%QT_INCDIR%%/QtScxml/QScxmlDataModel
+%%QT_INCDIR%%/QtScxml/QScxmlEcmaScriptDataModel
+%%QT_INCDIR%%/QtScxml/QScxmlError
+%%QT_INCDIR%%/QtScxml/QScxmlEvent
+%%QT_INCDIR%%/QtScxml/QScxmlEventFilter
+%%QT_INCDIR%%/QtScxml/QScxmlFinalState
+%%QT_INCDIR%%/QtScxml/QScxmlHistoryState
+%%QT_INCDIR%%/QtScxml/QScxmlInvokableScxml
+%%QT_INCDIR%%/QtScxml/QScxmlInvokableScxmlServiceFactory
+%%QT_INCDIR%%/QtScxml/QScxmlInvokableService
+%%QT_INCDIR%%/QtScxml/QScxmlInvokableServiceFactory
+%%QT_INCDIR%%/QtScxml/QScxmlInvokeScxmlFactory
+%%QT_INCDIR%%/QtScxml/QScxmlNullDataModel
+%%QT_INCDIR%%/QtScxml/QScxmlParser
+%%QT_INCDIR%%/QtScxml/QScxmlState
+%%QT_INCDIR%%/QtScxml/QScxmlStateMachine
+%%QT_INCDIR%%/QtScxml/QScxmlTableData
+%%QT_INCDIR%%/QtScxml/QScxmlTransition
+%%QT_INCDIR%%/QtScxml/QtScxml
+%%QT_INCDIR%%/QtScxml/QtScxmlDepends
+%%QT_INCDIR%%/QtScxml/QtScxmlVersion
+%%QT_INCDIR%%/QtScxml/qscxmlcppdatamodel.h
+%%QT_INCDIR%%/QtScxml/qscxmldatamodel.h
+%%QT_INCDIR%%/QtScxml/qscxmlecmascriptdatamodel.h
+%%QT_INCDIR%%/QtScxml/qscxmlerror.h
+%%QT_INCDIR%%/QtScxml/qscxmlevent.h
+%%QT_INCDIR%%/QtScxml/qscxmlexecutablecontent.h
+%%QT_INCDIR%%/QtScxml/qscxmlglobals.h
+%%QT_INCDIR%%/QtScxml/qscxmlinvokableservice.h
+%%QT_INCDIR%%/QtScxml/qscxmlnulldatamodel.h
+%%QT_INCDIR%%/QtScxml/qscxmlparser.h
+%%QT_INCDIR%%/QtScxml/qscxmlqstates.h
+%%QT_INCDIR%%/QtScxml/qscxmlstatemachine.h
+%%QT_INCDIR%%/QtScxml/qscxmltabledata.h
+%%QT_INCDIR%%/QtScxml/qtscxmlversion.h
+%%QT_CMAKEDIR%%/Qt5Scxml/Qt5ScxmlConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Scxml/Qt5ScxmlConfigVersion.cmake
+%%QT_BINDIR%%/qscxmlc
+%%QT_LIBDIR%%/libQt5Scxml.prl
+%%QT_LIBDIR%%/libQt5Scxml.so
+%%QT_LIBDIR%%/libQt5Scxml.so.5
+%%QT_LIBDIR%%/libQt5Scxml.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQt5Scxml.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQt5Scxml.so.%%FULLVER%%.debug
+%%QT_MKSPECDIR%%/features/qscxmlc.prf
+%%QT_MKSPECDIR%%/modules/qt_lib_scxml.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_scxml_private.pri
+%%QT_QMLDIR%%/QtScxml/libdeclarative_scxml.so
+%%DEBUG%%%%QT_QMLDIR%%/QtScxml/libdeclarative_scxml.so.debug
+%%QT_QMLDIR%%/QtScxml/plugins.qmltypes
+%%QT_QMLDIR%%/QtScxml/qmldir
+libdata/pkgconfig/Qt5Scxml.pc
Property changes on: head/devel/qt5-scxml/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/devel/qt5-testlib/pkg-plist
===================================================================
--- head/devel/qt5-testlib/pkg-plist (revision 434379)
+++ head/devel/qt5-testlib/pkg-plist (revision 434380)
@@ -1,76 +1,77 @@
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/callgrind_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/cycle_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/linux_perf_event_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qabstracttestlogger_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmark_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmarkevent_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmarkmeasurement_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmarkmetric_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmarkperfevents_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmarkvalgrind_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qcsvbenchmarklogger_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qplaintestlogger_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qsignaldumper_p.h
+%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qteamcitylogger_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestblacklist_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestcoreelement_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestcorelist_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestelement_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestelementattribute_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestlog_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestresult_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtesttable_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestutil_macos_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestxunitstreamer_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qxctestlogger_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qxmltestlogger_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qxunittestlogger_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/valgrind_p.h
%%QT_INCDIR%%/QtTest/QEventSizeOfChecker
%%QT_INCDIR%%/QtTest/QSignalSpy
%%QT_INCDIR%%/QtTest/QSpontaneKeyEvent
%%QT_INCDIR%%/QtTest/QTest
%%QT_INCDIR%%/QtTest/QTestAccessibility
%%QT_INCDIR%%/QtTest/QTestData
%%QT_INCDIR%%/QtTest/QTestDelayEvent
%%QT_INCDIR%%/QtTest/QTestEvent
%%QT_INCDIR%%/QtTest/QTestEventList
%%QT_INCDIR%%/QtTest/QTestEventLoop
%%QT_INCDIR%%/QtTest/QTestKeyClicksEvent
%%QT_INCDIR%%/QtTest/QTestKeyEvent
%%QT_INCDIR%%/QtTest/QTestMouseEvent
%%QT_INCDIR%%/QtTest/QtTest
%%QT_INCDIR%%/QtTest/QtTestDepends
%%QT_INCDIR%%/QtTest/QtTestGui
%%QT_INCDIR%%/QtTest/QtTestVersion
%%QT_INCDIR%%/QtTest/QtTestWidgets
%%QT_INCDIR%%/QtTest/qbenchmark.h
%%QT_INCDIR%%/QtTest/qbenchmarkmetric.h
%%QT_INCDIR%%/QtTest/qsignalspy.h
%%QT_INCDIR%%/QtTest/qtest.h
%%QT_INCDIR%%/QtTest/qtest_global.h
%%QT_INCDIR%%/QtTest/qtest_gui.h
%%QT_INCDIR%%/QtTest/qtest_widgets.h
%%QT_INCDIR%%/QtTest/qtestaccessible.h
%%QT_INCDIR%%/QtTest/qtestassert.h
%%QT_INCDIR%%/QtTest/qtestcase.h
%%QT_INCDIR%%/QtTest/qtestdata.h
%%QT_INCDIR%%/QtTest/qtestevent.h
%%QT_INCDIR%%/QtTest/qtesteventloop.h
%%QT_INCDIR%%/QtTest/qtestkeyboard.h
%%QT_INCDIR%%/QtTest/qtestmouse.h
%%QT_INCDIR%%/QtTest/qtestspontaneevent.h
%%QT_INCDIR%%/QtTest/qtestsystem.h
%%QT_INCDIR%%/QtTest/qtesttouch.h
%%QT_INCDIR%%/QtTest/qttestversion.h
-%%QT_LIBDIR%%/cmake/Qt5Test/Qt5TestConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Test/Qt5TestConfigExtras.cmake
-%%QT_LIBDIR%%/cmake/Qt5Test/Qt5TestConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Test/Qt5TestConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Test/Qt5TestConfigExtras.cmake
+%%QT_CMAKEDIR%%/Qt5Test/Qt5TestConfigVersion.cmake
%%QT_LIBDIR%%/libQt5Test.prl
%%QT_LIBDIR%%/libQt5Test.so
%%QT_LIBDIR%%/libQt5Test.so.5
%%QT_LIBDIR%%/libQt5Test.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Test.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Test.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_testlib.pri
%%QT_MKSPECDIR%%/modules/qt_lib_testlib_private.pri
libdata/pkgconfig/Qt5Test.pc
Index: head/devel/qt5-uitools/pkg-plist
===================================================================
--- head/devel/qt5-uitools/pkg-plist (revision 434379)
+++ head/devel/qt5-uitools/pkg-plist (revision 434380)
@@ -1,14 +1,14 @@
%%QT_INCDIR%%/QtUiTools/%%FULLVER%%/QtUiTools/private/quiloader_p.h
%%QT_INCDIR%%/QtUiTools/QUiLoader
%%QT_INCDIR%%/QtUiTools/QtUiTools
%%QT_INCDIR%%/QtUiTools/QtUiToolsDepends
%%QT_INCDIR%%/QtUiTools/QtUiToolsVersion
%%QT_INCDIR%%/QtUiTools/qtuitoolsversion.h
%%QT_INCDIR%%/QtUiTools/quiloader.h
-%%QT_LIBDIR%%/cmake/Qt5UiTools/Qt5UiToolsConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5UiTools/Qt5UiToolsConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5UiTools/Qt5UiToolsConfig.cmake
+%%QT_CMAKEDIR%%/Qt5UiTools/Qt5UiToolsConfigVersion.cmake
%%QT_LIBDIR%%/libQt5UiTools.a
%%QT_LIBDIR%%/libQt5UiTools.prl
%%QT_MKSPECDIR%%/modules/qt_lib_uitools.pri
%%QT_MKSPECDIR%%/modules/qt_lib_uitools_private.pri
libdata/pkgconfig/Qt5UiTools.pc
Index: head/devel/subcommander2/files/patch-configure.ac
===================================================================
--- head/devel/subcommander2/files/patch-configure.ac (revision 434379)
+++ head/devel/subcommander2/files/patch-configure.ac (revision 434380)
@@ -1,223 +1,218 @@
--- configure.ac.orig 2009-09-29 06:27:22.000000000 +0900
+++ configure.ac 2012-05-10 05:20:28.000000000 +0900
@@ -8,7 +8,8 @@
AM_CONFIG_HEADER(config.h)
AC_CONFIG_SRCDIR(sublib/version.in.h)
AC_CONFIG_AUX_DIR(ac-helpers)
-AM_INIT_AUTOMAKE(subdir-objects)
+AM_INIT_AUTOMAKE(subdir-objects foreign)
+AM_MAINTAINER_MODE
AH_TOP([
#ifndef SC_CONFIG_H
#define SC_CONFIG_H
@@ -141,14 +142,14 @@
AC_LANG(C++)
AC_COMPILE_IFELSE(
- AC_LANG_PROGRAM(
+ [AC_LANG_PROGRAM(
[[
#include <boost/shared_ptr.hpp>
]],
[[
boost::shared_ptr<char> ptr;
]]
- ),
+ )],
[
AC_MSG_RESULT([yes])
],[
@@ -190,10 +191,10 @@
AC_LANG(C++)
AC_COMPILE_IFELSE(
- AC_LANG_PROGRAM(
- [[#include <neon/ne_socket.h>]],
+ [AC_LANG_PROGRAM(
+ [[#error include <neon/ne_socket.h>]],
[[ne_sock_exit()]]
- ),
+ )],
[
AC_MSG_RESULT([yes])
AC_MSG_RESULT([ headers $NEON_INCLUDES])
@@ -241,14 +242,14 @@
AC_LANG(C++)
AC_COMPILE_IFELSE(
- AC_LANG_PROGRAM(
- [[#include <serf-0/serf.h>]],
+ [AC_LANG_PROGRAM(
+ [[#error include <serf-0/serf.h>]],
[[
#if ! SERF_VERSION_AT_LEAST(0,3,0)
# error no serf!
#endif // serf
]]
- ),
+ )],
[
AC_MSG_RESULT([yes])
AC_MSG_RESULT([ headers $SERF_INCLUDES])
@@ -273,9 +274,9 @@
AC_SUBST(NET_LIBS)
-if test x$found_neon = xno -a x$found_serf = xno; then
- AC_MSG_ERROR([found neither neon nor serf, try setting --with-neon or --with-serf])
-fi
+#if test x$found_neon = xno -a x$found_serf = xno; then
+# AC_MSG_ERROR([found neither neon nor serf, try setting --with-neon or --with-serf])
+#fi
##
@@ -357,9 +358,9 @@
goodsvn="bad";
elif test $SVN_MAJOR -eq 1 -a $SVN_MINOR -le 3; then
goodsvn="bad";
-elif test x$SVN_VERSION == x1.4.4; then
+elif test x$SVN_VERSION = x1.4.4; then
goodsvn="bad";
-elif test x$SVN_VERSION == x1.5.0; then
+elif test x$SVN_VERSION = x1.5.0; then
goodsvn="bad";
fi
@@ -368,26 +369,14 @@
if test $SVN_MAJOR -ge 1; then
SVN_LIBS_ALL="$SVN_LIBS -lsvn_client-1 -lsvn_wc-1 -lsvn_repos-1"
- SVN_LIBS_ALL="$SVN_LIBS_ALL -lsvn_ra-1 -lsvn_ra_svn-1 -lsvn_ra_local-1"
- SVN_LIBS_ALL="$SVN_LIBS_ALL -lsvn_fs-1 -lsvn_fs_fs-1"
+ SVN_LIBS_ALL="$SVN_LIBS_ALL -lsvn_ra-1"
+ SVN_LIBS_ALL="$SVN_LIBS_ALL -lsvn_fs-1"
SVN_LIBS_ALL="$SVN_LIBS_ALL -lsvn_delta-1 -lsvn_diff-1"
SVN_LIBS_ALL="$SVN_LIBS_ALL -lsvn_subr-1"
- if test $SVN_MINOR -eq 4; then
- SVN_LIBS_ALL="$SVN_LIBS_ALL -lsvn_ra_dav-1"
- elif test $SVN_MINOR -ge 5; then
- if test x$found_neon = xyes; then
- SVN_LIBS_ALL="$SVN_LIBS_ALL -lsvn_ra_neon-1"
- fi
- if test x$found_serf = xyes; then
- SVN_LIBS_ALL="$SVN_LIBS_ALL -lsvn_ra_serf-1"
- fi
- SVN_LIBS_ALL="$SVN_LIBS_ALL -lsvn_fs_util-1"
- fi
-
fi
-if test x$goodsvn == xok; then
+if test x$goodsvn = xok; then
AC_MSG_RESULT([yes])
AC_MSG_RESULT([ headers $SVN_INCLUDES])
AC_MSG_RESULT([ libraries $SVN_LIBS_ALL])
@@ -443,7 +432,7 @@
AC_LANG(C++)
AC_COMPILE_IFELSE(
- AC_LANG_PROGRAM(
+ [AC_LANG_PROGRAM(
[[
#include <openssl/evp.h>
#include <openssl/err.h>
@@ -454,7 +443,7 @@
ERR_free_strings();
unsigned long openssl = OPENSSL_VERSION_NUMBER;
]]
- ),
+ )],
[
AC_MSG_RESULT([yes])
],[
@@ -500,14 +489,14 @@
AC_LANG(C++)
AC_COMPILE_IFELSE(
- AC_LANG_PROGRAM(
+ [AC_LANG_PROGRAM(
[[
#include <db.h>
]],
[[
unsigned long num = DB_VERSION_MAJOR;
]]
- ),
+ )],
[
AC_MSG_RESULT([yes])
AC_DEFINE([SC_HAVE_BDB],[1],[berkeley db])
-@@ -635,11 +624,11 @@
+@@ -635,7 +624,7 @@
QT_BIN="$qt_path/bin"
QT_PATH="$qt_path"
- QT_LIBPATH="$qt_path/lib"
+ QT_LIBPATH="$qt_path/lib/qt4"
# extract version numbers of qt
-- QT_VERSION=`$QT_BIN/moc -v 2>&1 | sed "s/.*(Qt \(.*\))/\1/"`
-+ QT_VERSION=`$QT_BIN/moc-qt4 -v 2>&1 | sed "s/.*(Qt \(.*\))/\1/"`
- QT_MAJOR=`echo $QT_VERSION | sed "s/\(.*\)[[.]].*[[.]].*/\1/"`
- QT_MINOR=`echo $QT_VERSION | sed "s/.*[[.]]\(.*\)[[.]].*/\1/"`
-
@@ -669,7 +658,7 @@
*)
# any other Unix platform directly link with the libs
- QT_INCLUDES="-DQT3_SUPPORT -I$qt_path/include -I$qt_path/include/Qt"
+ QT_INCLUDES="-DQT3_SUPPORT -I$qt_path/include -I$qt_path/include/qt4"
QT_LIBS="-L$QT_LIBPATH -lQt3Support -lQtGui -lQtNetwork -lQtCore"
;;
esac
@@ -719,10 +708,10 @@
AC_LANG(C++)
AC_COMPILE_IFELSE(
- AC_LANG_PROGRAM(
+ [AC_LANG_PROGRAM(
[[#include <QtGui/QWidget>]],
[[QWidget* w = new QWidget();]]
- ),
+ )],
[
AC_MSG_RESULT([yes])
AC_MSG_RESULT([ version $QT_VERSION])
@@ -816,7 +805,7 @@
AC_LANG(C++)
AC_COMPILE_IFELSE(
- AC_LANG_PROGRAM(
+ [AC_LANG_PROGRAM(
[[
#include <vector>
]],
@@ -825,7 +814,7 @@
#error no stlport!
#endif // _STLPORT_VERSION
]]
- ),
+ )],
[
AC_MSG_RESULT([yes])
has_stlport="yes"
@@ -853,7 +842,7 @@
AC_MSG_CHECKING([wether we have a working stl])
AC_LANG(C++)
AC_COMPILE_IFELSE(
- AC_LANG_PROGRAM(
+ [AC_LANG_PROGRAM(
[[
]],
[[
@@ -861,7 +850,7 @@
# error needs stlport!
#endif // __GNUC__
]]
- ),
+ )],
[
AC_MSG_RESULT([yes])
],[
Index: head/devel/subcommander2/files/patch-subcommander__Makefile.am
===================================================================
--- head/devel/subcommander2/files/patch-subcommander__Makefile.am (revision 434379)
+++ head/devel/subcommander2/files/patch-subcommander__Makefile.am (revision 434380)
@@ -1,23 +1,14 @@
--- subcommander/Makefile.am.orig 2009-09-20 18:10:18.000000000 +0900
+++ subcommander/Makefile.am 2012-05-10 05:35:09.000000000 +0900
-@@ -1,7 +1,7 @@
- ## process this file with automake to produce Makefile.in
-
-
--QT_MOC = @QT_BIN@/moc
-+QT_MOC = @QT_BIN@/moc-qt4
-
- scdir = $(datadir)/subcommander
- icondir = $(scdir)/icons/default
@@ -125,9 +125,9 @@
bin_PROGRAMS = subcommander
-subcommander_LDADD = -L../util -L../svn -L../sublib -lsvn -lutil -lsublib \
+subcommander_LDADD = -L../util -L../svn -L../sublib -lsvn -lsublib -lutil \
@QT_LIBS@ @SVN_LIBS_ALL@ @STLPORT_LIBS@ @NET_LIBS@ \
- @APU_LIBS@ @APR_LIBS@ -lsasl2 -lz
+ @APU_LIBS@ @APR_LIBS@ -lz
subcommander_DEPENDENCIES = ../sublib/libsublib.a ../svn/libsvn.a ../util/libutil.a
Index: head/devel/subcommander2/files/patch-sublib__Makefile.am
===================================================================
--- head/devel/subcommander2/files/patch-sublib__Makefile.am (revision 434379)
+++ head/devel/subcommander2/files/patch-sublib__Makefile.am (revision 434380)
@@ -1,19 +1,11 @@
--- sublib/Makefile.am.orig 2009-09-20 18:10:18.000000000 +0900
+++ sublib/Makefile.am 2012-05-10 05:23:34.000000000 +0900
-@@ -1,6 +1,6 @@
- ## process this file with automake to produce Makefile.in
-
--QT_MOC = @QT_BIN@/moc
-+QT_MOC = @QT_BIN@/moc-qt4
- QT_RCC = @QT_BIN@/rcc
-
- scdir = $(datadir)/subcommander
@@ -121,7 +121,7 @@
$(QT_MOC) $< -o $@
resources.cpp : resources.h
- $(QT_RCC) -name sublib -o $@ ../pics/sublib.qrc
+ $(QT_RCC) -name sublib -o $@ $(top_srcdir)/pics/sublib.qrc
clean-local:
-rm -rf moc
Index: head/devel/subcommander2/files/patch-submerge__Makefile.am
===================================================================
--- head/devel/subcommander2/files/patch-submerge__Makefile.am (revision 434379)
+++ head/devel/subcommander2/files/patch-submerge__Makefile.am (revision 434380)
@@ -1,20 +1,11 @@
--- submerge/Makefile.am.orig 2008-06-23 02:19:21.000000000 +0900
+++ submerge/Makefile.am 2012-05-10 05:28:09.000000000 +0900
-@@ -1,7 +1,7 @@
- ## process this file with automake to produce Makefile.in
-
-
--QT_MOC = @QT_BIN@/moc
-+QT_MOC = @QT_BIN@/moc-qt4
-
- scdir = $(datadir)/subcommander
- icondir = $(scdir)/icons/default
@@ -29,7 +29,7 @@
bin_PROGRAMS = submerge
-submerge_LDADD = -L../util -L../svn -L../sublib -lutil -lsvn -lsublib \
+submerge_LDADD = -L../util -L../svn -L../sublib -lutil -lsublib -lsvn \
@QT_LIBS@ @APR_LIBS@ @APU_LIBS@ @SVN_LIBS@ -lsvn_diff-1 \
-lsvn_subr-1 @STLPORT_LIBS@ -lz
Index: head/devel/universalindentgui/files/patch-UniversalIndentGUI.pro
===================================================================
--- head/devel/universalindentgui/files/patch-UniversalIndentGUI.pro (nonexistent)
+++ head/devel/universalindentgui/files/patch-UniversalIndentGUI.pro (revision 434380)
@@ -0,0 +1,15 @@
+--- UniversalIndentGUI.pro.orig 2017-01-20 10:40:58 UTC
++++ UniversalIndentGUI.pro
+@@ -37,10 +37,10 @@ macx:pipe2nul = "&> /dev/null"
+ ##########################
+ message(Updating language files)
+ lupdate = lupdate
+-unix:lupdate = lupdate-qt4
++unix:lupdate = lupdate
+ macx:lupdate = lupdate
+ lrelease = lrelease
+-unix:lrelease = lrelease-qt4
++unix:lrelease = lrelease
+ macx:lrelease = lrelease
+ # Update translation files
+ message ( Updating universalindent.ts )
Property changes on: head/devel/universalindentgui/files/patch-UniversalIndentGUI.pro
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/emulators/swine/Makefile
===================================================================
--- head/emulators/swine/Makefile (revision 434379)
+++ head/emulators/swine/Makefile (revision 434380)
@@ -1,56 +1,57 @@
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
# $FreeBSD$
PORTNAME= swine
PORTVERSION= 1.0.4
PORTREVISION= 1
CATEGORIES= emulators deskutils python
MAINTAINER= koalative@gmail.com
COMMENT= Qt4 graphical Wine frontend
LICENSE= GPLv2
BUILD_DEPENDS= pyrcc4:textproc/py-qt4-xml
RUN_DEPENDS= xterm:x11/xterm \
cabextract:archivers/cabextract \
icotool:graphics/icoutils \
${PYTHON_SITELIBDIR}/PyQt4/QtGui.so:x11-toolkits/py-qt4-gui
DATADIRLIB= ${PREFIX}/lib/${PORTNAME}
USE_GITHUB= yes
GH_ACCOUNT= dswd
GH_PROJECT= Swine
USES= gmake python
NO_BUILD= yes
USE_QT4= linguist_build
ONLY_FOR_ARCHS= i386 amd64
PORTDOCS= README
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
.if ${ARCH} == "i386"
RUN_DEPENDS+= wine:emulators/wine-devel
.endif
post-patch:
@${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|' ${WRKSRC}/version.sh
@${REINPLACE_CMD} -e 's|/usr|${PREFIX}| ; \
- s|swine32.png|*|' \
+ s|swine32.png|*| ; \
+ s|lrelease-qt4|lrelease|' \
${WRKSRC}/Makefile
@${REINPLACE_CMD} -e 's|/usr/share/swine/images/swine32.png|swine|' \
-e 's|^Categories=.*|Categories=Wine;System;Emulator;Utility;Game;|' \
${WRKSRC}/resources/swine.desktop
post-install:
${LN} -sf ${DATADIR}/images/swine32.png \
${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>
Index: head/emulators/virtualbox-ose/files/patch-c++11-qt5
===================================================================
--- head/emulators/virtualbox-ose/files/patch-c++11-qt5 (nonexistent)
+++ head/emulators/virtualbox-ose/files/patch-c++11-qt5 (revision 434380)
@@ -0,0 +1,54 @@
+--- src/VBox/Frontends/VirtualBox/Makefile.kmk.orig 2017-01-17 08:26:40.000000000 +0100
++++ src/VBox/Frontends/VirtualBox/Makefile.kmk 2017-02-10 19:08:22.842186000 +0100
+@@ -238,6 +238,7 @@
+ VirtualBox_LIBS.linux += xcb
+ VirtualBox_LIBS.solaris += xcb
+ VirtualBox_LIBS.freebsd += xcb
++ VirtualBox_CXXFLAGS.freebsd += -std=c++11
+ endif # VBOX_WITH_QTGUI_V5
+
+ ifneq ($(KBUILD_TARGET),win)
+@@ -888,6 +889,7 @@
+ VirtualBox_SOURCES += \
+ src/VBoxFBOverlay.cpp \
+ src/VBoxGLSupportInfo.cpp
++ VirtualBox_CXXFLAGS += -std=c++11
+ endif
+
+ #
+@@ -1222,6 +1224,7 @@
+ VBoxOGL2D_SOURCES = \
+ src/VBoxGLSupportInfo.cpp
+ VBoxOGL2D_INCS = include
++ VBoxOGL2D_CXXFLAGS += -std=c++11
+ endif
+ endif
+
+--- src/VBox/Debugger/Makefile.kmk.orig 2017-02-10 19:55:21.598089000 +0100
++++ src/VBox/Debugger/Makefile.kmk 2017-02-10 20:12:29.292761000 +0100
+@@ -115,6 +115,7 @@
+ VBoxDbgBase.cpp \
+ VBoxDbgConsole.cpp \
+ VBoxDbgStatsQt4.cpp
++VBoxDbg_CXXFLAGS += -std=c++11
+ VBoxDbg_LIBS = \
+ $(VBOX_LIB_VMM_LAZY)
+ VBoxDbg_LDFLAGS.darwin = \
+@@ -141,6 +142,7 @@
+ tstVBoxDbg_LIBS.linux += xcb
+ tstVBoxDbg_LIBS.solaris += xcb
+ tstVBoxDbg_LIBS.freebsd += xcb
++ tstVBoxDbg_CXXFLAGS += -std=c++1
+ endif # VBOX_WITH_QTGUI_V5
+ tstVBoxDbg_SOURCES = testcase/tstVBoxDbg.cpp
+ tstVBoxDbg_LIBS = \
+--- src/VBox/HostServices/SharedOpenGL/Makefile.kmk.orig 2017-02-10 20:31:10.812441000 +0100
++++ src/VBox/HostServices/SharedOpenGL/Makefile.kmk 2017-02-10 20:32:04.804107000 +0100
+@@ -444,6 +444,7 @@
+ VBoxTestOGL_LIBS.linux += xcb
+ VBoxTestOGL_LIBS.solaris += xcb
+ VBoxTestOGL_LIBS.freebsd += xcb
++ VBoxTestOGL_CXXFLAGS += -std=c++11
+ endif # VBOX_WITH_QTGUI_V5
+ VBoxTestOGL_LDFLAGS.darwin += -framework OpenGL
+ VBoxTestOGL_LIBS.win += $(PATH_SDK_$(VBOX_WINPSDK)_LIB)/Opengl32.lib
Property changes on: head/emulators/virtualbox-ose/files/patch-c++11-qt5
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/emulators/virtualbox-ose/files/patch-configure
===================================================================
--- head/emulators/virtualbox-ose/files/patch-configure (revision 434379)
+++ head/emulators/virtualbox-ose/files/patch-configure (revision 434380)
@@ -1,93 +1,101 @@
--- configure.orig 2016-09-12 16:11:24 UTC
+++ configure
@@ -140,10 +140,14 @@ CXX_FLAGS=""
if [ "$OS" = "freebsd" ]; then
INCCURL="-I/usr/local/include"
LIBCURL="-L/usr/local/lib -lcurl"
+ INCALSA="-I/usr/local/include"
+ LIBALSA="-L/usr/local/lib"
INCPULSE="-I/usr/local/include"
LIBPULSE="-L/usr/local/lib"
INCPNG="-I/usr/local/include"
LIBPNG="-L/usr/local/lib -lpng"
+ INCVNCSERVER="-I/usr/local/include"
+ LIBVNCSERVER="-L/usr/local/lib"
else
INCCURL=""
LIBCURL="-lcurl"
@@ -441,6 +445,9 @@ check_gcc()
elif [ $cc_maj -eq 4 -a $cc_min -eq 0 -a "$OS" = "darwin" ]; then
log_success "found version $cc_ver"
# gcc-4.0 is allowed for Darwin only
+ elif [ $cc_maj -eq 4 -a $cc_min -eq 2 -a "$OS" = "freebsd" ]; then
+ log_success "found version $cc_ver"
+ # gcc-4.2 is allowed for FreeBSD only
elif [ $cc_maj -lt 4 \
-o \( $cc_maj -eq 4 -a $cc_min -lt 4 -a "$OS" != "darwin" \) \
-o \( $cc_maj -eq 4 -a $cc_min -lt 2 -a "$OS" = "darwin" \) \
@@ -1224,7 +1231,7 @@ extern "C" int main(void)
#endif
}
EOF
- if test_compile "-lasound" asound asound; then
+ if test_compile "$INCALSA $LIBALSA -lasound" asound asound; then
test_execute
fi
}
+@@ -1694,6 +1701,7 @@
+ if [ $? -eq 0 ]; then
+ echo "(Qt5 from pkg-config)" >> $LOG
+ FLGQT5=`pkg-config Qt5Core --cflags`
++ FLGQT5="$FLGQT5 -std=c++11"
+ INCQT5=`strip_I "$FLGQT5"`
+ LIBDIR5=`pkg-config Qt5Core --variable=libdir`
+ LIBQT5=`pkg-config Qt5Core --libs`
@@ -2126,8 +2133,8 @@ EOF
echo "compiling the following source file:" >> $LOG
cat $ODIR.tmp_src.cc >> $LOG
echo "using the following command line:" >> $LOG
- echo "$CXX -O -Wall -o $ODIR.tmp_out $ODIR.tmp_src.cc -I$p/include/$d $p/$b/lib$d.so" >> $LOG
- $CXX -O -Wall -o $ODIR.tmp_out $ODIR.tmp_src.cc -I$p/include/$d $p/$b/lib$d.so >> $LOG 2>&1
+ echo "$CXX -O -Wall -o $ODIR.tmp_out $ODIR.tmp_src.cc -I$p/include/$d $p/$b/lib$d.so -pthread" >> $LOG
+ $CXX -O -Wall -o $ODIR.tmp_out $ODIR.tmp_src.cc -I$p/include/$d $p/$b/lib$d.so -pthread >> $LOG 2>&1
if [ $? -eq 0 ]; then
found=1
break
@@ -2603,7 +2610,7 @@ for option in "$@"; do
--with-openssl-dir=*)
OPENSSLDIR=`echo $option | cut -d'=' -f2`
INCCRYPTO="-I${OPENSSLDIR}/include"
- LIBCRYPTO="${OPENSSLDIR}/lib/libcrypto.a ${OPENSSLDIR}/lib/libssl.a"
+ LIBCRYPTO="-L${OPENSSLDIR}/lib -lssl -lcrypto"
;;
--with-ow-dir=*)
WATCOM=`echo $option | cut -d'=' -f2`
@@ -2944,13 +2951,20 @@ if [ $ONLY_ADDITIONS -eq 0 ]; then
[ $WITH_PYTHON -eq 1 ] && check_python
[ $WITH_JAVA -eq 1 ] && check_java
- # PulseAudio
if [ "$OS" = "linux" -o "$OS" = "freebsd" -o "$OS" = "netbsd" ]; then
+ if [ $WITH_ALSA -eq 1 ]; then
+ check_alsa
+ else
+ cnf_append "VBOX_WITH_AUDIO_ALSA" ""
+ fi
if [ $WITH_PULSE -eq 1 ]; then
check_pulse
elif [ $WITH_PULSE -eq 0 ]; then
cnf_append "VBOX_WITH_AUDIO_PULSE" ""
fi
+ if [ $WITH_DBUS -eq 0 ]; then
+ cnf_append "VBOX_WITH_DBUS" ""
+ fi
fi
fi
@@ -2967,14 +2981,6 @@ if [ "$OS" = "linux" ]; then
cnf_append "VBOX_WITH_ADDITION_DRIVERS" ""
fi
if [ $ONLY_ADDITIONS -eq 0 ]; then
- if [ $WITH_ALSA -eq 1 ]; then
- check_alsa
- else
- cnf_append "VBOX_WITH_AUDIO_ALSA" ""
- fi
- if [ $WITH_DBUS -eq 0 ]; then
- cnf_append "VBOX_WITH_DBUS" ""
- fi
if [ $WITH_DEVMAPPER -eq 1 ]; then
check_libdevmapper
else
Index: head/games/goldencheetah/files/patch-src_src.pro
===================================================================
--- head/games/goldencheetah/files/patch-src_src.pro (nonexistent)
+++ head/games/goldencheetah/files/patch-src_src.pro (revision 434380)
@@ -0,0 +1,11 @@
+--- src/src.pro.orig 2017-01-18 19:54:38 UTC
++++ src/src.pro
+@@ -725,7 +725,7 @@ TRANSLATIONS = translations/gc_fr.ts \
+
+ isEmpty(QMAKE_LRELEASE) {
+ win32:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe
+- unix:!macx {QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease-qt4 }
++ unix:!macx {QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease }
+ else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
+ }
+
Property changes on: head/games/goldencheetah/files/patch-src_src.pro
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/graphics/gle-graphics/Makefile
===================================================================
--- head/graphics/gle-graphics/Makefile (revision 434379)
+++ head/graphics/gle-graphics/Makefile (revision 434380)
@@ -1,60 +1,60 @@
# Created by: Nicola Vitale <nivit@email.it>
# $FreeBSD$
PORTNAME= gle-graphics
DISTVERSION= 4.2.4cf
PORTREVISION= 6
CATEGORIES= graphics print
MASTER_SITES= SF/glx/gle4%20%28Current%20Active%20Version%29/${DISTVERSION:C,.$,,1}
DISTNAME= ${PORTNAME}-${DISTVERSION}-src
MAINTAINER= nivit@FreeBSD.org
COMMENT= Graphics language that produces images from script files
LICENSE= BSD3CLAUSE GPLv2
LICENSE_COMB= multi
BITMAP_IMAGES_CONFIGURE_WITH= jpeg=${LOCALBASE} tiff=${LOCALBASE} png=${LOCALBASE}
BITMAP_IMAGES_DESC= Support for including bitmap images
BITMAP_IMAGES_LIB_DEPENDS= libpng.so:graphics/png \
libtiffxx.so:graphics/tiff
BITMAP_IMAGES_USES= jpeg
-CONFIGURE_ARGS= --with-extrafonts=yes
+CONFIGURE_ARGS= --with-extrafonts=yes --with-qt=${QT_ARCHDIR}
ALL_TARGET= all
DOCS_ALL_TARGET= doc
DOCS_USE= tex=latex:build tex=dvipsk:build
GNU_CONFIGURE= yes
LATEX_GS_DESC= Use LaTeX & GhostScript
LATEX_GS_USE= tex=latex
LATEX_GS_USES= ghostscript
MAKE_JOBS_UNSAFE=yes
OPTIONS_DEFINE= DOCS BITMAP_IMAGES LATEX_GS X11
OPTIONS_DEFAULT= BITMAP_IMAGES LATEX_GS X11
PLIST_SUB+= PORTVERSION=${PORTVERSION}
REINPLACE_FILES= configure
USE_GCC= yes
USE_GL= yes
USE_LDCONFIG= yes
-USE_QT4= gui moc network opengl rcc qmake_build
+USE_QT4= corelib gui moc network opengl rcc qmake_build
USES= gmake ncurses pathfix
CPPFLAGS+= -I${NCURSESINC}
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E}
X11_CONFIGURE_WITH= x
X11_USE= xorg=x11
post-patch:
cd ${WRKSRC} && ${REINPLACE_CMD} -E -e 's,k(freebsd),\1,1' ${REINPLACE_FILES}
.include <bsd.port.mk>
Index: head/graphics/lprof-devel/Makefile
===================================================================
--- head/graphics/lprof-devel/Makefile (revision 434379)
+++ head/graphics/lprof-devel/Makefile (revision 434380)
@@ -1,41 +1,42 @@
# Created by: Dmitry Marakasov <amdmi3@amdmi3.ru>
# $FreeBSD$
PORTNAME= lprof
PORTVERSION= 20080514
PORTREVISION= 13
CATEGORIES= graphics
MASTER_SITES= http://mirror.amdmi3.ru/distfiles/ \
LOCAL/amdmi3
PKGNAMESUFFIX= -devel
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= Open source color profiler
LIB_DEPENDS= liblcms.so:graphics/lcms \
libtiff.so:graphics/tiff \
libvigraimpex.so:graphics/vigra
USES= cmake desktop-file-utils jpeg tar:bzip2
USE_XORG= x11 xext sm ice xxf86vm
USE_QT4= corelib gui qt3support svg assistantclient \
linguisttools_build qmake_build moc_build uic_build rcc_build
-CMAKE_ARGS= -DQTTRANS_LRELEASE_EXECUTABLE="${LOCALBASE}/bin/lrelease-qt4"
-
WRKSRC= ${WRKDIR}/${PORTNAME}
PORTDOCS= *
PORTDATA= *
OPTIONS_DEFINE= DOCS
post-patch:
@${REINPLACE_CMD} -e '/asm\/types.h/ d' ${WRKSRC}/src/argyll/spectro/hidio.c
@${REINPLACE_CMD} -e '/DESTINATION/ s|data/|share/${PORTNAME}/data/|' \
${WRKSRC}/data/CMakeLists.txt ${WRKSRC}/src/CMakeLists.txt
+# Patch in the correct prefix of the Qt binaries into the sources.
+ @${REINPLACE_CMD} -e 's|%%QT_ARCHDIR%%|${QT_ARCHDIR}|g' \
+ ${WRKSRC}/src/lprofqt/config.cpp
post-install:
${INSTALL_DATA} ${WRKSRC}/data/icons/lprof.png ${STAGEDIR}${PREFIX}/share/pixmaps
.include <bsd.port.mk>
Index: head/graphics/lprof-devel/files/patch-src-lprofqt-config.cpp
===================================================================
--- head/graphics/lprof-devel/files/patch-src-lprofqt-config.cpp (revision 434379)
+++ head/graphics/lprof-devel/files/patch-src-lprofqt-config.cpp (nonexistent)
@@ -1,11 +0,0 @@
---- ./src/lprofqt/config.cpp.orig 2008-03-09 01:31:11.000000000 +0300
-+++ ./src/lprofqt/config.cpp 2013-09-14 04:36:26.160226093 +0400
-@@ -206,7 +206,7 @@
- const QString assist = QString::fromLocal8Bit("assistant.app/Contents/MacOS/assistant");
- # else
- QChar pathSep = QChar::fromLatin1(':');
-- const QString assist = QString::fromLocal8Bit("assistant");
-+ const QString assist = QString::fromLocal8Bit("assistant-qt4");
- # endif /* __WIN32__ */
-
- QString Path = QString::fromLocal8Bit(getenv("PATH"));
Property changes on: head/graphics/lprof-devel/files/patch-src-lprofqt-config.cpp
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/graphics/lprof-devel/files/patch-src_lprofqt_config.cpp
===================================================================
--- head/graphics/lprof-devel/files/patch-src_lprofqt_config.cpp (nonexistent)
+++ head/graphics/lprof-devel/files/patch-src_lprofqt_config.cpp (revision 434380)
@@ -0,0 +1,20 @@
+The function get_QTDIR reads the environment variable 'QTDIR'. Which is not set
+most of the time. So define a sensible fallback value, and return that one in
+this case.
+
+This should help the program find the assistant binary, without going over
+qtchooser (and requiring to set QT_SELECT).
+
+--- src/lprofqt/config.cpp.orig 2017-02-04 19:46:56 UTC
++++ src/lprofqt/config.cpp
+@@ -72,7 +72,9 @@ QString get_QTDIR()
+ {
+ // qDebug(QString::fromLocal8Bit("get_home_dir"));
+ const char* qtdir= "QTDIR";
+- return QString::fromLocal8Bit(getenv(qtdir));
++ const QString fallback = "%%QT_ARCHDIR%%";
++ QString env_qtdir = QString::fromLocal8Bit(getenv(qtdir));
++ return (env_qtdir.isEmpty() ? fallback : env_qtdir);
+ }
+
+ void init_env()
Property changes on: head/graphics/lprof-devel/files/patch-src_lprofqt_config.cpp
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/graphics/poppler/Makefile
===================================================================
--- head/graphics/poppler/Makefile (revision 434379)
+++ head/graphics/poppler/Makefile (revision 434380)
@@ -1,140 +1,142 @@
# Created by: marcus@FreeBSD.org
# $FreeBSD$
PORTNAME= poppler
PORTVERSION= 0.50.0
CATEGORIES= graphics print
MASTER_SITES= http://poppler.freedesktop.org/
MAINTAINER?= gnome@FreeBSD.org
COMMENT?= PDF rendering library
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libpng.so:graphics/png \
libtiff.so:graphics/tiff \
libfontconfig.so:x11-fonts/fontconfig \
liblcms2.so:graphics/lcms2 \
libfreetype.so:print/freetype2 \
libnss3.so:security/nss \
libnspr4.so:devel/nspr
RUN_DEPENDS= poppler-data>0:graphics/poppler-data
USES= cpe gmake jpeg libtool localbase pathfix pkgconfig tar:xz
CPE_VENDOR= freedesktop
USE_GNOME= libxml2
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
CONFIGURE_ARGS= --enable-zlib \
--enable-xpdf-headers \
--disable-libnss \
--disable-gtk-test \
--without-html-dir \
--disable-static \
--enable-libnss
INSTALL_TARGET= install-strip
.if !defined(SLAVEPORT)
PORTSCOUT= limitw:1,even
OPTIONS_DEFINE= CAIRO CURL OPENJPEG
OPTIONS_DEFAULT=CAIRO OPENJPEG
USES+= iconv
.endif
.include <bsd.port.options.mk>
.if defined(SLAVEPORT)
PORTSCOUT= ignore:1
LIB_DEPENDS+= libpoppler.so:graphics/poppler
.if ${SLAVEPORT}==glib
CONFIGURE_ARGS+=--enable-poppler-glib --enable-introspection=yes
USE_GNOME+= cairo glib20 introspection:build
BUILD_WRKSRC= ${WRKSRC}/glib
INSTALL_WRKSRC= ${WRKSRC}/glib
.else
CONFIGURE_ARGS+=--disable-poppler-glib
.endif
.if ${SLAVEPORT}==qt4
CONFIGURE_ARGS+=--enable-poppler-qt4
CONFIGURE_ENV+= MOCQT4=${MOC}
USE_QT4= gui corelib xml qtestlib moc_build
BUILD_WRKSRC= ${WRKSRC}/qt4
INSTALL_WRKSRC= ${WRKSRC}/qt4
.else
CONFIGURE_ARGS+=--disable-poppler-qt4
.endif
.if ${SLAVEPORT}==qt5
CONFIGURE_ARGS+=--enable-poppler-qt5
CONFIGURE_ENV+= MOCQT5=${MOC}
USE_QT5= core gui widgets xml buildtools_build testlib_build
+# Qt from 5.7.0 on requires c++11.
+USE_CXXSTD= c++11
BUILD_WRKSRC= ${WRKSRC}/qt5
INSTALL_WRKSRC= ${WRKSRC}/qt5
.else
CONFIGURE_ARGS+=--disable-poppler-qt5
.endif
.if ${SLAVEPORT}==utils
LIB_DEPENDS+= libpoppler-glib.so:graphics/poppler-glib
CONFIGURE_ARGS+=--enable-utils
BUILD_WRKSRC= ${WRKSRC}/utils
INSTALL_WRKSRC= ${WRKSRC}/utils
.else
CONFIGURE_ARGS+=--disable-utils
.endif
.else # ! SLAVE options below
CONFIGURE_ARGS+=--disable-poppler-glib \
--disable-poppler-qt4 \
--disable-poppler-qt5 \
--disable-utils
.if ${PORT_OPTIONS:MCAIRO}
LIB_DEPENDS+= libcairo.so:graphics/cairo
PLIST_SUB+= CAIRO=""
.else
CONFIGURE_ARGS+=--disable-cairo-output
PLIST_SUB+= CAIRO="@comment "
.endif
.if ${PORT_OPTIONS:MCURL}
LIB_DEPENDS+= libcurl.so:ftp/curl
CONFIGURE_ARGS+=--enable-libcurl
PLIST_SUB+= CURL=""
.else
CONFIGURE_ARGS+=--disable-libcurl
PLIST_SUB+= CURL="@comment "
.endif
.if ${PORT_OPTIONS:MOPENJPEG}
CONFIGURE_ARGS+=--enable-libopenjpeg=openjpeg2
LIB_DEPENDS+= libopenjp2.so:graphics/openjpeg
.else
CONFIGURE_ARGS+=--disable-libopenjpeg
.endif
.endif # end of options
post-patch:
@${REINPLACE_CMD} -e 's|-fno-check-new||g' ${WRKSRC}/configure
post-install:
.if defined(SLAVEPORT)
. if ${SLAVEPORT}==glib
${INSTALL_DATA} ${WRKSRC}/poppler-glib.pc \
${STAGEDIR}${PREFIX}/libdata/pkgconfig
. elif ${SLAVEPORT}==qt4
${INSTALL_DATA} ${WRKSRC}/poppler-qt4.pc \
${STAGEDIR}${PREFIX}/libdata/pkgconfig
. elif ${SLAVEPORT}==qt5
${INSTALL_DATA} ${WRKSRC}/poppler-qt5.pc \
${STAGEDIR}${PREFIX}/libdata/pkgconfig
. endif
.endif
.include <bsd.port.mk>
Index: head/graphics/qt4-iconengines/Makefile
===================================================================
--- head/graphics/qt4-iconengines/Makefile (revision 434379)
+++ head/graphics/qt4-iconengines/Makefile (revision 434380)
@@ -1,43 +1,44 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= iconengines
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= graphics
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt SVG icon engine
USES= pkgconfig
USE_QT4= qmake_build moc_build corelib gui svg xml
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/testlib \
src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/plugins/${PORTNAME}/svgiconengine
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
.include <bsd.port.mk>
Index: head/graphics/qt4-imageformats/Makefile
===================================================================
--- head/graphics/qt4-imageformats/Makefile (revision 434379)
+++ head/graphics/qt4-imageformats/Makefile (revision 434380)
@@ -1,48 +1,49 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= imageformats
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= graphics
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt plugins for several image formats
LIB_DEPENDS= libmng.so:graphics/libmng \
libpng.so:graphics/png \
libtiff.so:graphics/tiff
USES= jpeg pkgconfig
USE_QT4= qmake_build moc_build rcc_build corelib gui svg xml
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/testlib \
src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/plugins/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
.include <bsd.port.mk>
Index: head/graphics/qt4-opengl/Makefile
===================================================================
--- head/graphics/qt4-opengl/Makefile (revision 434379)
+++ head/graphics/qt4-opengl/Makefile (revision 434380)
@@ -1,55 +1,56 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= opengl
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= graphics
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt OpenGL support module
USE_QT4= qmake_build moc_build corelib gui
QT_DIST= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
USE_GL= gl
USE_XORG= x11
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/multimedia src/network src/openvg \
src/phonon src/qt3support src/s60installs src/s60main \
src/script src/scripttools src/sql src/svg src/testlib \
src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
CONFIGURE_ARGS+= -I../../include/QtCore -I../../include/QtGui \
-I../../include/Qt -I../../include
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
post-configure:
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtOpenGL.pc
.include <bsd.port.mk>
Index: head/graphics/qt4-pixeltool/Makefile
===================================================================
--- head/graphics/qt4-pixeltool/Makefile (revision 434379)
+++ head/graphics/qt4-pixeltool/Makefile (revision 434380)
@@ -1,48 +1,49 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= pixeltool
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= graphics
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 4 screen magnifier
USE_QT4= qmake_build moc_build corelib gui network
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
# qtlogo.png is installed by qt4-gui
DESKTOP_ENTRIES="Qt 4 PixelTool" "" \
"${PREFIX}/share/pixmaps/qtlogo.png" \
"${PREFIX}/${QT_BINDIR_REL}/pixeltool" \
"Graphics;Qt;" true
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/svg \
src/testlib src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
.include <bsd.port.mk>
Index: head/graphics/qt4-svg/Makefile
===================================================================
--- head/graphics/qt4-svg/Makefile (revision 434379)
+++ head/graphics/qt4-svg/Makefile (revision 434380)
@@ -1,50 +1,51 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= svg
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= graphics
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt SVG support module
USE_QT4= qmake_build moc_build corelib gui
QT_DIST= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/testlib \
src/tools src/winmain src/xmlpatterns src/3rdparty/clucene \
src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
src/3rdparty/libpng src/3rdparty/libtiff src/3rdparty/phonon \
src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
post-configure:
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtSvg.pc
.include <bsd.port.mk>
Index: head/graphics/qt5-3d/Makefile
===================================================================
--- head/graphics/qt5-3d/Makefile (revision 434379)
+++ head/graphics/qt5-3d/Makefile (revision 434380)
@@ -1,20 +1,19 @@
# $FreeBSD$
PORTNAME= 3d
DISTVERSION= ${QT5_VERSION}
CATEGORIES= graphics
PKGNAMEPREFIX= qt5-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt3D module
LIB_DEPENDS= libassimp.so.3:multimedia/assimp
-# Base GCC fails to build the code, pull in a more recent compiler.
-USES= compiler:c++0x pkgconfig qmake
+USES= pkgconfig qmake
USE_QT5= concurrent core gui qml quick buildtools_build
QT_DIST= ${PORTNAME}
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
.include <bsd.port.mk>
Index: head/graphics/qt5-3d/pkg-plist
===================================================================
--- head/graphics/qt5-3d/pkg-plist (revision 434379)
+++ head/graphics/qt5-3d/pkg-plist (revision 434380)
@@ -1,768 +1,921 @@
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/aspectcommanddebugger_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/corelogging_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/dependencyhandler_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/nullservices_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/propertychangehandler_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractaspect_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractaspectjobmanager_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractframeadvanceservice_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractframeadvanceservice_p_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractnodefactory_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractserviceprovider_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectengine_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectfactory_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectjob_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectjobmanager_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectjobproviderinterface_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectmanager_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectthread_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qbackendnode_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qbackendnodefactory_p.h
-%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qbackendscenepropertychange_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qboundedcircularbuffer_p.h
-%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcamera_p.h
-%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcameralens_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qchangearbiter_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcircularbuffer_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcomponent_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcomponentaddedchange_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcomponentremovedchange_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qdestructionidandtypecollector_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qdynamicpropertyupdatedchange_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qentity_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qeventfilterservice_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qframeallocator_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qframeallocator_p_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qhandle_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qhandlemanager_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qlockableobserverinterface_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qmath3d_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnode_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnodecreatedchange_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnodecreatedchangegenerator_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnodedestroyedchange_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnodevisitor_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qobservableinterface_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qobserverinterface_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qopenglinformationservice_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qopenglinformationservice_p_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpostman_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertynodeaddedchange_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertynoderemovedchange_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertyupdatedchange_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertyupdatedchangebase_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertyvalueaddedchange_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertyvalueaddedchangebase_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertyvalueremovedchange_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertyvalueremovedchangebase_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qresourcemanager_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qscene_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qscenechange_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qsceneobserverinterface_p.h
-%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qscenepropertychange_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qscheduler_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qservicelocator_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qstaticpropertyupdatedchangebase_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qstaticpropertyvalueaddedchangebase_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qstaticpropertyvalueremovedchangebase_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qsysteminformationservice_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qsysteminformationservice_p_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qt3dcore_global_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qthreadpooler_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qtickclock_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qtickclockservice_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qtransform_p.h
+%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qtypedpropertyupdatechange_p.h
%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/task_p.h
%%QT_INCDIR%%/Qt3DCore/QAbstractAspect
-%%QT_INCDIR%%/Qt3DCore/QAbstractNodeFactory
%%QT_INCDIR%%/Qt3DCore/QAspectEngine
%%QT_INCDIR%%/Qt3DCore/QAspectJob
%%QT_INCDIR%%/Qt3DCore/QAspectJobPtr
%%QT_INCDIR%%/Qt3DCore/QBackendNode
-%%QT_INCDIR%%/Qt3DCore/QBackendNodeFunctor
-%%QT_INCDIR%%/Qt3DCore/QBackendNodeFunctorPtr
-%%QT_INCDIR%%/Qt3DCore/QBackendScenePropertyChange
-%%QT_INCDIR%%/Qt3DCore/QBackendScenePropertyChangePtr
-%%QT_INCDIR%%/Qt3DCore/QCamera
-%%QT_INCDIR%%/Qt3DCore/QCameraLens
+%%QT_INCDIR%%/Qt3DCore/QBackendNodeMapper
+%%QT_INCDIR%%/Qt3DCore/QBackendNodeMapperPtr
%%QT_INCDIR%%/Qt3DCore/QComponent
-%%QT_INCDIR%%/Qt3DCore/QComponentList
+%%QT_INCDIR%%/Qt3DCore/QComponentAddedChange
+%%QT_INCDIR%%/Qt3DCore/QComponentAddedChangePtr
+%%QT_INCDIR%%/Qt3DCore/QComponentRemovedChange
+%%QT_INCDIR%%/Qt3DCore/QComponentRemovedChangePtr
+%%QT_INCDIR%%/Qt3DCore/QComponentVector
+%%QT_INCDIR%%/Qt3DCore/QDynamicPropertyUpdatedChange
+%%QT_INCDIR%%/Qt3DCore/QDynamicPropertyUpdatedChangePtr
%%QT_INCDIR%%/Qt3DCore/QEntity
+%%QT_INCDIR%%/Qt3DCore/QEntityPtr
%%QT_INCDIR%%/Qt3DCore/QNode
+%%QT_INCDIR%%/Qt3DCore/QNodeCreatedChange
+%%QT_INCDIR%%/Qt3DCore/QNodeCreatedChangeBase
+%%QT_INCDIR%%/Qt3DCore/QNodeCreatedChangeBasePtr
+%%QT_INCDIR%%/Qt3DCore/QNodeDestroyedChange
+%%QT_INCDIR%%/Qt3DCore/QNodeDestroyedChangePtr
%%QT_INCDIR%%/Qt3DCore/QNodeId
-%%QT_INCDIR%%/Qt3DCore/QNodeList
+%%QT_INCDIR%%/Qt3DCore/QNodeIdTypePair
%%QT_INCDIR%%/Qt3DCore/QNodePtr
-%%QT_INCDIR%%/Qt3DCore/QRay3D
+%%QT_INCDIR%%/Qt3DCore/QNodeVector
+%%QT_INCDIR%%/Qt3DCore/QPropertyNodeAddedChange
+%%QT_INCDIR%%/Qt3DCore/QPropertyNodeAddedChangePtr
+%%QT_INCDIR%%/Qt3DCore/QPropertyNodeRemovedChange
+%%QT_INCDIR%%/Qt3DCore/QPropertyNodeRemovedChangePtr
+%%QT_INCDIR%%/Qt3DCore/QPropertyUpdatedChange
+%%QT_INCDIR%%/Qt3DCore/QPropertyUpdatedChangeBase
+%%QT_INCDIR%%/Qt3DCore/QPropertyUpdatedChangeBasePtr
+%%QT_INCDIR%%/Qt3DCore/QPropertyUpdatedChangePtr
+%%QT_INCDIR%%/Qt3DCore/QPropertyValueAddedChange
+%%QT_INCDIR%%/Qt3DCore/QPropertyValueAddedChangeBase
+%%QT_INCDIR%%/Qt3DCore/QPropertyValueAddedChangeBasePtr
+%%QT_INCDIR%%/Qt3DCore/QPropertyValueAddedChangePtr
+%%QT_INCDIR%%/Qt3DCore/QPropertyValueRemovedChange
+%%QT_INCDIR%%/Qt3DCore/QPropertyValueRemovedChangeBase
+%%QT_INCDIR%%/Qt3DCore/QPropertyValueRemovedChangeBasePtr
+%%QT_INCDIR%%/Qt3DCore/QPropertyValueRemovedChangePtr
%%QT_INCDIR%%/Qt3DCore/QSceneChange
%%QT_INCDIR%%/Qt3DCore/QSceneChangePtr
-%%QT_INCDIR%%/Qt3DCore/QScenePropertyChange
-%%QT_INCDIR%%/Qt3DCore/QScenePropertyChangePtr
+%%QT_INCDIR%%/Qt3DCore/QStaticPropertyUpdatedChangeBase
+%%QT_INCDIR%%/Qt3DCore/QStaticPropertyUpdatedChangeBasePtr
+%%QT_INCDIR%%/Qt3DCore/QStaticPropertyValueAddedChangeBase
+%%QT_INCDIR%%/Qt3DCore/QStaticPropertyValueRemovedChangeBase
%%QT_INCDIR%%/Qt3DCore/QTransform
%%QT_INCDIR%%/Qt3DCore/Qt3DCore
%%QT_INCDIR%%/Qt3DCore/Qt3DCoreDepends
%%QT_INCDIR%%/Qt3DCore/Qt3DCoreVersion
%%QT_INCDIR%%/Qt3DCore/qabstractaspect.h
-%%QT_INCDIR%%/Qt3DCore/qabstractnodefactory.h
%%QT_INCDIR%%/Qt3DCore/qaspectengine.h
%%QT_INCDIR%%/Qt3DCore/qaspectjob.h
%%QT_INCDIR%%/Qt3DCore/qbackendnode.h
-%%QT_INCDIR%%/Qt3DCore/qbackendscenepropertychange.h
-%%QT_INCDIR%%/Qt3DCore/qcamera.h
-%%QT_INCDIR%%/Qt3DCore/qcameralens.h
%%QT_INCDIR%%/Qt3DCore/qcomponent.h
+%%QT_INCDIR%%/Qt3DCore/qcomponentaddedchange.h
+%%QT_INCDIR%%/Qt3DCore/qcomponentremovedchange.h
+%%QT_INCDIR%%/Qt3DCore/qdynamicpropertyupdatedchange.h
%%QT_INCDIR%%/Qt3DCore/qentity.h
%%QT_INCDIR%%/Qt3DCore/qnode.h
+%%QT_INCDIR%%/Qt3DCore/qnodecreatedchange.h
+%%QT_INCDIR%%/Qt3DCore/qnodedestroyedchange.h
%%QT_INCDIR%%/Qt3DCore/qnodeid.h
-%%QT_INCDIR%%/Qt3DCore/qray3d.h
+%%QT_INCDIR%%/Qt3DCore/qpropertynodeaddedchange.h
+%%QT_INCDIR%%/Qt3DCore/qpropertynoderemovedchange.h
+%%QT_INCDIR%%/Qt3DCore/qpropertyupdatedchange.h
+%%QT_INCDIR%%/Qt3DCore/qpropertyupdatedchangebase.h
+%%QT_INCDIR%%/Qt3DCore/qpropertyvalueaddedchange.h
+%%QT_INCDIR%%/Qt3DCore/qpropertyvalueaddedchangebase.h
+%%QT_INCDIR%%/Qt3DCore/qpropertyvalueremovedchange.h
+%%QT_INCDIR%%/Qt3DCore/qpropertyvalueremovedchangebase.h
%%QT_INCDIR%%/Qt3DCore/qscenechange.h
-%%QT_INCDIR%%/Qt3DCore/qscenepropertychange.h
+%%QT_INCDIR%%/Qt3DCore/qstaticpropertyupdatedchangebase.h
+%%QT_INCDIR%%/Qt3DCore/qstaticpropertyvalueaddedchangebase.h
+%%QT_INCDIR%%/Qt3DCore/qstaticpropertyvalueremovedchangebase.h
%%QT_INCDIR%%/Qt3DCore/qt3dcore_global.h
%%QT_INCDIR%%/Qt3DCore/qt3dcoreversion.h
%%QT_INCDIR%%/Qt3DCore/qtransform.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qconegeometry_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qcuboidgeometry_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qcylindergeometry_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qdiffusemapmaterial_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qdiffusespecularmapmaterial_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qfirstpersoncameracontroller_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qforwardrenderer_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qgoochmaterial_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qnormaldiffusemapalphamaterial_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qnormaldiffusemapmaterial_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qnormaldiffusespecularmapmaterial_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qorbitcameracontroller_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qpervertexcolormaterial_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qphongalphamaterial_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qphongmaterial_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qplanegeometry_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qskyboxentity_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qspheregeometry_p.h
+%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtorusgeometry_p.h
+%%QT_INCDIR%%/Qt3DExtras/QConeGeometry
+%%QT_INCDIR%%/Qt3DExtras/QConeMesh
+%%QT_INCDIR%%/Qt3DExtras/QCuboidGeometry
+%%QT_INCDIR%%/Qt3DExtras/QCuboidMesh
+%%QT_INCDIR%%/Qt3DExtras/QCylinderGeometry
+%%QT_INCDIR%%/Qt3DExtras/QCylinderMesh
+%%QT_INCDIR%%/Qt3DExtras/QDiffuseMapMaterial
+%%QT_INCDIR%%/Qt3DExtras/QDiffuseSpecularMapMaterial
+%%QT_INCDIR%%/Qt3DExtras/QFirstPersonCameraController
+%%QT_INCDIR%%/Qt3DExtras/QForwardRenderer
+%%QT_INCDIR%%/Qt3DExtras/QGoochMaterial
+%%QT_INCDIR%%/Qt3DExtras/QNormalDiffuseMapAlphaMaterial
+%%QT_INCDIR%%/Qt3DExtras/QNormalDiffuseMapMaterial
+%%QT_INCDIR%%/Qt3DExtras/QNormalDiffuseSpecularMapMaterial
+%%QT_INCDIR%%/Qt3DExtras/QOrbitCameraController
+%%QT_INCDIR%%/Qt3DExtras/QPerVertexColorMaterial
+%%QT_INCDIR%%/Qt3DExtras/QPhongAlphaMaterial
+%%QT_INCDIR%%/Qt3DExtras/QPhongMaterial
+%%QT_INCDIR%%/Qt3DExtras/QPlaneGeometry
+%%QT_INCDIR%%/Qt3DExtras/QPlaneMesh
+%%QT_INCDIR%%/Qt3DExtras/QSkyboxEntity
+%%QT_INCDIR%%/Qt3DExtras/QSphereGeometry
+%%QT_INCDIR%%/Qt3DExtras/QSphereMesh
+%%QT_INCDIR%%/Qt3DExtras/QTorusGeometry
+%%QT_INCDIR%%/Qt3DExtras/QTorusMesh
+%%QT_INCDIR%%/Qt3DExtras/Qt3DExtras
+%%QT_INCDIR%%/Qt3DExtras/Qt3DExtrasDepends
+%%QT_INCDIR%%/Qt3DExtras/Qt3DExtrasVersion
+%%QT_INCDIR%%/Qt3DExtras/Qt3DWindow
+%%QT_INCDIR%%/Qt3DExtras/qconegeometry.h
+%%QT_INCDIR%%/Qt3DExtras/qconemesh.h
+%%QT_INCDIR%%/Qt3DExtras/qcuboidgeometry.h
+%%QT_INCDIR%%/Qt3DExtras/qcuboidmesh.h
+%%QT_INCDIR%%/Qt3DExtras/qcylindergeometry.h
+%%QT_INCDIR%%/Qt3DExtras/qcylindermesh.h
+%%QT_INCDIR%%/Qt3DExtras/qdiffusemapmaterial.h
+%%QT_INCDIR%%/Qt3DExtras/qdiffusespecularmapmaterial.h
+%%QT_INCDIR%%/Qt3DExtras/qfirstpersoncameracontroller.h
+%%QT_INCDIR%%/Qt3DExtras/qforwardrenderer.h
+%%QT_INCDIR%%/Qt3DExtras/qgoochmaterial.h
+%%QT_INCDIR%%/Qt3DExtras/qnormaldiffusemapalphamaterial.h
+%%QT_INCDIR%%/Qt3DExtras/qnormaldiffusemapmaterial.h
+%%QT_INCDIR%%/Qt3DExtras/qnormaldiffusespecularmapmaterial.h
+%%QT_INCDIR%%/Qt3DExtras/qorbitcameracontroller.h
+%%QT_INCDIR%%/Qt3DExtras/qpervertexcolormaterial.h
+%%QT_INCDIR%%/Qt3DExtras/qphongalphamaterial.h
+%%QT_INCDIR%%/Qt3DExtras/qphongmaterial.h
+%%QT_INCDIR%%/Qt3DExtras/qplanegeometry.h
+%%QT_INCDIR%%/Qt3DExtras/qplanemesh.h
+%%QT_INCDIR%%/Qt3DExtras/qskyboxentity.h
+%%QT_INCDIR%%/Qt3DExtras/qspheregeometry.h
+%%QT_INCDIR%%/Qt3DExtras/qspheremesh.h
+%%QT_INCDIR%%/Qt3DExtras/qt3dextras_global.h
+%%QT_INCDIR%%/Qt3DExtras/qt3dextrasversion.h
+%%QT_INCDIR%%/Qt3DExtras/qt3dwindow.h
+%%QT_INCDIR%%/Qt3DExtras/qtorusgeometry.h
+%%QT_INCDIR%%/Qt3DExtras/qtorusmesh.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/abstractaxisinput_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/action_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/actioninput_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/analogaxisinput_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/assignkeyboardfocusjob_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axis_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axisactionhandler_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axisactionpayload_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axisinput_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axissetting_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/cameracontroller_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/buttonaxisinput_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/eventsourcesetterhelper_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/genericdevicebackendnode_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/handle_types_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputbackendnodefunctor_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputchord_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputhandler_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputmanagers_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboardcontroller_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputsequence_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputsettings_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboarddevice_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboardeventfilter_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboardinput_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboardmousedeviceintegration_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboardhandler_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboardmousegenericdeviceintegration_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyeventdispatcherjob_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/logicaldevice_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/mousecontroller_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/mousedevice_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/mouseeventdispatcherjob_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/mouseeventfilter_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/mouseinput_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/mousehandler_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/movingaverage_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractactioninput_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractaxisinput_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldevice_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldevicebackendnode_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qaxisactionhandler_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldevicebackendnode_p_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qaction_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qactioninput_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qanalogaxisinput_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qaxis_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qaxissetting_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qbuttonaxisinput_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qgamepadinput_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qgenericinputdevice_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputaspect_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputchord_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputdeviceintegration_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputdeviceintegration_p_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputdeviceintegrationfactory_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qkeyboardcontroller_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qkeyboardinput_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qmousecontroller_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qmouseinput_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputdeviceplugin_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputsequence_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputsettings_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qkeyboarddevice_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qkeyboardhandler_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qlogicaldevice_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qmousedevice_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qmousehandler_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qphysicaldevicecreatedchange_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qt3dinput_global_p.h
%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/updateaxisactionjob_p.h
-%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/updatehandlerjob_p.h
+%%QT_INCDIR%%/Qt3DInput/QAbstractActionInput
+%%QT_INCDIR%%/Qt3DInput/QAbstractAxisInput
%%QT_INCDIR%%/Qt3DInput/QAbstractPhysicalDevice
-%%QT_INCDIR%%/Qt3DInput/QAbstractPhysicalDeviceBackendNode
%%QT_INCDIR%%/Qt3DInput/QAction
%%QT_INCDIR%%/Qt3DInput/QActionInput
+%%QT_INCDIR%%/Qt3DInput/QAnalogAxisInput
%%QT_INCDIR%%/Qt3DInput/QAxis
-%%QT_INCDIR%%/Qt3DInput/QAxisActionHandler
-%%QT_INCDIR%%/Qt3DInput/QAxisInput
%%QT_INCDIR%%/Qt3DInput/QAxisSetting
-%%QT_INCDIR%%/Qt3DInput/QBackendNodeFunctorPtr
+%%QT_INCDIR%%/Qt3DInput/QButtonAxisInput
%%QT_INCDIR%%/Qt3DInput/QInputAspect
-%%QT_INCDIR%%/Qt3DInput/QInputDeviceIntegration
-%%QT_INCDIR%%/Qt3DInput/QInputDevicePlugin
+%%QT_INCDIR%%/Qt3DInput/QInputChord
+%%QT_INCDIR%%/Qt3DInput/QInputSequence
+%%QT_INCDIR%%/Qt3DInput/QInputSettings
%%QT_INCDIR%%/Qt3DInput/QKeyEvent
%%QT_INCDIR%%/Qt3DInput/QKeyEventPtr
-%%QT_INCDIR%%/Qt3DInput/QKeyboardController
-%%QT_INCDIR%%/Qt3DInput/QKeyboardInput
+%%QT_INCDIR%%/Qt3DInput/QKeyboardDevice
+%%QT_INCDIR%%/Qt3DInput/QKeyboardHandler
%%QT_INCDIR%%/Qt3DInput/QLogicalDevice
-%%QT_INCDIR%%/Qt3DInput/QMouseController
+%%QT_INCDIR%%/Qt3DInput/QMouseDevice
%%QT_INCDIR%%/Qt3DInput/QMouseEvent
%%QT_INCDIR%%/Qt3DInput/QMouseEventPtr
-%%QT_INCDIR%%/Qt3DInput/QMouseInput
+%%QT_INCDIR%%/Qt3DInput/QMouseHandler
+%%QT_INCDIR%%/Qt3DInput/QPhysicalDeviceCreatedChange
+%%QT_INCDIR%%/Qt3DInput/QPhysicalDeviceCreatedChangeBase
+%%QT_INCDIR%%/Qt3DInput/QPhysicalDeviceCreatedChangeBasePtr
%%QT_INCDIR%%/Qt3DInput/QWheelEvent
%%QT_INCDIR%%/Qt3DInput/QWheelEventPtr
%%QT_INCDIR%%/Qt3DInput/Qt3DInput
%%QT_INCDIR%%/Qt3DInput/Qt3DInputDepends
%%QT_INCDIR%%/Qt3DInput/Qt3DInputVersion
+%%QT_INCDIR%%/Qt3DInput/qabstractactioninput.h
+%%QT_INCDIR%%/Qt3DInput/qabstractaxisinput.h
%%QT_INCDIR%%/Qt3DInput/qabstractphysicaldevice.h
-%%QT_INCDIR%%/Qt3DInput/qabstractphysicaldevicebackendnode.h
%%QT_INCDIR%%/Qt3DInput/qaction.h
%%QT_INCDIR%%/Qt3DInput/qactioninput.h
+%%QT_INCDIR%%/Qt3DInput/qanalogaxisinput.h
%%QT_INCDIR%%/Qt3DInput/qaxis.h
-%%QT_INCDIR%%/Qt3DInput/qaxisactionhandler.h
-%%QT_INCDIR%%/Qt3DInput/qaxisinput.h
%%QT_INCDIR%%/Qt3DInput/qaxissetting.h
+%%QT_INCDIR%%/Qt3DInput/qbuttonaxisinput.h
%%QT_INCDIR%%/Qt3DInput/qinputaspect.h
-%%QT_INCDIR%%/Qt3DInput/qinputdeviceintegration.h
-%%QT_INCDIR%%/Qt3DInput/qinputdeviceplugin.h
-%%QT_INCDIR%%/Qt3DInput/qkeyboardcontroller.h
-%%QT_INCDIR%%/Qt3DInput/qkeyboardinput.h
+%%QT_INCDIR%%/Qt3DInput/qinputchord.h
+%%QT_INCDIR%%/Qt3DInput/qinputsequence.h
+%%QT_INCDIR%%/Qt3DInput/qinputsettings.h
+%%QT_INCDIR%%/Qt3DInput/qkeyboarddevice.h
+%%QT_INCDIR%%/Qt3DInput/qkeyboardhandler.h
%%QT_INCDIR%%/Qt3DInput/qkeyevent.h
%%QT_INCDIR%%/Qt3DInput/qlogicaldevice.h
-%%QT_INCDIR%%/Qt3DInput/qmousecontroller.h
+%%QT_INCDIR%%/Qt3DInput/qmousedevice.h
%%QT_INCDIR%%/Qt3DInput/qmouseevent.h
-%%QT_INCDIR%%/Qt3DInput/qmouseinput.h
+%%QT_INCDIR%%/Qt3DInput/qmousehandler.h
+%%QT_INCDIR%%/Qt3DInput/qphysicaldevicecreatedchange.h
%%QT_INCDIR%%/Qt3DInput/qt3dinput_global.h
%%QT_INCDIR%%/Qt3DInput/qt3dinputversion.h
%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/callbackjob_p.h
%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/executor_p.h
%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/handle_types_p.h
%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/handler_p.h
%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/manager_p.h
%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/managers_p.h
+%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/qframeaction_p.h
%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/qlogicaspect_p.h
-%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/qlogiccomponent_p.h
+%%QT_INCDIR%%/Qt3DLogic/QFrameAction
%%QT_INCDIR%%/Qt3DLogic/QLogicAspect
-%%QT_INCDIR%%/Qt3DLogic/QLogicComponent
%%QT_INCDIR%%/Qt3DLogic/Qt3DLogic
%%QT_INCDIR%%/Qt3DLogic/Qt3DLogicDepends
%%QT_INCDIR%%/Qt3DLogic/Qt3DLogicVersion
+%%QT_INCDIR%%/Qt3DLogic/qframeaction.h
%%QT_INCDIR%%/Qt3DLogic/qlogicaspect.h
-%%QT_INCDIR%%/Qt3DLogic/qlogiccomponent.h
%%QT_INCDIR%%/Qt3DLogic/qt3dlogic_global.h
%%QT_INCDIR%%/Qt3DLogic/qt3dlogicversion.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/abstractactioninput_p.h
+%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/job_common_p.h
+%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/job_common_p.h
%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qqmlaspectengine_p.h
%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qquaternionanimation_p.h
%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qt3dquick_global_p.h
%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qt3dquicknodefactory_p.h
%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qt3dquickvaluetypes_p.h
-%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dconfiguration_p.h
%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dentity_p.h
%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dentityloader_p.h
%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dentityloader_p_p.h
%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dnode_p.h
%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dnodeinstantiator_p.h
%%QT_INCDIR%%/Qt3DQuick/QQmlAspectEngine
%%QT_INCDIR%%/Qt3DQuick/Qt3DQuick
%%QT_INCDIR%%/Qt3DQuick/Qt3DQuickDepends
%%QT_INCDIR%%/Qt3DQuick/Qt3DQuickVersion
%%QT_INCDIR%%/Qt3DQuick/qqmlaspectengine.h
%%QT_INCDIR%%/Qt3DQuick/qt3dquick_global.h
%%QT_INCDIR%%/Qt3DQuick/qt3dquickversion.h
+%%QT_INCDIR%%/Qt3DQuickExtras/Qt3DQuickExtras
+%%QT_INCDIR%%/Qt3DQuickExtras/Qt3DQuickExtrasDepends
+%%QT_INCDIR%%/Qt3DQuickExtras/Qt3DQuickExtrasVersion
+%%QT_INCDIR%%/Qt3DQuickExtras/Qt3DQuickWindow
+%%QT_INCDIR%%/Qt3DQuickExtras/qt3dquickextras_global.h
+%%QT_INCDIR%%/Qt3DQuickExtras/qt3dquickextrasversion.h
+%%QT_INCDIR%%/Qt3DQuickExtras/qt3dquickwindow.h
%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/qt3dquickinput_global_p.h
%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/qt3dquickinputnodefactory_p.h
%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3daction_p.h
%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3daxis_p.h
+%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3dinputchord_p.h
+%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3dinputsequence_p.h
%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3dlogicaldevice_p.h
%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3dphysicaldevice_p.h
%%QT_INCDIR%%/Qt3DQuickInput/Qt3DQuickInput
%%QT_INCDIR%%/Qt3DQuickInput/Qt3DQuickInputDepends
%%QT_INCDIR%%/Qt3DQuickInput/Qt3DQuickInputVersion
%%QT_INCDIR%%/Qt3DQuickInput/qt3dquickinput_global.h
%%QT_INCDIR%%/Qt3DQuickInput/qt3dquickinputversion.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/qt3dquickrender_global_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/qt3dquickrendernodefactory_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dbuffer_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3deffect_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dgeometry_p.h
+%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dlayerfilter_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dmaterial_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dparameter_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dparameter_p_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3drenderpass_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3drenderpassfilter_p.h
-%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3drendertarget_p.h
+%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3drendertargetoutput_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3drendertargetselector_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dscene_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dshaderdata_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dshaderdataarray_p.h
-%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dsortmethod_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dstateset_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dtechnique_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dtechniquefilter_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dtexture_p.h
%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dviewport_p.h
%%QT_INCDIR%%/Qt3DQuickRender/Qt3DQuickRender
%%QT_INCDIR%%/Qt3DQuickRender/Qt3DQuickRenderDepends
%%QT_INCDIR%%/Qt3DQuickRender/Qt3DQuickRenderVersion
%%QT_INCDIR%%/Qt3DQuickRender/qt3dquickrender_global.h
%%QT_INCDIR%%/Qt3DQuickRender/qt3dquickrenderversion.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/abstractrenderer_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/annotation_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/attachmentpack_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/attribute_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/backendnode_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/boundingvolumedebug_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/buffer_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/buffermanager_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/calcboundingvolumejob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/calcgeometrytrianglevolumes_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/cameralens_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/cameraselectornode_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/clearbuffer_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/clearbuffers_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/commandexecuter_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/computecommand_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/dispatchcompute_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/effect_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/entity_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/expandboundingvolumejob_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filterentitybycomponentjob_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filterkey_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filterlayerentityjob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/framecleanupjob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/framegraphnode_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/framegraphsubtreeselector_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/framegraphvisitor_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/framepreparationjob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/frustumculling_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/frustumcullingjob_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/genericlambdajob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/genericstate_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/geometry_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/geometryrenderer_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/geometryrenderermanager_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/glbuffer_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicscontext_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelperes2_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelperes3_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelpergl2_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelpergl3_3_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelpergl3_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelpergl4_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelperinterface_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/handle_types_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/job_common_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/layer_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/layerfilternode_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/light_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/lighting_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/lightgatherer_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/lightsource_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/loadbufferjob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/loadgeometryjob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/loadscenejob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/loadtexturedatajob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/managers_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/material_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/materialparametergathererjob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/nodefunctor_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/nodemanagers_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/nodraw_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/objectpicker_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/objloader_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/openglvertexarrayobject_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/parameter_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/parametermapping_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/parameterpack_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/pickboundingvolumejob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/pickeventfilter_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/platformsurfacefilter_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstractattribute_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstractbuffer_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstractcollisionqueryservice_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstractsceneloader_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstractlight_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstracttexture_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstracttextureimage_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstracttextureprovider_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qannotation_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qalphatest_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qattribute_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qaxisalignedboundingbox_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qblendequation_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qblendequationarguments_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qboundingsphere_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qboundingvolume_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qboundingvolumeprovider_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qbuffer_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcamera_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcameralens_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcameraselector_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qclearbuffer_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qclearbuffers_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qclipplane_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcollisionqueryresult_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcuboidgeometry_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcylindergeometry_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdiffusemapmaterial_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdiffusespecularmapmaterial_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcolormask_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcomputecommand_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcullface_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdepthtest_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdirectionallight_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdispatchcompute_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qeffect_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qforwardrenderer_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qframegraph_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qfilterkey_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qframegraphnode_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qframegraphselector_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qfrontface_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgeometry_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgeometryrenderer_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgoochmaterial_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgraphicsapifilter_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgraphicsutils_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qitemmodelbuffer_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlayer_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlayerfilter_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlight_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlighting_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qmaterial_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qmesh_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qnormaldiffusemapalphamaterial_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qnormaldiffusemapmaterial_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qnormaldiffusespecularmapmaterial_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qobjectpicker_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qparameter_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qparametermapping_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpervertexcolormaterial_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qphongalphamaterial_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qphongmaterial_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qplanegeometry_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpickevent_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpickingsettings_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpointlight_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpointsize_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpolygonoffset_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qray3d_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qraycastingservice_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderaspect_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderattachment_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderpass_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderpassfilter_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendersettings_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderstate_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderstatecreatedchange_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderstateset_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendersurfaceselector_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendertarget_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendertargetoutput_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendertargetselector_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneparserfactory_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneiofactory_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneiohandler_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneioplugin_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneloader_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qscissortest_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshaderdata_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshaderprogram_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qskyboxentity_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsortcriterion_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsortmethod_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qspheregeometry_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsortpolicy_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qspotlight_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstateset_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstencilmask_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstenciloperation_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstenciloperationarguments_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstenciltest_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstenciltestarguments_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qt3drender_global_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtechnique_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtechniquefilter_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtexturedata_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtorusgeometry_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtexture_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtextureimage_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtextureimagedata_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/quniformvalue_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qurlhelper_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qviewport_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qwindow_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderattachment_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendercommand_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderconfiguration_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderer_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderlogging_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderpass_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderpassfilternode_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderqueue_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendersettings_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderstatenode_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderstates_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderstateset_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendersurfaceselector_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendertarget_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendertargetoutput_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendertargetselectornode_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderthread_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderview_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderviewjob_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderviewbuilderjob_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderviewinitializerjob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderviewjobutils_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/scene_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/scenemanager_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shader_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shadercache_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shaderdata_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shadervariables_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/sortcriterion_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/sortmethod_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/sortpolicy_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/sphere_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/statemask_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/statesetnode_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/statevariant_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/stringtoint_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/technique_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/techniquefilternode_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/texture_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/texturedatamanager_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/textureimage_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/transform_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/triangleboundingvolume_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/trianglesextractor_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/uniformbuffer_p.h
-%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateboundingvolumejob_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/trianglesvisitor_p.h
+%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateworldboundingvolumejob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateworldtransformjob_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/viewportnode_p.h
%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/vsyncframeadvanceservice_p.h
%%QT_INCDIR%%/Qt3DRender/FunctorType
%%QT_INCDIR%%/Qt3DRender/ParameterList
%%QT_INCDIR%%/Qt3DRender/PropertyReaderInterface
%%QT_INCDIR%%/Qt3DRender/PropertyReaderInterfacePtr
-%%QT_INCDIR%%/Qt3DRender/QAbstractAttribute
-%%QT_INCDIR%%/Qt3DRender/QAbstractBuffer
-%%QT_INCDIR%%/Qt3DRender/QAbstractBufferPtr
%%QT_INCDIR%%/Qt3DRender/QAbstractFunctor
-%%QT_INCDIR%%/Qt3DRender/QAbstractSceneLoader
-%%QT_INCDIR%%/Qt3DRender/QAbstractSceneParser
+%%QT_INCDIR%%/Qt3DRender/QAbstractLight
+%%QT_INCDIR%%/Qt3DRender/QAbstractTexture
%%QT_INCDIR%%/Qt3DRender/QAbstractTextureImage
-%%QT_INCDIR%%/Qt3DRender/QAbstractTextureProvider
%%QT_INCDIR%%/Qt3DRender/QAlphaCoverage
%%QT_INCDIR%%/Qt3DRender/QAlphaTest
-%%QT_INCDIR%%/Qt3DRender/QAnnotation
%%QT_INCDIR%%/Qt3DRender/QAttribute
-%%QT_INCDIR%%/Qt3DRender/QAttributeList
%%QT_INCDIR%%/Qt3DRender/QBlendEquation
-%%QT_INCDIR%%/Qt3DRender/QBlendState
-%%QT_INCDIR%%/Qt3DRender/QBlendStateSeparate
-%%QT_INCDIR%%/Qt3DRender/QBoundingVolumeDebug
-%%QT_INCDIR%%/Qt3DRender/QBoundingVolumeSpecifier
+%%QT_INCDIR%%/Qt3DRender/QBlendEquationArguments
%%QT_INCDIR%%/Qt3DRender/QBuffer
-%%QT_INCDIR%%/Qt3DRender/QBufferFunctor
-%%QT_INCDIR%%/Qt3DRender/QBufferFunctorPtr
+%%QT_INCDIR%%/Qt3DRender/QBufferDataGenerator
+%%QT_INCDIR%%/Qt3DRender/QBufferDataGeneratorPtr
+%%QT_INCDIR%%/Qt3DRender/QBufferPtr
+%%QT_INCDIR%%/Qt3DRender/QCamera
+%%QT_INCDIR%%/Qt3DRender/QCameraLens
%%QT_INCDIR%%/Qt3DRender/QCameraSelector
-%%QT_INCDIR%%/Qt3DRender/QClearBuffer
+%%QT_INCDIR%%/Qt3DRender/QClearBuffers
%%QT_INCDIR%%/Qt3DRender/QClipPlane
%%QT_INCDIR%%/Qt3DRender/QColorMask
-%%QT_INCDIR%%/Qt3DRender/QCuboidGeometry
-%%QT_INCDIR%%/Qt3DRender/QCuboidMesh
+%%QT_INCDIR%%/Qt3DRender/QComputeCommand
%%QT_INCDIR%%/Qt3DRender/QCullFace
-%%QT_INCDIR%%/Qt3DRender/QCylinderGeometry
-%%QT_INCDIR%%/Qt3DRender/QCylinderMesh
-%%QT_INCDIR%%/Qt3DRender/QDepthMask
%%QT_INCDIR%%/Qt3DRender/QDepthTest
-%%QT_INCDIR%%/Qt3DRender/QDiffuseMapMaterial
-%%QT_INCDIR%%/Qt3DRender/QDiffuseSpecularMapMaterial
%%QT_INCDIR%%/Qt3DRender/QDirectionalLight
%%QT_INCDIR%%/Qt3DRender/QDispatchCompute
%%QT_INCDIR%%/Qt3DRender/QDithering
%%QT_INCDIR%%/Qt3DRender/QEffect
-%%QT_INCDIR%%/Qt3DRender/QForwardRenderer
-%%QT_INCDIR%%/Qt3DRender/QFrameGraph
+%%QT_INCDIR%%/Qt3DRender/QFilterKey
%%QT_INCDIR%%/Qt3DRender/QFrameGraphNode
-%%QT_INCDIR%%/Qt3DRender/QFrameGraphSelector
-%%QT_INCDIR%%/Qt3DRender/QFrameGraphSelectorFunctor
-%%QT_INCDIR%%/Qt3DRender/QFrameGraphSelectorFunctorPtr
%%QT_INCDIR%%/Qt3DRender/QFrontFace
%%QT_INCDIR%%/Qt3DRender/QFrustumCulling
%%QT_INCDIR%%/Qt3DRender/QGeometry
-%%QT_INCDIR%%/Qt3DRender/QGeometryFunctor
-%%QT_INCDIR%%/Qt3DRender/QGeometryFunctorPtr
+%%QT_INCDIR%%/Qt3DRender/QGeometryFactory
+%%QT_INCDIR%%/Qt3DRender/QGeometryFactoryPtr
%%QT_INCDIR%%/Qt3DRender/QGeometryRenderer
-%%QT_INCDIR%%/Qt3DRender/QGoochMaterial
%%QT_INCDIR%%/Qt3DRender/QGraphicsApiFilter
-%%QT_INCDIR%%/Qt3DRender/QItemModelBuffer
%%QT_INCDIR%%/Qt3DRender/QLayer
%%QT_INCDIR%%/Qt3DRender/QLayerFilter
-%%QT_INCDIR%%/Qt3DRender/QLight
-%%QT_INCDIR%%/Qt3DRender/QLighting
%%QT_INCDIR%%/Qt3DRender/QMaterial
%%QT_INCDIR%%/Qt3DRender/QMesh
+%%QT_INCDIR%%/Qt3DRender/QMultiSampleAntiAliasing
+%%QT_INCDIR%%/Qt3DRender/QNoDepthMask
%%QT_INCDIR%%/Qt3DRender/QNoDraw
-%%QT_INCDIR%%/Qt3DRender/QNormalDiffuseMapAlphaMaterial
-%%QT_INCDIR%%/Qt3DRender/QNormalDiffuseMapMaterial
-%%QT_INCDIR%%/Qt3DRender/QNormalDiffuseSpecularMapMaterial
%%QT_INCDIR%%/Qt3DRender/QObjectPicker
%%QT_INCDIR%%/Qt3DRender/QParameter
-%%QT_INCDIR%%/Qt3DRender/QParameterMapping
-%%QT_INCDIR%%/Qt3DRender/QPerVertexColorMaterial
-%%QT_INCDIR%%/Qt3DRender/QPhongAlphaMaterial
-%%QT_INCDIR%%/Qt3DRender/QPhongMaterial
%%QT_INCDIR%%/Qt3DRender/QPickEvent
-%%QT_INCDIR%%/Qt3DRender/QPlaneGeometry
-%%QT_INCDIR%%/Qt3DRender/QPlaneMesh
+%%QT_INCDIR%%/Qt3DRender/QPickEventPtr
+%%QT_INCDIR%%/Qt3DRender/QPickTriangleEvent
+%%QT_INCDIR%%/Qt3DRender/QPickingSettings
%%QT_INCDIR%%/Qt3DRender/QPointLight
%%QT_INCDIR%%/Qt3DRender/QPointSize
%%QT_INCDIR%%/Qt3DRender/QPolygonOffset
%%QT_INCDIR%%/Qt3DRender/QRenderAspect
-%%QT_INCDIR%%/Qt3DRender/QRenderAttachment
%%QT_INCDIR%%/Qt3DRender/QRenderPass
%%QT_INCDIR%%/Qt3DRender/QRenderPassFilter
+%%QT_INCDIR%%/Qt3DRender/QRenderSettings
%%QT_INCDIR%%/Qt3DRender/QRenderState
+%%QT_INCDIR%%/Qt3DRender/QRenderStateSet
+%%QT_INCDIR%%/Qt3DRender/QRenderSurfaceSelector
%%QT_INCDIR%%/Qt3DRender/QRenderTarget
+%%QT_INCDIR%%/Qt3DRender/QRenderTargetOutput
%%QT_INCDIR%%/Qt3DRender/QRenderTargetSelector
%%QT_INCDIR%%/Qt3DRender/QSceneLoader
-%%QT_INCDIR%%/Qt3DRender/QSceneParserPlugin
%%QT_INCDIR%%/Qt3DRender/QScissorTest
+%%QT_INCDIR%%/Qt3DRender/QSeamlessCubemap
%%QT_INCDIR%%/Qt3DRender/QShaderData
%%QT_INCDIR%%/Qt3DRender/QShaderProgram
-%%QT_INCDIR%%/Qt3DRender/QSkyboxEntity
%%QT_INCDIR%%/Qt3DRender/QSortCriterion
-%%QT_INCDIR%%/Qt3DRender/QSortMethod
-%%QT_INCDIR%%/Qt3DRender/QSphereGeometry
-%%QT_INCDIR%%/Qt3DRender/QSphereMesh
+%%QT_INCDIR%%/Qt3DRender/QSortPolicy
%%QT_INCDIR%%/Qt3DRender/QSpotLight
-%%QT_INCDIR%%/Qt3DRender/QStateSet
%%QT_INCDIR%%/Qt3DRender/QStencilMask
-%%QT_INCDIR%%/Qt3DRender/QStencilOp
-%%QT_INCDIR%%/Qt3DRender/QStencilOpSeparate
+%%QT_INCDIR%%/Qt3DRender/QStencilOperation
+%%QT_INCDIR%%/Qt3DRender/QStencilOperationArguments
%%QT_INCDIR%%/Qt3DRender/QStencilTest
-%%QT_INCDIR%%/Qt3DRender/QStencilTestSeparate
+%%QT_INCDIR%%/Qt3DRender/QStencilTestArguments
%%QT_INCDIR%%/Qt3DRender/QTechnique
%%QT_INCDIR%%/Qt3DRender/QTechniqueFilter
-%%QT_INCDIR%%/Qt3DRender/QTexImageData
-%%QT_INCDIR%%/Qt3DRender/QTexImageDataPtr
%%QT_INCDIR%%/Qt3DRender/QTexture
-%%QT_INCDIR%%/Qt3DRender/QTexture1D
-%%QT_INCDIR%%/Qt3DRender/QTexture1DArray
-%%QT_INCDIR%%/Qt3DRender/QTexture2D
-%%QT_INCDIR%%/Qt3DRender/QTexture2DArray
-%%QT_INCDIR%%/Qt3DRender/QTexture2DMultisample
-%%QT_INCDIR%%/Qt3DRender/QTexture2DMultisampleArray
-%%QT_INCDIR%%/Qt3DRender/QTexture3D
-%%QT_INCDIR%%/Qt3DRender/QTextureBuffer
-%%QT_INCDIR%%/Qt3DRender/QTextureCubeMap
-%%QT_INCDIR%%/Qt3DRender/QTextureCubeMapArray
-%%QT_INCDIR%%/Qt3DRender/QTextureDataFunctor
-%%QT_INCDIR%%/Qt3DRender/QTextureDataFunctorPtr
+%%QT_INCDIR%%/Qt3DRender/QTextureData
+%%QT_INCDIR%%/Qt3DRender/QTextureDataPtr
+%%QT_INCDIR%%/Qt3DRender/QTextureGenerator
+%%QT_INCDIR%%/Qt3DRender/QTextureGeneratorPtr
%%QT_INCDIR%%/Qt3DRender/QTextureImage
-%%QT_INCDIR%%/Qt3DRender/QTextureRectangle
+%%QT_INCDIR%%/Qt3DRender/QTextureImageData
+%%QT_INCDIR%%/Qt3DRender/QTextureImageDataGenerator
+%%QT_INCDIR%%/Qt3DRender/QTextureImageDataGeneratorPtr
+%%QT_INCDIR%%/Qt3DRender/QTextureImageDataPtr
%%QT_INCDIR%%/Qt3DRender/QTextureWrapMode
-%%QT_INCDIR%%/Qt3DRender/QTorusGeometry
-%%QT_INCDIR%%/Qt3DRender/QTorusMesh
%%QT_INCDIR%%/Qt3DRender/QViewport
-%%QT_INCDIR%%/Qt3DRender/QWindow
%%QT_INCDIR%%/Qt3DRender/Qt3DRender
%%QT_INCDIR%%/Qt3DRender/Qt3DRenderDepends
%%QT_INCDIR%%/Qt3DRender/Qt3DRenderVersion
-%%QT_INCDIR%%/Qt3DRender/TextureDict
-%%QT_INCDIR%%/Qt3DRender/qabstractattribute.h
-%%QT_INCDIR%%/Qt3DRender/qabstractbuffer.h
%%QT_INCDIR%%/Qt3DRender/qabstractfunctor.h
-%%QT_INCDIR%%/Qt3DRender/qabstractsceneloader.h
-%%QT_INCDIR%%/Qt3DRender/qabstractsceneparser.h
+%%QT_INCDIR%%/Qt3DRender/qabstractlight.h
+%%QT_INCDIR%%/Qt3DRender/qabstracttexture.h
%%QT_INCDIR%%/Qt3DRender/qabstracttextureimage.h
-%%QT_INCDIR%%/Qt3DRender/qabstracttextureprovider.h
%%QT_INCDIR%%/Qt3DRender/qalphacoverage.h
%%QT_INCDIR%%/Qt3DRender/qalphatest.h
-%%QT_INCDIR%%/Qt3DRender/qannotation.h
%%QT_INCDIR%%/Qt3DRender/qattribute.h
%%QT_INCDIR%%/Qt3DRender/qblendequation.h
-%%QT_INCDIR%%/Qt3DRender/qblendstate.h
-%%QT_INCDIR%%/Qt3DRender/qboundingvolumedebug.h
-%%QT_INCDIR%%/Qt3DRender/qboundingvolumespecifier.h
+%%QT_INCDIR%%/Qt3DRender/qblendequationarguments.h
%%QT_INCDIR%%/Qt3DRender/qbuffer.h
-%%QT_INCDIR%%/Qt3DRender/qbufferfunctor.h
+%%QT_INCDIR%%/Qt3DRender/qbufferdatagenerator.h
+%%QT_INCDIR%%/Qt3DRender/qcamera.h
+%%QT_INCDIR%%/Qt3DRender/qcameralens.h
%%QT_INCDIR%%/Qt3DRender/qcameraselector.h
-%%QT_INCDIR%%/Qt3DRender/qclearbuffer.h
+%%QT_INCDIR%%/Qt3DRender/qclearbuffers.h
%%QT_INCDIR%%/Qt3DRender/qclipplane.h
%%QT_INCDIR%%/Qt3DRender/qcolormask.h
-%%QT_INCDIR%%/Qt3DRender/qcuboidgeometry.h
-%%QT_INCDIR%%/Qt3DRender/qcuboidmesh.h
+%%QT_INCDIR%%/Qt3DRender/qcomputecommand.h
%%QT_INCDIR%%/Qt3DRender/qcullface.h
-%%QT_INCDIR%%/Qt3DRender/qcylindergeometry.h
-%%QT_INCDIR%%/Qt3DRender/qcylindermesh.h
-%%QT_INCDIR%%/Qt3DRender/qdepthmask.h
%%QT_INCDIR%%/Qt3DRender/qdepthtest.h
-%%QT_INCDIR%%/Qt3DRender/qdiffusemapmaterial.h
-%%QT_INCDIR%%/Qt3DRender/qdiffusespecularmapmaterial.h
%%QT_INCDIR%%/Qt3DRender/qdirectionallight.h
%%QT_INCDIR%%/Qt3DRender/qdispatchcompute.h
%%QT_INCDIR%%/Qt3DRender/qdithering.h
%%QT_INCDIR%%/Qt3DRender/qeffect.h
-%%QT_INCDIR%%/Qt3DRender/qforwardrenderer.h
-%%QT_INCDIR%%/Qt3DRender/qframegraph.h
+%%QT_INCDIR%%/Qt3DRender/qfilterkey.h
%%QT_INCDIR%%/Qt3DRender/qframegraphnode.h
-%%QT_INCDIR%%/Qt3DRender/qframegraphselector.h
%%QT_INCDIR%%/Qt3DRender/qfrontface.h
%%QT_INCDIR%%/Qt3DRender/qfrustumculling.h
%%QT_INCDIR%%/Qt3DRender/qgeometry.h
-%%QT_INCDIR%%/Qt3DRender/qgeometryfunctor.h
+%%QT_INCDIR%%/Qt3DRender/qgeometryfactory.h
%%QT_INCDIR%%/Qt3DRender/qgeometryrenderer.h
-%%QT_INCDIR%%/Qt3DRender/qgoochmaterial.h
%%QT_INCDIR%%/Qt3DRender/qgraphicsapifilter.h
-%%QT_INCDIR%%/Qt3DRender/qitemmodelbuffer.h
%%QT_INCDIR%%/Qt3DRender/qlayer.h
%%QT_INCDIR%%/Qt3DRender/qlayerfilter.h
-%%QT_INCDIR%%/Qt3DRender/qlight.h
-%%QT_INCDIR%%/Qt3DRender/qlighting.h
%%QT_INCDIR%%/Qt3DRender/qmaterial.h
%%QT_INCDIR%%/Qt3DRender/qmesh.h
+%%QT_INCDIR%%/Qt3DRender/qmultisampleantialiasing.h
+%%QT_INCDIR%%/Qt3DRender/qnodepthmask.h
%%QT_INCDIR%%/Qt3DRender/qnodraw.h
-%%QT_INCDIR%%/Qt3DRender/qnormaldiffusemapalphamaterial.h
-%%QT_INCDIR%%/Qt3DRender/qnormaldiffusemapmaterial.h
-%%QT_INCDIR%%/Qt3DRender/qnormaldiffusespecularmapmaterial.h
%%QT_INCDIR%%/Qt3DRender/qobjectpicker.h
%%QT_INCDIR%%/Qt3DRender/qparameter.h
-%%QT_INCDIR%%/Qt3DRender/qparametermapping.h
-%%QT_INCDIR%%/Qt3DRender/qpervertexcolormaterial.h
-%%QT_INCDIR%%/Qt3DRender/qphongalphamaterial.h
-%%QT_INCDIR%%/Qt3DRender/qphongmaterial.h
%%QT_INCDIR%%/Qt3DRender/qpickevent.h
-%%QT_INCDIR%%/Qt3DRender/qplanegeometry.h
-%%QT_INCDIR%%/Qt3DRender/qplanemesh.h
+%%QT_INCDIR%%/Qt3DRender/qpickingsettings.h
+%%QT_INCDIR%%/Qt3DRender/qpicktriangleevent.h
%%QT_INCDIR%%/Qt3DRender/qpointlight.h
%%QT_INCDIR%%/Qt3DRender/qpointsize.h
%%QT_INCDIR%%/Qt3DRender/qpolygonoffset.h
%%QT_INCDIR%%/Qt3DRender/qrenderaspect.h
-%%QT_INCDIR%%/Qt3DRender/qrenderattachment.h
%%QT_INCDIR%%/Qt3DRender/qrenderpass.h
%%QT_INCDIR%%/Qt3DRender/qrenderpassfilter.h
+%%QT_INCDIR%%/Qt3DRender/qrendersettings.h
%%QT_INCDIR%%/Qt3DRender/qrenderstate.h
+%%QT_INCDIR%%/Qt3DRender/qrenderstateset.h
+%%QT_INCDIR%%/Qt3DRender/qrendersurfaceselector.h
%%QT_INCDIR%%/Qt3DRender/qrendertarget.h
+%%QT_INCDIR%%/Qt3DRender/qrendertargetoutput.h
%%QT_INCDIR%%/Qt3DRender/qrendertargetselector.h
%%QT_INCDIR%%/Qt3DRender/qsceneloader.h
-%%QT_INCDIR%%/Qt3DRender/qsceneparserplugin.h
%%QT_INCDIR%%/Qt3DRender/qscissortest.h
+%%QT_INCDIR%%/Qt3DRender/qseamlesscubemap.h
%%QT_INCDIR%%/Qt3DRender/qshaderdata.h
%%QT_INCDIR%%/Qt3DRender/qshaderprogram.h
-%%QT_INCDIR%%/Qt3DRender/qskyboxentity.h
%%QT_INCDIR%%/Qt3DRender/qsortcriterion.h
-%%QT_INCDIR%%/Qt3DRender/qsortmethod.h
-%%QT_INCDIR%%/Qt3DRender/qspheregeometry.h
-%%QT_INCDIR%%/Qt3DRender/qspheremesh.h
+%%QT_INCDIR%%/Qt3DRender/qsortpolicy.h
%%QT_INCDIR%%/Qt3DRender/qspotlight.h
-%%QT_INCDIR%%/Qt3DRender/qstateset.h
%%QT_INCDIR%%/Qt3DRender/qstencilmask.h
-%%QT_INCDIR%%/Qt3DRender/qstencilop.h
-%%QT_INCDIR%%/Qt3DRender/qstencilopseparate.h
+%%QT_INCDIR%%/Qt3DRender/qstenciloperation.h
+%%QT_INCDIR%%/Qt3DRender/qstenciloperationarguments.h
%%QT_INCDIR%%/Qt3DRender/qstenciltest.h
-%%QT_INCDIR%%/Qt3DRender/qstenciltestseparate.h
+%%QT_INCDIR%%/Qt3DRender/qstenciltestarguments.h
%%QT_INCDIR%%/Qt3DRender/qt3drender_global.h
%%QT_INCDIR%%/Qt3DRender/qt3drenderversion.h
%%QT_INCDIR%%/Qt3DRender/qtechnique.h
%%QT_INCDIR%%/Qt3DRender/qtechniquefilter.h
%%QT_INCDIR%%/Qt3DRender/qtexture.h
%%QT_INCDIR%%/Qt3DRender/qtexturedata.h
+%%QT_INCDIR%%/Qt3DRender/qtexturegenerator.h
%%QT_INCDIR%%/Qt3DRender/qtextureimage.h
-%%QT_INCDIR%%/Qt3DRender/qtextureproviders.h
-%%QT_INCDIR%%/Qt3DRender/qtorusgeometry.h
-%%QT_INCDIR%%/Qt3DRender/qtorusmesh.h
+%%QT_INCDIR%%/Qt3DRender/qtextureimagedata.h
+%%QT_INCDIR%%/Qt3DRender/qtextureimagedatagenerator.h
+%%QT_INCDIR%%/Qt3DRender/qtexturewrapmode.h
%%QT_INCDIR%%/Qt3DRender/qviewport.h
-%%QT_INCDIR%%/Qt3DRender/qwindow.h
-%%QT_INCDIR%%/Qt3DRender/qwrapmode.h
-%%QT_LIBDIR%%/cmake/Qt53DCore/Qt53DCoreConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt53DCore/Qt53DCoreConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt53DInput/Qt53DInputConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt53DInput/Qt53DInputConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt53DLogic/Qt53DLogicConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt53DLogic/Qt53DLogicConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt53DQuick/Qt53DQuickConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt53DQuick/Qt53DQuickConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt53DQuickInput/Qt53DQuickInputConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt53DQuickInput/Qt53DQuickInputConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt53DQuickRender/Qt53DQuickRenderConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt53DQuickRender/Qt53DQuickRenderConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt53DRender/Qt53DRenderConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt53DRender/Qt53DRenderConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt53DRender/Qt53DRender_AssimpParserPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt53DRender/Qt53DRender_GLTFSceneParserPlugin.cmake
+%%QT_CMAKEDIR%%/Qt53DCore/Qt53DCoreConfig.cmake
+%%QT_CMAKEDIR%%/Qt53DCore/Qt53DCoreConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt53DExtras/Qt53DExtrasConfig.cmake
+%%QT_CMAKEDIR%%/Qt53DExtras/Qt53DExtrasConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt53DInput/Qt53DInputConfig.cmake
+%%QT_CMAKEDIR%%/Qt53DInput/Qt53DInputConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt53DLogic/Qt53DLogicConfig.cmake
+%%QT_CMAKEDIR%%/Qt53DLogic/Qt53DLogicConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt53DQuick/Qt53DQuickConfig.cmake
+%%QT_CMAKEDIR%%/Qt53DQuick/Qt53DQuickConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt53DQuickExtras/Qt53DQuickExtrasConfig.cmake
+%%QT_CMAKEDIR%%/Qt53DQuickExtras/Qt53DQuickExtrasConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt53DQuickInput/Qt53DQuickInputConfig.cmake
+%%QT_CMAKEDIR%%/Qt53DQuickInput/Qt53DQuickInputConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt53DQuickRender/Qt53DQuickRenderConfig.cmake
+%%QT_CMAKEDIR%%/Qt53DQuickRender/Qt53DQuickRenderConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt53DRender/Qt53DRenderConfig.cmake
+%%QT_CMAKEDIR%%/Qt53DRender/Qt53DRenderConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt53DRender/Qt53DRender_AssimpSceneIOPlugin.cmake
+%%QT_CMAKEDIR%%/Qt53DRender/Qt53DRender_GLTFSceneIOPlugin.cmake
+%%QT_BINDIR%%/qgltf
%%QT_LIBDIR%%/libQt53DCore.prl
%%QT_LIBDIR%%/libQt53DCore.so
%%QT_LIBDIR%%/libQt53DCore.so.5
%%QT_LIBDIR%%/libQt53DCore.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt53DCore.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt53DCore.so.%%FULLVER%%.debug
+%%QT_LIBDIR%%/libQt53DExtras.prl
+%%QT_LIBDIR%%/libQt53DExtras.so
+%%QT_LIBDIR%%/libQt53DExtras.so.5
+%%QT_LIBDIR%%/libQt53DExtras.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQt53DExtras.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQt53DExtras.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt53DInput.prl
%%QT_LIBDIR%%/libQt53DInput.so
%%QT_LIBDIR%%/libQt53DInput.so.5
%%QT_LIBDIR%%/libQt53DInput.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt53DInput.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt53DInput.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt53DLogic.prl
%%QT_LIBDIR%%/libQt53DLogic.so
%%QT_LIBDIR%%/libQt53DLogic.so.5
%%QT_LIBDIR%%/libQt53DLogic.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt53DLogic.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt53DLogic.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt53DQuick.prl
%%QT_LIBDIR%%/libQt53DQuick.so
%%QT_LIBDIR%%/libQt53DQuick.so.5
%%QT_LIBDIR%%/libQt53DQuick.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt53DQuick.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt53DQuick.so.%%FULLVER%%.debug
+%%QT_LIBDIR%%/libQt53DQuickExtras.prl
+%%QT_LIBDIR%%/libQt53DQuickExtras.so
+%%QT_LIBDIR%%/libQt53DQuickExtras.so.5
+%%QT_LIBDIR%%/libQt53DQuickExtras.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQt53DQuickExtras.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQt53DQuickExtras.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt53DQuickInput.prl
%%QT_LIBDIR%%/libQt53DQuickInput.so
%%QT_LIBDIR%%/libQt53DQuickInput.so.5
%%QT_LIBDIR%%/libQt53DQuickInput.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt53DQuickInput.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt53DQuickInput.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt53DQuickRender.prl
%%QT_LIBDIR%%/libQt53DQuickRender.so
%%QT_LIBDIR%%/libQt53DQuickRender.so.5
%%QT_LIBDIR%%/libQt53DQuickRender.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt53DQuickRender.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt53DQuickRender.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt53DRender.prl
%%QT_LIBDIR%%/libQt53DRender.so
%%QT_LIBDIR%%/libQt53DRender.so.5
%%QT_LIBDIR%%/libQt53DRender.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt53DRender.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt53DRender.so.%%FULLVER%%.debug
-%%QT_BINDIR%%/qgltf
%%QT_MKSPECDIR%%/modules/qt_lib_3dcore.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3dcore_private.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_3dextras.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_3dextras_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3dinput.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3dinput_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3dlogic.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3dlogic_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3dquick.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3dquick_private.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_3dquickextras.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_3dquickextras_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3dquickinput.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3dquickinput_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3dquickrender.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3dquickrender_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3drender.pri
%%QT_MKSPECDIR%%/modules/qt_lib_3drender_private.pri
-%%QT_PLUGINDIR%%/sceneparsers/libassimpsceneparser.so
-%%DEBUG%%%%QT_PLUGINDIR%%/sceneparsers/libassimpsceneparser.so.debug
-%%QT_PLUGINDIR%%/sceneparsers/libgltfsceneparser.so
-%%DEBUG%%%%QT_PLUGINDIR%%/sceneparsers/libgltfsceneparser.so.debug
+%%QT_PLUGINDIR%%/sceneparsers/libassimpsceneio.so
+%%DEBUG%%%%QT_PLUGINDIR%%/sceneparsers/libassimpsceneio.so.debug
+%%QT_PLUGINDIR%%/sceneparsers/libgltfsceneio.so
+%%DEBUG%%%%QT_PLUGINDIR%%/sceneparsers/libgltfsceneio.so.debug
%%QT_QMLDIR%%/Qt3D/Core/libquick3dcoreplugin.so
%%DEBUG%%%%QT_QMLDIR%%/Qt3D/Core/libquick3dcoreplugin.so.debug
+%%QT_QMLDIR%%/Qt3D/Core/plugins.qmltypes
%%QT_QMLDIR%%/Qt3D/Core/qmldir
+%%QT_QMLDIR%%/Qt3D/Extras/libquick3dextrasplugin.so
+%%DEBUG%%%%QT_QMLDIR%%/Qt3D/Extras/libquick3dextrasplugin.so.debug
+%%QT_QMLDIR%%/Qt3D/Extras/plugins.qmltypes
+%%QT_QMLDIR%%/Qt3D/Extras/qmldir
%%QT_QMLDIR%%/Qt3D/Input/libquick3dinputplugin.so
%%DEBUG%%%%QT_QMLDIR%%/Qt3D/Input/libquick3dinputplugin.so.debug
+%%QT_QMLDIR%%/Qt3D/Input/plugins.qmltypes
%%QT_QMLDIR%%/Qt3D/Input/qmldir
%%QT_QMLDIR%%/Qt3D/Logic/libquick3dlogicplugin.so
%%DEBUG%%%%QT_QMLDIR%%/Qt3D/Logic/libquick3dlogicplugin.so.debug
+%%QT_QMLDIR%%/Qt3D/Logic/plugins.qmltypes
%%QT_QMLDIR%%/Qt3D/Logic/qmldir
-%%QT_QMLDIR%%/Qt3D/Render/defaults/qml/DiffuseMapMaterial.qml
-%%QT_QMLDIR%%/Qt3D/Render/defaults/qml/DiffuseSpecularMapMaterial.qml
-%%QT_QMLDIR%%/Qt3D/Render/defaults/qml/ForwardRenderer.qml
-%%QT_QMLDIR%%/Qt3D/Render/defaults/qml/GoochMaterial.qml
-%%QT_QMLDIR%%/Qt3D/Render/defaults/qml/NormalDiffuseMapAlphaMaterial.qml
-%%QT_QMLDIR%%/Qt3D/Render/defaults/qml/NormalDiffuseMapMaterial.qml
-%%QT_QMLDIR%%/Qt3D/Render/defaults/qml/NormalDiffuseSpecularMapMaterial.qml
-%%QT_QMLDIR%%/Qt3D/Render/defaults/qml/PerVertexColorMaterial.qml
-%%QT_QMLDIR%%/Qt3D/Render/defaults/qml/PhongAlphaMaterial.qml
-%%QT_QMLDIR%%/Qt3D/Render/defaults/qml/PhongMaterial.qml
-%%QT_QMLDIR%%/Qt3D/Render/defaults/qml/SkyboxEntity.qml
-%%QT_QMLDIR%%/Qt3D/Render/defaults/qml/TextureMaterial.qml
%%QT_QMLDIR%%/Qt3D/Render/libquick3drenderplugin.so
%%DEBUG%%%%QT_QMLDIR%%/Qt3D/Render/libquick3drenderplugin.so.debug
+%%QT_QMLDIR%%/Qt3D/Render/plugins.qmltypes
%%QT_QMLDIR%%/Qt3D/Render/qmldir
%%QT_QMLDIR%%/QtQuick/Scene3D/libqtquickscene3dplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Scene3D/libqtquickscene3dplugin.so.debug
+%%QT_QMLDIR%%/QtQuick/Scene3D/plugins.qmltypes
%%QT_QMLDIR%%/QtQuick/Scene3D/qmldir
libdata/pkgconfig/Qt53DCore.pc
+libdata/pkgconfig/Qt53DExtras.pc
libdata/pkgconfig/Qt53DInput.pc
libdata/pkgconfig/Qt53DLogic.pc
libdata/pkgconfig/Qt53DQuick.pc
+libdata/pkgconfig/Qt53DQuickExtras.pc
libdata/pkgconfig/Qt53DQuickInput.pc
libdata/pkgconfig/Qt53DQuickRender.pc
libdata/pkgconfig/Qt53DRender.pc
Index: head/graphics/qt5-graphicaleffects/pkg-plist
===================================================================
--- head/graphics/qt5-graphicaleffects/pkg-plist (revision 434379)
+++ head/graphics/qt5-graphicaleffects/pkg-plist (revision 434380)
@@ -1,37 +1,39 @@
%%QT_QMLDIR%%/QtGraphicalEffects/Blend.qml
%%QT_QMLDIR%%/QtGraphicalEffects/BrightnessContrast.qml
%%QT_QMLDIR%%/QtGraphicalEffects/ColorOverlay.qml
%%QT_QMLDIR%%/QtGraphicalEffects/Colorize.qml
%%QT_QMLDIR%%/QtGraphicalEffects/ConicalGradient.qml
%%QT_QMLDIR%%/QtGraphicalEffects/Desaturate.qml
%%QT_QMLDIR%%/QtGraphicalEffects/DirectionalBlur.qml
%%QT_QMLDIR%%/QtGraphicalEffects/Displace.qml
%%QT_QMLDIR%%/QtGraphicalEffects/DropShadow.qml
%%QT_QMLDIR%%/QtGraphicalEffects/FastBlur.qml
%%QT_QMLDIR%%/QtGraphicalEffects/GammaAdjust.qml
%%QT_QMLDIR%%/QtGraphicalEffects/GaussianBlur.qml
%%QT_QMLDIR%%/QtGraphicalEffects/Glow.qml
%%QT_QMLDIR%%/QtGraphicalEffects/HueSaturation.qml
%%QT_QMLDIR%%/QtGraphicalEffects/InnerShadow.qml
%%QT_QMLDIR%%/QtGraphicalEffects/LevelAdjust.qml
%%QT_QMLDIR%%/QtGraphicalEffects/LinearGradient.qml
%%QT_QMLDIR%%/QtGraphicalEffects/MaskedBlur.qml
%%QT_QMLDIR%%/QtGraphicalEffects/OpacityMask.qml
%%QT_QMLDIR%%/QtGraphicalEffects/RadialBlur.qml
%%QT_QMLDIR%%/QtGraphicalEffects/RadialGradient.qml
%%QT_QMLDIR%%/QtGraphicalEffects/RectangularGlow.qml
%%QT_QMLDIR%%/QtGraphicalEffects/RecursiveBlur.qml
%%QT_QMLDIR%%/QtGraphicalEffects/ThresholdMask.qml
%%QT_QMLDIR%%/QtGraphicalEffects/ZoomBlur.qml
+%%QT_QMLDIR%%/QtGraphicalEffects/libqtgraphicaleffectsplugin.so
+%%DEBUG%%%%QT_QMLDIR%%/QtGraphicalEffects/libqtgraphicaleffectsplugin.so.debug
%%QT_QMLDIR%%/QtGraphicalEffects/private/DropShadowBase.qml
%%QT_QMLDIR%%/QtGraphicalEffects/private/FastGlow.qml
%%QT_QMLDIR%%/QtGraphicalEffects/private/FastInnerShadow.qml
%%QT_QMLDIR%%/QtGraphicalEffects/private/FastMaskedBlur.qml
%%QT_QMLDIR%%/QtGraphicalEffects/private/GaussianDirectionalBlur.qml
%%QT_QMLDIR%%/QtGraphicalEffects/private/GaussianGlow.qml
%%QT_QMLDIR%%/QtGraphicalEffects/private/GaussianInnerShadow.qml
%%QT_QMLDIR%%/QtGraphicalEffects/private/GaussianMaskedBlur.qml
%%QT_QMLDIR%%/QtGraphicalEffects/private/libqtgraphicaleffectsprivate.so
%%DEBUG%%%%QT_QMLDIR%%/QtGraphicalEffects/private/libqtgraphicaleffectsprivate.so.debug
%%QT_QMLDIR%%/QtGraphicalEffects/private/qmldir
%%QT_QMLDIR%%/QtGraphicalEffects/qmldir
Index: head/graphics/qt5-imageformats/pkg-plist
===================================================================
--- head/graphics/qt5-imageformats/pkg-plist (revision 434379)
+++ head/graphics/qt5-imageformats/pkg-plist (revision 434380)
@@ -1,24 +1,24 @@
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QDDSPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QJp2Plugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QMngPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QDDSPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QICNSPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QJp2Plugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QMngPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QTgaPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QTiffPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QWebpPlugin.cmake
%%QT_PLUGINDIR%%/imageformats/libqdds.so
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqdds.so.debug
%%QT_PLUGINDIR%%/imageformats/libqicns.so
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqicns.so.debug
%%QT_PLUGINDIR%%/imageformats/libqjp2.so
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqjp2.so.debug
%%QT_PLUGINDIR%%/imageformats/libqmng.so
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqmng.so.debug
%%QT_PLUGINDIR%%/imageformats/libqtga.so
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqtga.so.debug
%%QT_PLUGINDIR%%/imageformats/libqtiff.so
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqtiff.so.debug
%%QT_PLUGINDIR%%/imageformats/libqwbmp.so
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqwbmp.so.debug
%%QT_PLUGINDIR%%/imageformats/libqwebp.so
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqwebp.so.debug
Index: head/graphics/qt5-opengl/pkg-plist
===================================================================
--- head/graphics/qt5-opengl/pkg-plist (revision 434379)
+++ head/graphics/qt5-opengl/pkg-plist (revision 434380)
@@ -1,50 +1,50 @@
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qgl2pexvertexarray_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qgl_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qglcustomshaderstage_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qglengineshadermanager_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qglengineshadersource_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qglframebufferobject_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qglgradientcache_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qglpaintdevice_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qglpixelbuffer_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qglshadercache_meego_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qglshadercache_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qgraphicsshadereffect_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qpaintengineex_opengl2_p.h
%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qtextureglyphcache_gl_p.h
%%QT_INCDIR%%/QtOpenGL/QGL
%%QT_INCDIR%%/QtOpenGL/QGLBuffer
%%QT_INCDIR%%/QtOpenGL/QGLColormap
%%QT_INCDIR%%/QtOpenGL/QGLContext
%%QT_INCDIR%%/QtOpenGL/QGLFormat
%%QT_INCDIR%%/QtOpenGL/QGLFramebufferObject
%%QT_INCDIR%%/QtOpenGL/QGLFramebufferObjectFormat
%%QT_INCDIR%%/QtOpenGL/QGLFunctions
%%QT_INCDIR%%/QtOpenGL/QGLFunctionsPrivate
%%QT_INCDIR%%/QtOpenGL/QGLPixelBuffer
%%QT_INCDIR%%/QtOpenGL/QGLShader
%%QT_INCDIR%%/QtOpenGL/QGLShaderProgram
%%QT_INCDIR%%/QtOpenGL/QGLWidget
%%QT_INCDIR%%/QtOpenGL/QtOpenGL
%%QT_INCDIR%%/QtOpenGL/QtOpenGLDepends
%%QT_INCDIR%%/QtOpenGL/QtOpenGLVersion
%%QT_INCDIR%%/QtOpenGL/qgl.h
%%QT_INCDIR%%/QtOpenGL/qglbuffer.h
%%QT_INCDIR%%/QtOpenGL/qglcolormap.h
%%QT_INCDIR%%/QtOpenGL/qglframebufferobject.h
%%QT_INCDIR%%/QtOpenGL/qglfunctions.h
%%QT_INCDIR%%/QtOpenGL/qglpixelbuffer.h
%%QT_INCDIR%%/QtOpenGL/qglshaderprogram.h
%%QT_INCDIR%%/QtOpenGL/qtopenglglobal.h
%%QT_INCDIR%%/QtOpenGL/qtopenglversion.h
-%%QT_LIBDIR%%/cmake/Qt5OpenGL/Qt5OpenGLConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5OpenGL/Qt5OpenGLConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5OpenGL/Qt5OpenGLConfig.cmake
+%%QT_CMAKEDIR%%/Qt5OpenGL/Qt5OpenGLConfigVersion.cmake
%%QT_LIBDIR%%/libQt5OpenGL.prl
%%QT_LIBDIR%%/libQt5OpenGL.so
%%QT_LIBDIR%%/libQt5OpenGL.so.5
%%QT_LIBDIR%%/libQt5OpenGL.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5OpenGL.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5OpenGL.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_opengl.pri
%%QT_MKSPECDIR%%/modules/qt_lib_opengl_private.pri
libdata/pkgconfig/Qt5OpenGL.pc
Index: head/graphics/qt5-svg/pkg-plist
===================================================================
--- head/graphics/qt5-svg/pkg-plist (revision 434379)
+++ head/graphics/qt5-svg/pkg-plist (revision 434380)
@@ -1,39 +1,39 @@
%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvgfont_p.h
%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvgfunctions_wince_p.h
%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvggraphics_p.h
%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvghandler_p.h
%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvgnode_p.h
%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvgstructure_p.h
%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvgstyle_p.h
%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvgtinydocument_p.h
%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qtsvgglobal_p.h
%%QT_INCDIR%%/QtSvg/QGraphicsSvgItem
%%QT_INCDIR%%/QtSvg/QSvgGenerator
%%QT_INCDIR%%/QtSvg/QSvgRenderer
%%QT_INCDIR%%/QtSvg/QSvgWidget
%%QT_INCDIR%%/QtSvg/QtSvg
%%QT_INCDIR%%/QtSvg/QtSvgDepends
%%QT_INCDIR%%/QtSvg/QtSvgVersion
%%QT_INCDIR%%/QtSvg/qgraphicssvgitem.h
%%QT_INCDIR%%/QtSvg/qsvggenerator.h
%%QT_INCDIR%%/QtSvg/qsvgrenderer.h
%%QT_INCDIR%%/QtSvg/qsvgwidget.h
%%QT_INCDIR%%/QtSvg/qtsvgglobal.h
%%QT_INCDIR%%/QtSvg/qtsvgversion.h
-%%QT_LIBDIR%%/cmake/Qt5Svg/Qt5SvgConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Svg/Qt5SvgConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5Svg/Qt5Svg_QSvgIconPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Svg/Qt5Svg_QSvgPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Svg/Qt5SvgConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Svg/Qt5SvgConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Svg/Qt5Svg_QSvgIconPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Svg/Qt5Svg_QSvgPlugin.cmake
%%QT_LIBDIR%%/libQt5Svg.prl
%%QT_LIBDIR%%/libQt5Svg.so
%%QT_LIBDIR%%/libQt5Svg.so.5
%%QT_LIBDIR%%/libQt5Svg.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Svg.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Svg.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_svg.pri
%%QT_MKSPECDIR%%/modules/qt_lib_svg_private.pri
%%QT_PLUGINDIR%%/iconengines/libqsvgicon.so
%%DEBUG%%%%QT_PLUGINDIR%%/iconengines/libqsvgicon.so.debug
%%QT_PLUGINDIR%%/imageformats/libqsvg.so
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqsvg.so.debug
libdata/pkgconfig/Qt5Svg.pc
Index: head/japanese/qt4-codecs-jp/Makefile
===================================================================
--- head/japanese/qt4-codecs-jp/Makefile (revision 434379)
+++ head/japanese/qt4-codecs-jp/Makefile (revision 434380)
@@ -1,42 +1,43 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= codecs
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= japanese
PKGNAMEPREFIX= qt4-
PKGNAMESUFFIX= -jp
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt EUC-JP/JIS codec plugins
USE_QT4= qmake_build corelib
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools src/sql \
src/svg src/testlib src/tools src/winmain src/xml \
src/xmlpatterns src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/plugins/${PORTNAME}/jp
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
.include <bsd.port.mk>
Index: head/korean/qt4-codecs-kr/Makefile
===================================================================
--- head/korean/qt4-codecs-kr/Makefile (revision 434379)
+++ head/korean/qt4-codecs-kr/Makefile (revision 434380)
@@ -1,42 +1,43 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= codecs
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= korean
PKGNAMEPREFIX= qt4-
PKGNAMESUFFIX= -kr
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt EUC-KR codec plugin
USE_QT4= qmake_build corelib
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools src/sql \
src/svg src/testlib src/tools src/winmain src/xml \
src/xmlpatterns src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/plugins/${PORTNAME}/kr
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
.include <bsd.port.mk>
Index: head/lang/qt5-qml/files/patch-src__src.pro
===================================================================
--- head/lang/qt5-qml/files/patch-src__src.pro (revision 434379)
+++ head/lang/qt5-qml/files/patch-src__src.pro (revision 434380)
@@ -1,24 +1,25 @@
Only enter the directories we want to build, otherwise we might fail due to
missing dependencies.
-
---- src/src.pro
+--- src/src.pro.orig 2016-04-01 14:48:16 UTC
+++ src/src.pro
-@@ -3,18 +3,7 @@
+@@ -3,20 +3,7 @@ CONFIG += ordered
SUBDIRS += \
qml
-qtHaveModule(gui):contains(QT_CONFIG, opengl(es1|es2)?) {
- SUBDIRS += \
- quick \
- qmltest \
- particles
-
- qtHaveModule(widgets): SUBDIRS += quickwidgets
-}
-
SUBDIRS += \
- plugins \
- imports \
qmldevtools
+-!contains(QT_CONFIG, no-qml-debug): SUBDIRS += qmldebug
+-
qmldevtools.CONFIG = host_build
Index: head/lang/qt5-qml/pkg-plist
===================================================================
--- head/lang/qt5-qml/pkg-plist (revision 434379)
+++ head/lang/qt5-qml/pkg-plist (revision 434380)
@@ -1,358 +1,360 @@
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qabstractanimationjob_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qanimationgroupjob_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qanimationjobutil_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qbitfield_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qcontinuinganimationgroupjob_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qdeletewatcher_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qfieldlist_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qfinitestack_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qflagpointer_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qhashedstring_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qintrusivelist_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qjsengine_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qjsvalue_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qjsvalueiterator_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qlazilyallocated_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qparallelanimationgroupjob_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qpauseanimationjob_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qpodvector_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qpointervaluepair_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlabstractbinding_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlabstractprofileradapter_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlaccessors_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmladaptormodel_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlapplicationengine_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlbind_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlbinding_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlboundsignal_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlboundsignalexpressionpointer_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlbuiltinfunctions_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlchangeset_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcleanup_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcompiler_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcomponent_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcomponentattached_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlconnections_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcontext_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcontextwrapper_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcustomparser_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldata_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugconnector_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugpluginmanager_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugservice_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugservicefactory_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugserviceinterfaces_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugstatesdelegate_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldelegatemodel_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldelegatemodel_p_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldirparser_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlengine_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlexpression_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlextensionplugin_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlfileselector_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlglobal_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlguard_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlimport_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlincubator_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlinstantiator_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlinstantiator_p_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlirbuilder_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljavascriptexpression_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsast_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsastfwd_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsastvisitor_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsengine_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsglobal_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsgrammar_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljskeywords_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljslexer_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsmemorypool_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsparser_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllist_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistaccessor_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistcompositor_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistmodel_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistmodel_p_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistmodelworkeragent_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistwrapper_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllocale_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlmemoryprofiler_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlmetatype_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlmodelindexvaluetype_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlmodelsmodule_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlnotifier_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlnullablevalue_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlobjectcreator_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlobjectmodel_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlopenmetaobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlplatform_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlprofiler_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlprofilerdefinitions_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlproperty_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertycache_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertyvalueinterceptor_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlproxymetaobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlrefcount_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlscriptstring_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlstringconverters_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlthread_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltimer_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypecompiler_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypeloader_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypenamecache_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypenotavailable_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypewrapper_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvaluetype_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvaluetypeproxybinding_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvaluetypewrapper_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvme_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvmemetaobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlxmlhttprequest_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qquickpackage_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qquickworkerscript_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qrecursionwatcher_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qrecyclepool_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qsequentialanimationgroupjob_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qtqmlglobal_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4alloca_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4argumentsobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4arraybuffer_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4arraydata_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4arrayobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4assembler_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4binop_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4booleanobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4codegen_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compileddata_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compiler_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4context_p.h
+%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4context_p_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4dataview_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4dateobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4debugging_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4domerrors_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4engine_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4errorobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4executableallocator_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4function_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4functionobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4global_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4globalobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4heap_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4identifier_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4identifiertable_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4include_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4instr_moth_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4internalclass_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4isel_masm_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4isel_moth_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4isel_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4isel_util_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4jsir_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4jsonobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4lookup_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4managed_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4math_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4mathobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4memberdata_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4mm_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4numberobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4object_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4objectiterator_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4objectproto_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4persistent_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4profiling_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4property_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4qobjectwrapper_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4regalloc_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4regexp_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4regexpobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4registerinfo_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4runtime_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4scopedvalue_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4script_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4sequenceobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4serialize_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4sparsearray_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4sqlerrors_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4ssa_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4string_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4stringobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4targetplatform_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4typedarray_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4unop_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4util_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4value_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4variantobject_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4vme_moth_p.h
%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv8engine_p.h
%%QT_INCDIR%%/QtQml/QJSEngine
%%QT_INCDIR%%/QtQml/QJSValue
%%QT_INCDIR%%/QtQml/QJSValueIterator
%%QT_INCDIR%%/QtQml/QJSValueList
%%QT_INCDIR%%/QtQml/QQmlAbstractUrlInterceptor
%%QT_INCDIR%%/QtQml/QQmlApplicationEngine
%%QT_INCDIR%%/QtQml/QQmlAttachedPropertiesFunc
%%QT_INCDIR%%/QtQml/QQmlComponent
%%QT_INCDIR%%/QtQml/QQmlContext
%%QT_INCDIR%%/QtQml/QQmlDebuggingEnabler
%%QT_INCDIR%%/QtQml/QQmlEngine
%%QT_INCDIR%%/QtQml/QQmlError
%%QT_INCDIR%%/QtQml/QQmlExpression
%%QT_INCDIR%%/QtQml/QQmlExtensionInterface
%%QT_INCDIR%%/QtQml/QQmlExtensionPlugin
%%QT_INCDIR%%/QtQml/QQmlFile
%%QT_INCDIR%%/QtQml/QQmlFileSelector
%%QT_INCDIR%%/QtQml/QQmlImageProviderBase
%%QT_INCDIR%%/QtQml/QQmlIncubationController
%%QT_INCDIR%%/QtQml/QQmlIncubator
%%QT_INCDIR%%/QtQml/QQmlInfo
%%QT_INCDIR%%/QtQml/QQmlListProperty
%%QT_INCDIR%%/QtQml/QQmlListReference
%%QT_INCDIR%%/QtQml/QQmlNetworkAccessManagerFactory
%%QT_INCDIR%%/QtQml/QQmlParserStatus
%%QT_INCDIR%%/QtQml/QQmlProperties
%%QT_INCDIR%%/QtQml/QQmlProperty
%%QT_INCDIR%%/QtQml/QQmlPropertyMap
%%QT_INCDIR%%/QtQml/QQmlPropertyValueSource
%%QT_INCDIR%%/QtQml/QQmlScriptString
%%QT_INCDIR%%/QtQml/QQmlTypeInfo
%%QT_INCDIR%%/QtQml/QQmlTypesExtensionInterface
%%QT_INCDIR%%/QtQml/QtQml
%%QT_INCDIR%%/QtQml/QtQmlDepends
%%QT_INCDIR%%/QtQml/QtQmlVersion
%%QT_INCDIR%%/QtQml/qjsengine.h
%%QT_INCDIR%%/QtQml/qjsvalue.h
%%QT_INCDIR%%/QtQml/qjsvalueiterator.h
%%QT_INCDIR%%/QtQml/qqml.h
%%QT_INCDIR%%/QtQml/qqmlabstracturlinterceptor.h
%%QT_INCDIR%%/QtQml/qqmlapplicationengine.h
%%QT_INCDIR%%/QtQml/qqmlcomponent.h
%%QT_INCDIR%%/QtQml/qqmlcontext.h
%%QT_INCDIR%%/QtQml/qqmldebug.h
%%QT_INCDIR%%/QtQml/qqmlengine.h
%%QT_INCDIR%%/QtQml/qqmlerror.h
%%QT_INCDIR%%/QtQml/qqmlexpression.h
%%QT_INCDIR%%/QtQml/qqmlextensioninterface.h
%%QT_INCDIR%%/QtQml/qqmlextensionplugin.h
%%QT_INCDIR%%/QtQml/qqmlfile.h
%%QT_INCDIR%%/QtQml/qqmlfileselector.h
%%QT_INCDIR%%/QtQml/qqmlincubator.h
%%QT_INCDIR%%/QtQml/qqmlinfo.h
%%QT_INCDIR%%/QtQml/qqmllist.h
%%QT_INCDIR%%/QtQml/qqmlnetworkaccessmanagerfactory.h
%%QT_INCDIR%%/QtQml/qqmlparserstatus.h
%%QT_INCDIR%%/QtQml/qqmlprivate.h
%%QT_INCDIR%%/QtQml/qqmlproperty.h
%%QT_INCDIR%%/QtQml/qqmlpropertymap.h
%%QT_INCDIR%%/QtQml/qqmlpropertyvaluesource.h
%%QT_INCDIR%%/QtQml/qqmlscriptstring.h
%%QT_INCDIR%%/QtQml/qtqmlglobal.h
%%QT_INCDIR%%/QtQml/qtqmlversion.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qbitfield_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qdeletewatcher_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qfieldlist_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qfinitestack_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qflagpointer_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qhashedstring_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qintrusivelist_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qlazilyallocated_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qpodvector_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qpointervaluepair_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmlirbuilder_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmljsast_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmljsastfwd_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmljsastvisitor_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmljsengine_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmljsglobal_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmljsgrammar_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmljskeywords_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmljslexer_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmljsmemorypool_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmljsparser_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmlnullablevalue_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmlrefcount_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmlthread_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qqmltypecompiler_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qrecursionwatcher_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qrecyclepool_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qtqmldevtoolsglobal_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4alloca_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4argumentsobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4arraybuffer_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4arraydata_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4arrayobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4booleanobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4codegen_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4compileddata_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4compiler_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4context_p.h
+%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4context_p_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4dataview_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4dateobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4debugging_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4engine_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4errorobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4executableallocator_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4function_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4functionobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4global_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4globalobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4heap_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4identifier_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4identifiertable_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4include_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4instr_moth_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4internalclass_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4isel_moth_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4isel_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4isel_util_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4jsir_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4jsonobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4lookup_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4managed_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4math_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4mathobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4memberdata_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4mm_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4numberobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4object_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4objectiterator_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4objectproto_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4persistent_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4profiling_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4property_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4qobjectwrapper_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4regexp_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4regexpobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4runtime_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4scopedvalue_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4script_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4sequenceobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4serialize_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4sparsearray_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4ssa_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4string_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4stringobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4typedarray_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4util_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4value_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4variantobject_p.h
%%QT_INCDIR%%/QtQmlDevTools/%%FULLVER%%/QtQmlDevTools/private/qv4vme_moth_p.h
%%QT_INCDIR%%/QtQmlDevTools/QtQmlDevTools
%%QT_INCDIR%%/QtQmlDevTools/QtQmlDevToolsDepends
%%QT_INCDIR%%/QtQmlDevTools/QtQmlDevToolsVersion
%%QT_INCDIR%%/QtQmlDevTools/qtqmldevtoolsversion.h
-%%QT_LIBDIR%%/cmake/Qt5Qml/Qt5QmlConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Qml/Qt5QmlConfigExtras.cmake
-%%QT_LIBDIR%%/cmake/Qt5Qml/Qt5QmlConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Qml/Qt5QmlConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Qml/Qt5QmlConfigExtras.cmake
+%%QT_CMAKEDIR%%/Qt5Qml/Qt5QmlConfigVersion.cmake
%%QT_LIBDIR%%/libQt5Qml.prl
%%QT_LIBDIR%%/libQt5Qml.so
%%QT_LIBDIR%%/libQt5Qml.so.5
%%QT_LIBDIR%%/libQt5Qml.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Qml.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Qml.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt5QmlDevTools.a
%%QT_LIBDIR%%/libQt5QmlDevTools.prl
%%QT_MKSPECDIR%%/modules/qt_lib_qml.pri
%%QT_MKSPECDIR%%/modules/qt_lib_qml_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_qmldevtools_private.pri
libdata/pkgconfig/Qt5Qml.pc
Index: head/misc/Makefile
===================================================================
--- head/misc/Makefile (revision 434379)
+++ head/misc/Makefile (revision 434380)
@@ -1,513 +1,514 @@
# $FreeBSD$
#
COMMENT = Miscellaneous utilities
SUBDIR += R-cran-mime
SUBDIR += achievo
SUBDIR += aclgen
SUBDIR += amanda-client
SUBDIR += amanda-perl-wrapper
SUBDIR += amanda-server
SUBDIR += amfm
SUBDIR += ansiweather
SUBDIR += apparix
SUBDIR += artikulate
SUBDIR += asbutton
SUBDIR += asr-manpages
SUBDIR += astrolog
SUBDIR += auto-multiple-choice
SUBDIR += bb
SUBDIR += bbjd
SUBDIR += bdelta
SUBDIR += bestfit
SUBDIR += bibletime
SUBDIR += biblical-curse
SUBDIR += binclock
SUBDIR += biosfont-demos
SUBDIR += birthday
SUBDIR += bogosort
SUBDIR += bottlerocket
SUBDIR += boxes
SUBDIR += brs
SUBDIR += bsod
SUBDIR += buffer
SUBDIR += cave
SUBDIR += cdcollect
SUBDIR += chef
SUBDIR += chmlib
SUBDIR += chord2html
SUBDIR += cinnamon-translations
SUBDIR += clex
SUBDIR += cloc
SUBDIR += clpbar
SUBDIR += cmatrix
SUBDIR += colortail
SUBDIR += colwide
SUBDIR += compat10x
SUBDIR += compat4x
SUBDIR += compat5x
SUBDIR += compat6x
SUBDIR += compat7x
SUBDIR += compat8x
SUBDIR += compat9x
SUBDIR += countrycodes
SUBDIR += cpuid
SUBDIR += crosspad
SUBDIR += cs
SUBDIR += cstream
SUBDIR += dahdi
SUBDIR += dahdi-kmod
SUBDIR += dahdi-kmod26
SUBDIR += ddate
SUBDIR += deco
SUBDIR += dejagnu
SUBDIR += delay
SUBDIR += detachtty
SUBDIR += diction
SUBDIR += digitemp
SUBDIR += display
SUBDIR += dnetc
SUBDIR += dphys-config
SUBDIR += dtach
SUBDIR += dvorak7min
SUBDIR += dvorakng
SUBDIR += e2fsprogs-libblkid
SUBDIR += e2fsprogs-libuuid
SUBDIR += elixir-mime
SUBDIR += elixir-uuid
SUBDIR += elscreen
SUBDIR += erlang-mimerl
SUBDIR += erlang-mimetypes
SUBDIR += esniper
SUBDIR += estic
SUBDIR += excel-writer
SUBDIR += exercism
SUBDIR += explosions
SUBDIR += fbless
SUBDIR += felis
SUBDIR += figlet
SUBDIR += figlet-fonts
SUBDIR += findutils
SUBDIR += firestring
SUBDIR += flag
SUBDIR += floatator
SUBDIR += fortune-mod-bible
SUBDIR += fortune-mod-bofh
SUBDIR += fortune-mod-culmea-culmilor
SUBDIR += fortune-mod-epictetus
SUBDIR += fortune-mod-ferengi_rules_of_acquisition
SUBDIR += fortune-mod-futurama
SUBDIR += fortune-mod-psalms
SUBDIR += fortuneit
SUBDIR += fpc-chm
SUBDIR += freebsd-doc-all
SUBDIR += freebsd-doc-bn
SUBDIR += freebsd-doc-da
SUBDIR += freebsd-doc-de
SUBDIR += freebsd-doc-el
SUBDIR += freebsd-doc-en
SUBDIR += freebsd-doc-es
SUBDIR += freebsd-doc-fr
SUBDIR += freebsd-doc-hu
SUBDIR += freebsd-doc-it
SUBDIR += freebsd-doc-ja
SUBDIR += freebsd-doc-ko
SUBDIR += freebsd-doc-mn
SUBDIR += freebsd-doc-nl
SUBDIR += freebsd-doc-pl
SUBDIR += freebsd-doc-pt
SUBDIR += freebsd-doc-ru
SUBDIR += freebsd-doc-sr
SUBDIR += freebsd-doc-tr
SUBDIR += freebsd-doc-zh_cn
SUBDIR += freebsd-doc-zh_tw
SUBDIR += freebsd-release-manifests
SUBDIR += freeguide
SUBDIR += ftdi-eeprom
SUBDIR += fxload
SUBDIR += gcstar
SUBDIR += gctpc
SUBDIR += geekcode
SUBDIR += getopt
SUBDIR += gimp-help-ca
SUBDIR += gimp-help-da
SUBDIR += gimp-help-el
SUBDIR += gimp-help-en
SUBDIR += gimp-help-en_GB
SUBDIR += gimp-help-es
SUBDIR += gimp-help-it
SUBDIR += gimp-help-nl
SUBDIR += gimp-help-nn
SUBDIR += gimp-help-sl
SUBDIR += gimp-help-sv
SUBDIR += gkrellm-gamma
SUBDIR += gkrellm-helium
SUBDIR += gkrellm-xkb
SUBDIR += gkrellmbgchg2
SUBDIR += gkrellmlaunch2
SUBDIR += gkrellshoot2
SUBDIR += gkrellweather2
SUBDIR += gkx86info2
SUBDIR += gnome-devel-docs
SUBDIR += gnome-icon-theme
SUBDIR += gnome-icon-theme-extras
SUBDIR += gnome-mime-data
SUBDIR += gnome-osd
SUBDIR += gnome-user-docs
SUBDIR += gnu-watch
SUBDIR += gnuit
SUBDIR += gnuls
SUBDIR += gnustep-examples
SUBDIR += gone
SUBDIR += gonvert
SUBDIR += gplink
SUBDIR += granulate
SUBDIR += grc
SUBDIR += gregexp
SUBDIR += gtkfind
SUBDIR += gwhich
SUBDIR += hb
SUBDIR += hello
SUBDIR += help2man
SUBDIR += heyu2
SUBDIR += hicolor-icon-theme
SUBDIR += histring
SUBDIR += hotkeys
SUBDIR += hulgalugha
SUBDIR += imerge
SUBDIR += ini_file_manager
SUBDIR += inplace
SUBDIR += ipa_conv
SUBDIR += ipbt
SUBDIR += iselect
SUBDIR += iso-codes
SUBDIR += jargon
SUBDIR += jbidwatcher
SUBDIR += kbdscan
SUBDIR += kcd
SUBDIR += kde-thumbnailer-chm
SUBDIR += kde-thumbnailer-epub
SUBDIR += kde-thumbnailer-fb2
SUBDIR += kde4-l10n
SUBDIR += kde4-l10n-bg
SUBDIR += kde4-l10n-bs
SUBDIR += kde4-l10n-ca
SUBDIR += kde4-l10n-ca_valencia
SUBDIR += kde4-l10n-cs
SUBDIR += kde4-l10n-da
SUBDIR += kde4-l10n-el
SUBDIR += kde4-l10n-en_GB
SUBDIR += kde4-l10n-es
SUBDIR += kde4-l10n-et
SUBDIR += kde4-l10n-eu
SUBDIR += kde4-l10n-fa
SUBDIR += kde4-l10n-fi
SUBDIR += kde4-l10n-ga
SUBDIR += kde4-l10n-gl
SUBDIR += kde4-l10n-hi
SUBDIR += kde4-l10n-hr
SUBDIR += kde4-l10n-ia
SUBDIR += kde4-l10n-id
SUBDIR += kde4-l10n-is
SUBDIR += kde4-l10n-it
SUBDIR += kde4-l10n-kk
SUBDIR += kde4-l10n-km
SUBDIR += kde4-l10n-lt
SUBDIR += kde4-l10n-lv
SUBDIR += kde4-l10n-mr
SUBDIR += kde4-l10n-nb
SUBDIR += kde4-l10n-nds
SUBDIR += kde4-l10n-nl
SUBDIR += kde4-l10n-nn
SUBDIR += kde4-l10n-pa
SUBDIR += kde4-l10n-ro
SUBDIR += kde4-l10n-sk
SUBDIR += kde4-l10n-sl
SUBDIR += kde4-l10n-sr
SUBDIR += kde4-l10n-sv
SUBDIR += kde4-l10n-tr
SUBDIR += kde4-l10n-ug
SUBDIR += kde4-l10n-wa
SUBDIR += kde4-xdg-env
SUBDIR += kdeedu4
SUBDIR += kdeutils4
SUBDIR += kenny
SUBDIR += kgeography
SUBDIR += klettres
SUBDIR += krecipes-kde4
SUBDIR += ktouch
SUBDIR += kwordquiz
SUBDIR += latex-mk
SUBDIR += lc
SUBDIR += lesspipe
SUBDIR += libeatmydata
SUBDIR += libisocodes
SUBDIR += libkdeedu
SUBDIR += libmetalink
SUBDIR += libpri
SUBDIR += libsupertone
SUBDIR += libutf
SUBDIR += lifelines
SUBDIR += lingoteach
SUBDIR += linm
SUBDIR += localedata
SUBDIR += logsurfer
SUBDIR += loop
SUBDIR += lr
SUBDIR += lv
SUBDIR += lxde-common
SUBDIR += magicpoint
SUBDIR += man.el
SUBDIR += mbuffer
SUBDIR += mc
SUBDIR += mc-light
SUBDIR += mdp
SUBDIR += metalink-checker
SUBDIR += metalink-editor
SUBDIR += metalink-tools
SUBDIR += metromap
SUBDIR += mime-support
SUBDIR += mirmon
SUBDIR += mmv
SUBDIR += mtail
SUBDIR += mtx
SUBDIR += najitool
SUBDIR += newer
SUBDIR += nms
SUBDIR += nsf
SUBDIR += numchar
SUBDIR += nut
SUBDIR += ondir
SUBDIR += opencyc
SUBDIR += openr2
SUBDIR += orville-write
SUBDIR += osinfo-db
SUBDIR += ossp-uuid
SUBDIR += otter
SUBDIR += p5-Acme-ButFirst
SUBDIR += p5-Array-Compare
SUBDIR += p5-Array-Diff
SUBDIR += p5-Array-FileReader
SUBDIR += p5-Array-IntSpan
SUBDIR += p5-Array-LineReader
SUBDIR += p5-Array-PrintCols
SUBDIR += p5-Array-RefElem
SUBDIR += p5-Asterisk
SUBDIR += p5-Asterisk-FastAGI
SUBDIR += p5-Bot-Training
SUBDIR += p5-Bot-Training-MegaHAL
SUBDIR += p5-Bot-Training-StarCraft
SUBDIR += p5-Business-EDI
SUBDIR += p5-Business-Hours
SUBDIR += p5-Business-ISBN
SUBDIR += p5-Business-ISBN-Data
SUBDIR += p5-Business-ISIN
SUBDIR += p5-Business-ISMN
SUBDIR += p5-Business-ISSN
SUBDIR += p5-Business-UPS
SUBDIR += p5-Chatbot-Eliza
SUBDIR += p5-Data-Buffer
SUBDIR += p5-File-CounterFile
SUBDIR += p5-File-Sort
SUBDIR += p5-Geo-Cache
SUBDIR += p5-Geo-Coder-Bing
SUBDIR += p5-Geo-Coder-Geocoder-US
SUBDIR += p5-Geo-Coder-Google
SUBDIR += p5-Geo-Coder-Googlev3
SUBDIR += p5-Geo-Coder-Many
SUBDIR += p5-Geo-Coder-Mapquest
SUBDIR += p5-Geo-Coder-Multimap
SUBDIR += p5-Geo-Coder-Multiple
SUBDIR += p5-Geo-Coder-Navteq
SUBDIR += p5-Geo-Coder-OSM
SUBDIR += p5-Geo-Coder-OpenCage
SUBDIR += p5-Geo-Coder-Ovi
SUBDIR += p5-Geo-Coder-PlaceFinder
SUBDIR += p5-Geo-Coder-TomTom
SUBDIR += p5-Geo-GeoNames
SUBDIR += p5-Geo-Postcodes
SUBDIR += p5-Geo-Postcodes-DK
SUBDIR += p5-Geo-Postcodes-NO
SUBDIR += p5-Geo-Weather
SUBDIR += p5-Geography-Countries
SUBDIR += p5-I18N-Charset
SUBDIR += p5-I18N-LangTags
SUBDIR += p5-LEGO-RCX
SUBDIR += p5-List-Compare
SUBDIR += p5-List-Util-WeightedRoundRobin
SUBDIR += p5-Locale-Codes
SUBDIR += p5-Locale-Geocode
SUBDIR += p5-Locale-Msgcat
SUBDIR += p5-Locale-SubCountry
SUBDIR += p5-Locale-US
SUBDIR += p5-Net-vCard
SUBDIR += p5-Norge
SUBDIR += p5-OSSP-uuid
SUBDIR += p5-Software-License
SUBDIR += p5-Software-License-CCpack
SUBDIR += p5-Test-Dir
SUBDIR += p5-Text-FIGlet
SUBDIR += p5-Tie-DxHash
SUBDIR += p5-Zen-Koans
SUBDIR += pantry
SUBDIR += parley
SUBDIR += pastebinit
SUBDIR += patchutils
SUBDIR += pauker
SUBDIR += pciids
SUBDIR += pdmenu
SUBDIR += pear-Services_Weather
SUBDIR += pear-Text_Figlet
SUBDIR += pecl-timezonedb
SUBDIR += pfm
SUBDIR += php56-calendar
SUBDIR += php70-calendar
SUBDIR += php71-calendar
SUBDIR += phraze
SUBDIR += pinfo
SUBDIR += pipe
SUBDIR += podsleuth
SUBDIR += posixtestsuite
SUBDIR += proxyper
SUBDIR += pspresent
SUBDIR += py-YABT
SUBDIR += py-cinder
SUBDIR += py-crudini
SUBDIR += py-fuzzy
SUBDIR += py-glance
SUBDIR += py-osd
SUBDIR += py-pexpect
SUBDIR += py-powerline-status
SUBDIR += py-progressbar
SUBDIR += py-progressbar231
SUBDIR += py-pyfiglet
SUBDIR += py-pyprind
SUBDIR += py-qt4-demo
SUBDIR += py-qt4-doc
SUBDIR += py-qt5-demo
SUBDIR += py-qt5-doc
SUBDIR += py-socli
SUBDIR += py-spdx
SUBDIR += py-spdx-lookup
SUBDIR += py-tqdm
SUBDIR += py-yolk
SUBDIR += pylize
SUBDIR += qbrew
SUBDIR += qlas
SUBDIR += qmetro
SUBDIR += qt4-doc
SUBDIR += qt4-l10n
SUBDIR += qt4-qtconfig
SUBDIR += qt4-qtdemo
SUBDIR += qt5-doc
SUBDIR += qt5-examples
SUBDIR += qt5-l10n
SUBDIR += qt5ct
+ SUBDIR += qtchooser
SUBDIR += raspberrypi-userland
SUBDIR += raspbsd-led
SUBDIR += ree
SUBDIR += rfc
SUBDIR += ringtonetools
SUBDIR += rname
SUBDIR += rpl
SUBDIR += rtfm
SUBDIR += rubygem-dotenv
SUBDIR += rubygem-iesd
SUBDIR += rubygem-mime-types
SUBDIR += rubygem-mime-types-data
SUBDIR += rubygem-mime-types1
SUBDIR += rubygem-mime-types29
SUBDIR += rubygem-mimemagic
SUBDIR += rubygem-rabbit
SUBDIR += rubygem-vpim
SUBDIR += rump
SUBDIR += saaghar
SUBDIR += seabios
SUBDIR += sent
SUBDIR += seq2
SUBDIR += shared-mime-info
SUBDIR += shc
SUBDIR += shuffle
SUBDIR += shuffle-db
SUBDIR += since
SUBDIR += skyutils
SUBDIR += sloccount
SUBDIR += sls
SUBDIR += smssend
SUBDIR += solarized
SUBDIR += spamcalc
SUBDIR += sshbuddy
SUBDIR += sssnips
SUBDIR += susv2
SUBDIR += susv3
SUBDIR += susv4
SUBDIR += sword
SUBDIR += table.el
SUBDIR += talkfilters
SUBDIR += tcb
SUBDIR += team
SUBDIR += telbook
SUBDIR += tellico-kde4
SUBDIR += tempcontrol
SUBDIR += termatrix
SUBDIR += terraform
SUBDIR += teseq
SUBDIR += timediff
SUBDIR += tkcron
SUBDIR += tkinfo
SUBDIR += tkregexp
SUBDIR += tkrunit
SUBDIR += toilet
SUBDIR += tpp
SUBDIR += translate
SUBDIR += ttyrec
SUBDIR += tudu
SUBDIR += tvbrowser
SUBDIR += typetrainer
SUBDIR += uk-phone
SUBDIR += uk-postcodes
SUBDIR += umodunpack
SUBDIR += unclutter
SUBDIR += upclient
SUBDIR += us-zipcodes
SUBDIR += usbids
SUBDIR += usbrh-libusb
SUBDIR += utftools
SUBDIR += valspeak
SUBDIR += vdmfec
SUBDIR += vera
SUBDIR += vifm
SUBDIR += viz
SUBDIR += whichman
SUBDIR += window
SUBDIR += wmScoreBoard
SUBDIR += wmcalendar
SUBDIR += wmjulia
SUBDIR += wmpal
SUBDIR += wmtunlo
SUBDIR += wmweather+
SUBDIR += wmwork
SUBDIR += wotsap
SUBDIR += xd
SUBDIR += xdelta
SUBDIR += xdelta3
SUBDIR += xdg-menu
SUBDIR += xfce4-appfinder
SUBDIR += xfce4-weather-plugin
SUBDIR += xfce4-wm-themes
SUBDIR += xgas
SUBDIR += xiphos
SUBDIR += xless
SUBDIR += xosd
SUBDIR += xpns
SUBDIR += xsw
SUBDIR += xtail
SUBDIR += xtar
SUBDIR += xtypo
SUBDIR += xyzcmd
SUBDIR += yaunc
SUBDIR += ytree
SUBDIR += zoneinfo
.include <bsd.port.subdir.mk>
Index: head/misc/qt4-doc/Makefile
===================================================================
--- head/misc/qt4-doc/Makefile (revision 434379)
+++ head/misc/qt4-doc/Makefile (revision 434380)
@@ -1,28 +1,29 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= doc
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= misc
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt documentation
USE_QT4= # empty
QT_DIST= yes
NO_BUILD= yes
EXTRACT_AFTER_ARGS= '${DISTNAME}/doc'
DOCSDIR= ${PREFIX}/share/doc/qt4
EXTRA_PATCHES= # empty
do-install:
${MKDIR} ${STAGEDIR}${DOCSDIR} && \
cd ${WRKSRC}/doc && \
${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} && \
${COPYTREE_SHARE} qch ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>
Index: head/misc/qt4-l10n/Makefile
===================================================================
--- head/misc/qt4-l10n/Makefile (revision 434379)
+++ head/misc/qt4-l10n/Makefile (revision 434380)
@@ -1,28 +1,29 @@
# $FreeBSD$
PORTNAME= l10n
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= misc
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt localized messages
USE_QT4= linguisttools_build
QT_DIST= yes
NO_ARCH= yes
EXTRACT_AFTER_ARGS+= --include '${DISTNAME}/src/corelib' \
'${DISTNAME}/translations'
EXTRA_PATCHES= # empty
do-build:
${QT_BINDIR}/lrelease${_QT_BINSUFX} ${WRKSRC}/translations/*.ts
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/${QT_L10NDIR_REL}
${INSTALL_DATA} ${WRKSRC}/translations/*.qm ${STAGEDIR}${PREFIX}/${QT_L10NDIR_REL}
.include <bsd.port.mk>
Index: head/misc/qt4-qtconfig/Makefile
===================================================================
--- head/misc/qt4-qtconfig/Makefile (revision 434379)
+++ head/misc/qt4-qtconfig/Makefile (revision 434380)
@@ -1,65 +1,66 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= qtconfig
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= misc
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 4 graphical configuration utility
USES= pkgconfig
USE_QT4= qmake_build moc_build rcc_build uic_build \
corelib dbus gui xml
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DESKTOP_ENTRIES="Qt 4 Configuration" "" \
"${PREFIX}/share/pixmaps/qtconfig-qt4.png" \
"${PREFIX}/${QT_BINDIR_REL}/qtconfig${_QT_BINSUFX}" \
"Settings;Qt;" true
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/s60installs src/s60main src/script \
src/scripttools src/sql src/svg src/testlib src/tools \
src/winmain src/xml src/xmlpatterns src/3rdparty/clucene \
src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
src/3rdparty/libpng src/3rdparty/libtiff src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
OPTIONS_DEFINE= PHONON
OPTIONS_DEFAULT=PHONON
PHONON_DESC= Phonon multimedia framework support (implies GStreamer)
PHONON_USE= GSTREAMER=yes QT4=phonon,phonon-gst
PHONON_CONFIGURE_ON= -phonon -gstreamer
PHONON_CONFIGURE_OFF= -no-phonon -no-gstreamer
BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${REINPLACE_CMD} -e 's|^TARGET.*|TARGET=qtconfig${_QT_BINSUFX}|g' \
${BUILD_WRKSRC}/${PORTNAME}.pro
${ECHO_CMD} "INCLUDEPATH+=${EXTRA_INCL}" >> ${BUILD_WRKSRC}/${PORTNAME}.pro
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${UIC} ${WRKSRC}/bin/uic
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
post-install:
${INSTALL_DATA} ${INSTALL_WRKSRC}/images/appicon.png \
${STAGEDIR}${PREFIX}/share/pixmaps/qtconfig-qt4.png
.include <bsd.port.mk>
Index: head/misc/qt4-qtconfig/pkg-plist
===================================================================
--- head/misc/qt4-qtconfig/pkg-plist (revision 434379)
+++ head/misc/qt4-qtconfig/pkg-plist (revision 434380)
@@ -1,3 +1,3 @@
-%%QT_BINDIR%%/qtconfig-qt4
-%%DEBUG%%%%QT_BINDIR%%/qtconfig-qt4.debug
+%%QT_BINDIR%%/qtconfig
+%%DEBUG%%%%QT_BINDIR%%/qtconfig.debug
share/pixmaps/qtconfig-qt4.png
Index: head/misc/qt4-qtdemo/Makefile
===================================================================
--- head/misc/qt4-qtdemo/Makefile (revision 434379)
+++ head/misc/qt4-qtdemo/Makefile (revision 434380)
@@ -1,69 +1,70 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= qtdemo
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= misc
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 4 demonstration and example applications
USES= pkgconfig
USE_GSTREAMER= yes
USE_QT4= qmake_build moc_build rcc_build uic_build corelib designer \
gui network opengl sql svg qtestlib xml imageformats_run dbus \
script webkit phonon help assistant_run phonon-gst_run scripttools \
xmlpatterns multimedia
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
# qtlogo.png is installed by qt4-gui
DESKTOP_ENTRIES="Qt 4 Examples and Demos" "" \
"${PREFIX}/share/pixmaps/qtlogo.png" \
"${PREFIX}/${QT_BINDIR_REL}/qtdemo" \
"Development;Qt;" true
DO_NOT_EXTRACT= doc mkspecs qmake translations \
src/activeqt src/openvg src/s60installs src/s60main src/tools \
src/winmain src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/demos
INSTALL_WRKSRC= ${BUILD_WRKSRC}
post-patch:
${REINPLACE_CMD} -e '/app +=/s|"assistant"|"assistant${_QT_BINSUFX}"|' \
${BUILD_WRKSRC}/${PORTNAME}/menumanager.cpp \
${WRKSRC}/examples/help/remotecontrol/remotecontrol.cpp \
${WRKSRC}/examples/help/simpletextviewer/assistant.cpp
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs/modules
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${UIC} ${WRKSRC}/bin/uic
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
post-build:
cd ${WRKSRC}/examples && \
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKEFLAGS} ${MAKEFILE} \
${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET}
post-install:
cd ${WRKSRC}/examples && \
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKEFLAGS} ${MAKEFILE} \
${MAKE_ARGS} ${INSTALL_TARGET}
${FIND} -E ${STAGEDIR}${PREFIX}/share/examples/qt4/examples/declarative/cppextensions -regex ".*\.(moc|obj|pch|rcc)" -type d | ${XARGS} ${RM} -r
.include <bsd.port.mk>
Index: head/misc/qt5-doc/Makefile
===================================================================
--- head/misc/qt5-doc/Makefile (revision 434379)
+++ head/misc/qt5-doc/Makefile (revision 434380)
@@ -1,57 +1,58 @@
# Created by: Marie Loise Nolden <nolden@kde.org>
# $FreeBSD$
PORTNAME= doc
DISTVERSION= ${QT5_VERSION}
CATEGORIES= misc
MASTER_SITES= QT/official_releases/qt/${QT5_VERSION:R}/${QT5_VERSION}/single
PKGNAMEPREFIX= qt5-
DISTNAME= qt-everywhere-opensource-src-${QT5_VERSION}
DIST_SUBDIR= KDE/Qt/${QT5_VERSION}
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 5 documentation
USES= gmake python:build qmake:norecursive,outsource tar:xz
-USE_QT5= buildtools_build concurrent_build help_build qdoc_build
+USE_QT5= buildtools_build concurrent_build help_build qdoc_build \
+ sql_build sql-sqlite3_build
QMAKE_SOURCE_PATH= ${WRKSRC}/qt.pro
ALL_TARGET= docs
DESCR= ${.CURDIR:H:H}/devel/qt5/pkg-descr
NO_ARCH= yes
# The default qconfig.pri that qmake reads comes from devel/qt5-core and thus
# disables a lot of items. We re-enable the most important ones below so that
# we do not end up without documentation for QtGui and QtWidgets.
QMAKE_ARGS= QT_CONFIG-="no-gui no-widgets"
# We need to invoke the qmake symlink we create in the pre-configure target so
# that it reads the qt.conf installed alongside it.
_QMAKE= ${BUILD_WRKSRC}/qtbase/bin/qmake
SUB_FILES= qt.conf
SUB_LIST= BUILD_WRKSRC=${BUILD_WRKSRC} \
QT_DOCDIR=${QT_DOCDIR}
pre-configure: apply-slist
${MKDIR} ${BUILD_WRKSRC}/qtbase/bin
${LN} -sf ${MOC} ${BUILD_WRKSRC}/qtbase/bin/moc
${LN} -sf ${UIC} ${BUILD_WRKSRC}/qtbase/bin/uic
${LN} -sf ${RCC} ${BUILD_WRKSRC}/qtbase/bin/rcc
${LN} -sf ${QMAKE} ${BUILD_WRKSRC}/qtbase/bin/qmake
${LN} -sf ${QT_BINDIR}/qdoc ${BUILD_WRKSRC}/qtbase/bin/qdoc
${LN} -sf ${QT_BINDIR}/qhelpgenerator ${BUILD_WRKSRC}/qtbase/bin/qhelpgenerator
${CP} -Rp ${QT_MKSPECDIR} ${BUILD_WRKSRC}/qtbase/mkspecs
${CP} ${WRKDIR}/qt.conf ${BUILD_WRKSRC}/qtbase/bin/qt.conf
post-patch:
# qtdeclarative.pro wants to run python, replace that with PYTHON_CMD
${REINPLACE_CMD} '/py_out/s#python#${PYTHON_CMD}#g' \
${WRKSRC}/qtdeclarative/qtdeclarative.pro
do-install:
${MKDIR} ${STAGEDIR}${QT_DOCDIR} && \
cd ${BUILD_WRKSRC}/qtbase/doc && \
${COPYTREE_SHARE} \* ${STAGEDIR}${QT_DOCDIR}
.include <bsd.port.mk>
Index: head/misc/qt5-doc/distinfo
===================================================================
--- head/misc/qt5-doc/distinfo (revision 434379)
+++ head/misc/qt5-doc/distinfo (revision 434380)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1476004270
-SHA256 (KDE/Qt/5.6.2/qt-everywhere-opensource-src-5.6.2.tar.xz) = 83e61bfc78bba230770704e828fa4d23fe3bbfdcfa4a8f5db37ce149731d89b3
-SIZE (KDE/Qt/5.6.2/qt-everywhere-opensource-src-5.6.2.tar.xz) = 297863804
+TIMESTAMP = 1485113393
+SHA256 (KDE/Qt/5.7.1/qt-everywhere-opensource-src-5.7.1.tar.xz) = 46ebca977deb629c5e69c2545bc5fe13f7e40012e5e2e451695c583bd33502fa
+SIZE (KDE/Qt/5.7.1/qt-everywhere-opensource-src-5.7.1.tar.xz) = 337124364
Index: head/misc/qt5-doc/pkg-plist
===================================================================
--- head/misc/qt5-doc/pkg-plist (revision 434379)
+++ head/misc/qt5-doc/pkg-plist (revision 434380)
@@ -1,12835 +1,14281 @@
+%%QT_DOCDIR%%/Makefile
%%QT_DOCDIR%%/activeqt.qch
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-comapp-comapp-pro.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-comapp-example.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-comapp-main-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-hierarchy-example.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-hierarchy-hierarchy-pro.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-hierarchy-main-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-hierarchy-objects-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-hierarchy-objects-h.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-menus-example.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-menus-main-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-menus-menus-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-menus-menus-h.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-menus-menus-pro.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-multiple-ax1-h.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-multiple-ax2-h.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-multiple-example.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-multiple-main-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-multiple-multiple-pro.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-example.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-glbox-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-glbox-h.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-globjwin-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-globjwin-h.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-main-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-opengl-pro.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-qutlook-addressview-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-qutlook-addressview-h.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-qutlook-example.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-qutlook-main-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-qutlook-qutlook-pro.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-simple-example.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-simple-main-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-simple-simple-pro.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-webbrowser-example.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-webbrowser-main-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-webbrowser-mainwindow-ui.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-webbrowser-webaxwidget-h.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-webbrowser-webbrowser-pro.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-wrapper-example.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-wrapper-main-cpp.html
%%QT_DOCDIR%%/activeqt/activeqt-activeqt-wrapper-wrapper-pro.html
%%QT_DOCDIR%%/activeqt/activeqt-container.html
%%QT_DOCDIR%%/activeqt/activeqt-dotnet.html
%%QT_DOCDIR%%/activeqt/activeqt-dumpcpp.html
%%QT_DOCDIR%%/activeqt/activeqt-dumpdoc.html
%%QT_DOCDIR%%/activeqt/activeqt-index.html
%%QT_DOCDIR%%/activeqt/activeqt-server.html
%%QT_DOCDIR%%/activeqt/activeqt-tools.html
%%QT_DOCDIR%%/activeqt/activeqt.index
%%QT_DOCDIR%%/activeqt/activeqt.qhp
%%QT_DOCDIR%%/activeqt/activeqt.qhp.sha1
%%QT_DOCDIR%%/activeqt/activeqt.tags
%%QT_DOCDIR%%/activeqt/examples-manifest.xml
%%QT_DOCDIR%%/activeqt/images/activeqt-webbrowser-example.png
%%QT_DOCDIR%%/activeqt/images/arrow_bc.png
%%QT_DOCDIR%%/activeqt/images/bgrContent.png
%%QT_DOCDIR%%/activeqt/images/btn_next.png
%%QT_DOCDIR%%/activeqt/images/btn_prev.png
%%QT_DOCDIR%%/activeqt/images/bullet_dn.png
%%QT_DOCDIR%%/activeqt/images/bullet_sq.png
%%QT_DOCDIR%%/activeqt/images/home.png
%%QT_DOCDIR%%/activeqt/images/ico_note.png
%%QT_DOCDIR%%/activeqt/images/ico_note_attention.png
%%QT_DOCDIR%%/activeqt/images/ico_out.png
%%QT_DOCDIR%%/activeqt/images/logo.png
%%QT_DOCDIR%%/activeqt/qaxaggregated-members.html
%%QT_DOCDIR%%/activeqt/qaxaggregated.html
%%QT_DOCDIR%%/activeqt/qaxbase-members.html
%%QT_DOCDIR%%/activeqt/qaxbase.html
%%QT_DOCDIR%%/activeqt/qaxbindable-members.html
%%QT_DOCDIR%%/activeqt/qaxbindable.html
%%QT_DOCDIR%%/activeqt/qaxcontainer-module.html
%%QT_DOCDIR%%/activeqt/qaxfactory-members.html
%%QT_DOCDIR%%/activeqt/qaxfactory.html
%%QT_DOCDIR%%/activeqt/qaxobject-members.html
%%QT_DOCDIR%%/activeqt/qaxobject.html
%%QT_DOCDIR%%/activeqt/qaxscript-members.html
%%QT_DOCDIR%%/activeqt/qaxscript.html
%%QT_DOCDIR%%/activeqt/qaxscriptengine-members.html
%%QT_DOCDIR%%/activeqt/qaxscriptengine.html
%%QT_DOCDIR%%/activeqt/qaxscriptmanager-members.html
%%QT_DOCDIR%%/activeqt/qaxscriptmanager.html
%%QT_DOCDIR%%/activeqt/qaxselect-members.html
%%QT_DOCDIR%%/activeqt/qaxselect.html
%%QT_DOCDIR%%/activeqt/qaxserver-demo-hierarchy.html
%%QT_DOCDIR%%/activeqt/qaxserver-demo-menus.html
%%QT_DOCDIR%%/activeqt/qaxserver-demo-multiple.html
%%QT_DOCDIR%%/activeqt/qaxserver-demo-opengl.html
%%QT_DOCDIR%%/activeqt/qaxserver-demo-simple.html
%%QT_DOCDIR%%/activeqt/qaxserver-demo-wrapper.html
%%QT_DOCDIR%%/activeqt/qaxserver-module.html
%%QT_DOCDIR%%/activeqt/qaxwidget-members.html
%%QT_DOCDIR%%/activeqt/qaxwidget.html
%%QT_DOCDIR%%/activeqt/style/offline-simple.css
%%QT_DOCDIR%%/activeqt/style/offline.css
%%QT_DOCDIR%%/qdoc.qch
%%QT_DOCDIR%%/qdoc/01-qdoc-manual.html
%%QT_DOCDIR%%/qdoc/03-qdoc-commands-markup.html
%%QT_DOCDIR%%/qdoc/04-qdoc-commands-textmarkup.html
%%QT_DOCDIR%%/qdoc/05-qdoc-commands-documentstructure.html
%%QT_DOCDIR%%/qdoc/06-qdoc-commands-includecodeinline.html
%%QT_DOCDIR%%/qdoc/07-0-qdoc-commands-includingexternalcode.html
%%QT_DOCDIR%%/qdoc/08-qdoc-commands-creatinglinks.html
%%QT_DOCDIR%%/qdoc/09-qdoc-commands-includingimages.html
%%QT_DOCDIR%%/qdoc/10-qdoc-commands-tablesandlists.html
%%QT_DOCDIR%%/qdoc/11-qdoc-commands-specialcontent.html
%%QT_DOCDIR%%/qdoc/12-0-qdoc-commands-miscellaneous.html
%%QT_DOCDIR%%/qdoc/13-qdoc-commands-topics.html
%%QT_DOCDIR%%/qdoc/14-qdoc-commands-contextcommands.html
%%QT_DOCDIR%%/qdoc/15-qdoc-commands-navigation.html
%%QT_DOCDIR%%/qdoc/16-qdoc-commands-status.html
%%QT_DOCDIR%%/qdoc/17-qdoc-commands-thread.html
%%QT_DOCDIR%%/qdoc/18-qdoc-commands-relating.html
%%QT_DOCDIR%%/qdoc/19-qdoc-commands-grouping.html
%%QT_DOCDIR%%/qdoc/20-qdoc-commands-namingthings.html
%%QT_DOCDIR%%/qdoc/21-0-qdoc-configuration.html
%%QT_DOCDIR%%/qdoc/21-0-qdoc-creating-dita-maps.html
%%QT_DOCDIR%%/qdoc/21-1-minimum-qdocconf.html
%%QT_DOCDIR%%/qdoc/21-2-qtgui-qdocconf.html
%%QT_DOCDIR%%/qdoc/21-3-qt-dita-xml-output.html
%%QT_DOCDIR%%/qdoc/22-creating-help-project-files.html
%%QT_DOCDIR%%/qdoc/22-qdoc-configuration-generalvariables.html
%%QT_DOCDIR%%/qdoc/23-qdoc-configuration-cppvariables.html
%%QT_DOCDIR%%/qdoc/24-qdoc-configuration-htmlvariables.html
%%QT_DOCDIR%%/qdoc/25-qdoc-configuration-derivedprojects.html
%%QT_DOCDIR%%/qdoc/26-qdoc-configuration-example-manifest-files.html
%%QT_DOCDIR%%/qdoc/27-qdoc-commands-alphabetical.html
%%QT_DOCDIR%%/qdoc/28-qdoc-qa-pages.html
%%QT_DOCDIR%%/qdoc/corefeatures.html
%%QT_DOCDIR%%/qdoc/examples-manifest.xml
%%QT_DOCDIR%%/qdoc/images/arrow_bc.png
%%QT_DOCDIR%%/qdoc/images/bgrContent.png
%%QT_DOCDIR%%/qdoc/images/btn_next.png
%%QT_DOCDIR%%/qdoc/images/btn_prev.png
%%QT_DOCDIR%%/qdoc/images/bullet_dn.png
%%QT_DOCDIR%%/qdoc/images/bullet_sq.png
%%QT_DOCDIR%%/qdoc/images/happy.gif
%%QT_DOCDIR%%/qdoc/images/happyguy.jpg
%%QT_DOCDIR%%/qdoc/images/home.png
%%QT_DOCDIR%%/qdoc/images/ico_note.png
%%QT_DOCDIR%%/qdoc/images/ico_note_attention.png
%%QT_DOCDIR%%/qdoc/images/ico_out.png
%%QT_DOCDIR%%/qdoc/images/link-to-qquickitem.png
%%QT_DOCDIR%%/qdoc/images/links-to-links.png
%%QT_DOCDIR%%/qdoc/images/logo.png
%%QT_DOCDIR%%/qdoc/images/qa-table.png
%%QT_DOCDIR%%/qdoc/images/training.jpg
%%QT_DOCDIR%%/qdoc/images/windowsvista-pushbutton.png
%%QT_DOCDIR%%/qdoc/images/windowsvista-toolbutton.png
%%QT_DOCDIR%%/qdoc/qdoc-categories.html
%%QT_DOCDIR%%/qdoc/qdoc-componentset-componentset-pro.html
%%QT_DOCDIR%%/qdoc/qdoc-componentset-example.html
%%QT_DOCDIR%%/qdoc/qdoc-componentset-progressbar-qml.html
%%QT_DOCDIR%%/qdoc/qdoc-componentset-switch-qml.html
%%QT_DOCDIR%%/qdoc/qdoc-componentset-tabwidget-qml.html
%%QT_DOCDIR%%/qdoc/qdoc-componentset-uicomponents-qdoc-sample.html
%%QT_DOCDIR%%/qdoc/qdoc-guide-conf.html
%%QT_DOCDIR%%/qdoc/qdoc-guide-writing.html
%%QT_DOCDIR%%/qdoc/qdoc-guide.html
%%QT_DOCDIR%%/qdoc/qdoc-index.html
%%QT_DOCDIR%%/qdoc/qdoc-minimum-qdocconf.html
%%QT_DOCDIR%%/qdoc/qdoc.index
%%QT_DOCDIR%%/qdoc/qdoc.qhp
%%QT_DOCDIR%%/qdoc/qdoc.qhp.sha1
%%QT_DOCDIR%%/qdoc/qdoc.tags
%%QT_DOCDIR%%/qdoc/qml-uicomponents-progressbar-members.html
%%QT_DOCDIR%%/qdoc/qml-uicomponents-progressbar.html
%%QT_DOCDIR%%/qdoc/qml-uicomponents-switch-members.html
%%QT_DOCDIR%%/qdoc/qml-uicomponents-switch.html
%%QT_DOCDIR%%/qdoc/qml-uicomponents-tabwidget-members.html
%%QT_DOCDIR%%/qdoc/qml-uicomponents-tabwidget.html
%%QT_DOCDIR%%/qdoc/qtgui-qdocconf.html
%%QT_DOCDIR%%/qdoc/qtwritingstyle-cpp.html
%%QT_DOCDIR%%/qdoc/qtwritingstyle-qml.html
%%QT_DOCDIR%%/qdoc/style/offline-simple.css
%%QT_DOCDIR%%/qdoc/style/offline.css
%%QT_DOCDIR%%/qdoc/uicomponents-qmlmodule.html
%%QT_DOCDIR%%/qmake.qch
%%QT_DOCDIR%%/qmake/images/arrow_bc.png
%%QT_DOCDIR%%/qmake/images/bgrContent.png
%%QT_DOCDIR%%/qmake/images/btn_next.png
%%QT_DOCDIR%%/qmake/images/btn_prev.png
%%QT_DOCDIR%%/qmake/images/bullet_dn.png
%%QT_DOCDIR%%/qmake/images/bullet_sq.png
%%QT_DOCDIR%%/qmake/images/home.png
%%QT_DOCDIR%%/qmake/images/ico_note.png
%%QT_DOCDIR%%/qmake/images/ico_note_attention.png
%%QT_DOCDIR%%/qmake/images/ico_out.png
%%QT_DOCDIR%%/qmake/images/logo.png
%%QT_DOCDIR%%/qmake/images/qmake-precompile-ui.png
%%QT_DOCDIR%%/qmake/qmake-advanced-usage.html
%%QT_DOCDIR%%/qmake/qmake-common-projects.html
%%QT_DOCDIR%%/qmake/qmake-environment-reference.html
%%QT_DOCDIR%%/qmake/qmake-function-reference.html
%%QT_DOCDIR%%/qmake/qmake-language.html
%%QT_DOCDIR%%/qmake/qmake-manual.html
%%QT_DOCDIR%%/qmake/qmake-overview.html
%%QT_DOCDIR%%/qmake/qmake-platform-notes.html
%%QT_DOCDIR%%/qmake/qmake-precompiledheaders.html
%%QT_DOCDIR%%/qmake/qmake-project-files.html
%%QT_DOCDIR%%/qmake/qmake-reference.html
%%QT_DOCDIR%%/qmake/qmake-running.html
%%QT_DOCDIR%%/qmake/qmake-test-function-reference.html
%%QT_DOCDIR%%/qmake/qmake-tutorial.html
%%QT_DOCDIR%%/qmake/qmake-variable-reference.html
%%QT_DOCDIR%%/qmake/qmake.index
%%QT_DOCDIR%%/qmake/qmake.qhp
%%QT_DOCDIR%%/qmake/qmake.qhp.sha1
%%QT_DOCDIR%%/qmake/style/offline-simple.css
%%QT_DOCDIR%%/qmake/style/offline.css
%%QT_DOCDIR%%/qt3d.qch
%%QT_DOCDIR%%/qt3d/examples-manifest.xml
%%QT_DOCDIR%%/qt3d/images/Space-invaders.jpg
%%QT_DOCDIR%%/qt3d/images/arrow_bc.png
%%QT_DOCDIR%%/qt3d/images/audio-visualizer-qml-example.png
%%QT_DOCDIR%%/qt3d/images/basicshapes-cpp-example.jpg
%%QT_DOCDIR%%/qt3d/images/bgrContent.png
%%QT_DOCDIR%%/qt3d/images/btn_next.png
%%QT_DOCDIR%%/qt3d/images/btn_prev.png
%%QT_DOCDIR%%/qt3d/images/bullet_dn.png
%%QT_DOCDIR%%/qt3d/images/bullet_sq.png
%%QT_DOCDIR%%/qt3d/images/deferred-framegraph.png
%%QT_DOCDIR%%/qt3d/images/ecs-1.png
%%QT_DOCDIR%%/qt3d/images/ecs-2.png
%%QT_DOCDIR%%/qt3d/images/framegraph-parallel-build.png
%%QT_DOCDIR%%/qt3d/images/home.png
%%QT_DOCDIR%%/qt3d/images/ico_note.png
%%QT_DOCDIR%%/qt3d/images/ico_note_attention.png
%%QT_DOCDIR%%/qt3d/images/ico_out.png
%%QT_DOCDIR%%/qt3d/images/logo.png
+%%QT_DOCDIR%%/qt3d/images/materials-cpp.png
+%%QT_DOCDIR%%/qt3d/images/materials.png
%%QT_DOCDIR%%/qt3d/images/multiviewport-1.png
%%QT_DOCDIR%%/qt3d/images/multiviewport-2.png
+%%QT_DOCDIR%%/qt3d/images/multiviewport-qml-example.png
%%QT_DOCDIR%%/qt3d/images/multiviewport.png
%%QT_DOCDIR%%/qt3d/images/planets-qml-example.jpg
%%QT_DOCDIR%%/qt3d/images/qt3d-wireframe-rendering.png
+%%QT_DOCDIR%%/qt3d/images/scene3d.png
%%QT_DOCDIR%%/qt3d/images/shadowmapping-depth.png
%%QT_DOCDIR%%/qt3d/images/shadowmapping-qt3d.png
+%%QT_DOCDIR%%/qt3d/images/simple-cpp.png
%%QT_DOCDIR%%/qt3d/images/simple-framegraph.png
+%%QT_DOCDIR%%/qt3d/images/simple-qml.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/albumcover.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/demotitle.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/normalmap.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/pausehoverpressed.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/pausenormal.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/playhoverpressed.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/playnormal.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/songtitle.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/stopdisabled.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/stophoverpressed.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/stopnormal.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/earth.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/earthcloudmapcolortrans.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/earthcloudmapspec.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/earthmap1k.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/earthnormal1k.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/earthspec1k.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/galaxy_starfield.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/jupiter.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/jupitermap.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/mars.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/marsmap1k.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/marsnormal1k.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/mercury.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/mercurymap.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/mercurynormal.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/moonmap1k.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/moonnormal1k.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/neptune.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/neptunemap.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/saturn.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/saturnmap.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/saturnringcolortrans.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/sun.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/sunmap.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/uranus.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/uranusmap.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/uranusringcolortrans.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/venus.png
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/venusmap.jpg
%%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/venusnormal.jpg
-%%QT_DOCDIR%%/qt3d/qml-qt3d-core-camera-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-core-camera.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-core-cameralens-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-core-cameralens.html
+%%QT_DOCDIR%%/qt3d/images/wave.png
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-component3d-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-component3d.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-core-configuration-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-core-configuration.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-entity-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-entity.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-entityloader-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-entityloader.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-node-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-node.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-nodeinstantiator-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-nodeinstantiator.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-quaternionanimation-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-quaternionanimation.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-transform-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-core-transform.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-conegeometry-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-conegeometry.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-conemesh-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-conemesh.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cuboidgeometry-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cuboidgeometry.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cuboidmesh-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cuboidmesh.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cylindergeometry-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cylindergeometry.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cylindermesh-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cylindermesh.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-diffusemapmaterial-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-diffusemapmaterial.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-diffusespecularmapmaterial-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-diffusespecularmapmaterial.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-firstpersoncameracontroller-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-firstpersoncameracontroller.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-forwardrenderer-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-forwardrenderer.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-goochmaterial-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-goochmaterial.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-normaldiffusemapalphamaterial-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-normaldiffusemapalphamaterial.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-normaldiffusemapmaterial-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-normaldiffusemapmaterial.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-normaldiffusespecularmapmaterial-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-normaldiffusespecularmapmaterial.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-orbitcameracontroller-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-orbitcameracontroller.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-pervertexcolormaterial-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-pervertexcolormaterial.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-phongalphamaterial-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-phongalphamaterial.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-phongmaterial-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-phongmaterial.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-planegeometry-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-planegeometry.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-planemesh-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-planemesh.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-spheregeometry-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-spheregeometry.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-spheremesh-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-spheremesh.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-torusgeometry-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-torusgeometry.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-torusmesh-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-torusmesh.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-abstractactioninput-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-abstractactioninput.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-abstractaxisinput-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-abstractaxisinput.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-abstractphysicaldevice-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-abstractphysicaldevice.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-action-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-action.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-actioninput-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-actioninput.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-analogaxisinput-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-analogaxisinput.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-axis-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-axis.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-input-axisactionhandler-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-input-axisactionhandler.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-input-axisinput-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-input-axisinput.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-axissetting-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-axissetting.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyboardcontroller-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyboardcontroller.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyboardinput-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyboardinput.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-buttonaxisinput-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-buttonaxisinput.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-inputchord-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-inputchord.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-inputsequence-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-inputsequence.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-inputsettings-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-inputsettings.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyboarddevice-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyboarddevice.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyboardhandler-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyboardhandler.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyevent-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyevent.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-logicaldevice-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-logicaldevice.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-input-mousecontroller-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-input-mousecontroller.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-mousedevice-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-mousedevice.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-mouseevent-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-mouseevent.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-input-mouseinput-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-input-mouseinput.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-mousehandler-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-input-mousehandler.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-wheelevent-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-input-wheelevent.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-logic-logiccomponent-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-logic-logiccomponent.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-abstractattribute-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-abstractattribute.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-abstractbuffer-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-abstractbuffer.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-logic-frameaction-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-logic-frameaction.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-abstracttextureimage-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-abstracttextureimage.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-annotation-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-annotation.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-blendstate-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-blendstate.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-blendstateseparate-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-blendstateseparate.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-boundingvolumespecifier-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-boundingvolumespecifier.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-attribute-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-attribute.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-blendequation-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-blendequation.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-blendequationarguments-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-blendequationarguments.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-buffer-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-buffer.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-camera-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-camera.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-cameralens-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-cameralens.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-cameraselector-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-cameraselector.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-clearbuffers-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-clearbuffers.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-clipplane-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-clipplane.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-cuboidgeometry-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-cuboidgeometry.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-cylindergeometry-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-cylindergeometry.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-cylindermesh-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-cylindermesh.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-framegraph-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-framegraph.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-directionallight-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-directionallight.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-dispatchcompute-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-dispatchcompute.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-effect-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-effect.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-filterkey-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-filterkey.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-framegraphnode-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-framegraphnode.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-frustumculling-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-frustumculling.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-geometry-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-geometry.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-geometryrenderer-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-geometryrenderer.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-graphicsapifilter-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-graphicsapifilter.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-layer-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-layer.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-layerfilter-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-layerfilter.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-light-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-light.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-material-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-material.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-mesh-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-mesh.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-parametermapping-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-parametermapping.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-planegeometry-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-planegeometry.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-planemesh-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-planemesh.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-nodraw-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-nodraw.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-objectpicker-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-objectpicker.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-parameter-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-parameter.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-pickevent-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-pickevent.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-pickingsettings-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-pickingsettings.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-picktriangleevent-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-picktriangleevent.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-pointlight-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-pointlight.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-qcuboidmesh-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-qcuboidmesh.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-spheregeometry-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-spheregeometry.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-spheremesh-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-spheremesh.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-pointsize-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-pointsize.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-renderpass-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-renderpass.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendersettings-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendersettings.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendersurfaceselector-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendersurfaceselector.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendertargetselector-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendertargetselector.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-sceneloader-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-sceneloader.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-shaderprogram-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-shaderprogram.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-sortpolicy-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-sortpolicy.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-spotlight-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-spotlight.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-technique-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-technique.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-textureimage-members.html
%%QT_DOCDIR%%/qt3d/qml-qt3d-render-textureimage.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-torusgeometry-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-torusgeometry.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-torusmesh-members.html
-%%QT_DOCDIR%%/qt3d/qml-qt3d-render-torusmesh.html
-%%QT_DOCDIR%%/qt3d/qt3d-assimp-assimp-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-assimp-assimp-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-assimp-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-assimp-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-assimp-main-qml.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-viewport-members.html
+%%QT_DOCDIR%%/qt3d/qml-qt3d-render-viewport.html
%%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-audio-visualizer-qml-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-audio-visualizer-qml-qrc.html
%%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-barentity-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-example.html
%%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-main-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-touchsettings-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-touchsettings-h.html
%%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-visualizer-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-basicshapes-cpp-basicshapes-cpp-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-basicshapes-cpp-example.html
%%QT_DOCDIR%%/qt3d/qt3d-basicshapes-cpp-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-basicshapes-cpp-scenemodifier-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-basicshapes-cpp-scenemodifier-h.html
-%%QT_DOCDIR%%/qt3d/qt3d-bigmodel-qml-bigmodel-qml-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-bigmodel-qml-bigmodel-qml-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-bigmodel-qml-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-bigmodel-qml-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-bigmodel-qml-main-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-bigmodel-qml-myentity-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-bigscene-cpp-bigscene-cpp-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-bigscene-cpp-entity-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-bigscene-cpp-entity-h.html
-%%QT_DOCDIR%%/qt3d/qt3d-bigscene-cpp-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-bigscene-cpp-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-core-qmlmodule.html
-%%QT_DOCDIR%%/qt3d/qt3d-cpp-example-cpp-example-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-cpp-example-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-cpp-example-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-cylinder-cpp-cylinder-cpp-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-cylinder-cpp-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-cylinder-cpp-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-cylinder-qml-cylinder-qml-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-cylinder-qml-cylinder-qml-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-cylinder-qml-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-cylinder-qml-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-cylinder-qml-main-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-deferred-renderer-cpp-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-deferred-renderer-cpp-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-deferredrenderer-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-deferredrenderer-h.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-example.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-final-gl2-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-final-gl3-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-finaleffect-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-finaleffect-h.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-gbuffer-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-gbuffer-h.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-geometry-gl2-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-geometry-gl3-vert.html
-%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-pointlightblock-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-pointlightblock-h.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-sceneeffect-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-cpp-sceneeffect-h.html
-%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-qml-deferred-renderer-qml-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-qml-deferred-renderer-qml-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-qml-deferredrenderer-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-qml-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-qml-finaleffect-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-qml-gbuffer-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-qml-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-qml-main-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-deferred-renderer-qml-sceneeffect-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-dynamicscene-cpp-boxentity-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-dynamicscene-cpp-boxentity-h.html
-%%QT_DOCDIR%%/qt3d/qt3d-dynamicscene-cpp-dynamicscene-cpp-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-dynamicscene-cpp-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-dynamicscene-cpp-examplescene-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-dynamicscene-cpp-examplescene-h.html
-%%QT_DOCDIR%%/qt3d/qt3d-dynamicscene-cpp-forwardrenderer-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-dynamicscene-cpp-forwardrenderer-h.html
-%%QT_DOCDIR%%/qt3d/qt3d-dynamicscene-cpp-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-enabled-qml-enabled-qml-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-enabled-qml-enabled-qml-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-enabled-qml-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-enabled-qml-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-enabled-qml-main-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-examples.html
-%%QT_DOCDIR%%/qt3d/qt3d-gltf-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-gltf-gltf-example-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-gltf-gltf-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-gltf-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-gltf-main-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-gltf-wine-qml.html
+%%QT_DOCDIR%%/qt3d/qt3d-extras-qmlmodule.html
%%QT_DOCDIR%%/qt3d/qt3d-index.html
%%QT_DOCDIR%%/qt3d/qt3d-input-qmlmodule.html
-%%QT_DOCDIR%%/qt3d/qt3d-keyboardinput-qml-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-keyboardinput-qml-keyboardinput-qml-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-keyboardinput-qml-keyboardinput-qml-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-keyboardinput-qml-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-keyboardinput-qml-main-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-keyboardinput-qml-sphereentity-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-loader-qml-cuboidentity-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-loader-qml-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-loader-qml-loader-qml-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-loader-qml-loader-qml-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-loader-qml-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-loader-qml-main-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-loader-qml-sphereentity-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-logic-qmlmodule.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-barrel-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-basiccamera-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-chest-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-barrel-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-barrel-h.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-example.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-houseplant-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-houseplant-h.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-materials-cpp-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-planeentity-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-planeentity-h.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-renderableentity-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-renderableentity-h.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-rotatingtrefoilknot-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-rotatingtrefoilknot-h.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-trefoilknot-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-cpp-trefoilknot-h.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-example.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-houseplant-qml.html
+%%QT_DOCDIR%%/qt3d/qt3d-materials-lights-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-main-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-materials-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-materials-qrc.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-planeentity-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-renderableentity-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-sortedforwardrenderer-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-materials-trefoilknot-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-multiviewport-example.html
%%QT_DOCDIR%%/qt3d/qt3d-multiviewport-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-multiviewport-main-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-multiviewport-multiviewport-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-multiviewport-multiviewport-qrc.html
%%QT_DOCDIR%%/qt3d/qt3d-multiviewport-quadviewportframegraph-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-multiviewport-simplecamera-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-overview.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-android-androidmanifest-xml.html
-%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-cloudeffectds-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-example.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-fpsdisplay-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-infosheet-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planet-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planetbutton-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planeteffectd-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planeteffectdb-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planeteffectdsb-qml.html
+%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planeteffect-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planetframegraph-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planetmaterial-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planets-js.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planets-qml-images-qrc.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planets-qml-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planets-qml-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planetshadoweffectd-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planetslight-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planetsmain-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-ring-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-es2-planetd-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-es2-planetdb-vert.html
+%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-es2-sun-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-gl3-planetd-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-gl3-planetdb-vert.html
+%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-gl3-planetdshadow-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-gl3-shadowmap-vert.html
+%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-gl3-sun-vert.html
+%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shadoweffect-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-solarsystem-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-styledslider-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-playground-qml-adseffect-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-playground-qml-animateddiffusematerial-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-playground-qml-complextechnique-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-playground-qml-detailview-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-playground-qml-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-playground-qml-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-playground-qml-main-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-playground-qml-mainview-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-playground-qml-myforwardrenderer-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-playground-qml-playground-qml-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-playground-qml-playground-qml-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-playground-qml-renderableentity-qml.html
+%%QT_DOCDIR%%/qt3d/qt3d-planets-qml-suneffect-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-render-qmlmodule.html
%%QT_DOCDIR%%/qt3d/qt3d-scene3d-animatedentity-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-scene3d-example.html
%%QT_DOCDIR%%/qt3d/qt3d-scene3d-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-scene3d-main-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-scene3d-scene3d-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-scene3d-scene3d-qrc.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-adseffect-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-adsmaterial-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-example.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-groundplane-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-main-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shaders-ads-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shaders-es3-ads-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shaders-es3-shadowmap-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shaders-shadowmap-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shadow-map-qml-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shadow-map-qml-qrc.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shadowmapframegraph-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shadowmaplight-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-toyplane-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-trefoil-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-simple-cpp-example.html
%%QT_DOCDIR%%/qt3d/qt3d-simple-cpp-main-cpp.html
+%%QT_DOCDIR%%/qt3d/qt3d-simple-cpp-orbittransformcontroller-cpp.html
+%%QT_DOCDIR%%/qt3d/qt3d-simple-cpp-orbittransformcontroller-h.html
%%QT_DOCDIR%%/qt3d/qt3d-simple-cpp-simple-cpp-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-simple-qml-cameracontroller-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-simple-qml-example.html
%%QT_DOCDIR%%/qt3d/qt3d-simple-qml-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-simple-qml-main-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-simple-qml-simple-qml-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-simple-qml-simple-qml-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-skybox-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-skybox-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-skybox-main-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-skybox-skybox-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-skybox-skybox-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-skybox-skybox-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-basiccamera-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-main-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-shaders-passthru-vert.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-shaders-robustwireframe-geom.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-tessellatedquad-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-tessellatedquadmesh-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-tessellatedquadmesh-h.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-tessellatedwireframeeffect-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-tessellatedwireframematerial-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-tessellation-modes-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-tessellation-modes-tessellation-modes-qrc.html
-%%QT_DOCDIR%%/qt3d/qt3d-torus-qml-example.html
-%%QT_DOCDIR%%/qt3d/qt3d-torus-qml-main-cpp.html
-%%QT_DOCDIR%%/qt3d/qt3d-torus-qml-main-qml.html
-%%QT_DOCDIR%%/qt3d/qt3d-torus-qml-torus-qml-pro.html
-%%QT_DOCDIR%%/qt3d/qt3d-torus-qml-torus-qml-qrc.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-background-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-backgroundeffect-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-basiccamera-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-example.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-main-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-shaders-background-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-shaders-ribbon-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-shaders-robustwireframe-geom.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-wave-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-wave-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-wave-qrc.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-waveeffect-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-waveforwardrenderer-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-wave-wavematerial-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-wireframe-basiccamera-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-wireframe-example.html
%%QT_DOCDIR%%/qt3d/qt3d-wireframe-main-cpp.html
%%QT_DOCDIR%%/qt3d/qt3d-wireframe-main-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-wireframe-shaders-robustwireframe-geom.html
%%QT_DOCDIR%%/qt3d/qt3d-wireframe-shaders-robustwireframe-vert.html
%%QT_DOCDIR%%/qt3d/qt3d-wireframe-trefoilknot-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-wireframe-wireframe-pro.html
%%QT_DOCDIR%%/qt3d/qt3d-wireframe-wireframe-qrc.html
%%QT_DOCDIR%%/qt3d/qt3d-wireframe-wireframeeffect-qml.html
%%QT_DOCDIR%%/qt3d/qt3d-wireframe-wireframematerial-qml.html
%%QT_DOCDIR%%/qt3d/qt3d.index
%%QT_DOCDIR%%/qt3d/qt3d.qhp
%%QT_DOCDIR%%/qt3d/qt3d.qhp.sha1
%%QT_DOCDIR%%/qt3d/qt3d.tags
%%QT_DOCDIR%%/qt3d/qt3dcore-arrayallocatingpolicy-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-arrayallocatingpolicy.html
%%QT_DOCDIR%%/qt3d/qt3dcore-arraypreallocationpolicy-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-arraypreallocationpolicy.html
%%QT_DOCDIR%%/qt3d/qt3dcore-aspecttaskrunnable-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-aspecttaskrunnable.html
%%QT_DOCDIR%%/qt3d/qt3dcore-circularbufferdata-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-circularbufferdata.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-debug-asynchronouscommandreply-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-debug-asynchronouscommandreply.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-debug.html
%%QT_DOCDIR%%/qt3d/qt3dcore-dependency-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-dependency.html
%%QT_DOCDIR%%/qt3d/qt3dcore-dependencyhandler-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-dependencyhandler.html
%%QT_DOCDIR%%/qt3d/qt3dcore-int2type-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-int2type.html
%%QT_DOCDIR%%/qt3d/qt3dcore-module.html
%%QT_DOCDIR%%/qt3d/qt3dcore-nonlockingpolicy-locker-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-nonlockingpolicy-locker.html
%%QT_DOCDIR%%/qt3d/qt3dcore-nonlockingpolicy-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-nonlockingpolicy-readlocker-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-nonlockingpolicy-readlocker.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-nonlockingpolicy-writelocker-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-nonlockingpolicy-writelocker.html
%%QT_DOCDIR%%/qt3d/qt3dcore-nonlockingpolicy.html
%%QT_DOCDIR%%/qt3d/qt3dcore-nullopenglinformationservice-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-nullopenglinformationservice.html
%%QT_DOCDIR%%/qt3d/qt3dcore-nullsysteminformationservice-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-nullsysteminformationservice.html
%%QT_DOCDIR%%/qt3d/qt3dcore-objectlevellockingpolicy-locker-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-objectlevellockingpolicy-locker.html
%%QT_DOCDIR%%/qt3d/qt3dcore-objectlevellockingpolicy-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-objectlevellockingpolicy-readlocker-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-objectlevellockingpolicy-readlocker.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-objectlevellockingpolicy-writelocker-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-objectlevellockingpolicy-writelocker.html
%%QT_DOCDIR%%/qt3d/qt3dcore-objectlevellockingpolicy.html
%%QT_DOCDIR%%/qt3d/qt3dcore-propertychangehandler-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-propertychangehandler.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-propertychangehandlerbase-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-propertychangehandlerbase.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractarbiter-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractarbiter.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractaspect-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractaspect.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractaspectjobmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractaspectjobmanager.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractaspectprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractaspectprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractframeadvanceservice-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractframeadvanceservice.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractframeadvanceserviceprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractframeadvanceserviceprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractnodefactory-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractnodefactory.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractpostman-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractpostman.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractserviceprovider-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractserviceprovider.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractserviceproviderprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qabstractserviceproviderprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectengine-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectengine.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectengineprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectengineprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectfactory-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectfactory.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectjob-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectjob.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectjobmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectjobmanager.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectjobprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectjobprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectjobproviderinterface-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectjobproviderinterface.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectmanager.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectthread-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qaspectthread.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnode-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnode.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnodefactory-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnodefactory.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnodefunctor-members.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnodefunctor.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnodemapper-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnodemapper.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnodeprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnodeprivate.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendscenepropertychange-members.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendscenepropertychange.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendscenepropertychangeprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qbackendscenepropertychangeprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qboundedcircularbuffer-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qboundedcircularbuffer.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qcamera-members.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qcamera.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qcameralens-members.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qcameralens.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qcameralensprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qcameralensprivate.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qcameraprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qcameraprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qchangearbiter-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qchangearbiter.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qcircularbuffer-const-iterator-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qcircularbuffer-const-iterator.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qcircularbuffer-iterator-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qcircularbuffer-iterator.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qcircularbuffer-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qcircularbuffer.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qcomponent-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qcomponent.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentaddedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentaddedchange.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentaddedchangeprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentaddedchangeprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentremovedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentremovedchange.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentremovedchangeprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentremovedchangeprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qdestructionidandtypecollector-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qdestructionidandtypecollector.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qdynamicpropertyupdatedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qdynamicpropertyupdatedchange.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qdynamicpropertyupdatedchangeprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qdynamicpropertyupdatedchangeprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qentity-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qentity.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qentitydata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qentitydata.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qentityprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qentityprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qeventfilterservice-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qeventfilterservice.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qfixedframeallocator-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qfixedframeallocator.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qframeallocator-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qframeallocator.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qframeallocatorprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qframeallocatorprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qframechunk-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qframechunk.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qhandle-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qhandle.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qhandlemanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qhandlemanager.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qlockableobserverinterface-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qlockableobserverinterface.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qnode-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qnode.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodecreatedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodecreatedchange.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodecreatedchangebase-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodecreatedchangebase.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodecreatedchangebaseprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodecreatedchangebaseprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodecreatedchangegenerator-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodecreatedchangegenerator.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodedestroyedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodedestroyedchange.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodedestroyedchangeprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodedestroyedchangeprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qnodeid-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qnodeid.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodeidtypepair-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qnodeidtypepair.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qnodeprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qnodeprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qnodevisitor-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qnodevisitor.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qobservableinterface-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qobservableinterface.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qobserverinterface-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qobserverinterface.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qopenglinformationservice-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qopenglinformationservice.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qopenglinformationserviceprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qopenglinformationserviceprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qpostman-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qpostman.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qray3d-members.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qray3d.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertynodeaddedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertynodeaddedchange.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertynodeaddedchangeprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertynodeaddedchangeprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertynoderemovedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertynoderemovedchange.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertynoderemovedchangeprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertynoderemovedchangeprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyupdatedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyupdatedchange.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyupdatedchangebase-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyupdatedchangebase.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyupdatedchangebaseprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyupdatedchangebaseprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyupdatedchangeprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyupdatedchangeprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueaddedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueaddedchange.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueaddedchangebase-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueaddedchangebase.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueaddedchangebaseprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueaddedchangebaseprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueaddedchangeprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueaddedchangeprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueremovedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueremovedchange.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueremovedchangebase-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueremovedchangebase.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueremovedchangebaseprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueremovedchangebaseprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueremovedchangeprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueremovedchangeprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qresourceinfo-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qresourceinfo.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qresourcemanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qresourcemanager.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qscene-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qscene.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qscenechange-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qscenechange.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qscenechangeprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qscenechangeprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qsceneobserverinterface-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qsceneobserverinterface.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qscenepropertychange-members.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qscenepropertychange.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qscenepropertychangeprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-qscenepropertychangeprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qscheduler-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qscheduler.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qservicelocator-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qservicelocator.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyupdatedchangebase-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyupdatedchangebase.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyupdatedchangebaseprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyupdatedchangebaseprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyvalueaddedchangebase-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyvalueaddedchangebase.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyvalueaddedchangebaseprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyvalueaddedchangebaseprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyvalueremovedchangebase-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyvalueremovedchangebase.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyvalueremovedchangebaseprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyvalueremovedchangebaseprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qsysteminformationservice-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qsysteminformationservice.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qsysteminformationserviceprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qsysteminformationserviceprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qthreadpooler-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qthreadpooler.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qtickclock-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qtickclock.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qtickclockservice-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qtickclockservice.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qtransform-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qtransform.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qtransformdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qtransformdata.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qtransformprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-qtransformprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qtypedpropertyupdatedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3dcore-qtypedpropertyupdatedchange.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-qqmlaspectengine-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-qqmlaspectengine.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-qqmlaspectengineprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-qqmlaspectengineprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-qquaternionanimation-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-qquaternionanimation.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dcolorvaluetype-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dcolorvaluetype.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dconfiguration-members.html
-%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dconfiguration.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dentity-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dentity.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dentityloader-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dentityloader.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dentityloaderprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dentityloaderprivate.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dmatrix4x4valuetype-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dmatrix4x4valuetype.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dnode-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dnode.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dnodeinstantiator-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dnodeinstantiator.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dquaternionvaluetype-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dquaternionvaluetype.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dvaluetypes.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dvector2dvaluetype-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dvector2dvaluetype.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dvector3dvaluetype-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dvector3dvaluetype.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dvector4dvaluetype-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick-quick3dvector4dvaluetype.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quick.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quicknodefactory-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-quicknodefactory.html
%%QT_DOCDIR%%/qt3d/qt3dcore-runnableinterface-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-runnableinterface.html
%%QT_DOCDIR%%/qt3d/qt3dcore-synctaskrunnable-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-synctaskrunnable.html
%%QT_DOCDIR%%/qt3d/qt3dcore-typedcircularbufferdata-members.html
%%QT_DOCDIR%%/qt3d/qt3dcore-typedcircularbufferdata.html
%%QT_DOCDIR%%/qt3d/qt3dcore.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-module.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qconegeometry-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qconegeometry.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qconegeometryprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qconegeometryprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qconemesh-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qconemesh.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qcuboidgeometry-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qcuboidgeometry.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qcuboidgeometryprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qcuboidgeometryprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qcuboidmesh-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qcuboidmesh.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qcylindergeometry-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qcylindergeometry.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qcylindergeometryprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qcylindergeometryprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qcylindermesh-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qcylindermesh.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusemapmaterial-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusemapmaterial.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusemapmaterialprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusemapmaterialprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusespecularmapmaterial-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusespecularmapmaterial.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusespecularmapmaterialprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusespecularmapmaterialprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qfirstpersoncameracontroller-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qfirstpersoncameracontroller.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qfirstpersoncameracontrollerprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qfirstpersoncameracontrollerprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qforwardrenderer-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qforwardrenderer.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qforwardrendererprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qforwardrendererprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qgoochmaterial-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qgoochmaterial.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qgoochmaterialprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qgoochmaterialprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapalphamaterial-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapalphamaterial.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapalphamaterialprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapalphamaterialprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapmaterial-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapmaterial.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapmaterialprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapmaterialprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusespecularmapmaterial-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusespecularmapmaterial.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusespecularmapmaterialprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusespecularmapmaterialprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qorbitcameracontroller-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qorbitcameracontroller.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qorbitcameracontrollerprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qorbitcameracontrollerprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qpervertexcolormaterial-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qpervertexcolormaterial.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qpervertexcolormaterialprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qpervertexcolormaterialprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qphongalphamaterial-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qphongalphamaterial.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qphongalphamaterialprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qphongalphamaterialprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qphongmaterial-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qphongmaterial.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qphongmaterialprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qphongmaterialprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qplanegeometry-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qplanegeometry.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qplanegeometryprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qplanegeometryprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qplanemesh-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qplanemesh.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qskyboxentity-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qskyboxentity.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qskyboxentityprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qskyboxentityprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qspheregeometry-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qspheregeometry.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qspheregeometryprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qspheregeometryprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qspheremesh-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qspheremesh.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qt3dwindow-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qt3dwindow.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qtorusgeometry-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qtorusgeometry.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qtorusgeometryprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qtorusgeometryprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qtorusmesh-members.html
+%%QT_DOCDIR%%/qt3d/qt3dextras-qtorusmesh.html
+%%QT_DOCDIR%%/qt3d/qt3dextras.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-abstractactioninput-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-abstractactioninput.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-abstractaxisinput-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-abstractaxisinput.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-action-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-action.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-actioninput-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-actioninput.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-actioninputmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-actioninputmanager.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-actionmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-actionmanager.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-actionpayload-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-actionpayload.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-actionupdate-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-actionupdate.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-analogaxisinput-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-analogaxisinput.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-analogaxisinputmanager-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-analogaxisinputmanager.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-assignkeyboardfocusjob-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-assignkeyboardfocusjob.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-axis-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-axis.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisactionhandler-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisactionhandler.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisactionhandlermanager-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisactionhandlermanager.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisactionhandlernodefunctor-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisactionhandlernodefunctor.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisidfilter-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisidfilter.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisidsetting-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisidsetting.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisinput-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisinput.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisinputmanager-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisinputmanager.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-axismanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-axismanager.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axispayload-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axispayload.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-axissetting-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-axissetting.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-axissettingmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-axissettingmanager.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisupdate-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-axisupdate.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-cameracontroller-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-cameracontroller.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-buttonaxisinput-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-buttonaxisinput.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-buttonaxisinputmanager-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-buttonaxisinputmanager.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-eventsourcesetterhelper-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-eventsourcesetterhelper.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-genericdevicebackendfunctor-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-genericdevicebackendfunctor.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-genericdevicebackendnode-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-genericdevicebackendnode.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-genericdevicebackendnodemanager-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-genericdevicebackendnodemanager.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputchord-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputchord.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputchordmanager-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputchordmanager.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputhandler-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputhandler.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputnodefunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputnodefunctor.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardcontroller-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardcontroller.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardcontrollerfunctor-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardcontrollerfunctor.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardcontrollermanager-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardcontrollermanager.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputsequence-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputsequence.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputsequencemanager-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputsequencemanager.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputsettings-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputsettings.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputsettingsfunctor-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-inputsettingsfunctor.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-jobtypes.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboarddevice-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboarddevice.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboarddevicefunctor-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboarddevicefunctor.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboarddevicemanager-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboarddevicemanager.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardeventfilter-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardeventfilter.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardinput-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardinput.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardinputfunctor-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardinputfunctor.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardhandler-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardhandler.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardhandlerfunctor-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardhandlerfunctor.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardinputmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardinputmanager.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardmousedeviceintegration-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardmousedeviceintegration.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardmousegenericdeviceintegration-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyboardmousegenericdeviceintegration.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyeventdispatcherjob-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-keyeventdispatcherjob.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-logicaldevice-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-logicaldevice.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-logicaldevicemanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-logicaldevicemanager.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-logicaldevicenodefunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-logicaldevicenodefunctor.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousecontroller-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousecontroller.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousecontrollerfunctor-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousecontrollerfunctor.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousecontrollermanager-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousecontrollermanager.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousedevice-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousedevice.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousedevicefunctor-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousedevicefunctor.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousedevicemanager-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousedevicemanager.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-mouseeventdispatcherjob-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-mouseeventdispatcherjob.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-mouseeventfilter-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-mouseeventfilter.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-mouseinput-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-mouseinput.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-mouseinputfunctor-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-mouseinputfunctor.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousehandler-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousehandler.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousehandlerfunctor-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-input-mousehandlerfunctor.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-mouseinputmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-mouseinputmanager.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-movingaverage-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-movingaverage.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-updateaxisactionjob-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input-updateaxisactionjob.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-updatehandlerjob-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-input-updatehandlerjob.html
%%QT_DOCDIR%%/qt3d/qt3dinput-input.html
%%QT_DOCDIR%%/qt3d/qt3dinput-module.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractactioninput-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractactioninput.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractactioninputprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractactioninputprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractaxisinput-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractaxisinput.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractaxisinputdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractaxisinputdata.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractaxisinputprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractaxisinputprivate.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldevice-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldevice.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldevicebackendnode-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldevicebackendnode.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldevicebackendnodeprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldevicebackendnodeprivate.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldeviceprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldeviceprivate.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qaction-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qaction.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qactiondata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qactiondata.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qactioninput-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qactioninput.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qactioninputdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qactioninputdata.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qanalogaxisinput-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qanalogaxisinput.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qanalogaxisinputdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qanalogaxisinputdata.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qanalogaxisinputprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qanalogaxisinputprivate.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qaxis-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qaxis.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qaxisactionhandler-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qaxisactionhandler.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qaxisactionhandlerprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qaxisactionhandlerprivate.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qaxisinput-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qaxisinput.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qaxisdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qaxisdata.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qaxisprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qaxisprivate.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qaxissetting-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qaxissetting.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qaxissettingdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qaxissettingdata.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qaxissettingprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qaxissettingprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qbuttonaxisinput-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qbuttonaxisinput.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qbuttonaxisinputdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qbuttonaxisinputdata.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qbuttonaxisinputprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qbuttonaxisinputprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qgamepadinput-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qgamepadinput.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qgenericinputdevice-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qgenericinputdevice.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qinputaspect-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qinputaspect.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qinputaspectprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qinputaspectprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputchord-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputchord.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputchorddata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputchorddata.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qinputdeviceintegration-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qinputdeviceintegration.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qinputdeviceintegrationfactory-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qinputdeviceintegrationfactory.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qinputdeviceintegrationprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qinputdeviceintegrationprivate.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qinputdeviceplugin-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qinputdeviceplugin.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardcontroller-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardcontroller.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardcontrollerprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardcontrollerprivate.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardinput-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardinput.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardinputprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardinputprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputsequence-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputsequence.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputsequencedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputsequencedata.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputsettings-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputsettings.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputsettingsdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputsettingsdata.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputsettingsprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qinputsettingsprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboarddevice-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboarddevice.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboarddeviceprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboarddeviceprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardhandler-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardhandler.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardhandlerdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardhandlerdata.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardhandlerprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardhandlerprivate.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyevent-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qkeyevent.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qlogicaldevice-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qlogicaldevice.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qmousecontroller-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qmousecontroller.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qmousecontrollerprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qmousecontrollerprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qlogicaldevicedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qlogicaldevicedata.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qmousedevice-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qmousedevice.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qmousedevicedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qmousedevicedata.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qmousedeviceprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qmousedeviceprivate.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qmouseevent-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qmouseevent.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qmouseinput-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qmouseinput.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qmouseinputprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3dinput-qmouseinputprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qmousehandler-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qmousehandler.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qmousehandlerdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qmousehandlerdata.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qmousehandlerprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qmousehandlerprivate.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qphysicaldevicecreatedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qphysicaldevicecreatedchange.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qphysicaldevicecreatedchangebase-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qphysicaldevicecreatedchangebase.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qphysicaldevicecreatedchangebaseprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dinput-qphysicaldevicecreatedchangebaseprivate.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qwheelevent-members.html
%%QT_DOCDIR%%/qt3d/qt3dinput-qwheelevent.html
%%QT_DOCDIR%%/qt3d/qt3dinput.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-callbackjob-members.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-callbackjob.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-executor-members.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-executor.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-frameupdateevent-members.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-frameupdateevent.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-handler-members.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-handler.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-handlerfunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-handlerfunctor.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-handlermanager-members.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-handlermanager.html
+%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-jobtypes.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-manager-members.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic-manager.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-logic.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-module.html
+%%QT_DOCDIR%%/qt3d/qt3dlogic-qframeaction-members.html
+%%QT_DOCDIR%%/qt3d/qt3dlogic-qframeaction.html
+%%QT_DOCDIR%%/qt3d/qt3dlogic-qframeactionprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3dlogic-qframeactionprivate.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-qlogicaspect-members.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-qlogicaspect.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-qlogicaspectprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3dlogic-qlogicaspectprivate.html
-%%QT_DOCDIR%%/qt3d/qt3dlogic-qlogiccomponent-members.html
-%%QT_DOCDIR%%/qt3d/qt3dlogic-qlogiccomponent.html
-%%QT_DOCDIR%%/qt3d/qt3dlogic-qlogiccomponentprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3dlogic-qlogiccomponentprivate.html
%%QT_DOCDIR%%/qt3d/qt3dlogic.html
%%QT_DOCDIR%%/qt3d/qt3drender-assimphelper.html
-%%QT_DOCDIR%%/qt3d/qt3drender-assimpparser-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-assimpparser.html
+%%QT_DOCDIR%%/qt3d/qt3drender-assimpio-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-assimpio.html
%%QT_DOCDIR%%/qt3d/qt3drender-faceindices-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-faceindices.html
%%QT_DOCDIR%%/qt3d/qt3drender-framegraph.html
%%QT_DOCDIR%%/qt3d/qt3drender-functortype-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-functortype.html
-%%QT_DOCDIR%%/qt3d/qt3drender-gltfparser-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-gltfparser.html
+%%QT_DOCDIR%%/qt3d/qt3drender-geometry.html
+%%QT_DOCDIR%%/qt3d/qt3drender-gltfio-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-gltfio.html
+%%QT_DOCDIR%%/qt3d/qt3drender-graphicsapifilterdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-graphicsapifilterdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-module.html
-%%QT_DOCDIR%%/qt3d/qt3drender-objloader-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-objloader.html
%%QT_DOCDIR%%/qt3d/qt3drender-propertyreaderinterface-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-propertyreaderinterface.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractattribute-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractattribute.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractattributeprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractattributeprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractbuffer-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractbuffer.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractbufferprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractbufferprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-protips.html
%%QT_DOCDIR%%/qt3d/qt3drender-qabstractcollisionqueryservice-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qabstractcollisionqueryservice.html
%%QT_DOCDIR%%/qt3d/qt3drender-qabstractcollisionqueryserviceprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qabstractcollisionqueryserviceprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qabstractfunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qabstractfunctor.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractsceneloader-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractsceneloader.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractsceneloaderprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractsceneloaderprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractsceneparser-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstractsceneparser.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstractlight-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstractlight.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstractlightdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstractlightdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstractlightprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstractlightprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttexture-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttexture.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttexturedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttexturedata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureimage-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureimage.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureimagedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureimagedata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureimageprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureimageprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureprovider-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureprovider.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureproviderprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureproviderprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qalphacoverage-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qalphacoverage.html
%%QT_DOCDIR%%/qt3d/qt3drender-qalphatest-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qalphatest.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qannotation-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qannotation.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qannotationprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qannotationprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qalphatestdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qalphatestdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qalphatestprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qalphatestprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qattribute-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qattribute.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qattributedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qattributedata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qattributeprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qattributeprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qaxisalignedboundingbox-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qaxisalignedboundingbox.html
%%QT_DOCDIR%%/qt3d/qt3drender-qblendequation-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qblendequation.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qblendstate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qblendstate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qblendstateseparate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qblendstateseparate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qblendequationarguments-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qblendequationarguments.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qblendequationargumentsdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qblendequationargumentsdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qblendequationargumentsprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qblendequationargumentsprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qblendequationdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qblendequationdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qblendequationprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qblendequationprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qboundingsphere-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qboundingsphere.html
%%QT_DOCDIR%%/qt3d/qt3drender-qboundingvolume-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qboundingvolume.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qboundingvolumedebug-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qboundingvolumedebug.html
%%QT_DOCDIR%%/qt3d/qt3drender-qboundingvolumeprovider-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qboundingvolumeprovider.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qboundingvolumespecifier-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qboundingvolumespecifier.html
%%QT_DOCDIR%%/qt3d/qt3drender-qbuffer-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qbuffer.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qbufferfunctor-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qbufferfunctor.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qbufferdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qbufferdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qbufferdatagenerator-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qbufferdatagenerator.html
%%QT_DOCDIR%%/qt3d/qt3drender-qbufferprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qbufferprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcamera-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcamera.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcameralens-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcameralens.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcameralensdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcameralensdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcameralensprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcameralensprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcameraprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcameraprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qcameraselector-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qcameraselector.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcameraselectordata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcameraselectordata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qcameraselectorprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qcameraselectorprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qclearbuffer-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qclearbuffer.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qclearbufferprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qclearbufferprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qclearbuffers-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qclearbuffers.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qclearbuffersdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qclearbuffersdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qclearbuffersprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qclearbuffersprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qclipplane-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qclipplane.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qclipplanedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qclipplanedata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qclipplaneprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qclipplaneprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcollisionqueryresult-hit-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcollisionqueryresult-hit.html
%%QT_DOCDIR%%/qt3d/qt3drender-qcollisionqueryresult-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qcollisionqueryresult.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcollisionqueryresultprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcollisionqueryresultprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qcolormask-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qcolormask.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcuboidgeometry-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcuboidgeometry.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcuboidgeometryprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcuboidgeometryprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcuboidmesh-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcuboidmesh.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcolormaskdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcolormaskdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcolormaskprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcolormaskprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcomputecommand-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcomputecommand.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcomputecommanddata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcomputecommanddata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcomputecommandprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcomputecommandprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qcullface-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qcullface.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcylindergeometry-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcylindergeometry.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcylindergeometryprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcylindergeometryprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcylindermesh-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qcylindermesh.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qdepthmask-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qdepthmask.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcullfacedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcullfacedata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcullfaceprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qcullfaceprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qdepthtest-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qdepthtest.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qdiffusemapmaterial-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qdiffusemapmaterial.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qdiffusemapmaterialprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qdiffusemapmaterialprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qdiffusespecularmapmaterial-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qdiffusespecularmapmaterial.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qdiffusespecularmapmaterialprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qdiffusespecularmapmaterialprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qdepthtestdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qdepthtestdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qdepthtestprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qdepthtestprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qdirectionallight-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qdirectionallight.html
%%QT_DOCDIR%%/qt3d/qt3drender-qdirectionallightprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qdirectionallightprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qdispatchcompute-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qdispatchcompute.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qdispatchcomputedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qdispatchcomputedata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qdispatchcomputeprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qdispatchcomputeprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qdithering-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qdithering.html
%%QT_DOCDIR%%/qt3d/qt3drender-qeffect-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qeffect.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qeffectdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qeffectdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qeffectprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qeffectprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qforwardrenderer-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qforwardrenderer.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qforwardrendererprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qforwardrendererprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qframegraph-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qframegraph.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qfilterkey-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qfilterkey.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qfilterkeydata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qfilterkeydata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qfilterkeyprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qfilterkeyprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qframegraphnode-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qframegraphnode.html
%%QT_DOCDIR%%/qt3d/qt3drender-qframegraphnodeprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qframegraphnodeprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qframegraphprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qframegraphprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qframegraphselector-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qframegraphselector.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qframegraphselectorfunctor-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qframegraphselectorfunctor.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qframegraphselectorprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qframegraphselectorprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qfrontface-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qfrontface.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qfrontfacedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qfrontfacedata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qfrontfaceprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qfrontfaceprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qfrustumculling-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qfrustumculling.html
%%QT_DOCDIR%%/qt3d/qt3drender-qgeometry-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qgeometry.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qgeometryfunctor-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qgeometryfunctor.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qgeometrydata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qgeometrydata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qgeometryfactory-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qgeometryfactory.html
%%QT_DOCDIR%%/qt3d/qt3drender-qgeometryprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qgeometryprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qgeometryrenderer-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qgeometryrenderer.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qgeometryrendererdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qgeometryrendererdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qgeometryrendererprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qgeometryrendererprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qgoochmaterial-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qgoochmaterial.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qgoochmaterialprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qgoochmaterialprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qgraphicsapifilter-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qgraphicsapifilter.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qgraphicsapifilterprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qgraphicsapifilterprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qimagetexturedatafunctor-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qimagetexturedatafunctor.html
%%QT_DOCDIR%%/qt3d/qt3drender-qitemmodelbuffer-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qitemmodelbuffer.html
%%QT_DOCDIR%%/qt3d/qt3drender-qlayer-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qlayer.html
%%QT_DOCDIR%%/qt3d/qt3drender-qlayerfilter-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qlayerfilter.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qlayerfilterdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qlayerfilterdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qlayerfilterprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qlayerfilterprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qlayerprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qlayerprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qlight-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qlight.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qlighting-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qlighting.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qlightingprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qlightingprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qlightprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qlightprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qmaterial-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qmaterial.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qmaterialdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qmaterialdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qmaterialprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qmaterialprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qmesh-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qmesh.html
%%QT_DOCDIR%%/qt3d/qt3drender-qmeshprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qmeshprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qmultisampleantialiasing-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qmultisampleantialiasing.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qnodepthmask-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qnodepthmask.html
%%QT_DOCDIR%%/qt3d/qt3drender-qnodraw-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qnodraw.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qnormaldiffusemapalphamaterial-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qnormaldiffusemapalphamaterial.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qnormaldiffusemapalphamaterialprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qnormaldiffusemapalphamaterialprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qnormaldiffusemapmaterial-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qnormaldiffusemapmaterial.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qnormaldiffusemapmaterialprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qnormaldiffusemapmaterialprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qnormaldiffusespecularmapmaterial-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qnormaldiffusespecularmapmaterial.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qnormaldiffusespecularmapmaterialprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qnormaldiffusespecularmapmaterialprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qobjectpicker-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qobjectpicker.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qobjectpickerdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qobjectpickerdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qparameter-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qparameter.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qparametermapping-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qparametermapping.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qparametermappingprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qparametermappingprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qparameterdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qparameterdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qparameterprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qparameterprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qpervertexcolormaterial-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qpervertexcolormaterial.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qpervertexcolormaterialprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qpervertexcolormaterialprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qphongalphamaterial-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qphongalphamaterial.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qphongalphamaterialprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qphongalphamaterialprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qphongmaterial-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qphongmaterial.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qphongmaterialprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qphongmaterialprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qpickevent-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qpickevent.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qplanegeometry-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qplanegeometry.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qplanegeometryprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qplanegeometryprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qplanemesh-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qplanemesh.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpickeventprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpickeventprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpickingsettings-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpickingsettings.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpickingsettingsprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpickingsettingsprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpicktriangleevent-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpicktriangleevent.html
%%QT_DOCDIR%%/qt3d/qt3drender-qpointlight-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qpointlight.html
%%QT_DOCDIR%%/qt3d/qt3drender-qpointlightprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qpointlightprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qpointsize-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qpointsize.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpointsizedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpointsizedata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpointsizeprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpointsizeprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qpolygonoffset-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qpolygonoffset.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpolygonoffsetdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpolygonoffsetdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpolygonoffsetprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qpolygonoffsetprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qray3d-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qray3d.html
%%QT_DOCDIR%%/qt3d/qt3drender-qraycastingservice-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qraycastingservice.html
%%QT_DOCDIR%%/qt3d/qt3drender-qraycastingserviceprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qraycastingserviceprivate-query-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qraycastingserviceprivate-query.html
%%QT_DOCDIR%%/qt3d/qt3drender-qraycastingserviceprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderaspect-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderaspect.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderaspectprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderaspectprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qrenderattachment-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qrenderattachment.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qrenderattachmentprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qrenderattachmentprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderpass-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderpass.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassfilter-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassfilter.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassfilterdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassfilterdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassfilterprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassfilterprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendersettings-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendersettings.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendersettingsdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendersettingsdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendersettingsprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendersettingsprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstatecreatedchange-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstatecreatedchange.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstatecreatedchangebase-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstatecreatedchangebase.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstateprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstateprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstateset-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstateset.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstatesetdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstatesetdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstatesetprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrenderstatesetprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendersurfaceselector-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendersurfaceselector.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendersurfaceselectordata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendersurfaceselectordata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendersurfaceselectorprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendersurfaceselectorprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrendertarget-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrendertarget.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetoutput-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetoutput.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetoutputdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetoutputdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetoutputprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetoutputprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetselector-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetselector.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetselectordata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetselectordata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetselectorprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetselectorprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsceneiofactory-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsceneiofactory.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsceneiohandler-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsceneiohandler.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsceneioplugin-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsceneioplugin.html
%%QT_DOCDIR%%/qt3d/qt3drender-qsceneloader-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qsceneloader.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qsceneparserfactory-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qsceneparserfactory.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qsceneparserplugin-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qsceneparserplugin.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsceneloaderdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsceneloaderdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsceneloaderprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsceneloaderprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qscissortest-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qscissortest.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qscissortestdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qscissortestdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qscissortestprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qscissortestprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qseamlesscubemap-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qseamlesscubemap.html
%%QT_DOCDIR%%/qt3d/qt3drender-qshaderdata-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qshaderdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qshaderdatadata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qshaderdataprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qshaderdataprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qshaderprogram-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qshaderprogram.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qshaderprogramdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qshaderprogramdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qshaderprogramprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qshaderprogramprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qskyboxentity-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qskyboxentity.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qskyboxentityprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qskyboxentityprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qsortcriterion-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qsortcriterion.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qsortcriterionprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qsortcriterionprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qsortmethod-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qsortmethod.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qsortmethodprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qsortmethodprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qspheregeometry-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qspheregeometry.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qspheregeometryprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qspheregeometryprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qspheremesh-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qspheremesh.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsortpolicy-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsortpolicy.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsortpolicydata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsortpolicydata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsortpolicyprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qsortpolicyprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qspotlight-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qspotlight.html
%%QT_DOCDIR%%/qt3d/qt3drender-qspotlightprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qspotlightprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qstateset-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qstateset.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qstatesetprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qstatesetprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qstencilmask-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qstencilmask.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qstencilop-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qstencilop.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qstencilopseparate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qstencilopseparate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstencilmaskdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstencilmaskdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstencilmaskprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstencilmaskprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperation-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperation.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationarguments-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationarguments.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationargumentsdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationargumentsdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationargumentsprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationargumentsprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltest-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltest.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestseparate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestseparate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestarguments-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestarguments.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestargumentsdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestargumentsdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestargumentsprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestargumentsprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestdata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtechnique-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtechnique.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtechniquedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtechniquedata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtechniquefilter-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtechniquefilter.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtechniquefilterdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtechniquefilterdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtechniquefilterprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtechniquefilterprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtechniqueprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtechniqueprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qteximagedata-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qteximagedata.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qteximagedataprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qteximagedataprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture1d-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture1d.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture1darray-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture1darray.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture2d-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture2d.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture2darray-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture2darray.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture2dmultisample-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture2dmultisample.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture2dmultisamplearray-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture2dmultisamplearray.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture3d-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexture3d.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexturebuffer-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexturebuffer.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexturecubemap-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexturecubemap.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexturecubemaparray-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexturecubemaparray.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qtexturedatafunctor-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qtexturedatafunctor.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtexturedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtexturedata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtexturefromsourcegenerator-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtexturefromsourcegenerator.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtexturegenerator-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtexturegenerator.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtextureimage-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtextureimage.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtextureimagedata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtextureimagedata.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtextureimagedatagenerator-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtextureimagedatagenerator.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtextureimagedataprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtextureimagedataprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtextureimageprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtextureimageprivate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtextureloader-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtextureloader.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtextureloaderprivate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qtextureloaderprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexturerectangle-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexturerectangle.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexturewrapmode-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qtexturewrapmode.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qtorusgeometry-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qtorusgeometry.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qtorusgeometryprivate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qtorusgeometryprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qtorusmesh-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qtorusmesh.html
%%QT_DOCDIR%%/qt3d/qt3drender-qurlhelper-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qurlhelper.html
%%QT_DOCDIR%%/qt3d/qt3drender-qviewport-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qviewport.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qviewportdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-qviewportdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-qviewportprivate-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-qviewportprivate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qwindow.html
-%%QT_DOCDIR%%/qt3d/qt3drender-qwindowprivate.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-abstractrenderer-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-abstractrenderer.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-alphacoverage-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-alphacoverage.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-alphafunc-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-alphafunc.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-annotation-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-annotation.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-attachment-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-attachment.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-attachmentmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-attachmentmanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-attachmentpack-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-attachmentpack.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-attribute-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-attribute.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-attributemanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-attributemanager.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-backendnode-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-backendnode.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-blendequation-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-blendequation.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-blendstate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-blendstate.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-blendstateseparate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-blendstateseparate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-blendequationarguments-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-blendequationarguments.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-blocktoubo-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-blocktoubo.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-boundingvolumedebug-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-boundingvolumedebug.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-boundingvolumedebugmanager-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-boundingvolumedebugmanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-buffer-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-buffer.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-bufferfunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-bufferfunctor.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-buffermanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-buffermanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-calcgeometrytrianglevolumes-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-calcgeometrytrianglevolumes.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-calculateboundingvolumejob-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-calculateboundingvolumejob.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-cameralens-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-cameralens.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-cameramanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-cameramanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-cameraselector-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-cameraselector.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-clearbuffer-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-clearbuffer.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-clearbufferinfo-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-clearbufferinfo.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-clearbuffers-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-clearbuffers.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-clipplane-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-clipplane.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-colormask-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-colormask.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-criterionmanager-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-criterionmanager.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-computecommand-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-computecommand.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-computecommandmanager-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-computecommandmanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-cullface-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-cullface.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-depthmask-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-depthmask.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-depthtest-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-depthtest.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-dispatchcompute-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-dispatchcompute.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-dithering-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-dithering.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-effect-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-effect.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-effectmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-effectmanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-entity-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-entity.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-entitymanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-entitymanager.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-expandboundingvolumejob-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-expandboundingvolumejob.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-filterentitybycomponentjob-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-filterentitybycomponentjob.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-filterkey-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-filterkey.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-filterkeymanager-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-filterkeymanager.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-filterlayerentityjob-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-filterlayerentityjob.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-framecleanupjob-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-framecleanupjob.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-framegraphcomponentfunctor-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-framegraphcomponentfunctor.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-framegraphmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-framegraphmanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-framegraphnode-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-framegraphnode.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-framegraphnodefunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-framegraphnodefunctor.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-framegraphsubtreeselector-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-framegraphsubtreeselector.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-framegraphvisitor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-framegraphvisitor.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-framepreparationjob-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-framepreparationjob.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-frontface-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-frontface.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-frustumculling-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-frustumculling.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-genericstate1-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-genericstate1.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-genericstate2-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-genericstate2.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-genericstate3-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-genericstate3.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-genericstate4-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-genericstate4.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-genericstate6-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-genericstate6.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-frustumcullingjob-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-frustumcullingjob.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-genericlambdajob-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-genericlambdajob.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-genericstate-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-genericstate.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-geometry-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-geometry.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-geometrymanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-geometrymanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-geometryrenderer-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-geometryrenderer.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-geometryrendererfunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-geometryrendererfunctor.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-geometryrenderermanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-geometryrenderermanager.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-glbuffer-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-glbuffer.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-glbuffermanager-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-glbuffermanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicscontext-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicscontext.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelperes2-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelperes2.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelperes3-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelperes3.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelpergl2-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelpergl2.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelpergl3-3-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelpergl3-3.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelpergl3-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelpergl3.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelpergl4-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelpergl4.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelperinterface-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-graphicshelperinterface.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-jobtypes.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-layer-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-layer.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-layerfilternode-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-layerfilternode.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-layermanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-layermanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-light-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-light.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-lighting-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-lighting.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-lightgatherer-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-lightgatherer.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-lightmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-lightmanager.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-lightsource-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-lightsource.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-loadbufferjob-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-loadbufferjob.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-loadgeometryjob-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-loadgeometryjob.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-loadscenejob-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-loadscenejob.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-loadtexturedatajob-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-loadtexturedatajob.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-material-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-material.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-materialmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-materialmanager.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-materialparametergathererjob-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-materialparametergathererjob.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-matrixmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-matrixmanager.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-msaaenabled-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-msaaenabled.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-nodefunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-nodefunctor.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-nodemanagers-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-nodemanagers.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-nodepthmask-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-nodepthmask.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-nodraw-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-nodraw.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-objectpicker-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-objectpicker.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-objectpickermanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-objectpickermanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-openglvertexarrayobject-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-openglvertexarrayobject.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-parameter-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-parameter.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-parameterinfo-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-parameterinfo.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-parametermanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-parametermanager.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-parametermapping-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-parametermapping.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-parameterpack-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-parameterpack.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-pickboundingvolumejob-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-pickboundingvolumejob.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-pickeventfilter-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-pickeventfilter.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-plane-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-plane.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-platformsurfacefilter-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-platformsurfacefilter.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-pointsize-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-pointsize.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-polygonoffset-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-polygonoffset.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-quniformpack-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-quniformpack-namedtexture-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-quniformpack-namedtexture.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-quniformpack.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-quniformvalue-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-quniformvalue-textureidunit-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-quniformvalue-textureidunit.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-quniformvalue.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-renderattachment-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-renderattachment.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-rendercommand-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-rendercommand-sortingtype-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-rendercommand-sortingtype.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-rendercommand.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderconfiguration-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderconfiguration.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderentityfunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderentityfunctor.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderer-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderer-viewsubmissionresultdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderer-viewsubmissionresultdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderer.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderlightfunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderlightfunctor.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderpass-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderpass.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderpassfilter-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderpassfilter.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderpassmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderpassmanager.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderpassparameterdata-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderpassparameterdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderqueue-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderqueue.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderscenefunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderscenefunctor.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-rendersettings-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-rendersettings.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-rendersettingsfunctor-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-rendersettingsfunctor.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-rendershaderdatafunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-rendershaderdatafunctor.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-renderstate-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-renderstate.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderstateimpl-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderstateimpl.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderstatemanager-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderstatemanager.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderstatenode-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderstatenode.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderstateset-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderstateset.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-rendersurfaceselector-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-rendersurfaceselector.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-rendertarget-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-rendertarget.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-rendertargetmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-rendertargetmanager.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-rendertargetoutput-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-rendertargetoutput.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-rendertargetselector-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-rendertargetselector.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderthread-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderthread.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderview-innerdata-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderview-innerdata.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-renderview-lightsource-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-renderview-lightsource.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderview-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-renderview.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-renderviewjob-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-renderviewjob.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderviewbuilderjob-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderviewbuilderjob.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderviewinitializerjob-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-renderviewinitializerjob.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-scene-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-scene.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-scenemanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-scenemanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-scissortest-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-scissortest.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-seamlesscubemap-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-seamlesscubemap.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-shader-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-shader.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderattribute-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderattribute.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-shadercache-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-shadercache.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderdata-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderdata.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderdatamanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderdatamanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-shadermanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-shadermanager.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderuniform-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderuniform.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderuniformblock-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderuniformblock.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-sortcriterion-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-sortcriterion.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-sortcriterionmanager-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-sortcriterionmanager.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-sortmethod-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-sortmethod.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderparameterpack-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderparameterpack-namedtexture-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderparameterpack-namedtexture.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-shaderparameterpack.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-sortpolicy-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-sortpolicy.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-sphere-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-sphere.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-statesetnode-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-statesetnode.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-statevariant-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-statevariant-u-data-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-statevariant-u-data.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-statevariant.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-stencilmask-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-stencilmask.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-stencilop-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-stencilop.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-stenciltest-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-stenciltest.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-stringtoint-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-stringtoint.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-surfacelocker-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-surfacelocker.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-technique-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-technique.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-techniquefilter-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-techniquefilter.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-techniquemanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-techniquemanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-texture-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-texture.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-texturedatamanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-texturedatamanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-texturefunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-texturefunctor.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-textureimage-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-textureimage.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-textureimagefunctor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-textureimagefunctor.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-textureimagemanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-textureimagemanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-texturemanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-texturemanager.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-textureuniform-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-textureuniform.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-transform-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-transform.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-transformmanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-transformmanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-triangleboundingvolume-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-triangleboundingvolume.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-trianglesextractor-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-trianglesextractor.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-ubomanager-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-ubomanager.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-trianglesvisitor-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-trianglesvisitor.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-uniformblockvaluebuilder-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-uniformblockvaluebuilder.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-uniformbuffer-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-uniformbuffer.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-updateboundingvolumejob-members.html
-%%QT_DOCDIR%%/qt3d/qt3drender-render-updateboundingvolumejob.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-updateworldboundingvolumejob-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-render-updateworldboundingvolumejob.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-updateworldtransformjob-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-updateworldtransformjob.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-vaomanager-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-vaomanager.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-viewportnode-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-viewportnode.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-vsyncframeadvanceservice-members.html
%%QT_DOCDIR%%/qt3d/qt3drender-render-vsyncframeadvanceservice.html
%%QT_DOCDIR%%/qt3d/qt3drender-render.html
+%%QT_DOCDIR%%/qt3d/qt3drender-textureloadinghelper-members.html
+%%QT_DOCDIR%%/qt3d/qt3drender-textureloadinghelper.html
%%QT_DOCDIR%%/qt3d/qt3drender.html
%%QT_DOCDIR%%/qt3d/style/offline-simple.css
%%QT_DOCDIR%%/qt3d/style/offline.css
%%QT_DOCDIR%%/qtandroidextras.qch
%%QT_DOCDIR%%/qtandroidextras/examples-manifest.xml
%%QT_DOCDIR%%/qtandroidextras/examples-qtandroidextras.html
%%QT_DOCDIR%%/qtandroidextras/images/arrow_bc.png
%%QT_DOCDIR%%/qtandroidextras/images/bgrContent.png
%%QT_DOCDIR%%/qtandroidextras/images/btn_next.png
%%QT_DOCDIR%%/qtandroidextras/images/btn_prev.png
%%QT_DOCDIR%%/qtandroidextras/images/bullet_dn.png
%%QT_DOCDIR%%/qtandroidextras/images/bullet_sq.png
%%QT_DOCDIR%%/qtandroidextras/images/home.png
%%QT_DOCDIR%%/qtandroidextras/images/ico_note.png
%%QT_DOCDIR%%/qtandroidextras/images/ico_note_attention.png
%%QT_DOCDIR%%/qtandroidextras/images/ico_out.png
%%QT_DOCDIR%%/qtandroidextras/images/logo.png
%%QT_DOCDIR%%/qtandroidextras/images/notification.png
%%QT_DOCDIR%%/qtandroidextras/images/used-in-examples/notification/images/happy.png
%%QT_DOCDIR%%/qtandroidextras/images/used-in-examples/notification/images/sad.png
%%QT_DOCDIR%%/qtandroidextras/qandroidactivityresultreceiver-members.html
%%QT_DOCDIR%%/qtandroidextras/qandroidactivityresultreceiver.html
%%QT_DOCDIR%%/qtandroidextras/qandroidjnienvironment-members.html
%%QT_DOCDIR%%/qtandroidextras/qandroidjnienvironment.html
%%QT_DOCDIR%%/qtandroidextras/qandroidjniobject-members.html
%%QT_DOCDIR%%/qtandroidextras/qandroidjniobject.html
%%QT_DOCDIR%%/qtandroidextras/qtandroid.html
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras-index.html
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras-module.html
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-android-sources-androidmanifest-xml.html
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-android-sources-src-org-qtproject-example-notification-notificationclient-java.html
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-example.html
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-main-cpp.html
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-main-qrc.html
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-notification-pro.html
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-notificationclient-cpp.html
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-notificationclient-h.html
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-qml-main-qml.html
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras.index
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras.qhp
%%QT_DOCDIR%%/qtandroidextras/qtandroidextras.qhp.sha1
%%QT_DOCDIR%%/qtandroidextras/style/offline-simple.css
%%QT_DOCDIR%%/qtandroidextras/style/offline.css
%%QT_DOCDIR%%/qtassistant.qch
%%QT_DOCDIR%%/qtassistant/assistant-custom-help-viewer.html
%%QT_DOCDIR%%/qtassistant/assistant-details.html
%%QT_DOCDIR%%/qtassistant/assistant-quick-guide.html
%%QT_DOCDIR%%/qtassistant/examples-manifest.xml
%%QT_DOCDIR%%/qtassistant/examples-qtassistant.html
%%QT_DOCDIR%%/qtassistant/images/arrow_bc.png
%%QT_DOCDIR%%/qtassistant/images/assistant-assistant.png
%%QT_DOCDIR%%/qtassistant/images/assistant-bookmarks.png
%%QT_DOCDIR%%/qtassistant/images/assistant-dockwidgets.png
%%QT_DOCDIR%%/qtassistant/images/assistant-examples.png
%%QT_DOCDIR%%/qtassistant/images/assistant-index.png
%%QT_DOCDIR%%/qtassistant/images/assistant-preferences-documentation.png
%%QT_DOCDIR%%/qtassistant/images/assistant-preferences-filters.png
%%QT_DOCDIR%%/qtassistant/images/assistant-preferences-fonts.png
%%QT_DOCDIR%%/qtassistant/images/assistant-preferences-options.png
%%QT_DOCDIR%%/qtassistant/images/assistant-search.png
%%QT_DOCDIR%%/qtassistant/images/bgrContent.png
%%QT_DOCDIR%%/qtassistant/images/btn_next.png
%%QT_DOCDIR%%/qtassistant/images/btn_prev.png
%%QT_DOCDIR%%/qtassistant/images/bullet_dn.png
%%QT_DOCDIR%%/qtassistant/images/bullet_sq.png
%%QT_DOCDIR%%/qtassistant/images/home.png
%%QT_DOCDIR%%/qtassistant/images/ico_note.png
%%QT_DOCDIR%%/qtassistant/images/ico_note_attention.png
%%QT_DOCDIR%%/qtassistant/images/ico_out.png
%%QT_DOCDIR%%/qtassistant/images/logo.png
%%QT_DOCDIR%%/qtassistant/images/simpletextviewer-example.png
%%QT_DOCDIR%%/qtassistant/images/simpletextviewer-findfiledialog.png
%%QT_DOCDIR%%/qtassistant/images/simpletextviewer-mainwindow.png
%%QT_DOCDIR%%/qtassistant/qtassistant-index.html
%%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-example.html
%%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-main-cpp.html
%%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-remotecontrol-cpp.html
%%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-remotecontrol-h.html
%%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-remotecontrol-pro.html
%%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-remotecontrol-qrc.html
%%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-remotecontrol-ui.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-assistant-cpp.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-assistant-h.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-documentation-simpletextviewer-qhcp.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-documentation-simpletextviewer-qhp.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-example.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-findfiledialog-cpp.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-findfiledialog-h.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-main-cpp.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-mainwindow-cpp.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-mainwindow-h.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-simpletextviewer-pro.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-textedit-cpp.html
%%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-textedit-h.html
%%QT_DOCDIR%%/qtassistant/qtassistant.index
%%QT_DOCDIR%%/qtassistant/qtassistant.qhp
%%QT_DOCDIR%%/qtassistant/qtassistant.qhp.sha1
%%QT_DOCDIR%%/qtassistant/style/offline-simple.css
%%QT_DOCDIR%%/qtassistant/style/offline.css
%%QT_DOCDIR%%/qtbluetooth.qch
%%QT_DOCDIR%%/qtbluetooth/bluetooth-examples.html
%%QT_DOCDIR%%/qtbluetooth/examples-manifest.xml
%%QT_DOCDIR%%/qtbluetooth/images/arrow_bc.png
%%QT_DOCDIR%%/qtbluetooth/images/bgrContent.png
%%QT_DOCDIR%%/qtbluetooth/images/btchat-example.png
%%QT_DOCDIR%%/qtbluetooth/images/btfiletransfer-example.png
%%QT_DOCDIR%%/qtbluetooth/images/btn_next.png
%%QT_DOCDIR%%/qtbluetooth/images/btn_prev.png
%%QT_DOCDIR%%/qtbluetooth/images/btscanner-example.png
%%QT_DOCDIR%%/qtbluetooth/images/bullet_dn.png
%%QT_DOCDIR%%/qtbluetooth/images/bullet_sq.png
%%QT_DOCDIR%%/qtbluetooth/images/chat-view.png
%%QT_DOCDIR%%/qtbluetooth/images/devicescan.png
%%QT_DOCDIR%%/qtbluetooth/images/heartratefound.png
%%QT_DOCDIR%%/qtbluetooth/images/heartratemonitor.png
%%QT_DOCDIR%%/qtbluetooth/images/heartrateresults.png
%%QT_DOCDIR%%/qtbluetooth/images/home.png
%%QT_DOCDIR%%/qtbluetooth/images/ico_note.png
%%QT_DOCDIR%%/qtbluetooth/images/ico_note_attention.png
%%QT_DOCDIR%%/qtbluetooth/images/ico_out.png
%%QT_DOCDIR%%/qtbluetooth/images/intro.png
%%QT_DOCDIR%%/qtbluetooth/images/intro1.png
%%QT_DOCDIR%%/qtbluetooth/images/logo.png
%%QT_DOCDIR%%/qtbluetooth/images/lowenergyscanner-chars.png
%%QT_DOCDIR%%/qtbluetooth/images/lowenergyscanner-devices.png
%%QT_DOCDIR%%/qtbluetooth/images/lowenergyscanner-services.png
%%QT_DOCDIR%%/qtbluetooth/images/opp-example-1.png
%%QT_DOCDIR%%/qtbluetooth/images/opp-example-2.png
%%QT_DOCDIR%%/qtbluetooth/images/opp-example-3.png
%%QT_DOCDIR%%/qtbluetooth/images/peripheral-structure.png
%%QT_DOCDIR%%/qtbluetooth/images/servicescan.png
%%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/chat/images/clear.png
%%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/chat/images/default.png
%%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/chat/images/lineedit-bg.png
%%QT_DOCDIR%%/qtbluetooth/qbluetooth.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothaddress-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothaddress.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothdevicediscoveryagent-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothdevicediscoveryagent.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothdeviceinfo-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothdeviceinfo.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothhostinfo-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothhostinfo.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothlocaldevice-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothlocaldevice.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothserver-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothserver.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothservicediscoveryagent-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothservicediscoveryagent.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothserviceinfo-alternative-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothserviceinfo-alternative.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothserviceinfo-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothserviceinfo-sequence-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothserviceinfo-sequence.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothserviceinfo.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothsocket-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothsocket.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothtransfermanager-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothtransfermanager.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothtransferreply-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothtransferreply.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothtransferrequest-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothtransferrequest.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothuuid-members.html
%%QT_DOCDIR%%/qtbluetooth/qbluetoothuuid.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergyadvertisingdata-members.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergyadvertisingdata.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergyadvertisingparameters-addressinfo-members.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergyadvertisingparameters-addressinfo.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergyadvertisingparameters-members.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergyadvertisingparameters.html
%%QT_DOCDIR%%/qtbluetooth/qlowenergycharacteristic-members.html
%%QT_DOCDIR%%/qtbluetooth/qlowenergycharacteristic.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergycharacteristicdata-members.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergycharacteristicdata.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergyconnectionparameters-members.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergyconnectionparameters.html
%%QT_DOCDIR%%/qtbluetooth/qlowenergycontroller-members.html
%%QT_DOCDIR%%/qtbluetooth/qlowenergycontroller-obsolete.html
%%QT_DOCDIR%%/qtbluetooth/qlowenergycontroller.html
%%QT_DOCDIR%%/qtbluetooth/qlowenergydescriptor-members.html
%%QT_DOCDIR%%/qtbluetooth/qlowenergydescriptor.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergydescriptordata-members.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergydescriptordata.html
%%QT_DOCDIR%%/qtbluetooth/qlowenergyservice-members.html
%%QT_DOCDIR%%/qtbluetooth/qlowenergyservice.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergyservicedata-members.html
+%%QT_DOCDIR%%/qtbluetooth/qlowenergyservicedata.html
%%QT_DOCDIR%%/qtbluetooth/qml-qtbluetooth-bluetoothdiscoverymodel-members.html
%%QT_DOCDIR%%/qtbluetooth/qml-qtbluetooth-bluetoothdiscoverymodel.html
%%QT_DOCDIR%%/qtbluetooth/qml-qtbluetooth-bluetoothservice-members.html
%%QT_DOCDIR%%/qtbluetooth/qml-qtbluetooth-bluetoothservice.html
%%QT_DOCDIR%%/qtbluetooth/qml-qtbluetooth-bluetoothsocket-members.html
%%QT_DOCDIR%%/qtbluetooth/qml-qtbluetooth-bluetoothsocket.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-btchat-pro.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chat-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chat-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chat-ui.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chatclient-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chatclient-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chatserver-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chatserver-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-example.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-main-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-remoteselector-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-remoteselector-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-remoteselector-ui.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-btfiletransfer-pro.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-btfiletransfer-qrc.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-example.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-main-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-pindisplay-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-pindisplay-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-pindisplay-ui.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-progress-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-progress-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-progress-ui.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-remoteselector-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-remoteselector-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-remoteselector-ui.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-btscanner-pro.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-device-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-device-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-device-ui.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-example.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-main-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-service-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-service-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-service-ui.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-button-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-chat-pro.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-chat-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-chat-qrc.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-example.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-inputbox-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-qmlchat-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-search-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-assets-button-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-assets-dialog-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-assets-draw-js.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-assets-home-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-assets-main-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-assets-monitor-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-assets-point-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-assets-results-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-deviceinfo-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-deviceinfo-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-example.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-heartlistener-pro.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-heartrate-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-heartrate-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-main-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartlistener-resources-qrc.html
+%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-server-example.html
+%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-server-heartrate-server-pro.html
+%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-server-main-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-index.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-le-overview.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-characteristics-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-dialog-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-header-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-label-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-main-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-menu-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-services-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-characteristicinfo-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-characteristicinfo-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-device-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-device-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-deviceinfo-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-deviceinfo-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-example.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-lowenergyscanner-pro.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-main-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-resources-qrc.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-serviceinfo-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-serviceinfo-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-module.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-overview.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-bttransfer-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-button-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-devicediscovery-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-example.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-filesending-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-filetransfer-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-filetransfer-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-main-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-pictureselector-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-picturetransfer-pro.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-qmltransfer-qrc.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-assets-board-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-assets-dialog-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-assets-main-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-assets-menu-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-example.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-main-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-pingpong-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-pingpong-h.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-pingpong-pro.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-resource-qrc.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-qmlmodule.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-scanner-button-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-scanner-example.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-scanner-qmlscanner-cpp.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-scanner-scanner-pro.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-scanner-scanner-qml.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth-scanner-scanner-qrc.html
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth.index
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth.qhp
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth.qhp.sha1
%%QT_DOCDIR%%/qtbluetooth/qtbluetooth.tags
%%QT_DOCDIR%%/qtbluetooth/style/offline-simple.css
%%QT_DOCDIR%%/qtbluetooth/style/offline.css
%%QT_DOCDIR%%/qtcanvas3d.qch
%%QT_DOCDIR%%/qtcanvas3d/examples-manifest.xml
%%QT_DOCDIR%%/qtcanvas3d/images/arrow_bc.png
%%QT_DOCDIR%%/qtcanvas3d/images/bgrContent.png
%%QT_DOCDIR%%/qtcanvas3d/images/btn_next.png
%%QT_DOCDIR%%/qtcanvas3d/images/btn_prev.png
%%QT_DOCDIR%%/qtcanvas3d/images/bullet_dn.png
%%QT_DOCDIR%%/qtcanvas3d/images/bullet_sq.png
%%QT_DOCDIR%%/qtcanvas3d/images/cellphone-example.png
%%QT_DOCDIR%%/qtcanvas3d/images/framebuffer-example.png
%%QT_DOCDIR%%/qtcanvas3d/images/home.png
%%QT_DOCDIR%%/qtcanvas3d/images/ico_note.png
%%QT_DOCDIR%%/qtcanvas3d/images/ico_note_attention.png
%%QT_DOCDIR%%/qtcanvas3d/images/ico_out.png
%%QT_DOCDIR%%/qtcanvas3d/images/interaction-example.png
%%QT_DOCDIR%%/qtcanvas3d/images/jsonmodels-example.png
%%QT_DOCDIR%%/qtcanvas3d/images/logo.png
%%QT_DOCDIR%%/qtcanvas3d/images/oneqt-example.png
%%QT_DOCDIR%%/qtcanvas3d/images/planets-example.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/quickitemtexture-example.png
%%QT_DOCDIR%%/qtcanvas3d/images/textureandlight-example.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/calendar.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/camera.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/clock.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/contacts.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/gallery.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/games.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/lock.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/mail.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/maps.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/menu_background.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/music.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/plutomap1k.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/qtlogo_with_alpha.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/settings.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/todo.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/videos.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/earth.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/earthbump1k.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/earthcloudmapcolortrans.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/earthmap1k.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/earthspec1k.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/galaxy_starfield.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/jupiter.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/jupitermap.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/mars.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/marsbump1k.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/marsmap1k.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/mercury.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/mercurybump.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/mercurymap.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/moonbump1k.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/moonmap1k.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/neptune.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/neptunemap.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/plutobump1k.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/plutomap1k.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/saturn.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/saturnmap.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/saturnringcolortrans.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/sun.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/sunmap.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/uranus.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/uranusmap.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/uranusringcolortrans.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/venus.png
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/venusbump.jpg
%%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/venusmap.jpg
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3d-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3d.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dabstractobject-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dabstractobject.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dactiveinfo-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dactiveinfo.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dbuffer-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dbuffer.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dcontextattributes-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dcontextattributes.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dframebuffer-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dframebuffer.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dprogram-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dprogram.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3drenderbuffer-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3drenderbuffer.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dshader-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dshader.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dshaderprecisionformat-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dshaderprecisionformat.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dtexture-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dtexture.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dtextureprovider-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dtextureprovider.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3duniformlocation-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3duniformlocation.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-context3d-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-context3d.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-glstatedumpext-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-glstatedumpext.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-textureimage-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-textureimage.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-textureimagefactory-members.html
%%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-textureimagefactory.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-conformance-issues-html.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-examples.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-framebuffer-example.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-framebuffer-framebuffer-pro.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-framebuffer-framebuffer-qrc.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-framebuffer-main-cpp.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-framebuffer-qml-framebuffer-framebuffer-js.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-framebuffer-qml-framebuffer-main-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-getting-started.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-index.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-interaction-example.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-interaction-interaction-pro.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-interaction-interaction-qrc.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-interaction-main-cpp.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-interaction-qml-interaction-interaction-js.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-interaction-qml-interaction-main-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-jsonmodels-example.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-jsonmodels-jsonmodels-pro.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-jsonmodels-main-cpp.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-jsonmodels-qml-jsonmodels-jsonmodels-js.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-jsonmodels-qml-jsonmodels-jsonmodels-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-jsonmodels-qml-qrc.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-logging.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-qmlmodule.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-quickitemtexture-example.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-quickitemtexture-main-cpp.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-quickitemtexture-qml-quickitemtexture-main-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-quickitemtexture-qml-quickitemtexture-quickitemtexture-js.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-quickitemtexture-quickitemtexture-pro.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-quickitemtexture-quickitemtexture-qrc.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-textureandlight-example.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-textureandlight-main-cpp.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-textureandlight-qml-textureandlight-main-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-textureandlight-qml-textureandlight-textureandlight-js.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-textureandlight-textureandlight-pro.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-textureandlight-textureandlight-qrc.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-cellphone-pro.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-cellphone-qrc.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-example.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-main-cpp.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-qml-cellphone-cellphone-js.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-qml-cellphone-cellphoneapp-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-qml-cellphone-cellphonecanvas-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-qml-cellphone-colorselector-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-qml-cellphone-fpsdisplay-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-qml-cellphone-main-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-example.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-imagecube-js.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-imagecube-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-infosheet-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-main-cpp.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-navibutton-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-oneqt-pro.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-oneqt-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-oneqt-qrc.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-swipearea-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-example.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-fpsdisplay-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-infosheet-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-main-cpp.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-planetbutton-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-planets-js.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-planets-pro.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-planets-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-planets-qrc.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-styledslider-qml.html
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d.index
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d.qhp
%%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d.qhp.sha1
%%QT_DOCDIR%%/qtcanvas3d/style/offline-simple.css
%%QT_DOCDIR%%/qtcanvas3d/style/offline.css
+%%QT_DOCDIR%%/qtcharts.qch
+%%QT_DOCDIR%%/qtcharts/charts-examples.html
+%%QT_DOCDIR%%/qtcharts/examples-manifest.xml
+%%QT_DOCDIR%%/qtcharts/images/api_category_axis.png
+%%QT_DOCDIR%%/qtcharts/images/api_datatime_axis.png
+%%QT_DOCDIR%%/qtcharts/images/arrow_bc.png
+%%QT_DOCDIR%%/qtcharts/images/bgrContent.png
+%%QT_DOCDIR%%/qtcharts/images/btn_next.png
+%%QT_DOCDIR%%/qtcharts/images/btn_prev.png
+%%QT_DOCDIR%%/qtcharts/images/bullet_dn.png
+%%QT_DOCDIR%%/qtcharts/images/bullet_sq.png
+%%QT_DOCDIR%%/qtcharts/images/examples_areachart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_audio.png
+%%QT_DOCDIR%%/qtcharts/images/examples_barchart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_barmodelmapper.png
+%%QT_DOCDIR%%/qtcharts/images/examples_boxplotchart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_callout.png
+%%QT_DOCDIR%%/qtcharts/images/examples_chartthemes_blue_cerulean.png
+%%QT_DOCDIR%%/qtcharts/images/examples_chartthemes_brown_sand.png
+%%QT_DOCDIR%%/qtcharts/images/examples_chartthemes_light.png
+%%QT_DOCDIR%%/qtcharts/images/examples_customchart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_datetimeaxis.png
+%%QT_DOCDIR%%/qtcharts/images/examples_donutbreakdown.png
+%%QT_DOCDIR%%/qtcharts/images/examples_donutchart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_dynamicspline1.png
+%%QT_DOCDIR%%/qtcharts/images/examples_dynamicspline2.png
+%%QT_DOCDIR%%/qtcharts/images/examples_horizontalbarchart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_horizontalpercentbarchart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_horizontalstackedbarchart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_legend_detach.png
+%%QT_DOCDIR%%/qtcharts/images/examples_legend_detach2.png
+%%QT_DOCDIR%%/qtcharts/images/examples_legendmarkers.png
+%%QT_DOCDIR%%/qtcharts/images/examples_lineandbar.png
+%%QT_DOCDIR%%/qtcharts/images/examples_linechart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_logvalueaxis.png
+%%QT_DOCDIR%%/qtcharts/images/examples_modeldata.png
+%%QT_DOCDIR%%/qtcharts/images/examples_multiaxis.png
+%%QT_DOCDIR%%/qtcharts/images/examples_nesteddonuts.png
+%%QT_DOCDIR%%/qtcharts/images/examples_openglseries.png
+%%QT_DOCDIR%%/qtcharts/images/examples_percentbarchart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_percentbarchart_legend.png
+%%QT_DOCDIR%%/qtcharts/images/examples_piechart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_piechartdrill1.png
+%%QT_DOCDIR%%/qtcharts/images/examples_piechartdrill2.png
+%%QT_DOCDIR%%/qtcharts/images/examples_polarchart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlaxes1.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlaxes2.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlaxes3.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlboxplot.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlchart1.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlchart10.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlchart11.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlchart12.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlchart2.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlchart3.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlchart4.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlchart5.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlchart6.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlchart7.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlchart8.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlchart9.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlcustomizations.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlcustomlegend1.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlcustomlegend2.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlcustomlegend3.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlf1legends.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmloscilloscope.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlpiechart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlpolarchart1.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlpolarchart2.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlpolarchart3.png
+%%QT_DOCDIR%%/qtcharts/images/examples_qmlweather.png
+%%QT_DOCDIR%%/qtcharts/images/examples_scatterchart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_scatterinteractions.png
+%%QT_DOCDIR%%/qtcharts/images/examples_splinechart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_stackedbarchart.png
+%%QT_DOCDIR%%/qtcharts/images/examples_stackedbarchartdrilldown1.png
+%%QT_DOCDIR%%/qtcharts/images/examples_stackedbarchartdrilldown2.png
+%%QT_DOCDIR%%/qtcharts/images/examples_temperaturerecords.png
+%%QT_DOCDIR%%/qtcharts/images/examples_zoomlinechart1.png
+%%QT_DOCDIR%%/qtcharts/images/examples_zoomlinechart2.png
+%%QT_DOCDIR%%/qtcharts/images/home.png
+%%QT_DOCDIR%%/qtcharts/images/ico_note.png
+%%QT_DOCDIR%%/qtcharts/images/ico_note_attention.png
+%%QT_DOCDIR%%/qtcharts/images/ico_out.png
+%%QT_DOCDIR%%/qtcharts/images/logo.png
+%%QT_DOCDIR%%/qtcharts/images/piechart_customization.png
+%%QT_DOCDIR%%/qtcharts/qabstractaxis-members.html
+%%QT_DOCDIR%%/qtcharts/qabstractaxis.html
+%%QT_DOCDIR%%/qtcharts/qabstractbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qabstractbarseries.html
+%%QT_DOCDIR%%/qtcharts/qabstractseries-members.html
+%%QT_DOCDIR%%/qtcharts/qabstractseries.html
+%%QT_DOCDIR%%/qtcharts/qarealegendmarker-members.html
+%%QT_DOCDIR%%/qtcharts/qarealegendmarker.html
+%%QT_DOCDIR%%/qtcharts/qareaseries-members.html
+%%QT_DOCDIR%%/qtcharts/qareaseries.html
+%%QT_DOCDIR%%/qtcharts/qbarcategoryaxis-members.html
+%%QT_DOCDIR%%/qtcharts/qbarcategoryaxis.html
+%%QT_DOCDIR%%/qtcharts/qbarlegendmarker-members.html
+%%QT_DOCDIR%%/qtcharts/qbarlegendmarker.html
+%%QT_DOCDIR%%/qtcharts/qbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qbarseries.html
+%%QT_DOCDIR%%/qtcharts/qbarset-members.html
+%%QT_DOCDIR%%/qtcharts/qbarset.html
+%%QT_DOCDIR%%/qtcharts/qboxplotlegendmarker-members.html
+%%QT_DOCDIR%%/qtcharts/qboxplotlegendmarker.html
+%%QT_DOCDIR%%/qtcharts/qboxplotseries-members.html
+%%QT_DOCDIR%%/qtcharts/qboxplotseries.html
+%%QT_DOCDIR%%/qtcharts/qboxset-members.html
+%%QT_DOCDIR%%/qtcharts/qboxset.html
+%%QT_DOCDIR%%/qtcharts/qcategoryaxis-members.html
+%%QT_DOCDIR%%/qtcharts/qcategoryaxis.html
+%%QT_DOCDIR%%/qtcharts/qchart-members.html
+%%QT_DOCDIR%%/qtcharts/qchart.html
+%%QT_DOCDIR%%/qtcharts/qchartview-members.html
+%%QT_DOCDIR%%/qtcharts/qchartview.html
+%%QT_DOCDIR%%/qtcharts/qdatetimeaxis-members.html
+%%QT_DOCDIR%%/qtcharts/qdatetimeaxis.html
+%%QT_DOCDIR%%/qtcharts/qhbarmodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qhbarmodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qhorizontalbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qhorizontalbarseries.html
+%%QT_DOCDIR%%/qtcharts/qhorizontalpercentbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qhorizontalpercentbarseries.html
+%%QT_DOCDIR%%/qtcharts/qhorizontalstackedbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qhorizontalstackedbarseries.html
+%%QT_DOCDIR%%/qtcharts/qhpiemodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qhpiemodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qhxymodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qhxymodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qlegend-members.html
+%%QT_DOCDIR%%/qtcharts/qlegend.html
+%%QT_DOCDIR%%/qtcharts/qlegendmarker-members.html
+%%QT_DOCDIR%%/qtcharts/qlegendmarker.html
+%%QT_DOCDIR%%/qtcharts/qlineseries-members.html
+%%QT_DOCDIR%%/qtcharts/qlineseries.html
+%%QT_DOCDIR%%/qtcharts/qlogvalueaxis-members.html
+%%QT_DOCDIR%%/qtcharts/qlogvalueaxis.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-abstractaxis-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-abstractaxis.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-abstractbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-abstractbarseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-abstractseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-abstractseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-areaseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-areaseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-barcategoryaxis-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-barcategoryaxis.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-barseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-barseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-barset-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-barset.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-boxplotseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-boxplotseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-boxset-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-boxset.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-categoryaxis-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-categoryaxis.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-categoryrange-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-categoryrange.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-chartview-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-chartview.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-datetimeaxis-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-datetimeaxis.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-hbarmodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-hbarmodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-horizontalbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-horizontalbarseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-horizontalpercentbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-horizontalpercentbarseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-horizontalstackedbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-horizontalstackedbarseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-hpiemodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-hpiemodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-hxymodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-hxymodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-legend-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-legend.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-lineseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-lineseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-logvalueaxis-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-logvalueaxis.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-margins-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-margins.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-percentbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-percentbarseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-pieseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-pieseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-pieslice-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-pieslice.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-polarchartview-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-polarchartview.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-scatterseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-scatterseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-splineseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-splineseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-stackedbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-stackedbarseries.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-valueaxis-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-valueaxis.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-vbarmodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-vbarmodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-vboxplotmodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-vboxplotmodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-vpiemodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-vpiemodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-vxymodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-vxymodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-xypoint-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-xypoint.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-xyseries-members.html
+%%QT_DOCDIR%%/qtcharts/qml-qtcharts-xyseries.html
+%%QT_DOCDIR%%/qtcharts/qpercentbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qpercentbarseries.html
+%%QT_DOCDIR%%/qtcharts/qpielegendmarker-members.html
+%%QT_DOCDIR%%/qtcharts/qpielegendmarker.html
+%%QT_DOCDIR%%/qtcharts/qpieseries-members.html
+%%QT_DOCDIR%%/qtcharts/qpieseries.html
+%%QT_DOCDIR%%/qtcharts/qpieslice-members.html
+%%QT_DOCDIR%%/qtcharts/qpieslice.html
+%%QT_DOCDIR%%/qtcharts/qpolarchart-members.html
+%%QT_DOCDIR%%/qtcharts/qpolarchart.html
+%%QT_DOCDIR%%/qtcharts/qscatterseries-members.html
+%%QT_DOCDIR%%/qtcharts/qscatterseries.html
+%%QT_DOCDIR%%/qtcharts/qsplineseries-members.html
+%%QT_DOCDIR%%/qtcharts/qsplineseries.html
+%%QT_DOCDIR%%/qtcharts/qstackedbarseries-members.html
+%%QT_DOCDIR%%/qtcharts/qstackedbarseries.html
+%%QT_DOCDIR%%/qtcharts/qt-charts-module.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-areachart-areachart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-areachart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-areachart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-audio-audio-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-audio-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-audio-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-audio-widget-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-audio-widget-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-audio-xyseriesiodevice-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-audio-xyseriesiodevice-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-barchart-barchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-barchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-barchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-barmodelmapper-barmodelmapper-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-barmodelmapper-customtablemodel-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-barmodelmapper-customtablemodel-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-barmodelmapper-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-barmodelmapper-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-barmodelmapper-tablewidget-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-barmodelmapper-tablewidget-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-boxplotchart-boxdatareader-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-boxplotchart-boxdatareader-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-boxplotchart-boxplotchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-boxplotchart-boxplotdata-qrc.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-boxplotchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-boxplotchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-callout-callout-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-callout-callout-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-callout-callout-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-callout-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-callout-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-callout-view-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-callout-view-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-chartthemes-chartthemes-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-chartthemes-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-chartthemes-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-chartthemes-themewidget-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-chartthemes-themewidget-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-customchart-customchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-customchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-customchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-datetimeaxis-datetimeaxis-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-datetimeaxis-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-datetimeaxis-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-datetimeaxis-sundata-qrc.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-donutbreakdown-donutbreakdown-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-donutbreakdown-donutbreakdownchart-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-donutbreakdown-donutbreakdownchart-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-donutbreakdown-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-donutbreakdown-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-donutbreakdown-mainslice-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-donutbreakdown-mainslice-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-donutchart-donutchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-donutchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-donutchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-dynamicspline-chart-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-dynamicspline-chart-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-dynamicspline-dynamicspline-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-dynamicspline-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-dynamicspline-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-horizontalbarchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-horizontalbarchart-horizontalbarchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-horizontalbarchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-horizontalpercentbarchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-horizontalpercentbarchart-horizontalpercentbarchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-horizontalpercentbarchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-horizontalstackedbarchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-horizontalstackedbarchart-horizontalstackedbarchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-horizontalstackedbarchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-index.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-legend-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-legend-legend-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-legend-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-legend-mainwidget-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-legend-mainwidget-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-legendmarkers-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-legendmarkers-legendmarkers-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-legendmarkers-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-legendmarkers-mainwidget-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-legendmarkers-mainwidget-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-lineandbar-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-lineandbar-lineandbar-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-lineandbar-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-linechart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-linechart-linechart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-linechart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-logvalueaxis-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-logvalueaxis-logvalueaxis-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-logvalueaxis-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-modeldata-customtablemodel-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-modeldata-customtablemodel-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-modeldata-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-modeldata-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-modeldata-modeldata-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-modeldata-tablewidget-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-modeldata-tablewidget-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-multiaxis-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-multiaxis-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-multiaxis-multiaxis-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-nesteddonuts-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-nesteddonuts-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-nesteddonuts-nesteddonuts-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-nesteddonuts-widget-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-nesteddonuts-widget-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-openglseries-datasource-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-openglseries-datasource-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-openglseries-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-openglseries-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-openglseries-openglseries-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-percentbarchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-percentbarchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-percentbarchart-percentbarchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechart-piechart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartcustomization-brushtool-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartcustomization-brushtool-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartcustomization-customslice-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartcustomization-customslice-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartcustomization-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartcustomization-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartcustomization-mainwidget-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartcustomization-mainwidget-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartcustomization-pentool-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartcustomization-pentool-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartcustomization-piechartcustomization-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartdrilldown-drilldownchart-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartdrilldown-drilldownchart-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartdrilldown-drilldownslice-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartdrilldown-drilldownslice-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartdrilldown-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartdrilldown-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-piechartdrilldown-piechartdrilldown-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-polarchart-chartview-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-polarchart-chartview-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-polarchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-polarchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-polarchart-polarchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlaxes-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlaxes-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlaxes-qml-qmlaxes-main-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlaxes-qml-qmlaxes-view1-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlaxes-qml-qmlaxes-view2-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlaxes-qml-qmlaxes-view3-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlaxes-qmlaxes-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlaxes-resources-qrc.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-main-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-view1-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-view10-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-view11-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-view12-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-view2-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-view3-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-view4-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-view5-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-view6-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-view7-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-view8-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qml-qmlchart-view9-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-qmlchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlchart-resources-qrc.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomizations-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomizations-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomizations-qml-qmlcustomizations-main-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomizations-qmlcustomizations-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomizations-resources-qrc.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomlegend-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomlegend-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomlegend-qml-qmlcustomlegend-animatedareaseries-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomlegend-qml-qmlcustomlegend-chartviewhighlighted-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomlegend-qml-qmlcustomlegend-chartviewselector-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomlegend-qml-qmlcustomlegend-chartviewstacked-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomlegend-qml-qmlcustomlegend-customlegend-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomlegend-qml-qmlcustomlegend-main-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomlegend-qmlcustomlegend-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlcustomlegend-resources-qrc.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlf1legends-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlf1legends-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlf1legends-qml-qmlf1legends-main-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlf1legends-qml-qmlf1legends-speedsxml-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlf1legends-qmlf1legends-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlf1legends-resources-qrc.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlmodule.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmloscilloscope-datasource-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmloscilloscope-datasource-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmloscilloscope-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmloscilloscope-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmloscilloscope-qml-qmloscilloscope-controlpanel-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmloscilloscope-qml-qmloscilloscope-main-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmloscilloscope-qml-qmloscilloscope-multibutton-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmloscilloscope-qml-qmloscilloscope-scopeview-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmloscilloscope-qmloscilloscope-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmloscilloscope-resources-qrc.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlpolarchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlpolarchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlpolarchart-qml-qmlpolarchart-main-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlpolarchart-qml-qmlpolarchart-view1-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlpolarchart-qml-qmlpolarchart-view2-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlpolarchart-qml-qmlpolarchart-view3-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlpolarchart-qmlpolarchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlpolarchart-resources-qrc.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlweather-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlweather-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlweather-qml-qmlweather-main-qml.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlweather-qmlweather-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-qmlweather-resources-qrc.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-scatterchart-chartview-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-scatterchart-chartview-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-scatterchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-scatterchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-scatterchart-scatterchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-scatterinteractions-chartview-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-scatterinteractions-chartview-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-scatterinteractions-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-scatterinteractions-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-scatterinteractions-scatterinteractions-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-splinechart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-splinechart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-splinechart-splinechart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-stackedbarchart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-stackedbarchart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-stackedbarchart-stackedbarchart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-stackedbarchartdrilldown-drilldownchart-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-stackedbarchartdrilldown-drilldownchart-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-stackedbarchartdrilldown-drilldownseries-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-stackedbarchartdrilldown-drilldownseries-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-stackedbarchartdrilldown-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-stackedbarchartdrilldown-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-stackedbarchartdrilldown-stackedbarchartdrilldown-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-temperaturerecords-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-temperaturerecords-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-temperaturerecords-temperaturerecords-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-zoomlinechart-chart-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-zoomlinechart-chart-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-zoomlinechart-chartview-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-zoomlinechart-chartview-h.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-zoomlinechart-example.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-zoomlinechart-main-cpp.html
+%%QT_DOCDIR%%/qtcharts/qtcharts-zoomlinechart-zoomlinechart-pro.html
+%%QT_DOCDIR%%/qtcharts/qtcharts.index
+%%QT_DOCDIR%%/qtcharts/qtcharts.qhp
+%%QT_DOCDIR%%/qtcharts/qtcharts.qhp.sha1
+%%QT_DOCDIR%%/qtcharts/qvalueaxis-members.html
+%%QT_DOCDIR%%/qtcharts/qvalueaxis.html
+%%QT_DOCDIR%%/qtcharts/qvbarmodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qvbarmodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qvboxplotmodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qvboxplotmodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qvpiemodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qvpiemodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qvxymodelmapper-members.html
+%%QT_DOCDIR%%/qtcharts/qvxymodelmapper.html
+%%QT_DOCDIR%%/qtcharts/qxylegendmarker-members.html
+%%QT_DOCDIR%%/qtcharts/qxylegendmarker.html
+%%QT_DOCDIR%%/qtcharts/qxyseries-members.html
+%%QT_DOCDIR%%/qtcharts/qxyseries.html
+%%QT_DOCDIR%%/qtcharts/style/offline-simple.css
+%%QT_DOCDIR%%/qtcharts/style/offline.css
%%QT_DOCDIR%%/qtconcurrent.qch
%%QT_DOCDIR%%/qtconcurrent/examples-manifest.xml
%%QT_DOCDIR%%/qtconcurrent/images/arrow_bc.png
%%QT_DOCDIR%%/qtconcurrent/images/bgrContent.png
%%QT_DOCDIR%%/qtconcurrent/images/btn_next.png
%%QT_DOCDIR%%/qtconcurrent/images/btn_prev.png
%%QT_DOCDIR%%/qtconcurrent/images/bullet_dn.png
%%QT_DOCDIR%%/qtconcurrent/images/bullet_sq.png
%%QT_DOCDIR%%/qtconcurrent/images/home.png
%%QT_DOCDIR%%/qtconcurrent/images/ico_note.png
%%QT_DOCDIR%%/qtconcurrent/images/ico_note_attention.png
%%QT_DOCDIR%%/qtconcurrent/images/ico_out.png
%%QT_DOCDIR%%/qtconcurrent/images/imagescaling_example.png
%%QT_DOCDIR%%/qtconcurrent/images/logo.png
%%QT_DOCDIR%%/qtconcurrent/images/qtconcurrent-progressdialog.png
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-imagescaling-example.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-imagescaling-imagescaling-cpp.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-imagescaling-imagescaling-h.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-imagescaling-imagescaling-pro.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-imagescaling-main-cpp.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-index.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-map-example.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-map-main-cpp.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-map-map-pro.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-module.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-obsolete.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-progressdialog-example.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-progressdialog-main-cpp.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-progressdialog-progressdialog-pro.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-runfunction-example.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-runfunction-main-cpp.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-runfunction-runfunction-pro.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-wordcount-example.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-wordcount-main-cpp.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent-wordcount-wordcount-pro.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent.index
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent.qhp
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent.qhp.sha1
%%QT_DOCDIR%%/qtconcurrent/qtconcurrent.tags
%%QT_DOCDIR%%/qtconcurrent/qtconcurrentfilter.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrentmap.html
%%QT_DOCDIR%%/qtconcurrent/qtconcurrentrun.html
%%QT_DOCDIR%%/qtconcurrent/style/offline-simple.css
%%QT_DOCDIR%%/qtconcurrent/style/offline.css
%%QT_DOCDIR%%/qtcore.qch
%%QT_DOCDIR%%/qtcore/animation-overview.html
%%QT_DOCDIR%%/qtcore/animation.html
%%QT_DOCDIR%%/qtcore/codec-big5.html
%%QT_DOCDIR%%/qtcore/codec-big5hkscs.html
%%QT_DOCDIR%%/qtcore/codec-eucjp.html
%%QT_DOCDIR%%/qtcore/codec-euckr.html
%%QT_DOCDIR%%/qtcore/codec-gbk.html
%%QT_DOCDIR%%/qtcore/codec-sjis.html
%%QT_DOCDIR%%/qtcore/codec-tscii.html
%%QT_DOCDIR%%/qtcore/codecs-jis.html
%%QT_DOCDIR%%/qtcore/containers.html
%%QT_DOCDIR%%/qtcore/custom-types.html
%%QT_DOCDIR%%/qtcore/datastreamformat.html
%%QT_DOCDIR%%/qtcore/events.html
%%QT_DOCDIR%%/qtcore/eventsandfilters.html
%%QT_DOCDIR%%/qtcore/examples-manifest.xml
%%QT_DOCDIR%%/qtcore/images/abstract-connections.png
%%QT_DOCDIR%%/qtcore/images/animations-architecture.png
%%QT_DOCDIR%%/qtcore/images/arrow_bc.png
%%QT_DOCDIR%%/qtcore/images/bgrContent.png
%%QT_DOCDIR%%/qtcore/images/brush-styles.png
%%QT_DOCDIR%%/qtcore/images/btn_next.png
%%QT_DOCDIR%%/qtcore/images/btn_prev.png
%%QT_DOCDIR%%/qtcore/images/bullet_dn.png
%%QT_DOCDIR%%/qtcore/images/bullet_sq.png
%%QT_DOCDIR%%/qtcore/images/cursor-arrow.png
%%QT_DOCDIR%%/qtcore/images/cursor-busy.png
%%QT_DOCDIR%%/qtcore/images/cursor-closedhand.png
%%QT_DOCDIR%%/qtcore/images/cursor-cross.png
%%QT_DOCDIR%%/qtcore/images/cursor-forbidden.png
%%QT_DOCDIR%%/qtcore/images/cursor-hand.png
%%QT_DOCDIR%%/qtcore/images/cursor-hsplit.png
%%QT_DOCDIR%%/qtcore/images/cursor-ibeam.png
%%QT_DOCDIR%%/qtcore/images/cursor-openhand.png
%%QT_DOCDIR%%/qtcore/images/cursor-sizeall.png
%%QT_DOCDIR%%/qtcore/images/cursor-sizeb.png
%%QT_DOCDIR%%/qtcore/images/cursor-sizef.png
%%QT_DOCDIR%%/qtcore/images/cursor-sizeh.png
%%QT_DOCDIR%%/qtcore/images/cursor-sizev.png
%%QT_DOCDIR%%/qtcore/images/cursor-uparrow.png
%%QT_DOCDIR%%/qtcore/images/cursor-vsplit.png
%%QT_DOCDIR%%/qtcore/images/cursor-wait.png
%%QT_DOCDIR%%/qtcore/images/cursor-whatsthis.png
%%QT_DOCDIR%%/qtcore/images/home.png
%%QT_DOCDIR%%/qtcore/images/ico_note.png
%%QT_DOCDIR%%/qtcore/images/ico_note_attention.png
%%QT_DOCDIR%%/qtcore/images/ico_out.png
%%QT_DOCDIR%%/qtcore/images/javaiterators1.png
%%QT_DOCDIR%%/qtcore/images/javaiterators2.png
%%QT_DOCDIR%%/qtcore/images/localfortuneclient-example.png
%%QT_DOCDIR%%/qtcore/images/localfortuneserver-example.png
%%QT_DOCDIR%%/qtcore/images/logo.png
%%QT_DOCDIR%%/qtcore/images/mandelbrot-example.png
%%QT_DOCDIR%%/qtcore/images/mandelbrot_scroll1.png
%%QT_DOCDIR%%/qtcore/images/mandelbrot_scroll2.png
%%QT_DOCDIR%%/qtcore/images/mandelbrot_scroll3.png
%%QT_DOCDIR%%/qtcore/images/mandelbrot_zoom1.png
%%QT_DOCDIR%%/qtcore/images/mandelbrot_zoom2.png
%%QT_DOCDIR%%/qtcore/images/mandelbrot_zoom3.png
+%%QT_DOCDIR%%/qtcore/images/mimetypebrowser.png
%%QT_DOCDIR%%/qtcore/images/modelindex-no-parent.png
%%QT_DOCDIR%%/qtcore/images/modelview-begin-append-columns.png
%%QT_DOCDIR%%/qtcore/images/modelview-begin-append-rows.png
%%QT_DOCDIR%%/qtcore/images/modelview-begin-insert-columns.png
%%QT_DOCDIR%%/qtcore/images/modelview-begin-insert-rows.png
%%QT_DOCDIR%%/qtcore/images/modelview-begin-remove-columns.png
%%QT_DOCDIR%%/qtcore/images/modelview-begin-remove-rows.png
%%QT_DOCDIR%%/qtcore/images/modelview-move-rows-1.png
%%QT_DOCDIR%%/qtcore/images/modelview-move-rows-2.png
%%QT_DOCDIR%%/qtcore/images/modelview-move-rows-3.png
%%QT_DOCDIR%%/qtcore/images/modelview-move-rows-4.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inback.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inbounce.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-incirc.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-incubic.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inelastic.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inexpo.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutback.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutbounce.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutcirc.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutcubic.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutelastic.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutexpo.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutquad.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutquart.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutquint.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutsine.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inquad.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inquart.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-inquint.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-insine.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-linear.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outback.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outbounce.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outcirc.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outcubic.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outelastic.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outexpo.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinback.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinbounce.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outincirc.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outincubic.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinelastic.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinexpo.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinquad.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinquart.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinquint.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinsine.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outquad.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outquart.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outquint.png
%%QT_DOCDIR%%/qtcore/images/qeasingcurve-outsine.png
%%QT_DOCDIR%%/qtcore/images/qimage-scaling.png
%%QT_DOCDIR%%/qtcore/images/qline-coordinates.png
%%QT_DOCDIR%%/qtcore/images/qline-point.png
%%QT_DOCDIR%%/qtcore/images/qlinef-angle-identicaldirection.png
%%QT_DOCDIR%%/qtcore/images/qlinef-angle-oppositedirection.png
%%QT_DOCDIR%%/qtcore/images/qlinef-bounded.png
%%QT_DOCDIR%%/qtcore/images/qlinef-normalvector.png
%%QT_DOCDIR%%/qtcore/images/qlinef-unbounded.png
%%QT_DOCDIR%%/qtcore/images/qpen-bevel.png
%%QT_DOCDIR%%/qtcore/images/qpen-custom.png
%%QT_DOCDIR%%/qtcore/images/qpen-dash.png
%%QT_DOCDIR%%/qtcore/images/qpen-dashdot.png
%%QT_DOCDIR%%/qtcore/images/qpen-dashdotdot.png
%%QT_DOCDIR%%/qtcore/images/qpen-dot.png
%%QT_DOCDIR%%/qtcore/images/qpen-flat.png
%%QT_DOCDIR%%/qtcore/images/qpen-miter.png
%%QT_DOCDIR%%/qtcore/images/qpen-roundcap.png
%%QT_DOCDIR%%/qtcore/images/qpen-roundjoin.png
%%QT_DOCDIR%%/qtcore/images/qpen-solid.png
%%QT_DOCDIR%%/qtcore/images/qpen-square.png
%%QT_DOCDIR%%/qtcore/images/qrect-coordinates.png
%%QT_DOCDIR%%/qtcore/images/qrect-diagram-one.png
%%QT_DOCDIR%%/qtcore/images/qrect-diagram-three.png
%%QT_DOCDIR%%/qtcore/images/qrect-diagram-two.png
%%QT_DOCDIR%%/qtcore/images/qrect-diagram-zero.png
%%QT_DOCDIR%%/qtcore/images/qrect-intersect.png
%%QT_DOCDIR%%/qtcore/images/qrect-unite.png
%%QT_DOCDIR%%/qtcore/images/qrectf-coordinates.png
%%QT_DOCDIR%%/qtcore/images/qrectf-diagram-one.png
%%QT_DOCDIR%%/qtcore/images/qrectf-diagram-three.png
%%QT_DOCDIR%%/qtcore/images/qrectf-diagram-two.png
%%QT_DOCDIR%%/qtcore/images/qsortfilterproxymodel-sorting.png
%%QT_DOCDIR%%/qtcore/images/queuedcustomtype-example.png
%%QT_DOCDIR%%/qtcore/images/qurl-authority.png
%%QT_DOCDIR%%/qtcore/images/qurl-authority2.png
%%QT_DOCDIR%%/qtcore/images/qurl-authority3.png
%%QT_DOCDIR%%/qtcore/images/qurl-fragment.png
%%QT_DOCDIR%%/qtcore/images/qurl-ftppath.png
%%QT_DOCDIR%%/qtcore/images/qurl-mailtopath.png
%%QT_DOCDIR%%/qtcore/images/qurl-querystring.png
%%QT_DOCDIR%%/qtcore/images/resources.png
%%QT_DOCDIR%%/qtcore/images/sharedmemory-example_1.png
%%QT_DOCDIR%%/qtcore/images/sharedmemory-example_2.png
%%QT_DOCDIR%%/qtcore/images/statemachine-button-history.png
%%QT_DOCDIR%%/qtcore/images/statemachine-button-nested.png
%%QT_DOCDIR%%/qtcore/images/statemachine-button.png
%%QT_DOCDIR%%/qtcore/images/statemachine-customevents.png
%%QT_DOCDIR%%/qtcore/images/statemachine-customevents2.png
%%QT_DOCDIR%%/qtcore/images/statemachine-finished.png
%%QT_DOCDIR%%/qtcore/images/statemachine-nonparallel.png
%%QT_DOCDIR%%/qtcore/images/statemachine-parallel.png
%%QT_DOCDIR%%/qtcore/images/stliterators1.png
%%QT_DOCDIR%%/qtcore/implicit-sharing.html
%%QT_DOCDIR%%/qtcore/io-functions.html
%%QT_DOCDIR%%/qtcore/io.html
%%QT_DOCDIR%%/qtcore/json.html
%%QT_DOCDIR%%/qtcore/metaobjects.html
%%QT_DOCDIR%%/qtcore/object.html
%%QT_DOCDIR%%/qtcore/objecttrees.html
%%QT_DOCDIR%%/qtcore/plugins.html
%%QT_DOCDIR%%/qtcore/properties.html
%%QT_DOCDIR%%/qtcore/qabstractanimation-members.html
%%QT_DOCDIR%%/qtcore/qabstractanimation.html
%%QT_DOCDIR%%/qtcore/qabstracteventdispatcher-members.html
%%QT_DOCDIR%%/qtcore/qabstracteventdispatcher-obsolete.html
%%QT_DOCDIR%%/qtcore/qabstracteventdispatcher-timerinfo-members.html
%%QT_DOCDIR%%/qtcore/qabstracteventdispatcher-timerinfo.html
%%QT_DOCDIR%%/qtcore/qabstracteventdispatcher.html
%%QT_DOCDIR%%/qtcore/qabstractitemmodel-members.html
%%QT_DOCDIR%%/qtcore/qabstractitemmodel-obsolete.html
%%QT_DOCDIR%%/qtcore/qabstractitemmodel.html
%%QT_DOCDIR%%/qtcore/qabstractlistmodel-members.html
%%QT_DOCDIR%%/qtcore/qabstractlistmodel.html
%%QT_DOCDIR%%/qtcore/qabstractnativeeventfilter-members.html
%%QT_DOCDIR%%/qtcore/qabstractnativeeventfilter.html
%%QT_DOCDIR%%/qtcore/qabstractproxymodel-members.html
%%QT_DOCDIR%%/qtcore/qabstractproxymodel.html
%%QT_DOCDIR%%/qtcore/qabstractstate-members.html
%%QT_DOCDIR%%/qtcore/qabstractstate.html
%%QT_DOCDIR%%/qtcore/qabstracttablemodel-members.html
%%QT_DOCDIR%%/qtcore/qabstracttablemodel.html
%%QT_DOCDIR%%/qtcore/qabstracttransition-members.html
%%QT_DOCDIR%%/qtcore/qabstracttransition.html
%%QT_DOCDIR%%/qtcore/qanimationgroup-members.html
%%QT_DOCDIR%%/qtcore/qanimationgroup.html
%%QT_DOCDIR%%/qtcore/qassociativeiterable-const-iterator-members.html
%%QT_DOCDIR%%/qtcore/qassociativeiterable-const-iterator.html
%%QT_DOCDIR%%/qtcore/qassociativeiterable-members.html
%%QT_DOCDIR%%/qtcore/qassociativeiterable.html
%%QT_DOCDIR%%/qtcore/qatomicint-members.html
%%QT_DOCDIR%%/qtcore/qatomicint.html
%%QT_DOCDIR%%/qtcore/qatomicinteger-members.html
%%QT_DOCDIR%%/qtcore/qatomicinteger.html
%%QT_DOCDIR%%/qtcore/qatomicpointer-members.html
%%QT_DOCDIR%%/qtcore/qatomicpointer.html
%%QT_DOCDIR%%/qtcore/qbasictimer-members.html
%%QT_DOCDIR%%/qtcore/qbasictimer.html
%%QT_DOCDIR%%/qtcore/qbitarray-members.html
%%QT_DOCDIR%%/qtcore/qbitarray.html
%%QT_DOCDIR%%/qtcore/qbuffer-members.html
%%QT_DOCDIR%%/qtcore/qbuffer.html
%%QT_DOCDIR%%/qtcore/qbytearray-members.html
%%QT_DOCDIR%%/qtcore/qbytearray-obsolete.html
%%QT_DOCDIR%%/qtcore/qbytearray.html
%%QT_DOCDIR%%/qtcore/qbytearraylist-members.html
%%QT_DOCDIR%%/qtcore/qbytearraylist.html
%%QT_DOCDIR%%/qtcore/qbytearraymatcher-members.html
%%QT_DOCDIR%%/qtcore/qbytearraymatcher.html
%%QT_DOCDIR%%/qtcore/qcache-members.html
%%QT_DOCDIR%%/qtcore/qcache.html
%%QT_DOCDIR%%/qtcore/qchar-members.html
%%QT_DOCDIR%%/qtcore/qchar-obsolete.html
%%QT_DOCDIR%%/qtcore/qchar.html
%%QT_DOCDIR%%/qtcore/qchildevent-members.html
%%QT_DOCDIR%%/qtcore/qchildevent.html
%%QT_DOCDIR%%/qtcore/qcollator-members.html
%%QT_DOCDIR%%/qtcore/qcollator.html
%%QT_DOCDIR%%/qtcore/qcollatorsortkey-members.html
%%QT_DOCDIR%%/qtcore/qcollatorsortkey.html
%%QT_DOCDIR%%/qtcore/qcommandlineoption-members.html
%%QT_DOCDIR%%/qtcore/qcommandlineoption.html
%%QT_DOCDIR%%/qtcore/qcommandlineparser-members.html
%%QT_DOCDIR%%/qtcore/qcommandlineparser.html
%%QT_DOCDIR%%/qtcore/qcontiguouscache-members.html
%%QT_DOCDIR%%/qtcore/qcontiguouscache.html
%%QT_DOCDIR%%/qtcore/qcoreapplication-members.html
%%QT_DOCDIR%%/qtcore/qcoreapplication-obsolete.html
%%QT_DOCDIR%%/qtcore/qcoreapplication.html
%%QT_DOCDIR%%/qtcore/qcryptographichash-members.html
%%QT_DOCDIR%%/qtcore/qcryptographichash.html
%%QT_DOCDIR%%/qtcore/qdatastream-members.html
%%QT_DOCDIR%%/qtcore/qdatastream-obsolete.html
%%QT_DOCDIR%%/qtcore/qdatastream.html
%%QT_DOCDIR%%/qtcore/qdate-members.html
%%QT_DOCDIR%%/qtcore/qdate-obsolete.html
%%QT_DOCDIR%%/qtcore/qdate.html
%%QT_DOCDIR%%/qtcore/qdatetime-members.html
%%QT_DOCDIR%%/qtcore/qdatetime.html
%%QT_DOCDIR%%/qtcore/qdebug-members.html
%%QT_DOCDIR%%/qtcore/qdebug.html
%%QT_DOCDIR%%/qtcore/qdebugstatesaver-members.html
%%QT_DOCDIR%%/qtcore/qdebugstatesaver.html
%%QT_DOCDIR%%/qtcore/qdir-members.html
%%QT_DOCDIR%%/qtcore/qdir-obsolete.html
%%QT_DOCDIR%%/qtcore/qdir.html
%%QT_DOCDIR%%/qtcore/qdiriterator-members.html
%%QT_DOCDIR%%/qtcore/qdiriterator.html
%%QT_DOCDIR%%/qtcore/qdynamicpropertychangeevent-members.html
%%QT_DOCDIR%%/qtcore/qdynamicpropertychangeevent.html
%%QT_DOCDIR%%/qtcore/qeasingcurve-members.html
%%QT_DOCDIR%%/qtcore/qeasingcurve-obsolete.html
%%QT_DOCDIR%%/qtcore/qeasingcurve.html
%%QT_DOCDIR%%/qtcore/qelapsedtimer-members.html
%%QT_DOCDIR%%/qtcore/qelapsedtimer.html
%%QT_DOCDIR%%/qtcore/qenablesharedfromthis-members.html
%%QT_DOCDIR%%/qtcore/qenablesharedfromthis.html
%%QT_DOCDIR%%/qtcore/qevent-members.html
%%QT_DOCDIR%%/qtcore/qevent.html
%%QT_DOCDIR%%/qtcore/qeventloop-members.html
%%QT_DOCDIR%%/qtcore/qeventloop.html
%%QT_DOCDIR%%/qtcore/qeventlooplocker-members.html
%%QT_DOCDIR%%/qtcore/qeventlooplocker.html
%%QT_DOCDIR%%/qtcore/qeventtransition-members.html
%%QT_DOCDIR%%/qtcore/qeventtransition.html
%%QT_DOCDIR%%/qtcore/qexception-members.html
%%QT_DOCDIR%%/qtcore/qexception.html
%%QT_DOCDIR%%/qtcore/qexplicitlyshareddatapointer-members.html
%%QT_DOCDIR%%/qtcore/qexplicitlyshareddatapointer.html
%%QT_DOCDIR%%/qtcore/qfile-members.html
%%QT_DOCDIR%%/qtcore/qfile-obsolete.html
%%QT_DOCDIR%%/qtcore/qfile.html
%%QT_DOCDIR%%/qtcore/qfiledevice-members.html
%%QT_DOCDIR%%/qtcore/qfiledevice.html
%%QT_DOCDIR%%/qtcore/qfileinfo-members.html
%%QT_DOCDIR%%/qtcore/qfileinfo-obsolete.html
%%QT_DOCDIR%%/qtcore/qfileinfo.html
%%QT_DOCDIR%%/qtcore/qfileselector-members.html
%%QT_DOCDIR%%/qtcore/qfileselector.html
%%QT_DOCDIR%%/qtcore/qfilesystemwatcher-members.html
%%QT_DOCDIR%%/qtcore/qfilesystemwatcher.html
%%QT_DOCDIR%%/qtcore/qfinalstate-members.html
%%QT_DOCDIR%%/qtcore/qfinalstate.html
%%QT_DOCDIR%%/qtcore/qflag-members.html
%%QT_DOCDIR%%/qtcore/qflag.html
%%QT_DOCDIR%%/qtcore/qflags-members.html
%%QT_DOCDIR%%/qtcore/qflags.html
%%QT_DOCDIR%%/qtcore/qfuture-const-iterator-members.html
%%QT_DOCDIR%%/qtcore/qfuture-const-iterator.html
%%QT_DOCDIR%%/qtcore/qfuture-members.html
%%QT_DOCDIR%%/qtcore/qfuture.html
%%QT_DOCDIR%%/qtcore/qfutureiterator-members.html
%%QT_DOCDIR%%/qtcore/qfutureiterator.html
%%QT_DOCDIR%%/qtcore/qfuturesynchronizer-members.html
%%QT_DOCDIR%%/qtcore/qfuturesynchronizer.html
%%QT_DOCDIR%%/qtcore/qfuturewatcher-members.html
%%QT_DOCDIR%%/qtcore/qfuturewatcher.html
%%QT_DOCDIR%%/qtcore/qgenericargument-members.html
%%QT_DOCDIR%%/qtcore/qgenericargument.html
%%QT_DOCDIR%%/qtcore/qgenericreturnargument-members.html
%%QT_DOCDIR%%/qtcore/qgenericreturnargument.html
%%QT_DOCDIR%%/qtcore/qglobalstatic-members.html
%%QT_DOCDIR%%/qtcore/qglobalstatic-obsolete.html
%%QT_DOCDIR%%/qtcore/qglobalstatic.html
%%QT_DOCDIR%%/qtcore/qhash-const-iterator-members.html
%%QT_DOCDIR%%/qtcore/qhash-const-iterator.html
%%QT_DOCDIR%%/qtcore/qhash-iterator-members.html
%%QT_DOCDIR%%/qtcore/qhash-iterator.html
%%QT_DOCDIR%%/qtcore/qhash-key-iterator-members.html
%%QT_DOCDIR%%/qtcore/qhash-key-iterator.html
%%QT_DOCDIR%%/qtcore/qhash-members.html
%%QT_DOCDIR%%/qtcore/qhash.html
%%QT_DOCDIR%%/qtcore/qhashiterator-members.html
%%QT_DOCDIR%%/qtcore/qhashiterator.html
%%QT_DOCDIR%%/qtcore/qhistorystate-members.html
%%QT_DOCDIR%%/qtcore/qhistorystate.html
%%QT_DOCDIR%%/qtcore/qidentityproxymodel-members.html
%%QT_DOCDIR%%/qtcore/qidentityproxymodel.html
%%QT_DOCDIR%%/qtcore/qiodevice-members.html
%%QT_DOCDIR%%/qtcore/qiodevice.html
%%QT_DOCDIR%%/qtcore/qitemselection-members.html
%%QT_DOCDIR%%/qtcore/qitemselection.html
%%QT_DOCDIR%%/qtcore/qitemselectionmodel-members.html
%%QT_DOCDIR%%/qtcore/qitemselectionmodel.html
%%QT_DOCDIR%%/qtcore/qitemselectionrange-members.html
%%QT_DOCDIR%%/qtcore/qitemselectionrange-obsolete.html
%%QT_DOCDIR%%/qtcore/qitemselectionrange.html
%%QT_DOCDIR%%/qtcore/qjsonarray-const-iterator-members.html
%%QT_DOCDIR%%/qtcore/qjsonarray-const-iterator.html
%%QT_DOCDIR%%/qtcore/qjsonarray-iterator-members.html
%%QT_DOCDIR%%/qtcore/qjsonarray-iterator.html
%%QT_DOCDIR%%/qtcore/qjsonarray-members.html
%%QT_DOCDIR%%/qtcore/qjsonarray.html
%%QT_DOCDIR%%/qtcore/qjsondocument-members.html
%%QT_DOCDIR%%/qtcore/qjsondocument.html
%%QT_DOCDIR%%/qtcore/qjsonobject-const-iterator-members.html
%%QT_DOCDIR%%/qtcore/qjsonobject-const-iterator.html
%%QT_DOCDIR%%/qtcore/qjsonobject-iterator-members.html
%%QT_DOCDIR%%/qtcore/qjsonobject-iterator.html
%%QT_DOCDIR%%/qtcore/qjsonobject-members.html
%%QT_DOCDIR%%/qtcore/qjsonobject.html
%%QT_DOCDIR%%/qtcore/qjsonparseerror-members.html
%%QT_DOCDIR%%/qtcore/qjsonparseerror.html
%%QT_DOCDIR%%/qtcore/qjsonvalue-members.html
%%QT_DOCDIR%%/qtcore/qjsonvalue.html
%%QT_DOCDIR%%/qtcore/qlatin1char-members.html
%%QT_DOCDIR%%/qtcore/qlatin1char.html
%%QT_DOCDIR%%/qtcore/qlatin1string-members.html
%%QT_DOCDIR%%/qtcore/qlatin1string.html
%%QT_DOCDIR%%/qtcore/qlibrary-members.html
%%QT_DOCDIR%%/qtcore/qlibrary.html
%%QT_DOCDIR%%/qtcore/qlibraryinfo-members.html
%%QT_DOCDIR%%/qtcore/qlibraryinfo-obsolete.html
%%QT_DOCDIR%%/qtcore/qlibraryinfo.html
%%QT_DOCDIR%%/qtcore/qline-members.html
%%QT_DOCDIR%%/qtcore/qline.html
%%QT_DOCDIR%%/qtcore/qlinef-members.html
%%QT_DOCDIR%%/qtcore/qlinef-obsolete.html
%%QT_DOCDIR%%/qtcore/qlinef.html
%%QT_DOCDIR%%/qtcore/qlinkedlist-const-iterator-members.html
%%QT_DOCDIR%%/qtcore/qlinkedlist-const-iterator.html
%%QT_DOCDIR%%/qtcore/qlinkedlist-iterator-members.html
%%QT_DOCDIR%%/qtcore/qlinkedlist-iterator.html
%%QT_DOCDIR%%/qtcore/qlinkedlist-members.html
%%QT_DOCDIR%%/qtcore/qlinkedlist.html
%%QT_DOCDIR%%/qtcore/qlinkedlistiterator-members.html
%%QT_DOCDIR%%/qtcore/qlinkedlistiterator.html
%%QT_DOCDIR%%/qtcore/qlist-const-iterator-members.html
%%QT_DOCDIR%%/qtcore/qlist-const-iterator.html
%%QT_DOCDIR%%/qtcore/qlist-iterator-members.html
%%QT_DOCDIR%%/qtcore/qlist-iterator.html
%%QT_DOCDIR%%/qtcore/qlist-members.html
%%QT_DOCDIR%%/qtcore/qlist-memorylayout.html
%%QT_DOCDIR%%/qtcore/qlist.html
%%QT_DOCDIR%%/qtcore/qlistiterator-members.html
%%QT_DOCDIR%%/qtcore/qlistiterator.html
%%QT_DOCDIR%%/qtcore/qlocale-members.html
%%QT_DOCDIR%%/qtcore/qlocale-obsolete.html
%%QT_DOCDIR%%/qtcore/qlocale.html
%%QT_DOCDIR%%/qtcore/qlockfile-members.html
%%QT_DOCDIR%%/qtcore/qlockfile.html
%%QT_DOCDIR%%/qtcore/qloggingcategory-members.html
%%QT_DOCDIR%%/qtcore/qloggingcategory.html
%%QT_DOCDIR%%/qtcore/qmap-const-iterator-members.html
%%QT_DOCDIR%%/qtcore/qmap-const-iterator.html
%%QT_DOCDIR%%/qtcore/qmap-iterator-members.html
%%QT_DOCDIR%%/qtcore/qmap-iterator.html
%%QT_DOCDIR%%/qtcore/qmap-key-iterator-members.html
%%QT_DOCDIR%%/qtcore/qmap-key-iterator.html
%%QT_DOCDIR%%/qtcore/qmap-members.html
%%QT_DOCDIR%%/qtcore/qmap.html
%%QT_DOCDIR%%/qtcore/qmapiterator-members.html
%%QT_DOCDIR%%/qtcore/qmapiterator.html
%%QT_DOCDIR%%/qtcore/qmargins-members.html
%%QT_DOCDIR%%/qtcore/qmargins.html
%%QT_DOCDIR%%/qtcore/qmarginsf-members.html
%%QT_DOCDIR%%/qtcore/qmarginsf.html
%%QT_DOCDIR%%/qtcore/qmessageauthenticationcode-members.html
%%QT_DOCDIR%%/qtcore/qmessageauthenticationcode.html
%%QT_DOCDIR%%/qtcore/qmessagelogcontext-members.html
%%QT_DOCDIR%%/qtcore/qmessagelogcontext.html
%%QT_DOCDIR%%/qtcore/qmessagelogger-members.html
%%QT_DOCDIR%%/qtcore/qmessagelogger.html
%%QT_DOCDIR%%/qtcore/qmetaclassinfo-members.html
%%QT_DOCDIR%%/qtcore/qmetaclassinfo.html
%%QT_DOCDIR%%/qtcore/qmetaenum-members.html
%%QT_DOCDIR%%/qtcore/qmetaenum.html
%%QT_DOCDIR%%/qtcore/qmetamethod-members.html
%%QT_DOCDIR%%/qtcore/qmetamethod.html
%%QT_DOCDIR%%/qtcore/qmetaobject-connection-members.html
%%QT_DOCDIR%%/qtcore/qmetaobject-connection.html
%%QT_DOCDIR%%/qtcore/qmetaobject-members.html
%%QT_DOCDIR%%/qtcore/qmetaobject.html
%%QT_DOCDIR%%/qtcore/qmetaproperty-members.html
%%QT_DOCDIR%%/qtcore/qmetaproperty-obsolete.html
%%QT_DOCDIR%%/qtcore/qmetaproperty.html
%%QT_DOCDIR%%/qtcore/qmetatype-members.html
%%QT_DOCDIR%%/qtcore/qmetatype-obsolete.html
%%QT_DOCDIR%%/qtcore/qmetatype.html
%%QT_DOCDIR%%/qtcore/qmimedata-members.html
%%QT_DOCDIR%%/qtcore/qmimedata.html
%%QT_DOCDIR%%/qtcore/qmimedatabase-members.html
%%QT_DOCDIR%%/qtcore/qmimedatabase.html
%%QT_DOCDIR%%/qtcore/qmimetype-members.html
%%QT_DOCDIR%%/qtcore/qmimetype.html
%%QT_DOCDIR%%/qtcore/qmodelindex-members.html
%%QT_DOCDIR%%/qtcore/qmodelindex.html
%%QT_DOCDIR%%/qtcore/qmultihash-members.html
%%QT_DOCDIR%%/qtcore/qmultihash.html
%%QT_DOCDIR%%/qtcore/qmultimap-members.html
%%QT_DOCDIR%%/qtcore/qmultimap.html
%%QT_DOCDIR%%/qtcore/qmutablehashiterator-members.html
%%QT_DOCDIR%%/qtcore/qmutablehashiterator.html
%%QT_DOCDIR%%/qtcore/qmutablelinkedlistiterator-members.html
%%QT_DOCDIR%%/qtcore/qmutablelinkedlistiterator.html
%%QT_DOCDIR%%/qtcore/qmutablelistiterator-members.html
%%QT_DOCDIR%%/qtcore/qmutablelistiterator.html
%%QT_DOCDIR%%/qtcore/qmutablemapiterator-members.html
%%QT_DOCDIR%%/qtcore/qmutablemapiterator.html
%%QT_DOCDIR%%/qtcore/qmutablesetiterator-members.html
%%QT_DOCDIR%%/qtcore/qmutablesetiterator.html
%%QT_DOCDIR%%/qtcore/qmutablevectoriterator-members.html
%%QT_DOCDIR%%/qtcore/qmutablevectoriterator.html
%%QT_DOCDIR%%/qtcore/qmutex-members.html
%%QT_DOCDIR%%/qtcore/qmutex.html
%%QT_DOCDIR%%/qtcore/qmutexlocker-members.html
%%QT_DOCDIR%%/qtcore/qmutexlocker.html
%%QT_DOCDIR%%/qtcore/qobject-members.html
%%QT_DOCDIR%%/qtcore/qobject-obsolete.html
%%QT_DOCDIR%%/qtcore/qobject.html
%%QT_DOCDIR%%/qtcore/qobjectcleanuphandler-members.html
%%QT_DOCDIR%%/qtcore/qobjectcleanuphandler.html
%%QT_DOCDIR%%/qtcore/qpair-members.html
%%QT_DOCDIR%%/qtcore/qpair.html
%%QT_DOCDIR%%/qtcore/qparallelanimationgroup-members.html
%%QT_DOCDIR%%/qtcore/qparallelanimationgroup.html
%%QT_DOCDIR%%/qtcore/qpauseanimation-members.html
%%QT_DOCDIR%%/qtcore/qpauseanimation.html
%%QT_DOCDIR%%/qtcore/qpersistentmodelindex-members.html
%%QT_DOCDIR%%/qtcore/qpersistentmodelindex.html
%%QT_DOCDIR%%/qtcore/qpluginloader-members.html
%%QT_DOCDIR%%/qtcore/qpluginloader.html
%%QT_DOCDIR%%/qtcore/qpoint-members.html
%%QT_DOCDIR%%/qtcore/qpoint.html
%%QT_DOCDIR%%/qtcore/qpointer-members.html
%%QT_DOCDIR%%/qtcore/qpointer.html
%%QT_DOCDIR%%/qtcore/qpointf-members.html
%%QT_DOCDIR%%/qtcore/qpointf.html
+%%QT_DOCDIR%%/qtcore/qprocess-createprocessarguments-members.html
+%%QT_DOCDIR%%/qtcore/qprocess-createprocessarguments.html
%%QT_DOCDIR%%/qtcore/qprocess-members.html
%%QT_DOCDIR%%/qtcore/qprocess-obsolete.html
%%QT_DOCDIR%%/qtcore/qprocess.html
%%QT_DOCDIR%%/qtcore/qprocessenvironment-members.html
%%QT_DOCDIR%%/qtcore/qprocessenvironment.html
%%QT_DOCDIR%%/qtcore/qpropertyanimation-members.html
%%QT_DOCDIR%%/qtcore/qpropertyanimation.html
%%QT_DOCDIR%%/qtcore/qqueue-members.html
%%QT_DOCDIR%%/qtcore/qqueue.html
%%QT_DOCDIR%%/qtcore/qreadlocker-members.html
%%QT_DOCDIR%%/qtcore/qreadlocker.html
%%QT_DOCDIR%%/qtcore/qreadwritelock-members.html
%%QT_DOCDIR%%/qtcore/qreadwritelock.html
%%QT_DOCDIR%%/qtcore/qrect-members.html
%%QT_DOCDIR%%/qtcore/qrect-obsolete.html
%%QT_DOCDIR%%/qtcore/qrect.html
%%QT_DOCDIR%%/qtcore/qrectf-members.html
%%QT_DOCDIR%%/qtcore/qrectf-obsolete.html
%%QT_DOCDIR%%/qtcore/qrectf.html
%%QT_DOCDIR%%/qtcore/qregexp-members.html
%%QT_DOCDIR%%/qtcore/qregexp.html
%%QT_DOCDIR%%/qtcore/qregularexpression-members.html
%%QT_DOCDIR%%/qtcore/qregularexpression.html
%%QT_DOCDIR%%/qtcore/qregularexpressionmatch-members.html
%%QT_DOCDIR%%/qtcore/qregularexpressionmatch.html
%%QT_DOCDIR%%/qtcore/qregularexpressionmatchiterator-members.html
%%QT_DOCDIR%%/qtcore/qregularexpressionmatchiterator.html
%%QT_DOCDIR%%/qtcore/qresource-members.html
%%QT_DOCDIR%%/qtcore/qresource-obsolete.html
%%QT_DOCDIR%%/qtcore/qresource.html
%%QT_DOCDIR%%/qtcore/qrunnable-members.html
%%QT_DOCDIR%%/qtcore/qrunnable.html
%%QT_DOCDIR%%/qtcore/qsavefile-members.html
%%QT_DOCDIR%%/qtcore/qsavefile.html
%%QT_DOCDIR%%/qtcore/qscopedarraypointer-members.html
%%QT_DOCDIR%%/qtcore/qscopedarraypointer.html
%%QT_DOCDIR%%/qtcore/qscopedpointer-members.html
%%QT_DOCDIR%%/qtcore/qscopedpointer.html
%%QT_DOCDIR%%/qtcore/qscopedvaluerollback-members.html
%%QT_DOCDIR%%/qtcore/qscopedvaluerollback.html
%%QT_DOCDIR%%/qtcore/qsemaphore-members.html
%%QT_DOCDIR%%/qtcore/qsemaphore.html
%%QT_DOCDIR%%/qtcore/qsequentialanimationgroup-members.html
%%QT_DOCDIR%%/qtcore/qsequentialanimationgroup.html
%%QT_DOCDIR%%/qtcore/qsequentialiterable-const-iterator-members.html
%%QT_DOCDIR%%/qtcore/qsequentialiterable-const-iterator.html
%%QT_DOCDIR%%/qtcore/qsequentialiterable-members.html
%%QT_DOCDIR%%/qtcore/qsequentialiterable.html
%%QT_DOCDIR%%/qtcore/qset-const-iterator-members.html
%%QT_DOCDIR%%/qtcore/qset-const-iterator.html
%%QT_DOCDIR%%/qtcore/qset-iterator-members.html
%%QT_DOCDIR%%/qtcore/qset-iterator.html
%%QT_DOCDIR%%/qtcore/qset-members.html
%%QT_DOCDIR%%/qtcore/qset.html
%%QT_DOCDIR%%/qtcore/qsetiterator-members.html
%%QT_DOCDIR%%/qtcore/qsetiterator.html
%%QT_DOCDIR%%/qtcore/qsettings-members.html
%%QT_DOCDIR%%/qtcore/qsettings-obsolete.html
%%QT_DOCDIR%%/qtcore/qsettings.html
%%QT_DOCDIR%%/qtcore/qshareddata-members.html
%%QT_DOCDIR%%/qtcore/qshareddata.html
%%QT_DOCDIR%%/qtcore/qshareddatapointer-members.html
%%QT_DOCDIR%%/qtcore/qshareddatapointer.html
%%QT_DOCDIR%%/qtcore/qsharedmemory-members.html
%%QT_DOCDIR%%/qtcore/qsharedmemory.html
%%QT_DOCDIR%%/qtcore/qsharedpointer-members.html
%%QT_DOCDIR%%/qtcore/qsharedpointer.html
%%QT_DOCDIR%%/qtcore/qsignalblocker-members.html
%%QT_DOCDIR%%/qtcore/qsignalblocker.html
%%QT_DOCDIR%%/qtcore/qsignalmapper-members.html
%%QT_DOCDIR%%/qtcore/qsignalmapper.html
%%QT_DOCDIR%%/qtcore/qsignaltransition-members.html
%%QT_DOCDIR%%/qtcore/qsignaltransition.html
%%QT_DOCDIR%%/qtcore/qsize-members.html
%%QT_DOCDIR%%/qtcore/qsize.html
%%QT_DOCDIR%%/qtcore/qsizef-members.html
%%QT_DOCDIR%%/qtcore/qsizef.html
%%QT_DOCDIR%%/qtcore/qsocketnotifier-members.html
%%QT_DOCDIR%%/qtcore/qsocketnotifier.html
%%QT_DOCDIR%%/qtcore/qsortfilterproxymodel-members.html
%%QT_DOCDIR%%/qtcore/qsortfilterproxymodel-obsolete.html
%%QT_DOCDIR%%/qtcore/qsortfilterproxymodel.html
%%QT_DOCDIR%%/qtcore/qstack-members.html
%%QT_DOCDIR%%/qtcore/qstack.html
%%QT_DOCDIR%%/qtcore/qstandardpaths-members.html
%%QT_DOCDIR%%/qtcore/qstandardpaths-obsolete.html
%%QT_DOCDIR%%/qtcore/qstandardpaths.html
%%QT_DOCDIR%%/qtcore/qstate-members.html
%%QT_DOCDIR%%/qtcore/qstate.html
%%QT_DOCDIR%%/qtcore/qstatemachine-members.html
%%QT_DOCDIR%%/qtcore/qstatemachine-signalevent-members.html
%%QT_DOCDIR%%/qtcore/qstatemachine-signalevent.html
%%QT_DOCDIR%%/qtcore/qstatemachine-wrappedevent-members.html
%%QT_DOCDIR%%/qtcore/qstatemachine-wrappedevent.html
%%QT_DOCDIR%%/qtcore/qstatemachine.html
%%QT_DOCDIR%%/qtcore/qstaticplugin-members.html
%%QT_DOCDIR%%/qtcore/qstaticplugin.html
%%QT_DOCDIR%%/qtcore/qstorageinfo-members.html
%%QT_DOCDIR%%/qtcore/qstorageinfo.html
%%QT_DOCDIR%%/qtcore/qstring-members.html
%%QT_DOCDIR%%/qtcore/qstring-null.html
%%QT_DOCDIR%%/qtcore/qstring-obsolete.html
%%QT_DOCDIR%%/qtcore/qstring.html
%%QT_DOCDIR%%/qtcore/qstringlist-members.html
%%QT_DOCDIR%%/qtcore/qstringlist.html
%%QT_DOCDIR%%/qtcore/qstringlistmodel-members.html
%%QT_DOCDIR%%/qtcore/qstringlistmodel.html
%%QT_DOCDIR%%/qtcore/qstringmatcher-members.html
%%QT_DOCDIR%%/qtcore/qstringmatcher.html
%%QT_DOCDIR%%/qtcore/qstringref-members.html
%%QT_DOCDIR%%/qtcore/qstringref-obsolete.html
%%QT_DOCDIR%%/qtcore/qstringref.html
%%QT_DOCDIR%%/qtcore/qsysinfo-members.html
%%QT_DOCDIR%%/qtcore/qsysinfo.html
%%QT_DOCDIR%%/qtcore/qsystemsemaphore-members.html
%%QT_DOCDIR%%/qtcore/qsystemsemaphore.html
%%QT_DOCDIR%%/qtcore/qt-obsolete.html
%%QT_DOCDIR%%/qtcore/qt.html
%%QT_DOCDIR%%/qtcore/qtalgorithms-obsolete.html
%%QT_DOCDIR%%/qtcore/qtalgorithms.html
%%QT_DOCDIR%%/qtcore/qtcore-index.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneclient-client-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneclient-client-h.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneclient-example.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneclient-localfortuneclient-pro.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneclient-main-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneserver-example.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneserver-localfortuneserver-pro.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneserver-main-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneserver-server-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneserver-server-h.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-sharedmemory-dialog-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-sharedmemory-dialog-h.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-sharedmemory-dialog-ui.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-sharedmemory-example.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-sharedmemory-main-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-ipc-sharedmemory-sharedmemory-pro.html
%%QT_DOCDIR%%/qtcore/qtcore-json-savegame-character-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-json-savegame-character-h.html
%%QT_DOCDIR%%/qtcore/qtcore-json-savegame-example.html
%%QT_DOCDIR%%/qtcore/qtcore-json-savegame-game-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-json-savegame-game-h.html
%%QT_DOCDIR%%/qtcore/qtcore-json-savegame-level-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-json-savegame-level-h.html
%%QT_DOCDIR%%/qtcore/qtcore-json-savegame-main-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-json-savegame-savegame-pro.html
+%%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-example.html
+%%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-main-cpp.html
+%%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-mainwindow-cpp.html
+%%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-mainwindow-h.html
+%%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-mimetypebrowser-pro.html
+%%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-mimetypemodel-cpp.html
+%%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-mimetypemodel-h.html
%%QT_DOCDIR%%/qtcore/qtcore-module.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-example.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-main-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-mandelbrot-pro.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-mandelbrotwidget-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-mandelbrotwidget-h.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-renderthread-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-renderthread-h.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-block-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-block-h.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-example.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-main-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-queuedcustomtype-pro.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-renderthread-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-renderthread-h.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-window-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-window-h.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-semaphores-example.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-semaphores-semaphores-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-semaphores-semaphores-pro.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-waitconditions-example.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-waitconditions-waitconditions-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-threads-waitconditions-waitconditions-pro.html
%%QT_DOCDIR%%/qtcore/qtcore-tools-contiguouscache-contiguouscache-pro.html
%%QT_DOCDIR%%/qtcore/qtcore-tools-contiguouscache-example.html
%%QT_DOCDIR%%/qtcore/qtcore-tools-contiguouscache-main-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-tools-contiguouscache-randomlistmodel-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-tools-contiguouscache-randomlistmodel-h.html
%%QT_DOCDIR%%/qtcore/qtcore-tools-customtype-customtype-pro.html
%%QT_DOCDIR%%/qtcore/qtcore-tools-customtype-example.html
%%QT_DOCDIR%%/qtcore/qtcore-tools-customtype-main-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-tools-customtype-message-cpp.html
%%QT_DOCDIR%%/qtcore/qtcore-tools-customtype-message-h.html
%%QT_DOCDIR%%/qtcore/qtcore.index
%%QT_DOCDIR%%/qtcore/qtcore.qhp
%%QT_DOCDIR%%/qtcore/qtcore.qhp.sha1
%%QT_DOCDIR%%/qtcore/qtcore.tags
%%QT_DOCDIR%%/qtcore/qtemporarydir-members.html
%%QT_DOCDIR%%/qtcore/qtemporarydir.html
%%QT_DOCDIR%%/qtcore/qtemporaryfile-members.html
%%QT_DOCDIR%%/qtcore/qtemporaryfile-obsolete.html
%%QT_DOCDIR%%/qtcore/qtemporaryfile.html
%%QT_DOCDIR%%/qtcore/qtendian.html
%%QT_DOCDIR%%/qtcore/qtextboundaryfinder-members.html
%%QT_DOCDIR%%/qtcore/qtextboundaryfinder.html
%%QT_DOCDIR%%/qtcore/qtextcodec-converterstate-members.html
%%QT_DOCDIR%%/qtcore/qtextcodec-converterstate.html
%%QT_DOCDIR%%/qtcore/qtextcodec-members.html
%%QT_DOCDIR%%/qtcore/qtextcodec-obsolete.html
%%QT_DOCDIR%%/qtcore/qtextcodec.html
%%QT_DOCDIR%%/qtcore/qtextdecoder-members.html
%%QT_DOCDIR%%/qtcore/qtextdecoder.html
%%QT_DOCDIR%%/qtcore/qtextencoder-members.html
%%QT_DOCDIR%%/qtcore/qtextencoder.html
%%QT_DOCDIR%%/qtcore/qtextstream-members.html
%%QT_DOCDIR%%/qtcore/qtextstream.html
%%QT_DOCDIR%%/qtcore/qtglobal-obsolete.html
%%QT_DOCDIR%%/qtcore/qtglobal.html
%%QT_DOCDIR%%/qtcore/qthread-members.html
%%QT_DOCDIR%%/qtcore/qthread.html
%%QT_DOCDIR%%/qtcore/qthreadpool-members.html
%%QT_DOCDIR%%/qtcore/qthreadpool.html
%%QT_DOCDIR%%/qtcore/qthreadstorage-members.html
%%QT_DOCDIR%%/qtcore/qthreadstorage.html
%%QT_DOCDIR%%/qtcore/qtime-members.html
%%QT_DOCDIR%%/qtcore/qtime.html
%%QT_DOCDIR%%/qtcore/qtimeline-members.html
%%QT_DOCDIR%%/qtcore/qtimeline.html
%%QT_DOCDIR%%/qtcore/qtimer-members.html
%%QT_DOCDIR%%/qtcore/qtimer.html
%%QT_DOCDIR%%/qtcore/qtimerevent-members.html
%%QT_DOCDIR%%/qtcore/qtimerevent.html
%%QT_DOCDIR%%/qtcore/qtimezone-members.html
%%QT_DOCDIR%%/qtcore/qtimezone-offsetdata-members.html
%%QT_DOCDIR%%/qtcore/qtimezone-offsetdata.html
%%QT_DOCDIR%%/qtcore/qtimezone.html
%%QT_DOCDIR%%/qtcore/qtmath.html
%%QT_DOCDIR%%/qtcore/qtplugin.html
%%QT_DOCDIR%%/qtcore/qtranslator-members.html
%%QT_DOCDIR%%/qtcore/qtranslator.html
%%QT_DOCDIR%%/qtcore/qunhandledexception-members.html
%%QT_DOCDIR%%/qtcore/qunhandledexception.html
%%QT_DOCDIR%%/qtcore/qurl-members.html
%%QT_DOCDIR%%/qtcore/qurl-obsolete.html
%%QT_DOCDIR%%/qtcore/qurl.html
%%QT_DOCDIR%%/qtcore/qurlquery-members.html
%%QT_DOCDIR%%/qtcore/qurlquery.html
%%QT_DOCDIR%%/qtcore/quuid-members.html
%%QT_DOCDIR%%/qtcore/quuid.html
%%QT_DOCDIR%%/qtcore/qvariant-members.html
%%QT_DOCDIR%%/qtcore/qvariant-obsolete.html
%%QT_DOCDIR%%/qtcore/qvariant.html
%%QT_DOCDIR%%/qtcore/qvariantanimation-members.html
%%QT_DOCDIR%%/qtcore/qvariantanimation.html
%%QT_DOCDIR%%/qtcore/qvarlengtharray-members.html
%%QT_DOCDIR%%/qtcore/qvarlengtharray.html
%%QT_DOCDIR%%/qtcore/qvector-members.html
%%QT_DOCDIR%%/qtcore/qvector.html
%%QT_DOCDIR%%/qtcore/qvectoriterator-members.html
%%QT_DOCDIR%%/qtcore/qvectoriterator.html
%%QT_DOCDIR%%/qtcore/qversionnumber-members.html
%%QT_DOCDIR%%/qtcore/qversionnumber.html
%%QT_DOCDIR%%/qtcore/qwaitcondition-members.html
%%QT_DOCDIR%%/qtcore/qwaitcondition.html
%%QT_DOCDIR%%/qtcore/qweakpointer-members.html
%%QT_DOCDIR%%/qtcore/qweakpointer-obsolete.html
%%QT_DOCDIR%%/qtcore/qweakpointer.html
%%QT_DOCDIR%%/qtcore/qwineventnotifier-members.html
%%QT_DOCDIR%%/qtcore/qwineventnotifier.html
%%QT_DOCDIR%%/qtcore/qwritelocker-members.html
%%QT_DOCDIR%%/qtcore/qwritelocker.html
%%QT_DOCDIR%%/qtcore/qxmlstreamattribute-members.html
%%QT_DOCDIR%%/qtcore/qxmlstreamattribute.html
%%QT_DOCDIR%%/qtcore/qxmlstreamattributes-members.html
%%QT_DOCDIR%%/qtcore/qxmlstreamattributes.html
%%QT_DOCDIR%%/qtcore/qxmlstreamentitydeclaration-members.html
%%QT_DOCDIR%%/qtcore/qxmlstreamentitydeclaration.html
%%QT_DOCDIR%%/qtcore/qxmlstreamentityresolver-members.html
%%QT_DOCDIR%%/qtcore/qxmlstreamentityresolver.html
%%QT_DOCDIR%%/qtcore/qxmlstreamnamespacedeclaration-members.html
%%QT_DOCDIR%%/qtcore/qxmlstreamnamespacedeclaration.html
%%QT_DOCDIR%%/qtcore/qxmlstreamnotationdeclaration-members.html
%%QT_DOCDIR%%/qtcore/qxmlstreamnotationdeclaration.html
%%QT_DOCDIR%%/qtcore/qxmlstreamreader-members.html
%%QT_DOCDIR%%/qtcore/qxmlstreamreader.html
%%QT_DOCDIR%%/qtcore/qxmlstreamwriter-members.html
%%QT_DOCDIR%%/qtcore/qxmlstreamwriter.html
%%QT_DOCDIR%%/qtcore/resources.html
%%QT_DOCDIR%%/qtcore/shared.html
%%QT_DOCDIR%%/qtcore/signalsandslots.html
%%QT_DOCDIR%%/qtcore/statemachine-api.html
%%QT_DOCDIR%%/qtcore/statemachine.html
%%QT_DOCDIR%%/qtcore/style/offline-simple.css
%%QT_DOCDIR%%/qtcore/style/offline.css
%%QT_DOCDIR%%/qtcore/timers.html
+%%QT_DOCDIR%%/qtdatavis3d.qch
+%%QT_DOCDIR%%/qtdatavisualization/datavisualization-examples.html
+%%QT_DOCDIR%%/qtdatavisualization/examples-manifest.xml
+%%QT_DOCDIR%%/qtdatavisualization/images/arrow_bc.png
+%%QT_DOCDIR%%/qtdatavisualization/images/audiolevels-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/bars-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/bgrContent.png
+%%QT_DOCDIR%%/qtdatavisualization/images/btn_next.png
+%%QT_DOCDIR%%/qtdatavisualization/images/btn_prev.png
+%%QT_DOCDIR%%/qtdatavisualization/images/bullet_dn.png
+%%QT_DOCDIR%%/qtdatavisualization/images/bullet_sq.png
+%%QT_DOCDIR%%/qtdatavisualization/images/custominput-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/customitems-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/customproxy-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/draggableaxes-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/home.png
+%%QT_DOCDIR%%/qtdatavisualization/images/ico_note.png
+%%QT_DOCDIR%%/qtdatavisualization/images/ico_note_attention.png
+%%QT_DOCDIR%%/qtdatavisualization/images/ico_out.png
+%%QT_DOCDIR%%/qtdatavisualization/images/itemmodel-example-2.png
+%%QT_DOCDIR%%/qtdatavisualization/images/itemmodel-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/logo.png
+%%QT_DOCDIR%%/qtdatavisualization/images/q3dbars-minimal.png
+%%QT_DOCDIR%%/qtdatavisualization/images/q3dscatter-minimal.png
+%%QT_DOCDIR%%/qtdatavisualization/images/q3dsurface-minimal.png
+%%QT_DOCDIR%%/qtdatavisualization/images/qmlaxisdrag-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/qmlaxisformatter-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/qmlbars-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/qmlcustominput-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/qmllegend-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/qmlmultigraph-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/qmloscilloscope-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/qmlscatter-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/qmlspectrogram-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/qmlsurface-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/qmlsurfacelayers-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/rotations-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/scatter-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/surface-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/texturesurface-example.png
+%%QT_DOCDIR%%/qtdatavisualization/images/volumetric-example.png
+%%QT_DOCDIR%%/qtdatavisualization/q3dbars-members.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dbars.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dcamera-members.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dcamera.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dinputhandler-members.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dinputhandler.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dlight-members.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dlight.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dobject-members.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dobject.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dscatter-members.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dscatter.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dscene-members.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dscene.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dsurface-members.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dsurface.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dtheme-members.html
+%%QT_DOCDIR%%/qtdatavisualization/q3dtheme.html
+%%QT_DOCDIR%%/qtdatavisualization/qabstract3daxis-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qabstract3daxis.html
+%%QT_DOCDIR%%/qtdatavisualization/qabstract3dgraph-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qabstract3dgraph.html
+%%QT_DOCDIR%%/qtdatavisualization/qabstract3dinputhandler-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qabstract3dinputhandler.html
+%%QT_DOCDIR%%/qtdatavisualization/qabstract3dseries-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qabstract3dseries.html
+%%QT_DOCDIR%%/qtdatavisualization/qabstractdataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qabstractdataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qbar3dseries-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qbar3dseries.html
+%%QT_DOCDIR%%/qtdatavisualization/qbardataitem-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qbardataitem.html
+%%QT_DOCDIR%%/qtdatavisualization/qbardataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qbardataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qcategory3daxis-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qcategory3daxis.html
+%%QT_DOCDIR%%/qtdatavisualization/qcustom3ditem-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qcustom3ditem.html
+%%QT_DOCDIR%%/qtdatavisualization/qcustom3dlabel-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qcustom3dlabel.html
+%%QT_DOCDIR%%/qtdatavisualization/qcustom3dvolume-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qcustom3dvolume.html
+%%QT_DOCDIR%%/qtdatavisualization/qheightmapsurfacedataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qheightmapsurfacedataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qitemmodelbardataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qitemmodelbardataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qitemmodelscatterdataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qitemmodelscatterdataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qitemmodelsurfacedataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qitemmodelsurfacedataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qlogvalue3daxisformatter-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qlogvalue3daxisformatter.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-abstract3dseries-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-abstract3dseries.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-abstractaxis3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-abstractaxis3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-abstractdataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-abstractdataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-abstractgraph3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-abstractgraph3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-abstractinputhandler3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-abstractinputhandler3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-bar3dseries-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-bar3dseries.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-bardataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-bardataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-bars3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-bars3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-camera3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-camera3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-categoryaxis3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-categoryaxis3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-colorgradient-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-colorgradient.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-colorgradientstop-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-colorgradientstop.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-custom3ditem-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-custom3ditem.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-custom3dlabel-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-custom3dlabel.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-custom3dvolume-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-custom3dvolume.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-heightmapsurfacedataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-heightmapsurfacedataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-inputhandler3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-inputhandler3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-itemmodelbardataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-itemmodelbardataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-itemmodelscatterdataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-itemmodelscatterdataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-itemmodelsurfacedataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-itemmodelsurfacedataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-light3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-light3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-logvalueaxis3dformatter-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-logvalueaxis3dformatter.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-scatter3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-scatter3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-scatter3dseries-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-scatter3dseries.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-scatterdataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-scatterdataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-scene3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-scene3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-surface3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-surface3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-surface3dseries-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-surface3dseries.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-surfacedataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-surfacedataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-theme3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-theme3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-themecolor-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-themecolor.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-touchinputhandler3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-touchinputhandler3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-valueaxis3d-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-valueaxis3d.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-valueaxis3dformatter-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qml-qtdatavisualization-valueaxis3dformatter.html
+%%QT_DOCDIR%%/qtdatavisualization/qscatter3dseries-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qscatter3dseries.html
+%%QT_DOCDIR%%/qtdatavisualization/qscatterdataitem-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qscatterdataitem.html
+%%QT_DOCDIR%%/qtdatavisualization/qscatterdataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qscatterdataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qsurface3dseries-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qsurface3dseries.html
+%%QT_DOCDIR%%/qtdatavisualization/qsurfacedataitem-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qsurfacedataitem.html
+%%QT_DOCDIR%%/qtdatavisualization/qsurfacedataproxy-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qsurfacedataproxy.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavis3d.qhp
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavis3d.qhp.sha1
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-audiolevels-audiolevels-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-audiolevels-audiolevels-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-audiolevels-audiolevels-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-audiolevels-audiolevelsiodevice-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-audiolevels-audiolevelsiodevice-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-audiolevels-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-audiolevels-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-bars-bars-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-bars-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-bars-graphmodifier-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-bars-graphmodifier-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-bars-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-custominput-custominput-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-custominput-custominput-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-custominput-custominputhandler-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-custominput-custominputhandler-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-custominput-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-custominput-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-custominput-scatterdatamodifier-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-custominput-scatterdatamodifier-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customitems-customitemgraph-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customitems-customitemgraph-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customitems-customitems-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customitems-customitems-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customitems-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customitems-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customproxy-customproxy-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customproxy-customproxy-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customproxy-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customproxy-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customproxy-rainfallgraph-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customproxy-rainfallgraph-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customproxy-variantbardatamapping-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customproxy-variantbardatamapping-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customproxy-variantbardataproxy-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customproxy-variantbardataproxy-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customproxy-variantdataset-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-customproxy-variantdataset-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-data-handling.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-draggableaxes-axesinputhandler-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-draggableaxes-axesinputhandler-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-draggableaxes-data-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-draggableaxes-data-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-draggableaxes-draggableaxes-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-draggableaxes-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-draggableaxes-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-getting-started.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-index.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-interacting-with-data.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-itemmodel-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-itemmodel-itemmodel-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-itemmodel-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-known-issues.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-module.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisdrag-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisdrag-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisdrag-qml-qmlaxisdrag-main-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisdrag-qml-qmlaxisdrag-newbutton-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisdrag-qmlaxisdrag-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisdrag-qmlaxisdrag-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisformatter-customformatter-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisformatter-customformatter-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisformatter-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisformatter-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisformatter-qml-qmlaxisformatter-data-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisformatter-qml-qmlaxisformatter-main-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisformatter-qml-qmlaxisformatter-newbutton-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisformatter-qmlaxisformatter-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlaxisformatter-qmlaxisformatter-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlbars-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlbars-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlbars-qml-qmlbars-axes-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlbars-qml-qmlbars-data-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlbars-qml-qmlbars-main-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlbars-qmlbars-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlbars-qmlbars-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlcustominput-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlcustominput-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlcustominput-qml-qmlcustominput-data-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlcustominput-qml-qmlcustominput-main-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlcustominput-qml-qmlcustominput-newbutton-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlcustominput-qmlcustominput-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlcustominput-qmlcustominput-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmllegend-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmllegend-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmllegend-qml-qmllegend-data-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmllegend-qml-qmllegend-legenditem-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmllegend-qml-qmllegend-main-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmllegend-qml-qmllegend-newbutton-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmllegend-qmllegend-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmllegend-qmllegend-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlmodule.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlmultigraph-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlmultigraph-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlmultigraph-qml-qmlmultigraph-data-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlmultigraph-qml-qmlmultigraph-main-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlmultigraph-qml-qmlmultigraph-newbutton-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlmultigraph-qmlmultigraph-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlmultigraph-qmlmultigraph-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmloscilloscope-datasource-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmloscilloscope-datasource-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmloscilloscope-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmloscilloscope-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmloscilloscope-qml-qmloscilloscope-main-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmloscilloscope-qml-qmloscilloscope-newbutton-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmloscilloscope-qmloscilloscope-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmloscilloscope-qmloscilloscope-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlscatter-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlscatter-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlscatter-qml-qmlscatter-data-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlscatter-qml-qmlscatter-main-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlscatter-qml-qmlscatter-newbutton-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlscatter-qmlscatter-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlscatter-qmlscatter-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlspectrogram-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlspectrogram-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlspectrogram-qml-qmlspectrogram-data-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlspectrogram-qml-qmlspectrogram-main-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlspectrogram-qml-qmlspectrogram-newbutton-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlspectrogram-qmlspectrogram-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlspectrogram-qmlspectrogram-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurface-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurface-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurface-qml-qmlsurface-data-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurface-qml-qmlsurface-main-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurface-qml-qmlsurface-newbutton-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurface-qmlsurface-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurface-qmlsurface-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurfacelayers-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurfacelayers-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurfacelayers-qml-qmlsurfacelayers-main-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurfacelayers-qml-qmlsurfacelayers-newbutton-qml.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurfacelayers-qmlsurfacelayers-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-qmlsurfacelayers-qmlsurfacelayers-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-rotations-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-rotations-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-rotations-rotations-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-rotations-rotations-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-rotations-scatterdatamodifier-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-rotations-scatterdatamodifier-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-scatter-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-scatter-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-scatter-scatter-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-scatter-scatterdatamodifier-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-scatter-scatterdatamodifier-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-surface-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-surface-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-surface-surface-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-surface-surface-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-surface-surfacegraph-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-surface-surfacegraph-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-texturesurface-custominputhandler-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-texturesurface-custominputhandler-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-texturesurface-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-texturesurface-highlightseries-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-texturesurface-highlightseries-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-texturesurface-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-texturesurface-surfacegraph-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-texturesurface-surfacegraph-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-texturesurface-texturedsurface-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-texturesurface-texturesurface-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-texturesurface-topographicseries-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-texturesurface-topographicseries-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-volumetric-example.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-volumetric-main-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-volumetric-volumetric-cpp.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-volumetric-volumetric-h.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-volumetric-volumetric-pro.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization-volumetric-volumetric-qrc.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization.html
+%%QT_DOCDIR%%/qtdatavisualization/qtdatavisualization.index
+%%QT_DOCDIR%%/qtdatavisualization/qtouch3dinputhandler-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qtouch3dinputhandler.html
+%%QT_DOCDIR%%/qtdatavisualization/qvalue3daxis-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qvalue3daxis.html
+%%QT_DOCDIR%%/qtdatavisualization/qvalue3daxisformatter-members.html
+%%QT_DOCDIR%%/qtdatavisualization/qvalue3daxisformatter.html
+%%QT_DOCDIR%%/qtdatavisualization/style/offline-simple.css
+%%QT_DOCDIR%%/qtdatavisualization/style/offline.css
%%QT_DOCDIR%%/qtdbus.qch
%%QT_DOCDIR%%/qtdbus/examples-dbus.html
%%QT_DOCDIR%%/qtdbus/examples-manifest.xml
%%QT_DOCDIR%%/qtdbus/images/arrow_bc.png
%%QT_DOCDIR%%/qtdbus/images/bgrContent.png
%%QT_DOCDIR%%/qtdbus/images/btn_next.png
%%QT_DOCDIR%%/qtdbus/images/btn_prev.png
%%QT_DOCDIR%%/qtdbus/images/bullet_dn.png
%%QT_DOCDIR%%/qtdbus/images/bullet_sq.png
%%QT_DOCDIR%%/qtdbus/images/dbus-chat-example.png
%%QT_DOCDIR%%/qtdbus/images/home.png
%%QT_DOCDIR%%/qtdbus/images/ico_note.png
%%QT_DOCDIR%%/qtdbus/images/ico_note_attention.png
%%QT_DOCDIR%%/qtdbus/images/ico_out.png
%%QT_DOCDIR%%/qtdbus/images/logo.png
%%QT_DOCDIR%%/qtdbus/images/qurl-ftppath.png
%%QT_DOCDIR%%/qtdbus/images/remotecontrolledcar-car-example.png
%%QT_DOCDIR%%/qtdbus/qdbus.html
%%QT_DOCDIR%%/qtdbus/qdbusabstractadaptor-members.html
%%QT_DOCDIR%%/qtdbus/qdbusabstractadaptor.html
%%QT_DOCDIR%%/qtdbus/qdbusabstractinterface-members.html
%%QT_DOCDIR%%/qtdbus/qdbusabstractinterface.html
%%QT_DOCDIR%%/qtdbus/qdbusadaptorexample.html
%%QT_DOCDIR%%/qtdbus/qdbusargument-members.html
%%QT_DOCDIR%%/qtdbus/qdbusargument.html
%%QT_DOCDIR%%/qtdbus/qdbusconnection-members.html
%%QT_DOCDIR%%/qtdbus/qdbusconnection-obsolete.html
%%QT_DOCDIR%%/qtdbus/qdbusconnection.html
%%QT_DOCDIR%%/qtdbus/qdbusconnectioninterface-members.html
%%QT_DOCDIR%%/qtdbus/qdbusconnectioninterface-obsolete.html
%%QT_DOCDIR%%/qtdbus/qdbusconnectioninterface.html
%%QT_DOCDIR%%/qtdbus/qdbuscontext-members.html
%%QT_DOCDIR%%/qtdbus/qdbuscontext.html
%%QT_DOCDIR%%/qtdbus/qdbusdeclaringsignals.html
%%QT_DOCDIR%%/qtdbus/qdbusdeclaringslots.html
%%QT_DOCDIR%%/qtdbus/qdbuserror-members.html
%%QT_DOCDIR%%/qtdbus/qdbuserror.html
%%QT_DOCDIR%%/qtdbus/qdbusinterface-members.html
%%QT_DOCDIR%%/qtdbus/qdbusinterface.html
%%QT_DOCDIR%%/qtdbus/qdbusmessage-members.html
%%QT_DOCDIR%%/qtdbus/qdbusmessage.html
%%QT_DOCDIR%%/qtdbus/qdbusobjectpath-members.html
%%QT_DOCDIR%%/qtdbus/qdbusobjectpath.html
%%QT_DOCDIR%%/qtdbus/qdbuspendingcall-members.html
%%QT_DOCDIR%%/qtdbus/qdbuspendingcall.html
%%QT_DOCDIR%%/qtdbus/qdbuspendingcallwatcher-members.html
%%QT_DOCDIR%%/qtdbus/qdbuspendingcallwatcher.html
%%QT_DOCDIR%%/qtdbus/qdbuspendingreply-members.html
%%QT_DOCDIR%%/qtdbus/qdbuspendingreply.html
%%QT_DOCDIR%%/qtdbus/qdbusreply-members.html
%%QT_DOCDIR%%/qtdbus/qdbusreply.html
%%QT_DOCDIR%%/qtdbus/qdbusserver-members.html
%%QT_DOCDIR%%/qtdbus/qdbusserver.html
%%QT_DOCDIR%%/qtdbus/qdbusservicewatcher-members.html
%%QT_DOCDIR%%/qtdbus/qdbusservicewatcher.html
%%QT_DOCDIR%%/qtdbus/qdbussignature-members.html
%%QT_DOCDIR%%/qtdbus/qdbussignature.html
%%QT_DOCDIR%%/qtdbus/qdbustypesystem.html
%%QT_DOCDIR%%/qtdbus/qdbusunixfiledescriptor-members.html
%%QT_DOCDIR%%/qtdbus/qdbusunixfiledescriptor.html
%%QT_DOCDIR%%/qtdbus/qdbusvariant-members.html
%%QT_DOCDIR%%/qtdbus/qdbusvariant.html
%%QT_DOCDIR%%/qtdbus/qdbusviewer.html
%%QT_DOCDIR%%/qtdbus/qdbusvirtualobject-members.html
%%QT_DOCDIR%%/qtdbus/qdbusvirtualobject.html
%%QT_DOCDIR%%/qtdbus/qdbusxml2cpp.html
%%QT_DOCDIR%%/qtdbus/qtdbus-chat-chat-cpp.html
%%QT_DOCDIR%%/qtdbus/qtdbus-chat-chat-h.html
%%QT_DOCDIR%%/qtdbus/qtdbus-chat-chat-pro.html
%%QT_DOCDIR%%/qtdbus/qtdbus-chat-chatmainwindow-ui.html
%%QT_DOCDIR%%/qtdbus/qtdbus-chat-chatsetnickname-ui.html
%%QT_DOCDIR%%/qtdbus/qtdbus-chat-example.html
%%QT_DOCDIR%%/qtdbus/qtdbus-chat-org-example-chat-xml.html
%%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexping-cpp.html
%%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexping-h.html
%%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexping-pro.html
%%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexpingpong-pro.html
%%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexpong-cpp.html
%%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexpong-h.html
%%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexpong-pro.html
%%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-example.html
%%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-ping-common-h.html
%%QT_DOCDIR%%/qtdbus/qtdbus-index.html
%%QT_DOCDIR%%/qtdbus/qtdbus-listnames-example.html
%%QT_DOCDIR%%/qtdbus/qtdbus-listnames-listnames-cpp.html
%%QT_DOCDIR%%/qtdbus/qtdbus-listnames-listnames-pro.html
%%QT_DOCDIR%%/qtdbus/qtdbus-module.html
%%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-example.html
%%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-ping-common-h.html
%%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-ping-cpp.html
%%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-ping-pro.html
%%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-pingpong-pro.html
%%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-pong-cpp.html
%%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-pong-h.html
%%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-pong-pro.html
%%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-car-car-cpp.html
%%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-car-car-h.html
%%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-car-car-pro.html
%%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-car-car-xml.html
%%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-car-main-cpp.html
%%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-controller-car-xml.html
%%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-controller-controller-cpp.html
%%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-controller-controller-h.html
%%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-controller-controller-pro.html
%%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-controller-controller-ui.html
%%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-example.html
%%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-remotecontrolledcar-pro.html
%%QT_DOCDIR%%/qtdbus/qtdbus.index
%%QT_DOCDIR%%/qtdbus/qtdbus.qhp
%%QT_DOCDIR%%/qtdbus/qtdbus.qhp.sha1
%%QT_DOCDIR%%/qtdbus/style/offline-simple.css
%%QT_DOCDIR%%/qtdbus/style/offline.css
%%QT_DOCDIR%%/qtdbus/usingadaptors.html
%%QT_DOCDIR%%/qtdesigner.qch
%%QT_DOCDIR%%/qtdesigner/designer-buddy-mode.html
%%QT_DOCDIR%%/qtdesigner/designer-connection-mode.html
%%QT_DOCDIR%%/qtdesigner/designer-creating-custom-widgets-extensions.html
%%QT_DOCDIR%%/qtdesigner/designer-creating-custom-widgets.html
%%QT_DOCDIR%%/qtdesigner/designer-creating-mainwindows.html
%%QT_DOCDIR%%/qtdesigner/designer-customizing-forms.html
%%QT_DOCDIR%%/qtdesigner/designer-editing-mode.html
%%QT_DOCDIR%%/qtdesigner/designer-layouts.html
%%QT_DOCDIR%%/qtdesigner/designer-license-information.html
%%QT_DOCDIR%%/qtdesigner/designer-preview.html
%%QT_DOCDIR%%/qtdesigner/designer-quick-start.html
%%QT_DOCDIR%%/qtdesigner/designer-resources.html
%%QT_DOCDIR%%/qtdesigner/designer-stylesheet.html
%%QT_DOCDIR%%/qtdesigner/designer-tab-order.html
%%QT_DOCDIR%%/qtdesigner/designer-to-know.html
%%QT_DOCDIR%%/qtdesigner/designer-ui-file-format.html
%%QT_DOCDIR%%/qtdesigner/designer-using-a-ui-file.html
%%QT_DOCDIR%%/qtdesigner/designer-using-containers.html
%%QT_DOCDIR%%/qtdesigner/designer-using-custom-widgets.html
%%QT_DOCDIR%%/qtdesigner/designer-widget-mode.html
%%QT_DOCDIR%%/qtdesigner/examples-designer.html
%%QT_DOCDIR%%/qtdesigner/examples-manifest.xml
%%QT_DOCDIR%%/qtdesigner/images/addressbook-tutorial-part3-labeled-layout.png
%%QT_DOCDIR%%/qtdesigner/images/arrow_bc.png
%%QT_DOCDIR%%/qtdesigner/images/bgrContent.png
%%QT_DOCDIR%%/qtdesigner/images/btn_next.png
%%QT_DOCDIR%%/qtdesigner/images/btn_prev.png
%%QT_DOCDIR%%/qtdesigner/images/bullet_dn.png
%%QT_DOCDIR%%/qtdesigner/images/bullet_sq.png
%%QT_DOCDIR%%/qtdesigner/images/calculatorbuilder-example.png
%%QT_DOCDIR%%/qtdesigner/images/calculatorform-example.png
%%QT_DOCDIR%%/qtdesigner/images/containerextension-example.png
%%QT_DOCDIR%%/qtdesigner/images/customwidgetplugin-example.png
%%QT_DOCDIR%%/qtdesigner/images/designer-action-editor.png
%%QT_DOCDIR%%/qtdesigner/images/designer-add-files-button.png
%%QT_DOCDIR%%/qtdesigner/images/designer-add-resource-entry-button.png
%%QT_DOCDIR%%/qtdesigner/images/designer-adding-dockwidget.png
%%QT_DOCDIR%%/qtdesigner/images/designer-adding-menu-action.png
%%QT_DOCDIR%%/qtdesigner/images/designer-adding-toolbar-action.png
%%QT_DOCDIR%%/qtdesigner/images/designer-buddy-making.png
%%QT_DOCDIR%%/qtdesigner/images/designer-buddy-mode.png
%%QT_DOCDIR%%/qtdesigner/images/designer-buddy-tool.png
%%QT_DOCDIR%%/qtdesigner/images/designer-choosing-form.png
%%QT_DOCDIR%%/qtdesigner/images/designer-code-viewer.png
%%QT_DOCDIR%%/qtdesigner/images/designer-connection-dialog.png
%%QT_DOCDIR%%/qtdesigner/images/designer-connection-editing.png
%%QT_DOCDIR%%/qtdesigner/images/designer-connection-editor.png
%%QT_DOCDIR%%/qtdesigner/images/designer-connection-highlight.png
%%QT_DOCDIR%%/qtdesigner/images/designer-connection-making.png
%%QT_DOCDIR%%/qtdesigner/images/designer-connection-mode.png
%%QT_DOCDIR%%/qtdesigner/images/designer-connection-to-form.png
%%QT_DOCDIR%%/qtdesigner/images/designer-connection-tool.png
%%QT_DOCDIR%%/qtdesigner/images/designer-containers-dockwidget.png
%%QT_DOCDIR%%/qtdesigner/images/designer-containers-frame.png
%%QT_DOCDIR%%/qtdesigner/images/designer-containers-groupbox.png
%%QT_DOCDIR%%/qtdesigner/images/designer-containers-stackedwidget.png
%%QT_DOCDIR%%/qtdesigner/images/designer-containers-tabwidget.png
%%QT_DOCDIR%%/qtdesigner/images/designer-containers-toolbox.png
%%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu-entry1.png
%%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu-entry2.png
%%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu-entry3.png
%%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu-entry4.png
%%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu1.png
%%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu2.png
%%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu3.png
%%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu4.png
%%QT_DOCDIR%%/qtdesigner/images/designer-creating-toolbar.png
%%QT_DOCDIR%%/qtdesigner/images/designer-dialog-preview.png
%%QT_DOCDIR%%/qtdesigner/images/designer-dragging-onto-form.png
%%QT_DOCDIR%%/qtdesigner/images/designer-edit-resource.png
%%QT_DOCDIR%%/qtdesigner/images/designer-edit-resources-button.png
%%QT_DOCDIR%%/qtdesigner/images/designer-editing-mode.png
%%QT_DOCDIR%%/qtdesigner/images/designer-english-dialog.png
%%QT_DOCDIR%%/qtdesigner/images/designer-file-menu.png
%%QT_DOCDIR%%/qtdesigner/images/designer-form-layout-cleanlooks.png
%%QT_DOCDIR%%/qtdesigner/images/designer-form-layout-macintosh.png
%%QT_DOCDIR%%/qtdesigner/images/designer-form-layout-windowsXP.png
%%QT_DOCDIR%%/qtdesigner/images/designer-form-layout.png
%%QT_DOCDIR%%/qtdesigner/images/designer-form-layoutfunction.png
%%QT_DOCDIR%%/qtdesigner/images/designer-form-settings.png
%%QT_DOCDIR%%/qtdesigner/images/designer-form-viewcode.png
%%QT_DOCDIR%%/qtdesigner/images/designer-french-dialog.png
%%QT_DOCDIR%%/qtdesigner/images/designer-layout-inserting.png
%%QT_DOCDIR%%/qtdesigner/images/designer-main-window.png
%%QT_DOCDIR%%/qtdesigner/images/designer-manual-containerextension.png
%%QT_DOCDIR%%/qtdesigner/images/designer-manual-membersheetextension.png
%%QT_DOCDIR%%/qtdesigner/images/designer-manual-propertysheetextension.png
%%QT_DOCDIR%%/qtdesigner/images/designer-manual-taskmenuextension.png
%%QT_DOCDIR%%/qtdesigner/images/designer-multiple-screenshot.png
%%QT_DOCDIR%%/qtdesigner/images/designer-object-inspector.png
%%QT_DOCDIR%%/qtdesigner/images/designer-preview-deviceskin-selection.png
%%QT_DOCDIR%%/qtdesigner/images/designer-preview-style-selection.png
%%QT_DOCDIR%%/qtdesigner/images/designer-preview-style.png
%%QT_DOCDIR%%/qtdesigner/images/designer-preview-stylesheet.png
%%QT_DOCDIR%%/qtdesigner/images/designer-promoting-widgets.png
%%QT_DOCDIR%%/qtdesigner/images/designer-property-editor-add-dynamic.png
%%QT_DOCDIR%%/qtdesigner/images/designer-property-editor-configure.png
%%QT_DOCDIR%%/qtdesigner/images/designer-property-editor-remove-dynamic.png
%%QT_DOCDIR%%/qtdesigner/images/designer-property-editor-toolbar.png
%%QT_DOCDIR%%/qtdesigner/images/designer-property-editor.png
%%QT_DOCDIR%%/qtdesigner/images/designer-reload-resources-button.png
%%QT_DOCDIR%%/qtdesigner/images/designer-remove-resource-entry-button.png
%%QT_DOCDIR%%/qtdesigner/images/designer-removing-toolbar-action.png
%%QT_DOCDIR%%/qtdesigner/images/designer-resource-browser.png
%%QT_DOCDIR%%/qtdesigner/images/designer-resource-selector.png
%%QT_DOCDIR%%/qtdesigner/images/designer-resources-editing.png
%%QT_DOCDIR%%/qtdesigner/images/designer-resources-using.png
%%QT_DOCDIR%%/qtdesigner/images/designer-screenshot.png
%%QT_DOCDIR%%/qtdesigner/images/designer-selecting-widget.png
%%QT_DOCDIR%%/qtdesigner/images/designer-set-layout.png
%%QT_DOCDIR%%/qtdesigner/images/designer-set-layout2.png
%%QT_DOCDIR%%/qtdesigner/images/designer-splitter-layout.png
%%QT_DOCDIR%%/qtdesigner/images/designer-stylesheet-options.png
%%QT_DOCDIR%%/qtdesigner/images/designer-stylesheet-usage.png
%%QT_DOCDIR%%/qtdesigner/images/designer-tab-order-mode.png
%%QT_DOCDIR%%/qtdesigner/images/designer-tab-order-tool.png
%%QT_DOCDIR%%/qtdesigner/images/designer-widget-box.png
%%QT_DOCDIR%%/qtdesigner/images/designer-widget-morph.png
%%QT_DOCDIR%%/qtdesigner/images/designer-widget-tool.png
%%QT_DOCDIR%%/qtdesigner/images/directapproach-calculatorform.png
%%QT_DOCDIR%%/qtdesigner/images/home.png
%%QT_DOCDIR%%/qtdesigner/images/ico_note.png
%%QT_DOCDIR%%/qtdesigner/images/ico_note_attention.png
%%QT_DOCDIR%%/qtdesigner/images/ico_out.png
%%QT_DOCDIR%%/qtdesigner/images/logo.png
%%QT_DOCDIR%%/qtdesigner/images/qtdesignerextensions.png
%%QT_DOCDIR%%/qtdesigner/images/qtdesignerscreenshot.png
%%QT_DOCDIR%%/qtdesigner/images/rgbController-arrangement.png
%%QT_DOCDIR%%/qtdesigner/images/rgbController-configure-connection1.png
%%QT_DOCDIR%%/qtdesigner/images/rgbController-configure-connection2.png
%%QT_DOCDIR%%/qtdesigner/images/rgbController-final-layout.png
%%QT_DOCDIR%%/qtdesigner/images/rgbController-form-gridLayout.png
%%QT_DOCDIR%%/qtdesigner/images/rgbController-no-toplevel-layout.png
%%QT_DOCDIR%%/qtdesigner/images/rgbController-property-editing.png
%%QT_DOCDIR%%/qtdesigner/images/rgbController-screenshot.png
%%QT_DOCDIR%%/qtdesigner/images/rgbController-selectForLayout.png
%%QT_DOCDIR%%/qtdesigner/images/rgbController-signalsAndSlots.png
%%QT_DOCDIR%%/qtdesigner/images/taskmenuextension-dialog.png
%%QT_DOCDIR%%/qtdesigner/images/taskmenuextension-example-faded.png
%%QT_DOCDIR%%/qtdesigner/images/taskmenuextension-menu.png
%%QT_DOCDIR%%/qtdesigner/images/worldtimeclock-connection.png
%%QT_DOCDIR%%/qtdesigner/images/worldtimeclock-signalandslot.png
%%QT_DOCDIR%%/qtdesigner/images/worldtimeclockbuilder-example.png
%%QT_DOCDIR%%/qtdesigner/images/worldtimeclockplugin-example.png
%%QT_DOCDIR%%/qtdesigner/qabstractextensionfactory-members.html
%%QT_DOCDIR%%/qtdesigner/qabstractextensionfactory.html
%%QT_DOCDIR%%/qtdesigner/qabstractextensionmanager-members.html
%%QT_DOCDIR%%/qtdesigner/qabstractextensionmanager.html
%%QT_DOCDIR%%/qtdesigner/qabstractformbuilder-members.html
%%QT_DOCDIR%%/qtdesigner/qabstractformbuilder.html
%%QT_DOCDIR%%/qtdesigner/qdesigneractioneditorinterface-members.html
%%QT_DOCDIR%%/qtdesigner/qdesigneractioneditorinterface.html
%%QT_DOCDIR%%/qtdesigner/qdesignercontainerextension-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignercontainerextension.html
%%QT_DOCDIR%%/qtdesigner/qdesignercustomwidgetcollectioninterface-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignercustomwidgetcollectioninterface.html
%%QT_DOCDIR%%/qtdesigner/qdesignercustomwidgetinterface-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignercustomwidgetinterface.html
%%QT_DOCDIR%%/qtdesigner/qdesignerdynamicpropertysheetextension-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignerdynamicpropertysheetextension.html
%%QT_DOCDIR%%/qtdesigner/qdesignerformeditorinterface-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignerformeditorinterface.html
%%QT_DOCDIR%%/qtdesigner/qdesignerformwindowcursorinterface-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignerformwindowcursorinterface.html
%%QT_DOCDIR%%/qtdesigner/qdesignerformwindowinterface-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignerformwindowinterface.html
%%QT_DOCDIR%%/qtdesigner/qdesignerformwindowmanagerinterface-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignerformwindowmanagerinterface-obsolete.html
%%QT_DOCDIR%%/qtdesigner/qdesignerformwindowmanagerinterface.html
%%QT_DOCDIR%%/qtdesigner/qdesignermembersheetextension-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignermembersheetextension.html
%%QT_DOCDIR%%/qtdesigner/qdesignerobjectinspectorinterface-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignerobjectinspectorinterface.html
%%QT_DOCDIR%%/qtdesigner/qdesignerpropertyeditorinterface-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignerpropertyeditorinterface.html
%%QT_DOCDIR%%/qtdesigner/qdesignerpropertysheetextension-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignerpropertysheetextension.html
%%QT_DOCDIR%%/qtdesigner/qdesignertaskmenuextension-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignertaskmenuextension.html
%%QT_DOCDIR%%/qtdesigner/qdesignerwidgetboxinterface-members.html
%%QT_DOCDIR%%/qtdesigner/qdesignerwidgetboxinterface.html
%%QT_DOCDIR%%/qtdesigner/qextensionfactory-members.html
%%QT_DOCDIR%%/qtdesigner/qextensionfactory.html
%%QT_DOCDIR%%/qtdesigner/qextensionmanager-members.html
%%QT_DOCDIR%%/qtdesigner/qextensionmanager.html
%%QT_DOCDIR%%/qtdesigner/qformbuilder-members.html
%%QT_DOCDIR%%/qtdesigner/qformbuilder.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-calculatorbuilder-pro.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-calculatorbuilder-qrc.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-calculatorform-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-calculatorform-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-calculatorform-ui.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-example.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-main-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorform-calculatorform-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorform-calculatorform-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorform-calculatorform-pro.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorform-calculatorform-ui.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorform-example.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorform-main-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-components.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-containerextension-pro.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-example.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidget-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidget-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidgetcontainerextension-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidgetcontainerextension-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidgetextensionfactory-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidgetextensionfactory-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidgetplugin-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidgetplugin-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-customwidgetplugin-analogclock-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-customwidgetplugin-analogclock-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-customwidgetplugin-customwidgetplugin-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-customwidgetplugin-customwidgetplugin-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-customwidgetplugin-customwidgetplugin-pro.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-customwidgetplugin-example.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-index.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-manual.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-module.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-example.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-taskmenuextension-pro.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoe-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoe-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoedialog-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoedialog-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoeplugin-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoeplugin-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoetaskmenu-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoetaskmenu-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockbuilder-example.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockbuilder-form-ui.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockbuilder-main-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockbuilder-worldtimeclockbuilder-pro.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockbuilder-worldtimeclockbuilder-qrc.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockplugin-example.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockplugin-worldtimeclock-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockplugin-worldtimeclock-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockplugin-worldtimeclockplugin-cpp.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockplugin-worldtimeclockplugin-h.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockplugin-worldtimeclockplugin-pro.html
%%QT_DOCDIR%%/qtdesigner/qtdesigner.index
%%QT_DOCDIR%%/qtdesigner/qtdesigner.qhp
%%QT_DOCDIR%%/qtdesigner/qtdesigner.qhp.sha1
%%QT_DOCDIR%%/qtdesigner/style/offline-simple.css
%%QT_DOCDIR%%/qtdesigner/style/offline.css
%%QT_DOCDIR%%/qtdoc.qch
%%QT_DOCDIR%%/qtdoc/3rdparty.html
%%QT_DOCDIR%%/qtdoc/accelerators.html
%%QT_DOCDIR%%/qtdoc/accessibility.html
%%QT_DOCDIR%%/qtdoc/accessible-qtquick.html
%%QT_DOCDIR%%/qtdoc/accessible-qwidget.html
%%QT_DOCDIR%%/qtdoc/accessible.html
%%QT_DOCDIR%%/qtdoc/activeqt-idc.html
%%QT_DOCDIR%%/qtdoc/activeqt-testcon.html
%%QT_DOCDIR%%/qtdoc/all-examples.html
%%QT_DOCDIR%%/qtdoc/android-runtime-licensing-notes.html
%%QT_DOCDIR%%/qtdoc/android-support.html
%%QT_DOCDIR%%/qtdoc/android3rdpartylibs.html
%%QT_DOCDIR%%/qtdoc/androidgs.html
+%%QT_DOCDIR%%/qtdoc/androidservices.html
%%QT_DOCDIR%%/qtdoc/annotated.html
%%QT_DOCDIR%%/qtdoc/appicon.html
%%QT_DOCDIR%%/qtdoc/atomic-operations.html
%%QT_DOCDIR%%/qtdoc/best-practices.html
%%QT_DOCDIR%%/qtdoc/bughowto.html
%%QT_DOCDIR%%/qtdoc/build-sources.html
%%QT_DOCDIR%%/qtdoc/building-from-source-ios.html
%%QT_DOCDIR%%/qtdoc/classes.html
%%QT_DOCDIR%%/qtdoc/classesandfunctions.html
%%QT_DOCDIR%%/qtdoc/cmake-manual.html
%%QT_DOCDIR%%/qtdoc/commerciallicense.html
%%QT_DOCDIR%%/qtdoc/configure-options.html
%%QT_DOCDIR%%/qtdoc/debug.html
%%QT_DOCDIR%%/qtdoc/deployment-android.html
%%QT_DOCDIR%%/qtdoc/deployment-plugins.html
%%QT_DOCDIR%%/qtdoc/deployment.html
%%QT_DOCDIR%%/qtdoc/desktop-integration.html
%%QT_DOCDIR%%/qtdoc/embedded-linux.html
%%QT_DOCDIR%%/qtdoc/examples-activeqt.html
%%QT_DOCDIR%%/qtdoc/examples-android.html
%%QT_DOCDIR%%/qtdoc/examples-animation.html
%%QT_DOCDIR%%/qtdoc/examples-draganddrop.html
%%QT_DOCDIR%%/qtdoc/examples-gestures.html
%%QT_DOCDIR%%/qtdoc/examples-ios.html
%%QT_DOCDIR%%/qtdoc/examples-ipc.html
%%QT_DOCDIR%%/qtdoc/examples-layouts.html
%%QT_DOCDIR%%/qtdoc/examples-sql.html
%%QT_DOCDIR%%/qtdoc/examples-statemachine.html
%%QT_DOCDIR%%/qtdoc/examples-threadandconcurrent.html
%%QT_DOCDIR%%/qtdoc/examples-widgets-tools.html
%%QT_DOCDIR%%/qtdoc/examples-xml.html
%%QT_DOCDIR%%/qtdoc/exceptionsafety.html
%%QT_DOCDIR%%/qtdoc/fdl.html
%%QT_DOCDIR%%/qtdoc/functions.html
%%QT_DOCDIR%%/qtdoc/gettingstarted.html
%%QT_DOCDIR%%/qtdoc/gettingstartedqml.html
%%QT_DOCDIR%%/qtdoc/gettingstartedqt.html
+%%QT_DOCDIR%%/qtdoc/gpl.html
%%QT_DOCDIR%%/qtdoc/groups.html
%%QT_DOCDIR%%/qtdoc/hierarchy.html
%%QT_DOCDIR%%/qtdoc/highdpi.html
%%QT_DOCDIR%%/qtdoc/i18n-plural-rules.html
%%QT_DOCDIR%%/qtdoc/i18n-source-translation.html
%%QT_DOCDIR%%/qtdoc/i18n.html
%%QT_DOCDIR%%/qtdoc/images/accessibleobjecttree.png
%%QT_DOCDIR%%/qtdoc/images/activeqt-examples.png
%%QT_DOCDIR%%/qtdoc/images/animatedtiles_snapshot.png
%%QT_DOCDIR%%/qtdoc/images/animation-examples.png
%%QT_DOCDIR%%/qtdoc/images/applicationwindow.png
%%QT_DOCDIR%%/qtdoc/images/arrow_bc.png
%%QT_DOCDIR%%/qtdoc/images/bgrContent.png
%%QT_DOCDIR%%/qtdoc/images/btn_next.png
%%QT_DOCDIR%%/qtdoc/images/btn_prev.png
%%QT_DOCDIR%%/qtdoc/images/bullet_dn.png
%%QT_DOCDIR%%/qtdoc/images/bullet_sq.png
%%QT_DOCDIR%%/qtdoc/images/controlstexteditor_designer.png
%%QT_DOCDIR%%/qtdoc/images/controlstexteditor_main.png
%%QT_DOCDIR%%/qtdoc/images/controlstexteditor_navigator.png
%%QT_DOCDIR%%/qtdoc/images/controlstexteditor_newproperties.png
%%QT_DOCDIR%%/qtdoc/images/controlstexteditor_openproperties.png
%%QT_DOCDIR%%/qtdoc/images/controlstexteditor_rowproperties.png
%%QT_DOCDIR%%/qtdoc/images/deployment-mac-application.png
%%QT_DOCDIR%%/qtdoc/images/deployment-mac-bundlestructure.png
%%QT_DOCDIR%%/qtdoc/images/deployment-windows-depends.png
%%QT_DOCDIR%%/qtdoc/images/draganddrop-examples.png
%%QT_DOCDIR%%/qtdoc/images/flickr_application.png
%%QT_DOCDIR%%/qtdoc/images/gs-project1.png
%%QT_DOCDIR%%/qtdoc/images/gs-project2.png
%%QT_DOCDIR%%/qtdoc/images/gs1.png
%%QT_DOCDIR%%/qtdoc/images/gs2.png
%%QT_DOCDIR%%/qtdoc/images/gs3.png
%%QT_DOCDIR%%/qtdoc/images/gs4.png
%%QT_DOCDIR%%/qtdoc/images/gs5.png
%%QT_DOCDIR%%/qtdoc/images/home.png
%%QT_DOCDIR%%/qtdoc/images/ico_note.png
%%QT_DOCDIR%%/qtdoc/images/ico_note_attention.png
%%QT_DOCDIR%%/qtdoc/images/ico_out.png
%%QT_DOCDIR%%/qtdoc/images/icon_QtCreator_78x78px.png
%%QT_DOCDIR%%/qtdoc/images/icon_Qt_78x78px.png
%%QT_DOCDIR%%/qtdoc/images/icon_Tools.png
%%QT_DOCDIR%%/qtdoc/images/layout-examples.png
%%QT_DOCDIR%%/qtdoc/images/logo.png
%%QT_DOCDIR%%/qtdoc/images/qml-extending-types.png
%%QT_DOCDIR%%/qtdoc/images/qml-texteditor1_button.png
%%QT_DOCDIR%%/qtdoc/images/qml-texteditor1_editmenu.png
%%QT_DOCDIR%%/qtdoc/images/qml-texteditor1_filemenu.png
%%QT_DOCDIR%%/qtdoc/images/qml-texteditor1_simplebutton.png
%%QT_DOCDIR%%/qtdoc/images/qml-texteditor2_menubar.png
%%QT_DOCDIR%%/qtdoc/images/qml-texteditor3_texteditor.png
%%QT_DOCDIR%%/qtdoc/images/qml-texteditor4_texteditor.png
%%QT_DOCDIR%%/qtdoc/images/qml-texteditor5_editmenu.png
%%QT_DOCDIR%%/qtdoc/images/qml-texteditor5_filemenu.png
%%QT_DOCDIR%%/qtdoc/images/qml-texteditor5_newfile.png
%%QT_DOCDIR%%/qtdoc/images/qml-uses-animation.png
%%QT_DOCDIR%%/qtdoc/images/qml-uses-integratingjs.png
%%QT_DOCDIR%%/qtdoc/images/qml-uses-layouts-anchors.png
%%QT_DOCDIR%%/qtdoc/images/qml-uses-layouts-direct.png
%%QT_DOCDIR%%/qtdoc/images/qml-uses-layouts-positioners.png
%%QT_DOCDIR%%/qtdoc/images/qml-uses-text.png
%%QT_DOCDIR%%/qtdoc/images/qml-uses-visual-opacity.png
%%QT_DOCDIR%%/qtdoc/images/qml-uses-visual-rectangles.png
%%QT_DOCDIR%%/qtdoc/images/qml-uses-visual-transforms.png
%%QT_DOCDIR%%/qtdoc/images/qt-codesample.png
%%QT_DOCDIR%%/qtdoc/images/qt-creator-gs.png
%%QT_DOCDIR%%/qtdoc/images/qt-embedded-fontfeatures.png
%%QT_DOCDIR%%/qtdoc/images/qt5_everywhere_demo.jpg
%%QT_DOCDIR%%/qtdoc/images/qt5_graphicaleffects.jpg
%%QT_DOCDIR%%/qtdoc/images/qt5_particles.jpg
%%QT_DOCDIR%%/qtdoc/images/qt5_shadereffect.jpg
%%QT_DOCDIR%%/qtdoc/images/qt5_video.jpg
%%QT_DOCDIR%%/qtdoc/images/qt5_widgets.jpg
%%QT_DOCDIR%%/qtdoc/images/qtcreator-run.png
%%QT_DOCDIR%%/qtdoc/images/qtlocation-mapviewer-demo.jpg
%%QT_DOCDIR%%/qtdoc/images/qtpositioning_weatherinfo_ex.jpg
%%QT_DOCDIR%%/qtdoc/images/qtquickcontrols-example-gallery-android.png
%%QT_DOCDIR%%/qtdoc/images/qtquickcontrols-example-gallery-osx.png
%%QT_DOCDIR%%/qtdoc/images/qtsensors_accelbubble_ex.jpg
%%QT_DOCDIR%%/qtdoc/images/qtwebengine_quicknanobrowser.jpg
%%QT_DOCDIR%%/qtdoc/images/scalability-gridlayout.png
%%QT_DOCDIR%%/qtdoc/images/session.png
%%QT_DOCDIR%%/qtdoc/images/sql-examples.png
%%QT_DOCDIR%%/qtdoc/images/thread-examples.png
%%QT_DOCDIR%%/qtdoc/images/threadsandobjects.png
%%QT_DOCDIR%%/qtdoc/images/threadvisual-example.png
%%QT_DOCDIR%%/qtdoc/images/tool-examples.png
%%QT_DOCDIR%%/qtdoc/images/xml-examples.png
%%QT_DOCDIR%%/qtdoc/index.html
-%%QT_DOCDIR%%/qtdoc/install-wince.html
%%QT_DOCDIR%%/qtdoc/internationalization.html
%%QT_DOCDIR%%/qtdoc/ios-support.html
%%QT_DOCDIR%%/qtdoc/ipc.html
%%QT_DOCDIR%%/qtdoc/known-issues.html
%%QT_DOCDIR%%/qtdoc/lgpl.html
%%QT_DOCDIR%%/qtdoc/licenses-fonts.html
%%QT_DOCDIR%%/qtdoc/licenses.html
%%QT_DOCDIR%%/qtdoc/licensing.html
%%QT_DOCDIR%%/qtdoc/linux-building.html
%%QT_DOCDIR%%/qtdoc/linux-deployment.html
%%QT_DOCDIR%%/qtdoc/linux-issues.html
%%QT_DOCDIR%%/qtdoc/linux-requirements.html
%%QT_DOCDIR%%/qtdoc/linux.html
%%QT_DOCDIR%%/qtdoc/mac-licensing.html
%%QT_DOCDIR%%/qtdoc/mobiledevelopment.html
%%QT_DOCDIR%%/qtdoc/moc.html
%%QT_DOCDIR%%/qtdoc/modules-cpp.html
%%QT_DOCDIR%%/qtdoc/modules-qml.html
%%QT_DOCDIR%%/qtdoc/modules.html
%%QT_DOCDIR%%/qtdoc/namespaces.html
%%QT_DOCDIR%%/qtdoc/newclasses51.html
%%QT_DOCDIR%%/qtdoc/newclasses52.html
%%QT_DOCDIR%%/qtdoc/newclasses53.html
%%QT_DOCDIR%%/qtdoc/newclasses54.html
%%QT_DOCDIR%%/qtdoc/newclasses55.html
%%QT_DOCDIR%%/qtdoc/newclasses56.html
+%%QT_DOCDIR%%/qtdoc/newclasses57.html
%%QT_DOCDIR%%/qtdoc/obsoleteclasses.html
%%QT_DOCDIR%%/qtdoc/obsoleteqmltypes.html
%%QT_DOCDIR%%/qtdoc/opensourcelicense.html
%%QT_DOCDIR%%/qtdoc/opensslsupport.html
%%QT_DOCDIR%%/qtdoc/osx-building.html
%%QT_DOCDIR%%/qtdoc/osx-deployment.html
%%QT_DOCDIR%%/qtdoc/osx-issues.html
%%QT_DOCDIR%%/qtdoc/osx-requirements.html
%%QT_DOCDIR%%/qtdoc/osx.html
%%QT_DOCDIR%%/qtdoc/overviews-main.html
%%QT_DOCDIR%%/qtdoc/overviews.html
%%QT_DOCDIR%%/qtdoc/platform-notes-android.html
%%QT_DOCDIR%%/qtdoc/platform-notes-integrity.html
%%QT_DOCDIR%%/qtdoc/platform-notes-ios.html
%%QT_DOCDIR%%/qtdoc/platform-notes-qnx.html
%%QT_DOCDIR%%/qtdoc/platform-notes-vxworks.html
%%QT_DOCDIR%%/qtdoc/plugins-howto.html
%%QT_DOCDIR%%/qtdoc/porting-to-ios.html
%%QT_DOCDIR%%/qtdoc/portingcppapp.html
%%QT_DOCDIR%%/qtdoc/portingguide.html
%%QT_DOCDIR%%/qtdoc/portingqmlapp.html
%%QT_DOCDIR%%/qtdoc/portingtoandroid.html
%%QT_DOCDIR%%/qtdoc/publishtogoogleplay.html
%%QT_DOCDIR%%/qtdoc/qml-codingconventions.html
%%QT_DOCDIR%%/qtdoc/qml-glossary.html
%%QT_DOCDIR%%/qtdoc/qmlapplications.html
%%QT_DOCDIR%%/qtdoc/qmlbasictypes.html
%%QT_DOCDIR%%/qtdoc/qmlfirststeps.html
%%QT_DOCDIR%%/qtdoc/qmltypes.html
%%QT_DOCDIR%%/qtdoc/qpa.html
%%QT_DOCDIR%%/qtdoc/qt-activex.html
%%QT_DOCDIR%%/qtdoc/qt-conf.html
%%QT_DOCDIR%%/qtdoc/qt-embedded-fonts.html
%%QT_DOCDIR%%/qtdoc/qt-embedded-kmap2qmap.html
%%QT_DOCDIR%%/qtdoc/qt-embedded-makeqpf.html
%%QT_DOCDIR%%/qtdoc/qt-gui-concepts.html
%%QT_DOCDIR%%/qtdoc/qt5-intro.html
-%%QT_DOCDIR%%/qtdoc/qtce.html
%%QT_DOCDIR%%/qtdoc/qtconcurrent-mtexamples.html
%%QT_DOCDIR%%/qtdoc/qtconcurrentexamples.html
%%QT_DOCDIR%%/qtdoc/qtdoc.index
%%QT_DOCDIR%%/qtdoc/qtdoc.qhp
%%QT_DOCDIR%%/qtdoc/qtdoc.qhp.sha1
%%QT_DOCDIR%%/qtdoc/qtexamples.html
%%QT_DOCDIR%%/qtdoc/qtexamplesandtutorials.html
%%QT_DOCDIR%%/qtdoc/qtmain.html
%%QT_DOCDIR%%/qtdoc/qtmodules.html
%%QT_DOCDIR%%/qtdoc/qtquick-debugging.html
%%QT_DOCDIR%%/qtdoc/qtquick-deployment.html
%%QT_DOCDIR%%/qtdoc/qtquick-internationalization.html
%%QT_DOCDIR%%/qtdoc/qtquick-performance.html
%%QT_DOCDIR%%/qtdoc/qtquick-porting-qt5.html
%%QT_DOCDIR%%/qtdoc/qtquick-qmlscene.html
%%QT_DOCDIR%%/qtdoc/qtquick-qtquicktest.html
%%QT_DOCDIR%%/qtdoc/qtquick-usecase-animations.html
%%QT_DOCDIR%%/qtdoc/qtquick-usecase-integratingjs.html
%%QT_DOCDIR%%/qtdoc/qtquick-usecase-layouts.html
%%QT_DOCDIR%%/qtdoc/qtquick-usecase-styling.html
%%QT_DOCDIR%%/qtdoc/qtquick-usecase-text.html
%%QT_DOCDIR%%/qtdoc/qtquick-usecase-userinput.html
%%QT_DOCDIR%%/qtdoc/qtquick-usecase-visual.html
%%QT_DOCDIR%%/qtdoc/qtquickcontrols-texteditor-action.html
%%QT_DOCDIR%%/qtdoc/qtquickcontrols-texteditor-logic.html
%%QT_DOCDIR%%/qtdoc/qtquickcontrols-texteditor-ui.html
%%QT_DOCDIR%%/qtdoc/qtquickcontrols-texteditor.html
%%QT_DOCDIR%%/qtdoc/qundo.html
%%QT_DOCDIR%%/qtdoc/rcc.html
%%QT_DOCDIR%%/qtdoc/reference-overview.html
-%%QT_DOCDIR%%/qtdoc/requirements-wince.html
%%QT_DOCDIR%%/qtdoc/restoring-geometry.html
%%QT_DOCDIR%%/qtdoc/scalability.html
%%QT_DOCDIR%%/qtdoc/session.html
-%%QT_DOCDIR%%/qtdoc/shadow.html
%%QT_DOCDIR%%/qtdoc/sharedlibrary.html
%%QT_DOCDIR%%/qtdoc/signalsandslots-syntaxes.html
%%QT_DOCDIR%%/qtdoc/sourcebreaks.html
%%QT_DOCDIR%%/qtdoc/sql-examples.html
%%QT_DOCDIR%%/qtdoc/string-processing.html
%%QT_DOCDIR%%/qtdoc/style/offline-simple.css
%%QT_DOCDIR%%/qtdoc/style/offline.css
%%QT_DOCDIR%%/qtdoc/style/qt5-sidebar.html
%%QT_DOCDIR%%/qtdoc/supported-platforms-and-configurations.html
%%QT_DOCDIR%%/qtdoc/supported-platforms.html
%%QT_DOCDIR%%/qtdoc/testing-and-debugging.html
%%QT_DOCDIR%%/qtdoc/third-party-libraries.html
%%QT_DOCDIR%%/qtdoc/thread-basics.html
%%QT_DOCDIR%%/qtdoc/thread.html
%%QT_DOCDIR%%/qtdoc/threads-modules.html
%%QT_DOCDIR%%/qtdoc/threads-qobject.html
%%QT_DOCDIR%%/qtdoc/threads-reentrancy.html
%%QT_DOCDIR%%/qtdoc/threads-synchronizing.html
%%QT_DOCDIR%%/qtdoc/threads-technologies.html
%%QT_DOCDIR%%/qtdoc/threads.html
%%QT_DOCDIR%%/qtdoc/topics-app-development.html
%%QT_DOCDIR%%/qtdoc/topics-core.html
%%QT_DOCDIR%%/qtdoc/topics-data-storage.html
%%QT_DOCDIR%%/qtdoc/topics-graphics.html
%%QT_DOCDIR%%/qtdoc/topics-network-connectivity.html
%%QT_DOCDIR%%/qtdoc/topics-scripting.html
%%QT_DOCDIR%%/qtdoc/topics-ui.html
%%QT_DOCDIR%%/qtdoc/topics-web-content.html
%%QT_DOCDIR%%/qtdoc/touchinputexamples.html
%%QT_DOCDIR%%/qtdoc/trademarks.html
%%QT_DOCDIR%%/qtdoc/uic.html
%%QT_DOCDIR%%/qtdoc/unicode.html
%%QT_DOCDIR%%/qtdoc/unix-signals.html
%%QT_DOCDIR%%/qtdoc/whatsnew50.html
%%QT_DOCDIR%%/qtdoc/whatsnew51.html
%%QT_DOCDIR%%/qtdoc/whatsnew52.html
%%QT_DOCDIR%%/qtdoc/whatsnew53.html
%%QT_DOCDIR%%/qtdoc/whatsnew54.html
%%QT_DOCDIR%%/qtdoc/whatsnew55.html
%%QT_DOCDIR%%/qtdoc/whatsnew56.html
+%%QT_DOCDIR%%/qtdoc/whatsnew57.html
%%QT_DOCDIR%%/qtdoc/why-moc.html
-%%QT_DOCDIR%%/qtdoc/wince-with-qt-introduction.html
%%QT_DOCDIR%%/qtdoc/windows-building.html
%%QT_DOCDIR%%/qtdoc/windows-deployment.html
%%QT_DOCDIR%%/qtdoc/windows-issues.html
%%QT_DOCDIR%%/qtdoc/windows-requirements.html
%%QT_DOCDIR%%/qtdoc/windows-support.html
-%%QT_DOCDIR%%/qtdoc/windowsce-customization.html
-%%QT_DOCDIR%%/qtdoc/windowsce-opengl.html
-%%QT_DOCDIR%%/qtdoc/windowsce-signing.html
%%QT_DOCDIR%%/qtdoc/winrt-support.html
%%QT_DOCDIR%%/qtdoc/xml-examples.html
-%%QT_DOCDIR%%/qtenginio.qch
-%%QT_DOCDIR%%/qtenginio/enginio-client-module.html
-%%QT_DOCDIR%%/qtenginio/enginio-cpp-classes-and-examples.html
-%%QT_DOCDIR%%/qtenginio/enginio-qt-cloudaddressbook-example.html
-%%QT_DOCDIR%%/qtenginio/enginio-qt-image-gallery-cpp-example.html
-%%QT_DOCDIR%%/qtenginio/enginio-qt-todos-cpp-example.html
-%%QT_DOCDIR%%/qtenginio/enginio.html
-%%QT_DOCDIR%%/qtenginio/enginioclient-members.html
-%%QT_DOCDIR%%/qtenginio/enginioclient.html
-%%QT_DOCDIR%%/qtenginio/enginioclientconnection-members.html
-%%QT_DOCDIR%%/qtenginio/enginioclientconnection.html
-%%QT_DOCDIR%%/qtenginio/enginioidentity-members.html
-%%QT_DOCDIR%%/qtenginio/enginioidentity.html
-%%QT_DOCDIR%%/qtenginio/enginiomodel-members.html
-%%QT_DOCDIR%%/qtenginio/enginiomodel.html
-%%QT_DOCDIR%%/qtenginio/enginiooauth2authentication-members.html
-%%QT_DOCDIR%%/qtenginio/enginiooauth2authentication.html
-%%QT_DOCDIR%%/qtenginio/enginioreply-members.html
-%%QT_DOCDIR%%/qtenginio/enginioreply.html
-%%QT_DOCDIR%%/qtenginio/examples-manifest.xml
-%%QT_DOCDIR%%/qtenginio/images/arrow_bc.png
-%%QT_DOCDIR%%/qtenginio/images/bgrContent.png
-%%QT_DOCDIR%%/qtenginio/images/btn_next.png
-%%QT_DOCDIR%%/qtenginio/images/btn_prev.png
-%%QT_DOCDIR%%/qtenginio/images/bullet_dn.png
-%%QT_DOCDIR%%/qtenginio/images/bullet_sq.png
-%%QT_DOCDIR%%/qtenginio/images/cloudaddressbook-example.png
-%%QT_DOCDIR%%/qtenginio/images/gallery-example.png
-%%QT_DOCDIR%%/qtenginio/images/home.png
-%%QT_DOCDIR%%/qtenginio/images/ico_note.png
-%%QT_DOCDIR%%/qtenginio/images/ico_note_attention.png
-%%QT_DOCDIR%%/qtenginio/images/ico_out.png
-%%QT_DOCDIR%%/qtenginio/images/logo.png
-%%QT_DOCDIR%%/qtenginio/images/todo-example.png
-%%QT_DOCDIR%%/qtenginio/qtenginio-cloudaddressbook-addressbookmodel-cpp.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-cloudaddressbook-addressbookmodel-h.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-cloudaddressbook-cloudaddressbook-pro.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-cloudaddressbook-main-cpp.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-cloudaddressbook-mainwindow-cpp.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-cloudaddressbook-mainwindow-h.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-cloudaddressbook-mainwindow-ui.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-image-gallery-cpp-image-gallery-cpp-pro.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-image-gallery-cpp-imagemodel-cpp.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-image-gallery-cpp-imagemodel-h.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-image-gallery-cpp-imageobject-cpp.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-image-gallery-cpp-imageobject-h.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-image-gallery-cpp-main-cpp.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-image-gallery-cpp-mainwindow-cpp.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-image-gallery-cpp-mainwindow-h.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-todos-cpp-main-cpp.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-todos-cpp-mainwindow-cpp.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-todos-cpp-mainwindow-h.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-todos-cpp-todos-cpp-pro.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-todos-cpp-todosmodel-cpp.html
-%%QT_DOCDIR%%/qtenginio/qtenginio-todos-cpp-todosmodel-h.html
-%%QT_DOCDIR%%/qtenginio/qtenginio.index
-%%QT_DOCDIR%%/qtenginio/qtenginio.qhp
-%%QT_DOCDIR%%/qtenginio/qtenginio.qhp.sha1
-%%QT_DOCDIR%%/qtenginio/style/offline-simple.css
-%%QT_DOCDIR%%/qtenginio/style/offline.css
-%%QT_DOCDIR%%/qtenginiooverview.qch
-%%QT_DOCDIR%%/qtenginiooverview/enginio-cpp.html
-%%QT_DOCDIR%%/qtenginiooverview/enginio-dashboard.html
-%%QT_DOCDIR%%/qtenginiooverview/enginio-getting-started.html
-%%QT_DOCDIR%%/qtenginiooverview/enginio-index.html
-%%QT_DOCDIR%%/qtenginiooverview/enginio-qml.html
-%%QT_DOCDIR%%/qtenginiooverview/images/arrow_bc.png
-%%QT_DOCDIR%%/qtenginiooverview/images/bgrContent.png
-%%QT_DOCDIR%%/qtenginiooverview/images/btn_next.png
-%%QT_DOCDIR%%/qtenginiooverview/images/btn_prev.png
-%%QT_DOCDIR%%/qtenginiooverview/images/bullet_dn.png
-%%QT_DOCDIR%%/qtenginiooverview/images/bullet_sq.png
-%%QT_DOCDIR%%/qtenginiooverview/images/home.png
-%%QT_DOCDIR%%/qtenginiooverview/images/ico_note.png
-%%QT_DOCDIR%%/qtenginiooverview/images/ico_note_attention.png
-%%QT_DOCDIR%%/qtenginiooverview/images/ico_out.png
-%%QT_DOCDIR%%/qtenginiooverview/images/logo.png
-%%QT_DOCDIR%%/qtenginiooverview/images/object_browser_first_city_object.png
-%%QT_DOCDIR%%/qtenginiooverview/qtenginiooverview.index
-%%QT_DOCDIR%%/qtenginiooverview/qtenginiooverview.qhp
-%%QT_DOCDIR%%/qtenginiooverview/qtenginiooverview.qhp.sha1
-%%QT_DOCDIR%%/qtenginiooverview/style/offline-simple.css
-%%QT_DOCDIR%%/qtenginiooverview/style/offline.css
-%%QT_DOCDIR%%/qtenginiooverview/tutorials.html
-%%QT_DOCDIR%%/qtenginioqml.qch
-%%QT_DOCDIR%%/qtenginioqml/enginio-qml-image-gallery-example.html
-%%QT_DOCDIR%%/qtenginioqml/enginio-qml-socialtodos-example.html
-%%QT_DOCDIR%%/qtenginioqml/enginio-qml-todos-example.html
-%%QT_DOCDIR%%/qtenginioqml/enginio-qml-types-and-examples.html
-%%QT_DOCDIR%%/qtenginioqml/enginio-qml-users-example.html
-%%QT_DOCDIR%%/qtenginioqml/enginio-qmlmodule.html
-%%QT_DOCDIR%%/qtenginioqml/examples-manifest.xml
-%%QT_DOCDIR%%/qtenginioqml/images/arrow_bc.png
-%%QT_DOCDIR%%/qtenginioqml/images/bgrContent.png
-%%QT_DOCDIR%%/qtenginioqml/images/btn_next.png
-%%QT_DOCDIR%%/qtenginioqml/images/btn_prev.png
-%%QT_DOCDIR%%/qtenginioqml/images/bullet_dn.png
-%%QT_DOCDIR%%/qtenginioqml/images/bullet_sq.png
-%%QT_DOCDIR%%/qtenginioqml/images/home.png
-%%QT_DOCDIR%%/qtenginioqml/images/ico_note.png
-%%QT_DOCDIR%%/qtenginioqml/images/ico_note_attention.png
-%%QT_DOCDIR%%/qtenginioqml/images/ico_out.png
-%%QT_DOCDIR%%/qtenginioqml/images/image-gallery.png
-%%QT_DOCDIR%%/qtenginioqml/images/logo.png
-%%QT_DOCDIR%%/qtenginioqml/images/socialtodo-example.png
-%%QT_DOCDIR%%/qtenginioqml/images/todolist.png
-%%QT_DOCDIR%%/qtenginioqml/images/users-example.png
-%%QT_DOCDIR%%/qtenginioqml/qml-enginio-enginioclient-members.html
-%%QT_DOCDIR%%/qtenginioqml/qml-enginio-enginioclient.html
-%%QT_DOCDIR%%/qtenginioqml/qml-enginio-enginiomodel-members.html
-%%QT_DOCDIR%%/qtenginioqml/qml-enginio-enginiomodel.html
-%%QT_DOCDIR%%/qtenginioqml/qml-enginio-enginiooauth2authentication-members.html
-%%QT_DOCDIR%%/qtenginioqml/qml-enginio-enginiooauth2authentication.html
-%%QT_DOCDIR%%/qtenginioqml/qml-enginio-enginioreply-members.html
-%%QT_DOCDIR%%/qtenginioqml/qml-enginio-enginioreply.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-image-gallery-gallery-qrc.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-image-gallery-image-gallery-pro.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-image-gallery-image-gallery-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-socialtodos-header-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-socialtodos-list-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-socialtodos-login-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-socialtodos-sharedialog-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-socialtodos-socialtodos-pro.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-socialtodos-socialtodos-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-socialtodos-socialtodos-qrc.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-socialtodos-textfield-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-socialtodos-todolists-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-socialtodos-touchbutton-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-todos-todo-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-todos-todo-qrc.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-todos-todos-pro.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-users-browse-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-users-login-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-users-register-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-users-users-pro.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-users-users-qml.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml-users-users-qrc.html
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml.index
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml.qhp
-%%QT_DOCDIR%%/qtenginioqml/qtenginioqml.qhp.sha1
-%%QT_DOCDIR%%/qtenginioqml/style/offline-simple.css
-%%QT_DOCDIR%%/qtenginioqml/style/offline.css
+%%QT_DOCDIR%%/qtgamepad.qch
+%%QT_DOCDIR%%/qtgamepad/examples-manifest.xml
+%%QT_DOCDIR%%/qtgamepad/images/arrow_bc.png
+%%QT_DOCDIR%%/qtgamepad/images/bgrContent.png
+%%QT_DOCDIR%%/qtgamepad/images/btn_next.png
+%%QT_DOCDIR%%/qtgamepad/images/btn_prev.png
+%%QT_DOCDIR%%/qtgamepad/images/bullet_dn.png
+%%QT_DOCDIR%%/qtgamepad/images/bullet_sq.png
+%%QT_DOCDIR%%/qtgamepad/images/configuregamepadbuttons-example.png
+%%QT_DOCDIR%%/qtgamepad/images/home.png
+%%QT_DOCDIR%%/qtgamepad/images/ico_note.png
+%%QT_DOCDIR%%/qtgamepad/images/ico_note_attention.png
+%%QT_DOCDIR%%/qtgamepad/images/ico_out.png
+%%QT_DOCDIR%%/qtgamepad/images/keynavigationgamepad-example.png
+%%QT_DOCDIR%%/qtgamepad/images/logo.png
+%%QT_DOCDIR%%/qtgamepad/images/qtquickgamepad-example.png
+%%QT_DOCDIR%%/qtgamepad/qgamepad-members.html
+%%QT_DOCDIR%%/qtgamepad/qgamepad.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-configurebuttons-android-androidmanifest-xml.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-configurebuttons-configurebuttons-pro.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-configurebuttons-example.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-configurebuttons-main-cpp.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-configurebuttons-main-qml.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-configurebuttons-qml-qrc.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-examples.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-index.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-keynavigation-example.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-keynavigation-keynavigation-pro.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-keynavigation-main-cpp.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-keynavigation-qml-main-qml.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-keynavigation-qml-qrc.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-module.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-mouseitem-example.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-mouseitem-main-cpp.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-mouseitem-mouseitem-pro.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-mouseitem-qml-main-qml.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-mouseitem-qml-qrc.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-qmlmodule.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-example.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-main-cpp.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-buttonimage-qml.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-dpad-qml.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-joystickviewer-qml.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-leftthumbstick-qml.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-main-qml.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-qrc.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-rightthumbstick-qml.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-quickgamepad-pro.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-simple-android-androidmanifest-xml.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-simple-example.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-simple-gamepadmonitor-cpp.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-simple-gamepadmonitor-h.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-simple-main-cpp.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad-simple-simple-pro.html
+%%QT_DOCDIR%%/qtgamepad/qtgamepad.index
+%%QT_DOCDIR%%/qtgamepad/qtgamepad.qhp
+%%QT_DOCDIR%%/qtgamepad/qtgamepad.qhp.sha1
+%%QT_DOCDIR%%/qtgamepad/style/offline-simple.css
+%%QT_DOCDIR%%/qtgamepad/style/offline.css
%%QT_DOCDIR%%/qtgraphicaleffects.qch
%%QT_DOCDIR%%/qtgraphicaleffects/graphicaleffects.html
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_bug_and_butterfly.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode10.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode11.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode12.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode13.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode14.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode15.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode16.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode17.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode18.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode19.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode20.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode21.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode22.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode4.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode5.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode6.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode7.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode8.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode9.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_brightness1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_brightness2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_brightness3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_contrast1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_contrast2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_contrast3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_contrast_graph.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ColorOverlay_butterfly.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ColorOverlay_color1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ColorOverlay_color2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ColorOverlay_color3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_hue1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_hue2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_hue3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_hue_scale.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_lightness1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_lightness2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_lightness3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_saturation1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_saturation2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_saturation3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_angle1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_angle2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_angle3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_gradient1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_gradient2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_gradient3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_horizontalOffset1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_horizontalOffset2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_horizontalOffset3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_maskSource1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_maskSource2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Desaturate_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Desaturate_desaturation1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Desaturate_desaturation2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Desaturate_desaturation3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_angle1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_angle2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_angle3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_length1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_length2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_length3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Displace_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Displace_displacement1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Displace_displacement2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Displace_displacement3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Displace_map.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow-transparentBorder.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_butterfly.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_color1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_color2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_color3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_horizontalOffset1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_horizontalOffset2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_horizontalOffset3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_radius1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_radius2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_radius3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_spread1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_spread2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_spread3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/FastBlur_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/FastBlur_radius1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/FastBlur_radius2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/FastBlur_radius3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/FastBlur_transparentBorder1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/FastBlur_transparentBorder2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_gamma1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_gamma1_graph.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_gamma2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_gamma2_graph.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_gamma3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_gamma3_graph.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_deviation1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_deviation2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_deviation3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_deviation_graph.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_radius1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_radius2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_radius3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_transparentBorder1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_transparentBorder2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Glow-transparentBorder.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_butterfly.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_color1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_color2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_color3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_radius1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_radius2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_radius3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_spread1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_spread2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_spread3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_hue1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_hue2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_hue3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_lightness1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_lightness2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_lightness3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_saturation1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_saturation2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_saturation3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_butterfly.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_color1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_color2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_color3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_fast1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_fast2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_horizontalOffset1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_horizontalOffset2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_horizontalOffset3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_radius1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_radius2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_radius3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_spread1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_spread2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_spread3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_butterfly.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_default_curve.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_gamma1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_gamma2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_gamma2_curve.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_gamma3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_gamma3_curve.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumInput1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumInput2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumInput2_curve.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumInput3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumInput3_curve.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumOutput1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumOutput2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumOutput2_curve.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumOutput3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumOutput3_curve.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumInput1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumInput2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumInput2_curve.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumInput3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumInput3_curve.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumOutput1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumOutput2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumOutput2_curve.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumOutput3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumOutput3_curve.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_end1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_end2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_end3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_gradient1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_gradient2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_gradient3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_maskSource1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_maskSource2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_start1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_start2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_start3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/MaskedBlur_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/MaskedBlur_mask.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/MaskedBlur_radius1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/MaskedBlur_radius2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/MaskedBlur_radius3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/OpacityMask_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/OpacityMask_mask.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Original_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Original_butterfly.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/Original_butterfly_black.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_angle1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_angle2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_angle3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_horizontalOffset1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_horizontalOffset2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_horizontalOffset3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_angle1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_angle2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_angle3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_gradient1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_gradient2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_gradient3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_horizontalOffset1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_horizontalOffset2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_horizontalOffset3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_horizontalRadius1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_horizontalRadius2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_maskSource1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_maskSource2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_applied.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_color1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_color2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_color3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_cornerRadius1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_cornerRadius2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_cornerRadius3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_glowRadius1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_glowRadius2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_glowRadius3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_spread1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_spread2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_spread3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_loops1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_loops2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_loops3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_radius1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_radius2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_radius3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_transparentBorder1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_transparentBorder2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_mask.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_spread1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_spread2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_spread3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_threshold1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_threshold2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_threshold3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_bug.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_horizontalOffset1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_horizontalOffset2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_horizontalOffset3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_length1.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_length2.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_length3.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/arrow_bc.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/bgrContent.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/btn_next.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/btn_prev.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/bullet_dn.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/bullet_sq.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/home.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ico_note.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ico_note_attention.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/ico_out.png
%%QT_DOCDIR%%/qtgraphicaleffects/images/logo.png
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-blend-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-blend.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-brightnesscontrast-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-brightnesscontrast.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-colorize-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-colorize.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-coloroverlay-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-coloroverlay.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-conicalgradient-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-conicalgradient.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-desaturate-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-desaturate.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-directionalblur-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-directionalblur.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-displace-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-displace.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-dropshadow-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-dropshadow.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-fastblur-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-fastblur.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-gammaadjust-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-gammaadjust.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-gaussianblur-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-gaussianblur.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-glow-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-glow.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-huesaturation-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-huesaturation.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-innershadow-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-innershadow.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-leveladjust-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-leveladjust.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-lineargradient-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-lineargradient.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-maskedblur-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-maskedblur.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-opacitymask-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-opacitymask.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-radialblur-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-radialblur.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-radialgradient-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-radialgradient.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-rectangularglow-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-rectangularglow.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-recursiveblur-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-recursiveblur.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-thresholdmask-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-thresholdmask.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-zoomblur-members.html
%%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-zoomblur.html
%%QT_DOCDIR%%/qtgraphicaleffects/qtgraphicaleffects-index.html
%%QT_DOCDIR%%/qtgraphicaleffects/qtgraphicaleffects-qmlmodule.html
%%QT_DOCDIR%%/qtgraphicaleffects/qtgraphicaleffects.index
%%QT_DOCDIR%%/qtgraphicaleffects/qtgraphicaleffects.qhp
%%QT_DOCDIR%%/qtgraphicaleffects/qtgraphicaleffects.qhp.sha1
%%QT_DOCDIR%%/qtgraphicaleffects/qtgraphicaleffects.tags
%%QT_DOCDIR%%/qtgraphicaleffects/style/offline-simple.css
%%QT_DOCDIR%%/qtgraphicaleffects/style/offline.css
%%QT_DOCDIR%%/qtgui.qch
%%QT_DOCDIR%%/qtgui/coordsys.html
%%QT_DOCDIR%%/qtgui/dnd.html
%%QT_DOCDIR%%/qtgui/examples-manifest.xml
%%QT_DOCDIR%%/qtgui/images/alphafill.png
%%QT_DOCDIR%%/qtgui/images/analogclock-window-example.png
%%QT_DOCDIR%%/qtgui/images/analogclockwindow-viewport.png
%%QT_DOCDIR%%/qtgui/images/arrow_bc.png
%%QT_DOCDIR%%/qtgui/images/bearings.png
%%QT_DOCDIR%%/qtgui/images/bgrContent.png
%%QT_DOCDIR%%/qtgui/images/brush-outline.png
%%QT_DOCDIR%%/qtgui/images/brush-styles.png
%%QT_DOCDIR%%/qtgui/images/btn_next.png
%%QT_DOCDIR%%/qtgui/images/btn_prev.png
%%QT_DOCDIR%%/qtgui/images/bullet_dn.png
%%QT_DOCDIR%%/qtgui/images/bullet_sq.png
%%QT_DOCDIR%%/qtgui/images/coordinatesystem-analogclock.png
%%QT_DOCDIR%%/qtgui/images/coordinatesystem-line-antialias.png
%%QT_DOCDIR%%/qtgui/images/coordinatesystem-line-raster.png
%%QT_DOCDIR%%/qtgui/images/coordinatesystem-line.png
%%QT_DOCDIR%%/qtgui/images/coordinatesystem-rect-antialias.png
%%QT_DOCDIR%%/qtgui/images/coordinatesystem-rect-raster.png
%%QT_DOCDIR%%/qtgui/images/coordinatesystem-rect.png
%%QT_DOCDIR%%/qtgui/images/coordinatesystem-transformations.png
%%QT_DOCDIR%%/qtgui/images/cursor-arrow.png
%%QT_DOCDIR%%/qtgui/images/cursor-busy.png
%%QT_DOCDIR%%/qtgui/images/cursor-closedhand.png
%%QT_DOCDIR%%/qtgui/images/cursor-cross.png
%%QT_DOCDIR%%/qtgui/images/cursor-forbidden.png
%%QT_DOCDIR%%/qtgui/images/cursor-hand.png
%%QT_DOCDIR%%/qtgui/images/cursor-hsplit.png
%%QT_DOCDIR%%/qtgui/images/cursor-ibeam.png
%%QT_DOCDIR%%/qtgui/images/cursor-openhand.png
%%QT_DOCDIR%%/qtgui/images/cursor-sizeall.png
%%QT_DOCDIR%%/qtgui/images/cursor-sizeb.png
%%QT_DOCDIR%%/qtgui/images/cursor-sizef.png
%%QT_DOCDIR%%/qtgui/images/cursor-sizeh.png
%%QT_DOCDIR%%/qtgui/images/cursor-sizev.png
%%QT_DOCDIR%%/qtgui/images/cursor-uparrow.png
%%QT_DOCDIR%%/qtgui/images/cursor-vsplit.png
%%QT_DOCDIR%%/qtgui/images/cursor-wait.png
%%QT_DOCDIR%%/qtgui/images/cursor-whatsthis.png
%%QT_DOCDIR%%/qtgui/images/home.png
%%QT_DOCDIR%%/qtgui/images/hoverevents.png
%%QT_DOCDIR%%/qtgui/images/ico_note.png
%%QT_DOCDIR%%/qtgui/images/ico_note_attention.png
%%QT_DOCDIR%%/qtgui/images/ico_out.png
%%QT_DOCDIR%%/qtgui/images/icon.png
%%QT_DOCDIR%%/qtgui/images/logo.png
%%QT_DOCDIR%%/qtgui/images/openglwindow-example.png
%%QT_DOCDIR%%/qtgui/images/paintsystem-antialiasing.png
%%QT_DOCDIR%%/qtgui/images/paintsystem-core.png
%%QT_DOCDIR%%/qtgui/images/paintsystem-fancygradient.png
%%QT_DOCDIR%%/qtgui/images/paintsystem-gradients.png
%%QT_DOCDIR%%/qtgui/images/paintsystem-movie.png
%%QT_DOCDIR%%/qtgui/images/paintsystem-painterpath.png
%%QT_DOCDIR%%/qtgui/images/palette.png
%%QT_DOCDIR%%/qtgui/images/plaintext-layout.png
%%QT_DOCDIR%%/qtgui/images/qcolor-cmyk.png
%%QT_DOCDIR%%/qtgui/images/qcolor-hsv.png
%%QT_DOCDIR%%/qtgui/images/qcolor-hue.png
%%QT_DOCDIR%%/qtgui/images/qcolor-rgb.png
%%QT_DOCDIR%%/qtgui/images/qcolor-saturation.png
%%QT_DOCDIR%%/qtgui/images/qcolor-value.png
%%QT_DOCDIR%%/qtgui/images/qconicalgradient.png
%%QT_DOCDIR%%/qtgui/images/qgradient-conical.png
%%QT_DOCDIR%%/qtgui/images/qgradient-linear.png
%%QT_DOCDIR%%/qtgui/images/qgradient-radial.png
%%QT_DOCDIR%%/qtgui/images/qimage-32bit_scaled.png
%%QT_DOCDIR%%/qtgui/images/qimage-8bit_scaled.png
%%QT_DOCDIR%%/qtgui/images/qimage-scaling.png
%%QT_DOCDIR%%/qtgui/images/qlineargradient-pad.png
%%QT_DOCDIR%%/qtgui/images/qlineargradient-reflect.png
%%QT_DOCDIR%%/qtgui/images/qlineargradient-repeat.png
%%QT_DOCDIR%%/qtgui/images/qmatrix-combinedtransformation.png
%%QT_DOCDIR%%/qtgui/images/qmatrix-representation.png
%%QT_DOCDIR%%/qtgui/images/qmatrix-simpletransformation.png
%%QT_DOCDIR%%/qtgui/images/qpainter-affinetransformations.png
%%QT_DOCDIR%%/qtgui/images/qpainter-arc.png
%%QT_DOCDIR%%/qtgui/images/qpainter-basicdrawing.png
%%QT_DOCDIR%%/qtgui/images/qpainter-chord.png
%%QT_DOCDIR%%/qtgui/images/qpainter-clock.png
%%QT_DOCDIR%%/qtgui/images/qpainter-compositiondemo.png
%%QT_DOCDIR%%/qtgui/images/qpainter-compositionmode1.png
%%QT_DOCDIR%%/qtgui/images/qpainter-compositionmode2.png
%%QT_DOCDIR%%/qtgui/images/qpainter-concentriccircles.png
%%QT_DOCDIR%%/qtgui/images/qpainter-ellipse.png
%%QT_DOCDIR%%/qtgui/images/qpainter-gradients.png
%%QT_DOCDIR%%/qtgui/images/qpainter-line.png
%%QT_DOCDIR%%/qtgui/images/qpainter-painterpaths.png
%%QT_DOCDIR%%/qtgui/images/qpainter-path.png
%%QT_DOCDIR%%/qtgui/images/qpainter-pathstroking.png
%%QT_DOCDIR%%/qtgui/images/qpainter-pie.png
%%QT_DOCDIR%%/qtgui/images/qpainter-polygon.png
%%QT_DOCDIR%%/qtgui/images/qpainter-rectangle.png
%%QT_DOCDIR%%/qtgui/images/qpainter-rotation.png
%%QT_DOCDIR%%/qtgui/images/qpainter-roundrect.png
%%QT_DOCDIR%%/qtgui/images/qpainter-scale.png
%%QT_DOCDIR%%/qtgui/images/qpainter-text-bounds.png
%%QT_DOCDIR%%/qtgui/images/qpainter-text.png
%%QT_DOCDIR%%/qtgui/images/qpainter-translation.png
%%QT_DOCDIR%%/qtgui/images/qpainter-vectordeformation.png
%%QT_DOCDIR%%/qtgui/images/qpainterpath-addellipse.png
%%QT_DOCDIR%%/qtgui/images/qpainterpath-addpolygon.png
%%QT_DOCDIR%%/qtgui/images/qpainterpath-addrectangle.png
%%QT_DOCDIR%%/qtgui/images/qpainterpath-addtext.png
%%QT_DOCDIR%%/qtgui/images/qpainterpath-arcto.png
%%QT_DOCDIR%%/qtgui/images/qpainterpath-construction.png
%%QT_DOCDIR%%/qtgui/images/qpainterpath-cubicto.png
%%QT_DOCDIR%%/qtgui/images/qpainterpath-demo.png
%%QT_DOCDIR%%/qtgui/images/qpainterpath-example.png
%%QT_DOCDIR%%/qtgui/images/qpen-bevel.png
%%QT_DOCDIR%%/qtgui/images/qpen-custom.png
%%QT_DOCDIR%%/qtgui/images/qpen-dash.png
%%QT_DOCDIR%%/qtgui/images/qpen-dashdot.png
%%QT_DOCDIR%%/qtgui/images/qpen-dashdotdot.png
%%QT_DOCDIR%%/qtgui/images/qpen-dashpattern.png
%%QT_DOCDIR%%/qtgui/images/qpen-demo.png
%%QT_DOCDIR%%/qtgui/images/qpen-dot.png
%%QT_DOCDIR%%/qtgui/images/qpen-flat.png
%%QT_DOCDIR%%/qtgui/images/qpen-miter.png
%%QT_DOCDIR%%/qtgui/images/qpen-miterlimit.png
%%QT_DOCDIR%%/qtgui/images/qpen-roundcap.png
%%QT_DOCDIR%%/qtgui/images/qpen-roundjoin.png
%%QT_DOCDIR%%/qtgui/images/qpen-solid.png
%%QT_DOCDIR%%/qtgui/images/qpen-square.png
%%QT_DOCDIR%%/qtgui/images/qpixelformat-argb32buffer.png
%%QT_DOCDIR%%/qtgui/images/qradialgradient-pad.png
%%QT_DOCDIR%%/qtgui/images/qradialgradient-reflect.png
%%QT_DOCDIR%%/qtgui/images/qradialgradient-repeat.png
%%QT_DOCDIR%%/qtgui/images/qrect-diagram-zero.png
%%QT_DOCDIR%%/qtgui/images/qrectf-diagram-one.png
%%QT_DOCDIR%%/qtgui/images/qrectf-diagram-three.png
%%QT_DOCDIR%%/qtgui/images/qrectf-diagram-two.png
%%QT_DOCDIR%%/qtgui/images/qstatustipevent-action.png
%%QT_DOCDIR%%/qtgui/images/qstatustipevent-widget.png
%%QT_DOCDIR%%/qtgui/images/qt-colors.png
%%QT_DOCDIR%%/qtgui/images/qt-fillrule-oddeven.png
%%QT_DOCDIR%%/qtgui/images/qt-fillrule-winding.png
%%QT_DOCDIR%%/qtgui/images/qtabletevent-tilt.png
%%QT_DOCDIR%%/qtgui/images/qtextblock-sequence.png
%%QT_DOCDIR%%/qtgui/images/qtextfragment-split.png
%%QT_DOCDIR%%/qtgui/images/qtextframe-style.png
%%QT_DOCDIR%%/qtgui/images/qtexttableformat-cell.png
%%QT_DOCDIR%%/qtgui/images/qtransform-combinedtransformation.png
%%QT_DOCDIR%%/qtgui/images/qtransform-combinedtransformation2.png
%%QT_DOCDIR%%/qtgui/images/qtransform-representation.png
%%QT_DOCDIR%%/qtgui/images/qtransform-simpletransformation.png
%%QT_DOCDIR%%/qtgui/images/richtext-document.png
%%QT_DOCDIR%%/qtgui/images/rintersect.png
%%QT_DOCDIR%%/qtgui/images/rsubtract.png
%%QT_DOCDIR%%/qtgui/images/runion.png
%%QT_DOCDIR%%/qtgui/images/rxor.png
%%QT_DOCDIR%%/qtgui/images/texttable-merge.png
%%QT_DOCDIR%%/qtgui/images/texttable-split.png
%%QT_DOCDIR%%/qtgui/painting-3d.html
%%QT_DOCDIR%%/qtgui/painting.html
%%QT_DOCDIR%%/qtgui/paintsystem-devices.html
%%QT_DOCDIR%%/qtgui/paintsystem-drawing.html
%%QT_DOCDIR%%/qtgui/paintsystem-images.html
%%QT_DOCDIR%%/qtgui/paintsystem.html
%%QT_DOCDIR%%/qtgui/qabstractopenglfunctions-members.html
%%QT_DOCDIR%%/qtgui/qabstractopenglfunctions.html
%%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout-members.html
%%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout-paintcontext-members.html
%%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout-paintcontext.html
%%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout-selection-members.html
%%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout-selection.html
%%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout.html
%%QT_DOCDIR%%/qtgui/qaccessible-members.html
%%QT_DOCDIR%%/qtgui/qaccessible-obsolete.html
%%QT_DOCDIR%%/qtgui/qaccessible-state-members.html
%%QT_DOCDIR%%/qtgui/qaccessible-state.html
%%QT_DOCDIR%%/qtgui/qaccessible.html
%%QT_DOCDIR%%/qtgui/qaccessibleactioninterface-members.html
%%QT_DOCDIR%%/qtgui/qaccessibleactioninterface.html
%%QT_DOCDIR%%/qtgui/qaccessibleeditabletextinterface-members.html
%%QT_DOCDIR%%/qtgui/qaccessibleeditabletextinterface.html
%%QT_DOCDIR%%/qtgui/qaccessibleevent-members.html
%%QT_DOCDIR%%/qtgui/qaccessibleevent.html
%%QT_DOCDIR%%/qtgui/qaccessibleinterface-members.html
%%QT_DOCDIR%%/qtgui/qaccessibleinterface.html
%%QT_DOCDIR%%/qtgui/qaccessibleobject-members.html
%%QT_DOCDIR%%/qtgui/qaccessibleobject.html
%%QT_DOCDIR%%/qtgui/qaccessibleplugin-members.html
%%QT_DOCDIR%%/qtgui/qaccessibleplugin.html
%%QT_DOCDIR%%/qtgui/qaccessiblestatechangeevent-members.html
%%QT_DOCDIR%%/qtgui/qaccessiblestatechangeevent.html
%%QT_DOCDIR%%/qtgui/qaccessibletablecellinterface-members.html
%%QT_DOCDIR%%/qtgui/qaccessibletablecellinterface.html
%%QT_DOCDIR%%/qtgui/qaccessibletableinterface-members.html
%%QT_DOCDIR%%/qtgui/qaccessibletableinterface.html
%%QT_DOCDIR%%/qtgui/qaccessibletablemodelchangeevent-members.html
%%QT_DOCDIR%%/qtgui/qaccessibletablemodelchangeevent.html
%%QT_DOCDIR%%/qtgui/qaccessibletextcursorevent-members.html
%%QT_DOCDIR%%/qtgui/qaccessibletextcursorevent.html
%%QT_DOCDIR%%/qtgui/qaccessibletextinsertevent-members.html
%%QT_DOCDIR%%/qtgui/qaccessibletextinsertevent.html
%%QT_DOCDIR%%/qtgui/qaccessibletextinterface-members.html
%%QT_DOCDIR%%/qtgui/qaccessibletextinterface.html
%%QT_DOCDIR%%/qtgui/qaccessibletextremoveevent-members.html
%%QT_DOCDIR%%/qtgui/qaccessibletextremoveevent.html
%%QT_DOCDIR%%/qtgui/qaccessibletextselectionevent-members.html
%%QT_DOCDIR%%/qtgui/qaccessibletextselectionevent.html
%%QT_DOCDIR%%/qtgui/qaccessibletextupdateevent-members.html
%%QT_DOCDIR%%/qtgui/qaccessibletextupdateevent.html
%%QT_DOCDIR%%/qtgui/qaccessiblevaluechangeevent-members.html
%%QT_DOCDIR%%/qtgui/qaccessiblevaluechangeevent.html
%%QT_DOCDIR%%/qtgui/qaccessiblevalueinterface-members.html
%%QT_DOCDIR%%/qtgui/qaccessiblevalueinterface.html
%%QT_DOCDIR%%/qtgui/qactionevent-members.html
%%QT_DOCDIR%%/qtgui/qactionevent.html
%%QT_DOCDIR%%/qtgui/qbackingstore-members.html
%%QT_DOCDIR%%/qtgui/qbackingstore.html
%%QT_DOCDIR%%/qtgui/qbitmap-members.html
%%QT_DOCDIR%%/qtgui/qbitmap-obsolete.html
%%QT_DOCDIR%%/qtgui/qbitmap.html
%%QT_DOCDIR%%/qtgui/qbrush-members.html
%%QT_DOCDIR%%/qtgui/qbrush.html
%%QT_DOCDIR%%/qtgui/qclipboard-members.html
%%QT_DOCDIR%%/qtgui/qclipboard.html
%%QT_DOCDIR%%/qtgui/qcloseevent-members.html
%%QT_DOCDIR%%/qtgui/qcloseevent.html
%%QT_DOCDIR%%/qtgui/qcolor-members.html
%%QT_DOCDIR%%/qtgui/qcolor-obsolete.html
%%QT_DOCDIR%%/qtgui/qcolor.html
%%QT_DOCDIR%%/qtgui/qconicalgradient-members.html
%%QT_DOCDIR%%/qtgui/qconicalgradient.html
%%QT_DOCDIR%%/qtgui/qcontextmenuevent-members.html
%%QT_DOCDIR%%/qtgui/qcontextmenuevent.html
%%QT_DOCDIR%%/qtgui/qcursor-members.html
%%QT_DOCDIR%%/qtgui/qcursor.html
%%QT_DOCDIR%%/qtgui/qdesktopservices-members.html
%%QT_DOCDIR%%/qtgui/qdesktopservices-obsolete.html
%%QT_DOCDIR%%/qtgui/qdesktopservices.html
%%QT_DOCDIR%%/qtgui/qdoublevalidator-members.html
%%QT_DOCDIR%%/qtgui/qdoublevalidator.html
%%QT_DOCDIR%%/qtgui/qdrag-members.html
%%QT_DOCDIR%%/qtgui/qdrag-obsolete.html
%%QT_DOCDIR%%/qtgui/qdrag.html
%%QT_DOCDIR%%/qtgui/qdragenterevent-members.html
%%QT_DOCDIR%%/qtgui/qdragenterevent.html
%%QT_DOCDIR%%/qtgui/qdragleaveevent-members.html
%%QT_DOCDIR%%/qtgui/qdragleaveevent.html
%%QT_DOCDIR%%/qtgui/qdragmoveevent-members.html
%%QT_DOCDIR%%/qtgui/qdragmoveevent.html
%%QT_DOCDIR%%/qtgui/qdropevent-members.html
%%QT_DOCDIR%%/qtgui/qdropevent.html
%%QT_DOCDIR%%/qtgui/qenterevent-members.html
%%QT_DOCDIR%%/qtgui/qenterevent.html
%%QT_DOCDIR%%/qtgui/qexposeevent-members.html
%%QT_DOCDIR%%/qtgui/qexposeevent.html
%%QT_DOCDIR%%/qtgui/qfileopenevent-members.html
%%QT_DOCDIR%%/qtgui/qfileopenevent.html
%%QT_DOCDIR%%/qtgui/qfocusevent-members.html
%%QT_DOCDIR%%/qtgui/qfocusevent.html
%%QT_DOCDIR%%/qtgui/qfont-members.html
%%QT_DOCDIR%%/qtgui/qfont-obsolete.html
%%QT_DOCDIR%%/qtgui/qfont.html
%%QT_DOCDIR%%/qtgui/qfontdatabase-members.html
%%QT_DOCDIR%%/qtgui/qfontdatabase-obsolete.html
%%QT_DOCDIR%%/qtgui/qfontdatabase.html
%%QT_DOCDIR%%/qtgui/qfontinfo-members.html
%%QT_DOCDIR%%/qtgui/qfontinfo-obsolete.html
%%QT_DOCDIR%%/qtgui/qfontinfo.html
%%QT_DOCDIR%%/qtgui/qfontmetrics-members.html
%%QT_DOCDIR%%/qtgui/qfontmetrics-obsolete.html
%%QT_DOCDIR%%/qtgui/qfontmetrics.html
%%QT_DOCDIR%%/qtgui/qfontmetricsf-members.html
%%QT_DOCDIR%%/qtgui/qfontmetricsf.html
%%QT_DOCDIR%%/qtgui/qgenericmatrix-members.html
%%QT_DOCDIR%%/qtgui/qgenericmatrix.html
%%QT_DOCDIR%%/qtgui/qgenericplugin-members.html
%%QT_DOCDIR%%/qtgui/qgenericplugin.html
%%QT_DOCDIR%%/qtgui/qgenericpluginfactory-members.html
%%QT_DOCDIR%%/qtgui/qgenericpluginfactory.html
%%QT_DOCDIR%%/qtgui/qglyphrun-members.html
%%QT_DOCDIR%%/qtgui/qglyphrun.html
%%QT_DOCDIR%%/qtgui/qgradient-members.html
%%QT_DOCDIR%%/qtgui/qgradient.html
%%QT_DOCDIR%%/qtgui/qguiapplication-members.html
%%QT_DOCDIR%%/qtgui/qguiapplication.html
%%QT_DOCDIR%%/qtgui/qhelpevent-members.html
%%QT_DOCDIR%%/qtgui/qhelpevent.html
%%QT_DOCDIR%%/qtgui/qhideevent-members.html
%%QT_DOCDIR%%/qtgui/qhideevent.html
%%QT_DOCDIR%%/qtgui/qhoverevent-members.html
%%QT_DOCDIR%%/qtgui/qhoverevent.html
%%QT_DOCDIR%%/qtgui/qicon-members.html
%%QT_DOCDIR%%/qtgui/qicon-obsolete.html
%%QT_DOCDIR%%/qtgui/qicon.html
%%QT_DOCDIR%%/qtgui/qicondragevent-members.html
%%QT_DOCDIR%%/qtgui/qicondragevent.html
%%QT_DOCDIR%%/qtgui/qiconengine-availablesizesargument-members.html
%%QT_DOCDIR%%/qtgui/qiconengine-availablesizesargument.html
%%QT_DOCDIR%%/qtgui/qiconengine-members.html
%%QT_DOCDIR%%/qtgui/qiconengine.html
%%QT_DOCDIR%%/qtgui/qiconengineplugin-members.html
%%QT_DOCDIR%%/qtgui/qiconengineplugin.html
%%QT_DOCDIR%%/qtgui/qimage-members.html
%%QT_DOCDIR%%/qtgui/qimage-obsolete.html
%%QT_DOCDIR%%/qtgui/qimage.html
%%QT_DOCDIR%%/qtgui/qimageiohandler-members.html
%%QT_DOCDIR%%/qtgui/qimageiohandler-obsolete.html
%%QT_DOCDIR%%/qtgui/qimageiohandler.html
%%QT_DOCDIR%%/qtgui/qimageioplugin-members.html
%%QT_DOCDIR%%/qtgui/qimageioplugin.html
%%QT_DOCDIR%%/qtgui/qimagereader-members.html
%%QT_DOCDIR%%/qtgui/qimagereader.html
%%QT_DOCDIR%%/qtgui/qimagewriter-members.html
%%QT_DOCDIR%%/qtgui/qimagewriter-obsolete.html
%%QT_DOCDIR%%/qtgui/qimagewriter.html
%%QT_DOCDIR%%/qtgui/qinputevent-members.html
%%QT_DOCDIR%%/qtgui/qinputevent.html
%%QT_DOCDIR%%/qtgui/qinputmethod-members.html
%%QT_DOCDIR%%/qtgui/qinputmethod.html
%%QT_DOCDIR%%/qtgui/qinputmethodevent-attribute-members.html
%%QT_DOCDIR%%/qtgui/qinputmethodevent-attribute.html
%%QT_DOCDIR%%/qtgui/qinputmethodevent-members.html
%%QT_DOCDIR%%/qtgui/qinputmethodevent.html
%%QT_DOCDIR%%/qtgui/qinputmethodqueryevent-members.html
%%QT_DOCDIR%%/qtgui/qinputmethodqueryevent.html
%%QT_DOCDIR%%/qtgui/qintvalidator-members.html
%%QT_DOCDIR%%/qtgui/qintvalidator.html
%%QT_DOCDIR%%/qtgui/qkeyevent-members.html
%%QT_DOCDIR%%/qtgui/qkeyevent.html
%%QT_DOCDIR%%/qtgui/qkeysequence-members.html
%%QT_DOCDIR%%/qtgui/qkeysequence-obsolete.html
%%QT_DOCDIR%%/qtgui/qkeysequence.html
%%QT_DOCDIR%%/qtgui/qlineargradient-members.html
%%QT_DOCDIR%%/qtgui/qlineargradient.html
%%QT_DOCDIR%%/qtgui/qmatrix-members.html
%%QT_DOCDIR%%/qtgui/qmatrix.html
%%QT_DOCDIR%%/qtgui/qmatrix4x4-members.html
%%QT_DOCDIR%%/qtgui/qmatrix4x4-obsolete.html
%%QT_DOCDIR%%/qtgui/qmatrix4x4.html
%%QT_DOCDIR%%/qtgui/qmouseevent-members.html
%%QT_DOCDIR%%/qtgui/qmouseevent-obsolete.html
%%QT_DOCDIR%%/qtgui/qmouseevent.html
%%QT_DOCDIR%%/qtgui/qmoveevent-members.html
%%QT_DOCDIR%%/qtgui/qmoveevent.html
%%QT_DOCDIR%%/qtgui/qmovie-members.html
%%QT_DOCDIR%%/qtgui/qmovie.html
%%QT_DOCDIR%%/qtgui/qnativegestureevent-members.html
%%QT_DOCDIR%%/qtgui/qnativegestureevent.html
%%QT_DOCDIR%%/qtgui/qoffscreensurface-members.html
%%QT_DOCDIR%%/qtgui/qoffscreensurface.html
%%QT_DOCDIR%%/qtgui/qopenglbuffer-members.html
%%QT_DOCDIR%%/qtgui/qopenglbuffer.html
%%QT_DOCDIR%%/qtgui/qopenglcontext-members.html
%%QT_DOCDIR%%/qtgui/qopenglcontext.html
%%QT_DOCDIR%%/qtgui/qopenglcontextgroup-members.html
%%QT_DOCDIR%%/qtgui/qopenglcontextgroup.html
%%QT_DOCDIR%%/qtgui/qopengldebuglogger-members.html
%%QT_DOCDIR%%/qtgui/qopengldebuglogger.html
%%QT_DOCDIR%%/qtgui/qopengldebugmessage-members.html
%%QT_DOCDIR%%/qtgui/qopengldebugmessage.html
%%QT_DOCDIR%%/qtgui/qopenglextrafunctions-members.html
%%QT_DOCDIR%%/qtgui/qopenglextrafunctions.html
%%QT_DOCDIR%%/qtgui/qopenglframebufferobject-members.html
%%QT_DOCDIR%%/qtgui/qopenglframebufferobject.html
%%QT_DOCDIR%%/qtgui/qopenglframebufferobjectformat-members.html
%%QT_DOCDIR%%/qtgui/qopenglframebufferobjectformat.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-1-0-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-1-0.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-1-1-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-1-1.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-1-2-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-1-2.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-1-3-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-1-3.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-1-4-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-1-4.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-1-5-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-1-5.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-2-0-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-2-0.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-2-1-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-2-1.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-3-0-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-3-0.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-3-1-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-3-1.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-3-2-compatibility-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-3-2-compatibility.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-3-2-core-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-3-2-core.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-3-3-compatibility-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-3-3-compatibility.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-3-3-core-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-3-3-core.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-0-compatibility-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-0-compatibility.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-0-core-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-0-core.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-1-compatibility-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-1-compatibility.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-1-core-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-1-core.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-2-compatibility-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-2-compatibility.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-2-core-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-2-core.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-3-compatibility-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-3-compatibility.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-3-core-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-3-core.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-4-compatibility-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-4-compatibility.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-4-core-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-4-core.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-5-compatibility-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-5-compatibility.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-5-core-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-4-5-core.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-es2-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-es2.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-members.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions-obsolete.html
%%QT_DOCDIR%%/qtgui/qopenglfunctions.html
%%QT_DOCDIR%%/qtgui/qopenglpaintdevice-members.html
%%QT_DOCDIR%%/qtgui/qopenglpaintdevice.html
%%QT_DOCDIR%%/qtgui/qopenglpixeltransferoptions-members.html
%%QT_DOCDIR%%/qtgui/qopenglpixeltransferoptions.html
%%QT_DOCDIR%%/qtgui/qopenglshader-members.html
%%QT_DOCDIR%%/qtgui/qopenglshader.html
%%QT_DOCDIR%%/qtgui/qopenglshaderprogram-members.html
%%QT_DOCDIR%%/qtgui/qopenglshaderprogram.html
%%QT_DOCDIR%%/qtgui/qopengltexture-members.html
%%QT_DOCDIR%%/qtgui/qopengltexture-obsolete.html
%%QT_DOCDIR%%/qtgui/qopengltexture.html
%%QT_DOCDIR%%/qtgui/qopengltimemonitor-members.html
%%QT_DOCDIR%%/qtgui/qopengltimemonitor.html
%%QT_DOCDIR%%/qtgui/qopengltimerquery-members.html
%%QT_DOCDIR%%/qtgui/qopengltimerquery.html
%%QT_DOCDIR%%/qtgui/qopenglversionprofile-members.html
%%QT_DOCDIR%%/qtgui/qopenglversionprofile.html
%%QT_DOCDIR%%/qtgui/qopenglvertexarrayobject-binder-members.html
%%QT_DOCDIR%%/qtgui/qopenglvertexarrayobject-binder.html
%%QT_DOCDIR%%/qtgui/qopenglvertexarrayobject-members.html
%%QT_DOCDIR%%/qtgui/qopenglvertexarrayobject.html
%%QT_DOCDIR%%/qtgui/qopenglwindow-members.html
%%QT_DOCDIR%%/qtgui/qopenglwindow.html
%%QT_DOCDIR%%/qtgui/qpagedpaintdevice-margins-members.html
%%QT_DOCDIR%%/qtgui/qpagedpaintdevice-margins.html
%%QT_DOCDIR%%/qtgui/qpagedpaintdevice-members.html
%%QT_DOCDIR%%/qtgui/qpagedpaintdevice.html
%%QT_DOCDIR%%/qtgui/qpagelayout-members.html
%%QT_DOCDIR%%/qtgui/qpagelayout.html
%%QT_DOCDIR%%/qtgui/qpagesize-members.html
%%QT_DOCDIR%%/qtgui/qpagesize.html
%%QT_DOCDIR%%/qtgui/qpaintdevice-members.html
%%QT_DOCDIR%%/qtgui/qpaintdevice.html
%%QT_DOCDIR%%/qtgui/qpaintdevicewindow-members.html
%%QT_DOCDIR%%/qtgui/qpaintdevicewindow.html
%%QT_DOCDIR%%/qtgui/qpaintengine-members.html
%%QT_DOCDIR%%/qtgui/qpaintengine.html
%%QT_DOCDIR%%/qtgui/qpaintenginestate-members.html
%%QT_DOCDIR%%/qtgui/qpaintenginestate-obsolete.html
%%QT_DOCDIR%%/qtgui/qpaintenginestate.html
%%QT_DOCDIR%%/qtgui/qpainter-members.html
%%QT_DOCDIR%%/qtgui/qpainter-obsolete.html
%%QT_DOCDIR%%/qtgui/qpainter-pixmapfragment-members.html
%%QT_DOCDIR%%/qtgui/qpainter-pixmapfragment.html
%%QT_DOCDIR%%/qtgui/qpainter.html
%%QT_DOCDIR%%/qtgui/qpainterpath-element-members.html
%%QT_DOCDIR%%/qtgui/qpainterpath-element.html
%%QT_DOCDIR%%/qtgui/qpainterpath-members.html
%%QT_DOCDIR%%/qtgui/qpainterpath-obsolete.html
%%QT_DOCDIR%%/qtgui/qpainterpath.html
%%QT_DOCDIR%%/qtgui/qpainterpathstroker-members.html
%%QT_DOCDIR%%/qtgui/qpainterpathstroker.html
%%QT_DOCDIR%%/qtgui/qpaintevent-members.html
%%QT_DOCDIR%%/qtgui/qpaintevent.html
%%QT_DOCDIR%%/qtgui/qpalette-members.html
%%QT_DOCDIR%%/qtgui/qpalette-obsolete.html
%%QT_DOCDIR%%/qtgui/qpalette.html
%%QT_DOCDIR%%/qtgui/qpdfwriter-members.html
%%QT_DOCDIR%%/qtgui/qpdfwriter-obsolete.html
%%QT_DOCDIR%%/qtgui/qpdfwriter.html
%%QT_DOCDIR%%/qtgui/qpen-members.html
%%QT_DOCDIR%%/qtgui/qpen.html
%%QT_DOCDIR%%/qtgui/qpicture-members.html
%%QT_DOCDIR%%/qtgui/qpicture-obsolete.html
%%QT_DOCDIR%%/qtgui/qpicture.html
%%QT_DOCDIR%%/qtgui/qpictureformatplugin-members.html
%%QT_DOCDIR%%/qtgui/qpictureformatplugin.html
%%QT_DOCDIR%%/qtgui/qpictureio-members.html
%%QT_DOCDIR%%/qtgui/qpictureio.html
%%QT_DOCDIR%%/qtgui/qpixelformat-members.html
%%QT_DOCDIR%%/qtgui/qpixelformat.html
%%QT_DOCDIR%%/qtgui/qpixmap-members.html
%%QT_DOCDIR%%/qtgui/qpixmap-obsolete.html
%%QT_DOCDIR%%/qtgui/qpixmap.html
%%QT_DOCDIR%%/qtgui/qpixmapcache-key-members.html
%%QT_DOCDIR%%/qtgui/qpixmapcache-key.html
%%QT_DOCDIR%%/qtgui/qpixmapcache-keydata-members.html
%%QT_DOCDIR%%/qtgui/qpixmapcache-keydata.html
%%QT_DOCDIR%%/qtgui/qpixmapcache-members.html
%%QT_DOCDIR%%/qtgui/qpixmapcache-obsolete.html
%%QT_DOCDIR%%/qtgui/qpixmapcache.html
%%QT_DOCDIR%%/qtgui/qplatformgraphicsbuffer-members.html
%%QT_DOCDIR%%/qtgui/qplatformgraphicsbuffer.html
%%QT_DOCDIR%%/qtgui/qplatformsurfaceevent-members.html
%%QT_DOCDIR%%/qtgui/qplatformsurfaceevent.html
%%QT_DOCDIR%%/qtgui/qplatformsystemtrayicon-members.html
%%QT_DOCDIR%%/qtgui/qplatformsystemtrayicon.html
%%QT_DOCDIR%%/qtgui/qpolygon-members.html
%%QT_DOCDIR%%/qtgui/qpolygon.html
%%QT_DOCDIR%%/qtgui/qpolygonf-members.html
%%QT_DOCDIR%%/qtgui/qpolygonf.html
%%QT_DOCDIR%%/qtgui/qquaternion-members.html
%%QT_DOCDIR%%/qtgui/qquaternion-obsolete.html
%%QT_DOCDIR%%/qtgui/qquaternion.html
%%QT_DOCDIR%%/qtgui/qradialgradient-members.html
%%QT_DOCDIR%%/qtgui/qradialgradient.html
%%QT_DOCDIR%%/qtgui/qrasterpaintengine-members.html
%%QT_DOCDIR%%/qtgui/qrasterpaintengine.html
%%QT_DOCDIR%%/qtgui/qrasterwindow-members.html
%%QT_DOCDIR%%/qtgui/qrasterwindow.html
%%QT_DOCDIR%%/qtgui/qrawfont-members.html
%%QT_DOCDIR%%/qtgui/qrawfont.html
%%QT_DOCDIR%%/qtgui/qregexpvalidator-members.html
%%QT_DOCDIR%%/qtgui/qregexpvalidator.html
%%QT_DOCDIR%%/qtgui/qregion-members.html
%%QT_DOCDIR%%/qtgui/qregion-obsolete.html
%%QT_DOCDIR%%/qtgui/qregion.html
%%QT_DOCDIR%%/qtgui/qregularexpressionvalidator-members.html
%%QT_DOCDIR%%/qtgui/qregularexpressionvalidator.html
%%QT_DOCDIR%%/qtgui/qresizeevent-members.html
%%QT_DOCDIR%%/qtgui/qresizeevent.html
%%QT_DOCDIR%%/qtgui/qrgba64-members.html
%%QT_DOCDIR%%/qtgui/qrgba64.html
%%QT_DOCDIR%%/qtgui/qscreen-members.html
%%QT_DOCDIR%%/qtgui/qscreen.html
%%QT_DOCDIR%%/qtgui/qscrollevent-members.html
%%QT_DOCDIR%%/qtgui/qscrollevent.html
%%QT_DOCDIR%%/qtgui/qscrollprepareevent-members.html
%%QT_DOCDIR%%/qtgui/qscrollprepareevent.html
%%QT_DOCDIR%%/qtgui/qsessionmanager-members.html
%%QT_DOCDIR%%/qtgui/qsessionmanager.html
%%QT_DOCDIR%%/qtgui/qshortcutevent-members.html
%%QT_DOCDIR%%/qtgui/qshortcutevent.html
%%QT_DOCDIR%%/qtgui/qshowevent-members.html
%%QT_DOCDIR%%/qtgui/qshowevent.html
%%QT_DOCDIR%%/qtgui/qstandarditem-members.html
%%QT_DOCDIR%%/qtgui/qstandarditem-obsolete.html
%%QT_DOCDIR%%/qtgui/qstandarditem.html
%%QT_DOCDIR%%/qtgui/qstandarditemmodel-members.html
%%QT_DOCDIR%%/qtgui/qstandarditemmodel.html
%%QT_DOCDIR%%/qtgui/qstatictext-members.html
%%QT_DOCDIR%%/qtgui/qstatictext.html
%%QT_DOCDIR%%/qtgui/qstatustipevent-members.html
%%QT_DOCDIR%%/qtgui/qstatustipevent.html
%%QT_DOCDIR%%/qtgui/qstylehints-members.html
%%QT_DOCDIR%%/qtgui/qstylehints.html
%%QT_DOCDIR%%/qtgui/qsupportedwritingsystems-members.html
%%QT_DOCDIR%%/qtgui/qsupportedwritingsystems.html
%%QT_DOCDIR%%/qtgui/qsurface-members.html
%%QT_DOCDIR%%/qtgui/qsurface.html
%%QT_DOCDIR%%/qtgui/qsurfaceformat-members.html
%%QT_DOCDIR%%/qtgui/qsurfaceformat-obsolete.html
%%QT_DOCDIR%%/qtgui/qsurfaceformat.html
%%QT_DOCDIR%%/qtgui/qsyntaxhighlighter-members.html
%%QT_DOCDIR%%/qtgui/qsyntaxhighlighter.html
%%QT_DOCDIR%%/qtgui/qtabletevent-members.html
%%QT_DOCDIR%%/qtgui/qtabletevent-obsolete.html
%%QT_DOCDIR%%/qtgui/qtabletevent.html
%%QT_DOCDIR%%/qtgui/qtextblock-iterator-members.html
%%QT_DOCDIR%%/qtgui/qtextblock-iterator.html
%%QT_DOCDIR%%/qtgui/qtextblock-members.html
%%QT_DOCDIR%%/qtgui/qtextblock.html
%%QT_DOCDIR%%/qtgui/qtextblockformat-members.html
%%QT_DOCDIR%%/qtgui/qtextblockformat.html
%%QT_DOCDIR%%/qtgui/qtextblockgroup-members.html
%%QT_DOCDIR%%/qtgui/qtextblockgroup.html
%%QT_DOCDIR%%/qtgui/qtextblockuserdata-members.html
%%QT_DOCDIR%%/qtgui/qtextblockuserdata.html
%%QT_DOCDIR%%/qtgui/qtextcharformat-members.html
%%QT_DOCDIR%%/qtgui/qtextcharformat-obsolete.html
%%QT_DOCDIR%%/qtgui/qtextcharformat.html
%%QT_DOCDIR%%/qtgui/qtextcursor-members.html
%%QT_DOCDIR%%/qtgui/qtextcursor.html
%%QT_DOCDIR%%/qtgui/qtextdocument-members.html
%%QT_DOCDIR%%/qtgui/qtextdocument.html
%%QT_DOCDIR%%/qtgui/qtextdocumentfragment-members.html
%%QT_DOCDIR%%/qtgui/qtextdocumentfragment.html
%%QT_DOCDIR%%/qtgui/qtextdocumentwriter-members.html
%%QT_DOCDIR%%/qtgui/qtextdocumentwriter.html
%%QT_DOCDIR%%/qtgui/qtextformat-members.html
%%QT_DOCDIR%%/qtgui/qtextformat.html
%%QT_DOCDIR%%/qtgui/qtextfragment-members.html
%%QT_DOCDIR%%/qtgui/qtextfragment.html
%%QT_DOCDIR%%/qtgui/qtextframe-iterator-members.html
%%QT_DOCDIR%%/qtgui/qtextframe-iterator.html
%%QT_DOCDIR%%/qtgui/qtextframe-members.html
%%QT_DOCDIR%%/qtgui/qtextframe.html
%%QT_DOCDIR%%/qtgui/qtextframeformat-members.html
%%QT_DOCDIR%%/qtgui/qtextframeformat.html
%%QT_DOCDIR%%/qtgui/qtextimageformat-members.html
%%QT_DOCDIR%%/qtgui/qtextimageformat.html
%%QT_DOCDIR%%/qtgui/qtextinlineobject-members.html
%%QT_DOCDIR%%/qtgui/qtextinlineobject.html
%%QT_DOCDIR%%/qtgui/qtextitem-members.html
%%QT_DOCDIR%%/qtgui/qtextitem.html
%%QT_DOCDIR%%/qtgui/qtextlayout-formatrange-members.html
%%QT_DOCDIR%%/qtgui/qtextlayout-formatrange.html
%%QT_DOCDIR%%/qtgui/qtextlayout-members.html
%%QT_DOCDIR%%/qtgui/qtextlayout-obsolete.html
%%QT_DOCDIR%%/qtgui/qtextlayout.html
%%QT_DOCDIR%%/qtgui/qtextlength-members.html
%%QT_DOCDIR%%/qtgui/qtextlength.html
%%QT_DOCDIR%%/qtgui/qtextline-members.html
%%QT_DOCDIR%%/qtgui/qtextline.html
%%QT_DOCDIR%%/qtgui/qtextlist-members.html
%%QT_DOCDIR%%/qtgui/qtextlist-obsolete.html
%%QT_DOCDIR%%/qtgui/qtextlist.html
%%QT_DOCDIR%%/qtgui/qtextlistformat-members.html
%%QT_DOCDIR%%/qtgui/qtextlistformat.html
%%QT_DOCDIR%%/qtgui/qtextobject-members.html
%%QT_DOCDIR%%/qtgui/qtextobject.html
%%QT_DOCDIR%%/qtgui/qtextobjectinterface-members.html
%%QT_DOCDIR%%/qtgui/qtextobjectinterface.html
%%QT_DOCDIR%%/qtgui/qtextoption-members.html
%%QT_DOCDIR%%/qtgui/qtextoption-tab-members.html
%%QT_DOCDIR%%/qtgui/qtextoption-tab.html
%%QT_DOCDIR%%/qtgui/qtextoption.html
%%QT_DOCDIR%%/qtgui/qtexttable-members.html
%%QT_DOCDIR%%/qtgui/qtexttable.html
%%QT_DOCDIR%%/qtgui/qtexttablecell-members.html
%%QT_DOCDIR%%/qtgui/qtexttablecell.html
%%QT_DOCDIR%%/qtgui/qtexttablecellformat-members.html
%%QT_DOCDIR%%/qtgui/qtexttablecellformat.html
%%QT_DOCDIR%%/qtgui/qtexttableformat-members.html
%%QT_DOCDIR%%/qtgui/qtexttableformat.html
%%QT_DOCDIR%%/qtgui/qtgui-analogclock-analogclock-pro.html
%%QT_DOCDIR%%/qtgui/qtgui-analogclock-example.html
%%QT_DOCDIR%%/qtgui/qtgui-analogclock-main-cpp.html
%%QT_DOCDIR%%/qtgui/qtgui-index.html
%%QT_DOCDIR%%/qtgui/qtgui-module.html
%%QT_DOCDIR%%/qtgui/qtgui-openglwindow-example.html
%%QT_DOCDIR%%/qtgui/qtgui-openglwindow-main-cpp.html
%%QT_DOCDIR%%/qtgui/qtgui-openglwindow-openglwindow-cpp.html
%%QT_DOCDIR%%/qtgui/qtgui-openglwindow-openglwindow-h.html
%%QT_DOCDIR%%/qtgui/qtgui-openglwindow-openglwindow-pro.html
%%QT_DOCDIR%%/qtgui/qtgui-rasterwindow-example.html
%%QT_DOCDIR%%/qtgui/qtgui-rasterwindow-main-cpp.html
%%QT_DOCDIR%%/qtgui/qtgui-rasterwindow-rasterwindow-cpp.html
%%QT_DOCDIR%%/qtgui/qtgui-rasterwindow-rasterwindow-h.html
%%QT_DOCDIR%%/qtgui/qtgui-rasterwindow-rasterwindow-pro.html
%%QT_DOCDIR%%/qtgui/qtgui.index
%%QT_DOCDIR%%/qtgui/qtgui.qhp
%%QT_DOCDIR%%/qtgui/qtgui.qhp.sha1
%%QT_DOCDIR%%/qtgui/qtgui.tags
%%QT_DOCDIR%%/qtgui/qtouchdevice-members.html
%%QT_DOCDIR%%/qtgui/qtouchdevice.html
%%QT_DOCDIR%%/qtgui/qtouchevent-members.html
%%QT_DOCDIR%%/qtgui/qtouchevent-obsolete.html
%%QT_DOCDIR%%/qtgui/qtouchevent-touchpoint-members.html
%%QT_DOCDIR%%/qtgui/qtouchevent-touchpoint.html
%%QT_DOCDIR%%/qtgui/qtouchevent.html
%%QT_DOCDIR%%/qtgui/qtransform-members.html
%%QT_DOCDIR%%/qtgui/qtransform-obsolete.html
%%QT_DOCDIR%%/qtgui/qtransform.html
%%QT_DOCDIR%%/qtgui/qvalidator-members.html
%%QT_DOCDIR%%/qtgui/qvalidator.html
%%QT_DOCDIR%%/qtgui/qvector2d-members.html
%%QT_DOCDIR%%/qtgui/qvector2d.html
%%QT_DOCDIR%%/qtgui/qvector3d-members.html
%%QT_DOCDIR%%/qtgui/qvector3d.html
%%QT_DOCDIR%%/qtgui/qvector4d-members.html
%%QT_DOCDIR%%/qtgui/qvector4d.html
%%QT_DOCDIR%%/qtgui/qwhatsthisclickedevent-members.html
%%QT_DOCDIR%%/qtgui/qwhatsthisclickedevent.html
%%QT_DOCDIR%%/qtgui/qwheelevent-members.html
%%QT_DOCDIR%%/qtgui/qwheelevent-obsolete.html
%%QT_DOCDIR%%/qtgui/qwheelevent.html
%%QT_DOCDIR%%/qtgui/qwindow-members.html
%%QT_DOCDIR%%/qtgui/qwindow.html
%%QT_DOCDIR%%/qtgui/qwindowstatechangeevent-members.html
%%QT_DOCDIR%%/qtgui/qwindowstatechangeevent.html
%%QT_DOCDIR%%/qtgui/richtext-advanced-processing.html
%%QT_DOCDIR%%/qtgui/richtext-common-tasks.html
%%QT_DOCDIR%%/qtgui/richtext-cursor.html
%%QT_DOCDIR%%/qtgui/richtext-html-subset.html
%%QT_DOCDIR%%/qtgui/richtext-layouts.html
%%QT_DOCDIR%%/qtgui/richtext-processing.html
%%QT_DOCDIR%%/qtgui/richtext-structure.html
%%QT_DOCDIR%%/qtgui/richtext.html
%%QT_DOCDIR%%/qtgui/style/offline-simple.css
%%QT_DOCDIR%%/qtgui/style/offline.css
%%QT_DOCDIR%%/qthelp.qch
%%QT_DOCDIR%%/qthelp/examples-manifest.xml
%%QT_DOCDIR%%/qthelp/examples-qthelp.html
%%QT_DOCDIR%%/qthelp/helpsystem.html
%%QT_DOCDIR%%/qthelp/images/arrow_bc.png
%%QT_DOCDIR%%/qthelp/images/bgrContent.png
%%QT_DOCDIR%%/qthelp/images/btn_next.png
%%QT_DOCDIR%%/qthelp/images/btn_prev.png
%%QT_DOCDIR%%/qthelp/images/bullet_dn.png
%%QT_DOCDIR%%/qthelp/images/bullet_sq.png
%%QT_DOCDIR%%/qthelp/images/home.png
%%QT_DOCDIR%%/qthelp/images/ico_note.png
%%QT_DOCDIR%%/qthelp/images/ico_note_attention.png
%%QT_DOCDIR%%/qthelp/images/ico_out.png
%%QT_DOCDIR%%/qthelp/images/logo.png
%%QT_DOCDIR%%/qthelp/qhelpcontentitem-members.html
%%QT_DOCDIR%%/qthelp/qhelpcontentitem.html
%%QT_DOCDIR%%/qthelp/qhelpcontentmodel-members.html
%%QT_DOCDIR%%/qthelp/qhelpcontentmodel.html
%%QT_DOCDIR%%/qthelp/qhelpcontentwidget-members.html
%%QT_DOCDIR%%/qthelp/qhelpcontentwidget.html
%%QT_DOCDIR%%/qthelp/qhelpengine-members.html
%%QT_DOCDIR%%/qthelp/qhelpengine.html
%%QT_DOCDIR%%/qthelp/qhelpenginecore-members.html
%%QT_DOCDIR%%/qthelp/qhelpenginecore.html
%%QT_DOCDIR%%/qthelp/qhelpindexmodel-members.html
%%QT_DOCDIR%%/qthelp/qhelpindexmodel.html
%%QT_DOCDIR%%/qthelp/qhelpindexwidget-members.html
%%QT_DOCDIR%%/qthelp/qhelpindexwidget.html
%%QT_DOCDIR%%/qthelp/qhelpsearchengine-members.html
%%QT_DOCDIR%%/qthelp/qhelpsearchengine-obsolete.html
%%QT_DOCDIR%%/qthelp/qhelpsearchengine.html
%%QT_DOCDIR%%/qthelp/qhelpsearchquery-members.html
%%QT_DOCDIR%%/qthelp/qhelpsearchquery.html
%%QT_DOCDIR%%/qthelp/qhelpsearchquerywidget-members.html
%%QT_DOCDIR%%/qthelp/qhelpsearchquerywidget.html
%%QT_DOCDIR%%/qthelp/qhelpsearchresultwidget-members.html
%%QT_DOCDIR%%/qthelp/qhelpsearchresultwidget.html
%%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-contextsensitivehelp-pro.html
%%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-docs-wateringmachine-qhcp.html
%%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-docs-wateringmachine-qhp.html
%%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-example.html
%%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-helpbrowser-cpp.html
%%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-helpbrowser-h.html
%%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-main-cpp.html
%%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-wateringconfigdialog-cpp.html
%%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-wateringconfigdialog-h.html
%%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-wateringconfigdialog-ui.html
%%QT_DOCDIR%%/qthelp/qthelp-framework.html
%%QT_DOCDIR%%/qthelp/qthelp-index.html
%%QT_DOCDIR%%/qthelp/qthelp-module.html
%%QT_DOCDIR%%/qthelp/qthelp.index
%%QT_DOCDIR%%/qthelp/qthelp.qhp
%%QT_DOCDIR%%/qthelp/qthelp.qhp.sha1
%%QT_DOCDIR%%/qthelp/qthelpproject.html
%%QT_DOCDIR%%/qthelp/style/offline-simple.css
%%QT_DOCDIR%%/qthelp/style/offline.css
%%QT_DOCDIR%%/qtimageformats.qch
%%QT_DOCDIR%%/qtimageformats/images/arrow_bc.png
%%QT_DOCDIR%%/qtimageformats/images/bgrContent.png
%%QT_DOCDIR%%/qtimageformats/images/btn_next.png
%%QT_DOCDIR%%/qtimageformats/images/btn_prev.png
%%QT_DOCDIR%%/qtimageformats/images/bullet_dn.png
%%QT_DOCDIR%%/qtimageformats/images/bullet_sq.png
%%QT_DOCDIR%%/qtimageformats/images/home.png
%%QT_DOCDIR%%/qtimageformats/images/ico_note.png
%%QT_DOCDIR%%/qtimageformats/images/ico_note_attention.png
%%QT_DOCDIR%%/qtimageformats/images/ico_out.png
%%QT_DOCDIR%%/qtimageformats/images/logo.png
%%QT_DOCDIR%%/qtimageformats/qtimageformats-index.html
%%QT_DOCDIR%%/qtimageformats/qtimageformats.index
%%QT_DOCDIR%%/qtimageformats/qtimageformats.qhp
%%QT_DOCDIR%%/qtimageformats/qtimageformats.qhp.sha1
%%QT_DOCDIR%%/qtimageformats/style/offline-simple.css
%%QT_DOCDIR%%/qtimageformats/style/offline.css
-%%QT_DOCDIR%%/qtlabscontrols.qch
-%%QT_DOCDIR%%/qtlabscontrols/examples-manifest.xml
-%%QT_DOCDIR%%/qtlabscontrols/images/arrow_bc.png
-%%QT_DOCDIR%%/qtlabscontrols/images/bgrContent.png
-%%QT_DOCDIR%%/qtlabscontrols/images/btn_next.png
-%%QT_DOCDIR%%/qtlabscontrols/images/btn_prev.png
-%%QT_DOCDIR%%/qtlabscontrols/images/bullet_dn.png
-%%QT_DOCDIR%%/qtlabscontrols/images/bullet_sq.png
-%%QT_DOCDIR%%/qtlabscontrols/images/home.png
-%%QT_DOCDIR%%/qtlabscontrols/images/ico_note.png
-%%QT_DOCDIR%%/qtlabscontrols/images/ico_note_attention.png
-%%QT_DOCDIR%%/qtlabscontrols/images/ico_out.png
-%%QT_DOCDIR%%/qtlabscontrols/images/logo.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscalendar-dayofweekrow-layout.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscalendar-dayofweekrow.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscalendar-monthgrid-layout.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscalendar-monthgrid.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscalendar-weeknumbercolumn-layout.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscalendar-weeknumbercolumn.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-applicationwindow-wireframe.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-busyindicator-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-busyindicator-contentItem.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-busyindicator.gif
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-busyindicator.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-button-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-button-disabled.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-button-focused.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-button-label.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-button-normal.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-button-pressed.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-button.gif
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-button.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-checkbox-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-checkbox-checked.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-checkbox-disabled.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-checkbox-focused.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-checkbox-indicator.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-checkbox-label.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-checkbox-normal.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-checkbox.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-combobox-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-combobox-contentItem.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-combobox-delegate.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-combobox-popup.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-combobox.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-default.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-dial-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-dial-handle.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-dial.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-drawer-expanded-wireframe.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-drawer-wireframe.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-frame-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-frame-frame.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-frame.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-gallery-drawer.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-gallery-menu.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-gallery-welcome.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-groupbox-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-groupbox-checkable.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-groupbox-frame.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-groupbox-label.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-groupbox.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-itemdelegate-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-itemdelegate-indicator.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-itemdelegate-label.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-label-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-label.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-material-button.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-material-dark.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-material.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-menu-contentItem.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-menu.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-page-wireframe.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-pageindicator.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-pane-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-pane.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-popup-transformorigin.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-progressbar-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-progressbar-disabled.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-progressbar-indicator.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-progressbar-normal.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-radiobutton-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-radiobutton-checked.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-radiobutton-disabled.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-radiobutton-focused.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-radiobutton-indicator.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-radiobutton-label.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-radiobutton-normal.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-radiobutton.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-rangeslider-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-rangeslider-disabled.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-rangeslider-first-handle-focused.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-rangeslider-first-handle.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-rangeslider-normal.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-rangeslider-second-handle-focused.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-rangeslider-second-handle.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-rangeslider-track.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-rangeslider.gif
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-rangeslider.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-scrollbar-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-scrollbar-handle.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-scrollbar.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-scrollindicator-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-scrollindicator-indicator.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-scrollindicator.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-slider-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-slider-disabled.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-slider-focused.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-slider-handle.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-slider-normal.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-slider-track.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-slider.gif
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-slider.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-spinbox-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-spinbox-contentItem.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-spinbox-down.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-spinbox-textual.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-spinbox-up.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-spinbox.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-stackview-wireframe.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-swipeview-wireframe.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-switch-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-switch-checked.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-switch-disabled.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-switch-focused.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-switch-indicator.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-switch-label.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-switch-normal.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-switch.gif
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-switch.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-tabbar-wireframe.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-tabbutton.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-textarea.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-textfield-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-textfield-disabled.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-textfield-focused.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-textfield-normal.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-textfield.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-toolbar-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-toolbar-frame.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-toolbar.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-toolbutton-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-toolbutton-label.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-toolbutton.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-tumbler-background.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-tumbler-contentItem.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-tumbler-delegate.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-tumbler-wrap.gif
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-tumbler.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-universal-button.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-universal-dark.png
-%%QT_DOCDIR%%/qtlabscontrols/images/qtlabscontrols-universal.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/arrow.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/arrow@2x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/arrow@3x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/arrow@4x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/arrows.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/arrows@2x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/arrows@3x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/arrows@4x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/drawer.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/drawer@2x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/drawer@3x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/drawer@4x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/menu.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/menu@2x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/menu@3x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/menu@4x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/qt-logo.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/qt-logo@2x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/qt-logo@3x.png
-%%QT_DOCDIR%%/qtlabscontrols/images/used-in-examples/gallery/images/qt-logo@4x.png
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-calendar-calendar-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-calendar-calendar.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-calendar-calendarmodel-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-calendar-calendarmodel.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-calendar-dayofweekrow-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-calendar-dayofweekrow.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-calendar-monthgrid-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-calendar-monthgrid.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-calendar-weeknumbercolumn-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-calendar-weeknumbercolumn.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-abstractbutton-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-abstractbutton.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-applicationwindow-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-applicationwindow.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-busyindicator-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-busyindicator.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-button-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-button.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-buttongroup-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-buttongroup.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-checkbox-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-checkbox.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-combobox-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-combobox.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-container-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-container.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-control-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-control.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-dial-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-dial.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-drawer-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-drawer.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-frame-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-frame.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-groupbox-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-groupbox.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-itemdelegate-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-itemdelegate.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-label-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-label.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-menu-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-menu.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-menuitem-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-menuitem.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-page-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-page.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-pageindicator-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-pageindicator.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-pane-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-pane.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-popup-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-popup.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-progressbar-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-progressbar.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-radiobutton-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-radiobutton.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-rangeslider-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-rangeslider.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-scrollbar-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-scrollbar.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-scrollindicator-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-scrollindicator.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-slider-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-slider.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-spinbox-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-spinbox.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-stackview-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-stackview.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-swipeview-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-swipeview.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-switch-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-switch.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-tabbar-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-tabbar.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-tabbutton-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-tabbutton.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-textarea-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-textarea.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-textfield-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-textfield.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-toolbar-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-toolbar.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-toolbutton-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-toolbutton.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-tumbler-members.html
-%%QT_DOCDIR%%/qtlabscontrols/qml-qt-labs-controls-tumbler.html
-%%QT_DOCDIR%%/qtlabscontrols/qt-labs-calendar-qmlmodule.html
-%%QT_DOCDIR%%/qtlabscontrols/qt-labs-controls-qmlmodule.html
-%%QT_DOCDIR%%/qtlabscontrols/qt-labs-templates-qmlmodule.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscalendar-index.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-buttons.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-containers.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-customize.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-default.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-differences.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-examples.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-example.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-gallery-cpp.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-gallery-pro.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-gallery-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-gallery-qrc.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-busyindicatorpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-buttonpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-checkboxpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-comboboxpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-dialpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-drawerpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-framepage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-groupboxpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-menupage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-pageindicatorpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-popuppage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-progressbarpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-radiobuttonpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-rangesliderpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-scrollbarpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-scrollindicatorpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-sliderpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-spinboxpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-stackviewpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-swipeviewpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-switchpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-tabbarpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-textareapage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-textfieldpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gallery-pages-tumblerpage-qml.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-gettingstarted.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-highdpi.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-index.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-indicators.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-input.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-material.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-menus.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-navigation.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-styles.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols-universal.html
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols.index
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols.qhp
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols.qhp.sha1
-%%QT_DOCDIR%%/qtlabscontrols/qtlabscontrols.tags
-%%QT_DOCDIR%%/qtlabscontrols/qtlabstemplates-index.html
-%%QT_DOCDIR%%/qtlabscontrols/style/offline-simple.css
-%%QT_DOCDIR%%/qtlabscontrols/style/offline.css
%%QT_DOCDIR%%/qtlinguist.qch
%%QT_DOCDIR%%/qtlinguist/examples-linguist.html
%%QT_DOCDIR%%/qtlinguist/examples-manifest.xml
%%QT_DOCDIR%%/qtlinguist/images/arrow_bc.png
%%QT_DOCDIR%%/qtlinguist/images/bgrContent.png
%%QT_DOCDIR%%/qtlinguist/images/btn_next.png
%%QT_DOCDIR%%/qtlinguist/images/btn_prev.png
%%QT_DOCDIR%%/qtlinguist/images/bullet_dn.png
%%QT_DOCDIR%%/qtlinguist/images/bullet_sq.png
%%QT_DOCDIR%%/qtlinguist/images/home.png
%%QT_DOCDIR%%/qtlinguist/images/ico_note.png
%%QT_DOCDIR%%/qtlinguist/images/ico_note_attention.png
%%QT_DOCDIR%%/qtlinguist/images/ico_out.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-arrowpad_en.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-arrowpad_fr.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-arrowpad_nl.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-batchtranslation.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-check-empty.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-check-obsolete.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-check-off.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-check-on.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-check-warning.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-danger.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-doneandnext.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-hellotr_en.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-hellotr_la.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-linguist.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-linguist_2.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-phrasebookdialog.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-translationfilesettings.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-trollprint_10_en.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-trollprint_10_pt_bad.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-trollprint_10_pt_good.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-trollprint_11_en.png
%%QT_DOCDIR%%/qtlinguist/images/linguist-trollprint_11_pt.png
%%QT_DOCDIR%%/qtlinguist/images/logo.png
%%QT_DOCDIR%%/qtlinguist/linguist-id-based-i18n.html
%%QT_DOCDIR%%/qtlinguist/linguist-manager.html
%%QT_DOCDIR%%/qtlinguist/linguist-overview.html
%%QT_DOCDIR%%/qtlinguist/linguist-programmers.html
%%QT_DOCDIR%%/qtlinguist/linguist-translators.html
%%QT_DOCDIR%%/qtlinguist/linguist-ts-file-format.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-arrowpad-cpp.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-arrowpad-h.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-arrowpad-pro.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-example.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-main-cpp.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-mainwindow-cpp.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-mainwindow-h.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-hellotr-example.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-hellotr-hellotr-pro.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-hellotr-main-cpp.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-index.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-example.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-main-cpp.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-mainwindow-cpp.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-mainwindow-h.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-printpanel-cpp.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-printpanel-h.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-trollprint-pro.html
%%QT_DOCDIR%%/qtlinguist/qtlinguist.index
%%QT_DOCDIR%%/qtlinguist/qtlinguist.qhp
%%QT_DOCDIR%%/qtlinguist/qtlinguist.qhp.sha1
%%QT_DOCDIR%%/qtlinguist/style/offline-simple.css
%%QT_DOCDIR%%/qtlinguist/style/offline.css
%%QT_DOCDIR%%/qtlocation.qch
%%QT_DOCDIR%%/qtlocation/examples-manifest.xml
%%QT_DOCDIR%%/qtlocation/images/api-mapcircle.png
%%QT_DOCDIR%%/qtlocation/images/api-mappolygon.png
%%QT_DOCDIR%%/qtlocation/images/api-mappolyline.png
%%QT_DOCDIR%%/qtlocation/images/api-mapquickitem-anchor.png
%%QT_DOCDIR%%/qtlocation/images/api-mapquickitem.png
%%QT_DOCDIR%%/qtlocation/images/api-maprectangle.png
%%QT_DOCDIR%%/qtlocation/images/arrow_bc.png
%%QT_DOCDIR%%/qtlocation/images/bgrContent.png
%%QT_DOCDIR%%/qtlocation/images/btn_next.png
%%QT_DOCDIR%%/qtlocation/images/btn_prev.png
%%QT_DOCDIR%%/qtlocation/images/bullet_dn.png
%%QT_DOCDIR%%/qtlocation/images/bullet_sq.png
%%QT_DOCDIR%%/qtlocation/images/home.png
%%QT_DOCDIR%%/qtlocation/images/ico_note.png
%%QT_DOCDIR%%/qtlocation/images/ico_note_attention.png
%%QT_DOCDIR%%/qtlocation/images/ico_out.png
%%QT_DOCDIR%%/qtlocation/images/logo.png
%%QT_DOCDIR%%/qtlocation/images/mapviewer.png
%%QT_DOCDIR%%/qtlocation/images/minimal_map.png
%%QT_DOCDIR%%/qtlocation/images/places.png
%%QT_DOCDIR%%/qtlocation/images/places_list.png
%%QT_DOCDIR%%/qtlocation/images/places_map.png
%%QT_DOCDIR%%/qtlocation/images/planespotter.png
%%QT_DOCDIR%%/qtlocation/location-cpp-qml.html
%%QT_DOCDIR%%/qtlocation/location-maps-cpp.html
%%QT_DOCDIR%%/qtlocation/location-maps-qml.html
%%QT_DOCDIR%%/qtlocation/location-places-backend.html
%%QT_DOCDIR%%/qtlocation/location-places-cpp.html
%%QT_DOCDIR%%/qtlocation/location-places-qml.html
%%QT_DOCDIR%%/qtlocation/location-plugin-here.html
%%QT_DOCDIR%%/qtlocation/location-plugin-mapbox.html
%%QT_DOCDIR%%/qtlocation/location-plugin-osm.html
%%QT_DOCDIR%%/qtlocation/qgeocodereply-members.html
%%QT_DOCDIR%%/qtlocation/qgeocodereply.html
%%QT_DOCDIR%%/qtlocation/qgeocodingmanager-members.html
%%QT_DOCDIR%%/qtlocation/qgeocodingmanager.html
%%QT_DOCDIR%%/qtlocation/qgeocodingmanagerengine-members.html
%%QT_DOCDIR%%/qtlocation/qgeocodingmanagerengine.html
%%QT_DOCDIR%%/qtlocation/qgeomaneuver-members.html
%%QT_DOCDIR%%/qtlocation/qgeomaneuver.html
%%QT_DOCDIR%%/qtlocation/qgeoroute-members.html
%%QT_DOCDIR%%/qtlocation/qgeoroute.html
%%QT_DOCDIR%%/qtlocation/qgeoroutereply-members.html
%%QT_DOCDIR%%/qtlocation/qgeoroutereply.html
%%QT_DOCDIR%%/qtlocation/qgeorouterequest-members.html
%%QT_DOCDIR%%/qtlocation/qgeorouterequest.html
%%QT_DOCDIR%%/qtlocation/qgeoroutesegment-members.html
%%QT_DOCDIR%%/qtlocation/qgeoroutesegment.html
%%QT_DOCDIR%%/qtlocation/qgeoroutingmanager-members.html
%%QT_DOCDIR%%/qtlocation/qgeoroutingmanager.html
%%QT_DOCDIR%%/qtlocation/qgeoroutingmanagerengine-members.html
%%QT_DOCDIR%%/qtlocation/qgeoroutingmanagerengine.html
%%QT_DOCDIR%%/qtlocation/qgeoserviceprovider-members.html
%%QT_DOCDIR%%/qtlocation/qgeoserviceprovider.html
%%QT_DOCDIR%%/qtlocation/qgeoserviceproviderfactory-members.html
%%QT_DOCDIR%%/qtlocation/qgeoserviceproviderfactory.html
%%QT_DOCDIR%%/qtlocation/qlocation.html
%%QT_DOCDIR%%/qtlocation/qml-location5-maps.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-category-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-category.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-categorymodel-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-categorymodel.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-contactdetail-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-contactdetail.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-contactdetails-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-contactdetails.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-editorialmodel-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-editorialmodel.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-extendedattributes-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-extendedattributes.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-geocodemodel-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-geocodemodel.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-icon-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-icon.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-imagemodel-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-imagemodel.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-map-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-map.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapcircle-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapcircle.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapgesturearea-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapgesturearea.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapitemview-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapitemview.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mappinchevent-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mappinchevent.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mappolygon-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mappolygon.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mappolyline-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mappolyline.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapquickitem-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapquickitem.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-maprectangle-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-maprectangle.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-maproute-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-maproute.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-maptype-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-maptype.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-place-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-place.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-placeattribute-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-placeattribute.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-placesearchmodel-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-placesearchmodel.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-placesearchsuggestionmodel-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-placesearchsuggestionmodel.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-plugin-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-plugin.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-pluginparameter-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-pluginparameter.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-ratings-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-ratings.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-reviewmodel-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-reviewmodel.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-route-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-route.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-routemaneuver-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-routemaneuver.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-routemodel-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-routemodel.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-routequery-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-routequery.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-routesegment-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-routesegment.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-supplier-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-supplier.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-user-members.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation-user.html
%%QT_DOCDIR%%/qtlocation/qml-qtlocation5-maps.html
%%QT_DOCDIR%%/qtlocation/qplace-members.html
%%QT_DOCDIR%%/qtlocation/qplace.html
%%QT_DOCDIR%%/qtlocation/qplaceattribute-members.html
%%QT_DOCDIR%%/qtlocation/qplaceattribute.html
%%QT_DOCDIR%%/qtlocation/qplacecategory-members.html
%%QT_DOCDIR%%/qtlocation/qplacecategory.html
%%QT_DOCDIR%%/qtlocation/qplacecontactdetail-members.html
%%QT_DOCDIR%%/qtlocation/qplacecontactdetail.html
%%QT_DOCDIR%%/qtlocation/qplacecontent-members.html
%%QT_DOCDIR%%/qtlocation/qplacecontent.html
%%QT_DOCDIR%%/qtlocation/qplacecontentreply-members.html
%%QT_DOCDIR%%/qtlocation/qplacecontentreply.html
%%QT_DOCDIR%%/qtlocation/qplacecontentrequest-members.html
%%QT_DOCDIR%%/qtlocation/qplacecontentrequest.html
%%QT_DOCDIR%%/qtlocation/qplacedetailsreply-members.html
%%QT_DOCDIR%%/qtlocation/qplacedetailsreply.html
%%QT_DOCDIR%%/qtlocation/qplaceeditorial-members.html
%%QT_DOCDIR%%/qtlocation/qplaceeditorial.html
%%QT_DOCDIR%%/qtlocation/qplaceicon-members.html
%%QT_DOCDIR%%/qtlocation/qplaceicon.html
%%QT_DOCDIR%%/qtlocation/qplaceidreply-members.html
%%QT_DOCDIR%%/qtlocation/qplaceidreply.html
%%QT_DOCDIR%%/qtlocation/qplaceimage-members.html
%%QT_DOCDIR%%/qtlocation/qplaceimage.html
%%QT_DOCDIR%%/qtlocation/qplacemanager-members.html
%%QT_DOCDIR%%/qtlocation/qplacemanager.html
%%QT_DOCDIR%%/qtlocation/qplacemanagerengine-members.html
%%QT_DOCDIR%%/qtlocation/qplacemanagerengine.html
%%QT_DOCDIR%%/qtlocation/qplacematchreply-members.html
%%QT_DOCDIR%%/qtlocation/qplacematchreply.html
%%QT_DOCDIR%%/qtlocation/qplacematchrequest-members.html
%%QT_DOCDIR%%/qtlocation/qplacematchrequest.html
%%QT_DOCDIR%%/qtlocation/qplaceproposedsearchresult-members.html
%%QT_DOCDIR%%/qtlocation/qplaceproposedsearchresult.html
%%QT_DOCDIR%%/qtlocation/qplaceratings-members.html
%%QT_DOCDIR%%/qtlocation/qplaceratings.html
%%QT_DOCDIR%%/qtlocation/qplacereply-members.html
%%QT_DOCDIR%%/qtlocation/qplacereply.html
%%QT_DOCDIR%%/qtlocation/qplaceresult-members.html
%%QT_DOCDIR%%/qtlocation/qplaceresult.html
%%QT_DOCDIR%%/qtlocation/qplacereview-members.html
%%QT_DOCDIR%%/qtlocation/qplacereview.html
%%QT_DOCDIR%%/qtlocation/qplacesearchreply-members.html
%%QT_DOCDIR%%/qtlocation/qplacesearchreply.html
%%QT_DOCDIR%%/qtlocation/qplacesearchrequest-members.html
%%QT_DOCDIR%%/qtlocation/qplacesearchrequest.html
%%QT_DOCDIR%%/qtlocation/qplacesearchresult-members.html
%%QT_DOCDIR%%/qtlocation/qplacesearchresult.html
%%QT_DOCDIR%%/qtlocation/qplacesearchsuggestionreply-members.html
%%QT_DOCDIR%%/qtlocation/qplacesearchsuggestionreply.html
%%QT_DOCDIR%%/qtlocation/qplacesupplier-members.html
%%QT_DOCDIR%%/qtlocation/qplacesupplier.html
%%QT_DOCDIR%%/qtlocation/qplaceuser-members.html
%%QT_DOCDIR%%/qtlocation/qplaceuser.html
%%QT_DOCDIR%%/qtlocation/qtlocation-changes.html
%%QT_DOCDIR%%/qtlocation/qtlocation-cpp.html
%%QT_DOCDIR%%/qtlocation/qtlocation-examples.html
%%QT_DOCDIR%%/qtlocation/qtlocation-geoservices.html
%%QT_DOCDIR%%/qtlocation/qtlocation-index.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-example.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-geocode-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-geocodeform-ui-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-locale-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-localeform-ui-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-message-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-messageform-ui-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-reversegeocode-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-reversegeocodeform-ui-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routeaddress-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routeaddressform-ui-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routecoordinate-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routecoordinateform-ui-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routelist-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routelistdelegate-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routelistheader-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-helper-js.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-main-cpp.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-circleitem-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-imageitem-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-mapcomponent-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-marker-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-minimap-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-polygonitem-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-polylineitem-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-rectangleitem-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-mapviewer-pro.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-mapviewer-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-mapviewer-qrc.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-menus-itempopupmenu-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-menus-mainmenu-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-menus-mappopupmenu-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-menus-markerpopupmenu-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-minimal-map-example.html
%%QT_DOCDIR%%/qtlocation/qtlocation-minimal-map-main-cpp.html
%%QT_DOCDIR%%/qtlocation/qtlocation-minimal-map-main-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-minimal-map-minimal-map-pro.html
%%QT_DOCDIR%%/qtlocation/qtlocation-minimal-map-qml-qrc.html
%%QT_DOCDIR%%/qtlocation/qtlocation-module.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-example.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-message-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-messageform-ui-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-placedetails-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-placedetailsform-ui-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchboundingbox-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchboundingboxform-ui-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchboundingcircle-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchboundingcircleform-ui-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchcenter-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchcenterform-ui-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchoptions-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchoptionsform-ui-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-helper-js.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-items-mainmenu-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-items-mapcomponent-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-items-searchbar-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-list-example.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-list-main-cpp.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-list-marker-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-list-places-list-pro.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-list-places-list-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-list-places-list-qrc.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-main-cpp.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-map-example.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-map-main-cpp.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-map-places-map-pro.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-map-places-map-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-map-places-map-qrc.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-places-pro.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-places-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-places-qrc.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-categorydelegate-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-categoryview-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-editorialdelegate-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-editorialpage-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-editorialview-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-imageview-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-ratingview-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-reviewdelegate-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-reviewpage-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-reviewview-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-searchresultdelegate-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-searchresultview-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-places-views-suggestionview-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-planespotter-example.html
%%QT_DOCDIR%%/qtlocation/qtlocation-planespotter-main-cpp.html
%%QT_DOCDIR%%/qtlocation/qtlocation-planespotter-plane-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-planespotter-planespotter-pro.html
%%QT_DOCDIR%%/qtlocation/qtlocation-planespotter-planespotter-qml.html
%%QT_DOCDIR%%/qtlocation/qtlocation-planespotter-qml-qrc.html
%%QT_DOCDIR%%/qtlocation/qtlocation-qmlmodule.html
%%QT_DOCDIR%%/qtlocation/qtlocation.index
%%QT_DOCDIR%%/qtlocation/qtlocation.qhp
%%QT_DOCDIR%%/qtlocation/qtlocation.qhp.sha1
%%QT_DOCDIR%%/qtlocation/qtlocation.tags
%%QT_DOCDIR%%/qtlocation/style/offline-simple.css
%%QT_DOCDIR%%/qtlocation/style/offline.css
%%QT_DOCDIR%%/qtmacextras.qch
%%QT_DOCDIR%%/qtmacextras/examples-manifest.xml
%%QT_DOCDIR%%/qtmacextras/examples-qtmacextras.html
%%QT_DOCDIR%%/qtmacextras/images/arrow_bc.png
%%QT_DOCDIR%%/qtmacextras/images/bgrContent.png
%%QT_DOCDIR%%/qtmacextras/images/btn_next.png
%%QT_DOCDIR%%/qtmacextras/images/btn_prev.png
%%QT_DOCDIR%%/qtmacextras/images/bullet_dn.png
%%QT_DOCDIR%%/qtmacextras/images/bullet_sq.png
%%QT_DOCDIR%%/qtmacextras/images/home.png
%%QT_DOCDIR%%/qtmacextras/images/ico_note.png
%%QT_DOCDIR%%/qtmacextras/images/ico_note_attention.png
%%QT_DOCDIR%%/qtmacextras/images/ico_out.png
%%QT_DOCDIR%%/qtmacextras/images/logo.png
%%QT_DOCDIR%%/qtmacextras/qmacpasteboardmime-members.html
%%QT_DOCDIR%%/qtmacextras/qmacpasteboardmime.html
%%QT_DOCDIR%%/qtmacextras/qmactoolbar-members.html
%%QT_DOCDIR%%/qtmacextras/qmactoolbar.html
%%QT_DOCDIR%%/qtmacextras/qmactoolbaritem-members.html
%%QT_DOCDIR%%/qtmacextras/qmactoolbaritem.html
%%QT_DOCDIR%%/qtmacextras/qtmac-obsolete.html
%%QT_DOCDIR%%/qtmacextras/qtmac.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-embeddedqwindow-embeddedqwindow-pro.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-embeddedqwindow-example.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-embeddedqwindow-window-cpp.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-embeddedqwindow-window-h.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-index.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-macfunctions-example.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-macfunctions-macfunctions-pro.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-macfunctions-macfunctions-qrc.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-macfunctions-main-cpp.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-macpasteboardmime-example.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-macpasteboardmime-macpasteboardmime-pro.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-macpasteboardmime-main-cpp.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras-module.html
%%QT_DOCDIR%%/qtmacextras/qtmacextras.index
%%QT_DOCDIR%%/qtmacextras/qtmacextras.qhp
%%QT_DOCDIR%%/qtmacextras/qtmacextras.qhp.sha1
%%QT_DOCDIR%%/qtmacextras/style/offline-simple.css
%%QT_DOCDIR%%/qtmacextras/style/offline.css
%%QT_DOCDIR%%/qtmultimedia.qch
%%QT_DOCDIR%%/qtmultimedia/audiooverview.html
%%QT_DOCDIR%%/qtmultimedia/blackberry.html
%%QT_DOCDIR%%/qtmultimedia/cameraoverview.html
%%QT_DOCDIR%%/qtmultimedia/changes.html
%%QT_DOCDIR%%/qtmultimedia/examples-manifest.xml
%%QT_DOCDIR%%/qtmultimedia/images/arrow_bc.png
%%QT_DOCDIR%%/qtmultimedia/images/audiodevices.png
%%QT_DOCDIR%%/qtmultimedia/images/audioinput-example.png
%%QT_DOCDIR%%/qtmultimedia/images/audiooutput-example.png
%%QT_DOCDIR%%/qtmultimedia/images/audiorecorder.png
%%QT_DOCDIR%%/qtmultimedia/images/bgrContent.png
%%QT_DOCDIR%%/qtmultimedia/images/btn_next.png
%%QT_DOCDIR%%/qtmultimedia/images/btn_prev.png
%%QT_DOCDIR%%/qtmultimedia/images/bullet_dn.png
%%QT_DOCDIR%%/qtmultimedia/images/bullet_sq.png
%%QT_DOCDIR%%/qtmultimedia/images/camera-example.png
%%QT_DOCDIR%%/qtmultimedia/images/declarative-radio-example.png
%%QT_DOCDIR%%/qtmultimedia/images/home.png
%%QT_DOCDIR%%/qtmultimedia/images/ico_note.png
%%QT_DOCDIR%%/qtmultimedia/images/ico_note_attention.png
%%QT_DOCDIR%%/qtmultimedia/images/ico_out.png
%%QT_DOCDIR%%/qtmultimedia/images/logo.png
%%QT_DOCDIR%%/qtmultimedia/images/mediaplayerex.jpg
%%QT_DOCDIR%%/qtmultimedia/images/qml-camera.png
%%QT_DOCDIR%%/qtmultimedia/images/qmlvideo-menu.jpg
%%QT_DOCDIR%%/qtmultimedia/images/qmlvideo-overlay.jpg
%%QT_DOCDIR%%/qtmultimedia/images/qmlvideofx-camera-glow.jpg
%%QT_DOCDIR%%/qtmultimedia/images/qmlvideofx-camera-wobble.jpg
%%QT_DOCDIR%%/qtmultimedia/images/qmlvideofx-effects-menu.jpg
%%QT_DOCDIR%%/qtmultimedia/images/qmlvideofx-video-edgedetection.jpg
%%QT_DOCDIR%%/qtmultimedia/images/qmlvideofx-video-pagecurl.jpg
%%QT_DOCDIR%%/qtmultimedia/images/radio-example.png
%%QT_DOCDIR%%/qtmultimedia/images/spectrum-demo.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_auto_mode.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_camera_setting.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_flash_auto.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_flash_fill.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_flash_off.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_flash_redeye.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_white_balance_cloudy.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_white_balance_flourescent.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_white_balance_incandescent.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_white_balance_sunny.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/toolbutton.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideo/images/folder.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideo/images/leaves.jpg
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideo/images/up.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/Dropdown_arrows.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/Slider_bar.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/Slider_handle.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/Triangle_Top.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/Triangle_bottom.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/icon_BackArrow.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/icon_Folder.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/icon_Menu.png
%%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/qt-logo.png
%%QT_DOCDIR%%/qtmultimedia/images/video-qml-paint-rate.png
%%QT_DOCDIR%%/qtmultimedia/images/video-videographicsitem.png
%%QT_DOCDIR%%/qtmultimedia/images/video-videowidget.png
%%QT_DOCDIR%%/qtmultimedia/multimedia-examples.html
%%QT_DOCDIR%%/qtmultimedia/multimediabackend.html
%%QT_DOCDIR%%/qtmultimedia/multimediaoverview.html
%%QT_DOCDIR%%/qtmultimedia/qabstractplanarvideobuffer-members.html
%%QT_DOCDIR%%/qtmultimedia/qabstractplanarvideobuffer.html
%%QT_DOCDIR%%/qtmultimedia/qabstractvideobuffer-members.html
%%QT_DOCDIR%%/qtmultimedia/qabstractvideobuffer.html
%%QT_DOCDIR%%/qtmultimedia/qabstractvideofilter-members.html
%%QT_DOCDIR%%/qtmultimedia/qabstractvideofilter.html
%%QT_DOCDIR%%/qtmultimedia/qabstractvideosurface-members.html
%%QT_DOCDIR%%/qtmultimedia/qabstractvideosurface.html
%%QT_DOCDIR%%/qtmultimedia/qaudio.html
%%QT_DOCDIR%%/qtmultimedia/qaudiobuffer-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudiobuffer-stereoframe-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudiobuffer-stereoframe.html
%%QT_DOCDIR%%/qtmultimedia/qaudiobuffer.html
%%QT_DOCDIR%%/qtmultimedia/qaudiodecoder-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudiodecoder.html
%%QT_DOCDIR%%/qtmultimedia/qaudiodecodercontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudiodecodercontrol.html
%%QT_DOCDIR%%/qtmultimedia/qaudiodeviceinfo-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudiodeviceinfo.html
%%QT_DOCDIR%%/qtmultimedia/qaudioencodersettings-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudioencodersettings.html
%%QT_DOCDIR%%/qtmultimedia/qaudioencodersettingscontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudioencodersettingscontrol.html
%%QT_DOCDIR%%/qtmultimedia/qaudioformat-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudioformat.html
%%QT_DOCDIR%%/qtmultimedia/qaudioinput-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudioinput.html
%%QT_DOCDIR%%/qtmultimedia/qaudioinputselectorcontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudioinputselectorcontrol.html
%%QT_DOCDIR%%/qtmultimedia/qaudiooutput-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudiooutput.html
%%QT_DOCDIR%%/qtmultimedia/qaudiooutputselectorcontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudiooutputselectorcontrol.html
%%QT_DOCDIR%%/qtmultimedia/qaudioprobe-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudioprobe.html
%%QT_DOCDIR%%/qtmultimedia/qaudiorecorder-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudiorecorder.html
%%QT_DOCDIR%%/qtmultimedia/qaudiorolecontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qaudiorolecontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcamera-frameraterange-members.html
%%QT_DOCDIR%%/qtmultimedia/qcamera-frameraterange.html
%%QT_DOCDIR%%/qtmultimedia/qcamera-members.html
%%QT_DOCDIR%%/qtmultimedia/qcamera-obsolete.html
%%QT_DOCDIR%%/qtmultimedia/qcamera.html
%%QT_DOCDIR%%/qtmultimedia/qcameracapturebufferformatcontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameracapturebufferformatcontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcameracapturedestinationcontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameracapturedestinationcontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcameracontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameracontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcameraexposure-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameraexposure.html
%%QT_DOCDIR%%/qtmultimedia/qcameraexposurecontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameraexposurecontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcamerafeedbackcontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcamerafeedbackcontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcameraflashcontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameraflashcontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcamerafocus-members.html
%%QT_DOCDIR%%/qtmultimedia/qcamerafocus.html
%%QT_DOCDIR%%/qtmultimedia/qcamerafocuscontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcamerafocuscontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcamerafocuszone-members.html
%%QT_DOCDIR%%/qtmultimedia/qcamerafocuszone.html
%%QT_DOCDIR%%/qtmultimedia/qcameraimagecapture-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameraimagecapture.html
%%QT_DOCDIR%%/qtmultimedia/qcameraimagecapturecontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameraimagecapturecontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcameraimageprocessing-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameraimageprocessing.html
%%QT_DOCDIR%%/qtmultimedia/qcameraimageprocessingcontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameraimageprocessingcontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcamerainfo-members.html
%%QT_DOCDIR%%/qtmultimedia/qcamerainfo.html
%%QT_DOCDIR%%/qtmultimedia/qcamerainfocontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcamerainfocontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcameralockscontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameralockscontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcameraviewfinder-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameraviewfinder.html
%%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettings-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettings.html
%%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettingscontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettingscontrol.html
%%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettingscontrol2-members.html
%%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettingscontrol2.html
%%QT_DOCDIR%%/qtmultimedia/qcamerazoomcontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qcamerazoomcontrol.html
%%QT_DOCDIR%%/qtmultimedia/qgraphicsvideoitem-members.html
%%QT_DOCDIR%%/qtmultimedia/qgraphicsvideoitem.html
%%QT_DOCDIR%%/qtmultimedia/qimageencodercontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qimageencodercontrol.html
%%QT_DOCDIR%%/qtmultimedia/qimageencodersettings-members.html
%%QT_DOCDIR%%/qtmultimedia/qimageencodersettings.html
%%QT_DOCDIR%%/qtmultimedia/qmediaaudioprobecontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaaudioprobecontrol.html
%%QT_DOCDIR%%/qtmultimedia/qmediaavailabilitycontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaavailabilitycontrol.html
%%QT_DOCDIR%%/qtmultimedia/qmediabindableinterface-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediabindableinterface.html
%%QT_DOCDIR%%/qtmultimedia/qmediacontainercontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediacontainercontrol.html
%%QT_DOCDIR%%/qtmultimedia/qmediacontent-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediacontent.html
%%QT_DOCDIR%%/qtmultimedia/qmediacontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediacontrol.html
%%QT_DOCDIR%%/qtmultimedia/qmediagaplessplaybackcontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediagaplessplaybackcontrol.html
%%QT_DOCDIR%%/qtmultimedia/qmediametadata.html
%%QT_DOCDIR%%/qtmultimedia/qmedianetworkaccesscontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qmedianetworkaccesscontrol.html
%%QT_DOCDIR%%/qtmultimedia/qmediaobject-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaobject.html
%%QT_DOCDIR%%/qtmultimedia/qmediaplayer-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaplayer-obsolete.html
%%QT_DOCDIR%%/qtmultimedia/qmediaplayer.html
%%QT_DOCDIR%%/qtmultimedia/qmediaplayercontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaplayercontrol.html
%%QT_DOCDIR%%/qtmultimedia/qmediaplaylist-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaplaylist.html
%%QT_DOCDIR%%/qtmultimedia/qmediarecorder-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediarecorder.html
%%QT_DOCDIR%%/qtmultimedia/qmediarecordercontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediarecordercontrol.html
%%QT_DOCDIR%%/qtmultimedia/qmediaresource-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaresource.html
%%QT_DOCDIR%%/qtmultimedia/qmediaservice-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaservice.html
%%QT_DOCDIR%%/qtmultimedia/qmediaservicecamerainfointerface-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaservicecamerainfointerface.html
%%QT_DOCDIR%%/qtmultimedia/qmediaservicedefaultdeviceinterface-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaservicedefaultdeviceinterface.html
%%QT_DOCDIR%%/qtmultimedia/qmediaservicefeaturesinterface-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaservicefeaturesinterface.html
%%QT_DOCDIR%%/qtmultimedia/qmediaserviceproviderplugin-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaserviceproviderplugin.html
%%QT_DOCDIR%%/qtmultimedia/qmediaservicesupporteddevicesinterface-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaservicesupporteddevicesinterface.html
%%QT_DOCDIR%%/qtmultimedia/qmediaservicesupportedformatsinterface-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediaservicesupportedformatsinterface.html
%%QT_DOCDIR%%/qtmultimedia/qmediastreamscontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediastreamscontrol.html
%%QT_DOCDIR%%/qtmultimedia/qmediatimeinterval-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediatimeinterval.html
%%QT_DOCDIR%%/qtmultimedia/qmediatimerange-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediatimerange.html
%%QT_DOCDIR%%/qtmultimedia/qmediavideoprobecontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qmediavideoprobecontrol.html
%%QT_DOCDIR%%/qtmultimedia/qmetadatareadercontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qmetadatareadercontrol.html
%%QT_DOCDIR%%/qtmultimedia/qmetadatawritercontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qmetadatawritercontrol.html
%%QT_DOCDIR%%/qtmultimedia/qml-multimedia.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-attenuationmodelinverse-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-attenuationmodelinverse.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-attenuationmodellinear-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-attenuationmodellinear.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audiocategory-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audiocategory.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audioengine-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audioengine.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audiolistener-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audiolistener.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audiosample-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audiosample.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-playvariation-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-playvariation.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-sound-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-sound.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-soundinstance-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-soundinstance.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-audio-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-audio.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-camera-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-camera.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameracapture-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameracapture.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameraexposure-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameraexposure.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameraflash-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameraflash.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-camerafocus-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-camerafocus.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameraimageprocessing-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameraimageprocessing.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-camerarecorder-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-camerarecorder.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-mediaplayer-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-mediaplayer.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-playlist-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-playlist.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-playlistitem-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-playlistitem.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-qtmultimedia-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-qtmultimedia.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-radio-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-radio.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-radiodata-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-radiodata.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-soundeffect-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-soundeffect.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-torch-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-torch.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-video-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-video.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-videooutput-members.html
%%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-videooutput.html
%%QT_DOCDIR%%/qtmultimedia/qmultimedia.html
%%QT_DOCDIR%%/qtmultimedia/qradiodata-members.html
%%QT_DOCDIR%%/qtmultimedia/qradiodata.html
%%QT_DOCDIR%%/qtmultimedia/qradiodatacontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qradiodatacontrol.html
%%QT_DOCDIR%%/qtmultimedia/qradiotuner-members.html
%%QT_DOCDIR%%/qtmultimedia/qradiotuner.html
%%QT_DOCDIR%%/qtmultimedia/qradiotunercontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qradiotunercontrol.html
%%QT_DOCDIR%%/qtmultimedia/qsound-members.html
%%QT_DOCDIR%%/qtmultimedia/qsound.html
%%QT_DOCDIR%%/qtmultimedia/qsoundeffect-members.html
%%QT_DOCDIR%%/qtmultimedia/qsoundeffect.html
%%QT_DOCDIR%%/qtmultimedia/qtaudioengine-qmlmodule.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-index.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-module.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-modules.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiodevices-audiodevices-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiodevices-audiodevices-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiodevices-audiodevices-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiodevices-audiodevicesbase-ui.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiodevices-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiodevices-main-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioengine-audioengine-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioengine-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioengine-qml-audioengine-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioengine-qml-audioengine-qmlproject.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioengine-qml-content-myaudioengine-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioinput-audioinput-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioinput-audioinput-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioinput-audioinput-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioinput-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioinput-main-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiooutput-audiooutput-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiooutput-audiooutput-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiooutput-audiooutput-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiooutput-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiooutput-main-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-audiorecorder-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-audiorecorder-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-audiorecorder-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-audiorecorder-ui.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-main-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-qaudiolevel-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-qaudiolevel-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-camerabutton-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-cameralistbutton-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-cameralistpopup-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-camerapropertybutton-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-camerapropertypopup-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-declarative-camera-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-declarative-camera-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-declarative-camera-qmlproject.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-declarative-camera-qrc.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-focusbutton-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-photocapturecontrols-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-photopreview-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-popup-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-qmlcamera-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-videocapturecontrols-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-videopreview-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-zoomcontrol-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-radio-declarative-radio-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-radio-declarative-radio-qrc.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-radio-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-radio-main-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-radio-view-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-array-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-def-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-dynarray-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftreal-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftreal-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftreal-wrapper-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftreal-wrapper-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftrealfixlen-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftrealfixlenparam-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftrealpassdirect-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftrealpassinverse-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftrealselect-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftrealusetrigo-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-oscsincos-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-clockcyclecounter-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-clockcyclecounter-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-def-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-fnc-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-int64-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-stopwatch-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-stopwatch-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-test-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-test-fnc-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-test-settings-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-testaccuracy-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-testhelperfixlen-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-testhelpernormal-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-testspeed-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-testwhitenoisegen-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-app-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-engine-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-engine-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-frequencyspectrum-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-frequencyspectrum-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-levelmeter-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-levelmeter-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-main-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-mainwidget-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-mainwidget-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-progressbar-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-progressbar-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-settingsdialog-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-settingsdialog-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-spectrograph-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-spectrograph-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-spectrum-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-spectrum-qrc.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-spectrumanalyser-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-spectrumanalyser-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-tonegenerator-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-tonegenerator-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-tonegeneratordialog-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-tonegeneratordialog-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-utils-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-utils-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-waveform-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-waveform-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-wavfile-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-wavfile-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-spectrum-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-main-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-button-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-camerabasic-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameradrag-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameradummy-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-camerafullscreen-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-camerafullscreeninverted-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameraitem-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameramove-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameraoverlay-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameraresize-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-camerarotate-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameraspin-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-content-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-errordialog-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-filebrowser-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-main-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scene-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenebasic-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenedrag-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenefullscreen-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenefullscreeninverted-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenemove-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenemulti-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-sceneoverlay-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-sceneresize-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenerotate-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-sceneselectionpanel-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenespin-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-seekcontrol-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videobasic-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videodrag-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videodummy-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videofillmode-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videofullscreen-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videofullscreeninverted-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videoitem-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videometadata-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videomove-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videooverlay-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videoplaybackrate-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videoresize-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videorotate-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videoseek-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videospin-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qmlvideo-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qmlvideo-qrc.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qmlvideo-svg.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-trace-h.html
-%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-android-androidmanifest-xml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-filereader-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-filereader-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-main-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-button-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-content-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-contentcamera-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-contentimage-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-contentvideo-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-curtain-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-divider-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effect-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectbillboard-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectblackandwhite-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectemboss-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectgaussianblur-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectglow-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectisolate-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectmagnify-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectpagecurl-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectpassthrough-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectpixelate-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectposterize-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectripple-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectselectionlist-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectsepia-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectsharpen-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectshockwave-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectsobeledgedetection1-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effecttiltshift-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effecttoon-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectvignette-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectwarhol-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectwobble-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-filebrowser-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-fileopen-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-hintedmousearea-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-main-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-parameterpanel-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-slider-qml.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qmlapplicationviewer-qmlapplicationviewer-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qmlapplicationviewer-qmlapplicationviewer-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qmlvideofx-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qmlvideofx-qrc.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qmlvideofx-svg.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-trace-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-camera-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-camera-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-camera-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-camera-ui.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-imagesettings-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-imagesettings-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-imagesettings-ui.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-main-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-videosettings-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-videosettings-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-videosettings-ui.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-histogramwidget-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-histogramwidget-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-main-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-player-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-player-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-player-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-playercontrols-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-playercontrols-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-playlistmodel-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-playlistmodel-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-videowidget-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-videowidget-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videographicsitem-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videographicsitem-main-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videographicsitem-videographicsitem-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videographicsitem-videoplayer-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videographicsitem-videoplayer-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videowidget-example.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videowidget-main-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videowidget-videoplayer-cpp.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videowidget-videoplayer-h.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videowidget-videowidget-pro.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-qmlmodule.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia-windows.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia.index
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia.qhp
%%QT_DOCDIR%%/qtmultimedia/qtmultimedia.qhp.sha1
%%QT_DOCDIR%%/qtmultimedia/qtmultimediawidgets-index.html
%%QT_DOCDIR%%/qtmultimedia/qtmultimediawidgets-module.html
%%QT_DOCDIR%%/qtmultimedia/qvideodeviceselectorcontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qvideodeviceselectorcontrol.html
%%QT_DOCDIR%%/qtmultimedia/qvideoencodersettings-members.html
%%QT_DOCDIR%%/qtmultimedia/qvideoencodersettings.html
%%QT_DOCDIR%%/qtmultimedia/qvideoencodersettingscontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qvideoencodersettingscontrol.html
%%QT_DOCDIR%%/qtmultimedia/qvideofilterrunnable-members.html
%%QT_DOCDIR%%/qtmultimedia/qvideofilterrunnable.html
%%QT_DOCDIR%%/qtmultimedia/qvideoframe-members.html
%%QT_DOCDIR%%/qtmultimedia/qvideoframe.html
%%QT_DOCDIR%%/qtmultimedia/qvideoprobe-members.html
%%QT_DOCDIR%%/qtmultimedia/qvideoprobe.html
%%QT_DOCDIR%%/qtmultimedia/qvideorenderercontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qvideorenderercontrol.html
%%QT_DOCDIR%%/qtmultimedia/qvideosurfaceformat-members.html
%%QT_DOCDIR%%/qtmultimedia/qvideosurfaceformat.html
%%QT_DOCDIR%%/qtmultimedia/qvideowidget-members.html
%%QT_DOCDIR%%/qtmultimedia/qvideowidget.html
%%QT_DOCDIR%%/qtmultimedia/qvideowidgetcontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qvideowidgetcontrol.html
%%QT_DOCDIR%%/qtmultimedia/qvideowindowcontrol-members.html
%%QT_DOCDIR%%/qtmultimedia/qvideowindowcontrol.html
%%QT_DOCDIR%%/qtmultimedia/radiooverview.html
%%QT_DOCDIR%%/qtmultimedia/style/offline-simple.css
%%QT_DOCDIR%%/qtmultimedia/style/offline.css
%%QT_DOCDIR%%/qtmultimedia/videooverview.html
%%QT_DOCDIR%%/qtnetwork.qch
%%QT_DOCDIR%%/qtnetwork/bearer-management.html
%%QT_DOCDIR%%/qtnetwork/examples-manifest.xml
%%QT_DOCDIR%%/qtnetwork/examples-network.html
%%QT_DOCDIR%%/qtnetwork/images/arrow_bc.png
%%QT_DOCDIR%%/qtnetwork/images/bgrContent.png
%%QT_DOCDIR%%/qtnetwork/images/blockingfortuneclient-example.png
%%QT_DOCDIR%%/qtnetwork/images/broadcastreceiver-example.png
%%QT_DOCDIR%%/qtnetwork/images/broadcastsender-example.png
%%QT_DOCDIR%%/qtnetwork/images/btn_next.png
%%QT_DOCDIR%%/qtnetwork/images/btn_prev.png
%%QT_DOCDIR%%/qtnetwork/images/bullet_dn.png
%%QT_DOCDIR%%/qtnetwork/images/bullet_sq.png
%%QT_DOCDIR%%/qtnetwork/images/fortuneclient-example.png
%%QT_DOCDIR%%/qtnetwork/images/fortuneserver-example.png
%%QT_DOCDIR%%/qtnetwork/images/googlesuggest-example.png
%%QT_DOCDIR%%/qtnetwork/images/home.png
%%QT_DOCDIR%%/qtnetwork/images/http-example.png
%%QT_DOCDIR%%/qtnetwork/images/ico_note.png
%%QT_DOCDIR%%/qtnetwork/images/ico_note_attention.png
%%QT_DOCDIR%%/qtnetwork/images/ico_out.png
%%QT_DOCDIR%%/qtnetwork/images/logo.png
%%QT_DOCDIR%%/qtnetwork/images/loopback-example.png
%%QT_DOCDIR%%/qtnetwork/images/multicastreceiver-example.png
%%QT_DOCDIR%%/qtnetwork/images/multicastsender-example.png
%%QT_DOCDIR%%/qtnetwork/images/network-chat-example.png
%%QT_DOCDIR%%/qtnetwork/images/network-examples.png
%%QT_DOCDIR%%/qtnetwork/images/roaming-states.png
%%QT_DOCDIR%%/qtnetwork/images/securesocketclient.png
%%QT_DOCDIR%%/qtnetwork/images/securesocketclient2.png
%%QT_DOCDIR%%/qtnetwork/images/tcpstream.png
%%QT_DOCDIR%%/qtnetwork/images/threadedfortuneserver-example.png
%%QT_DOCDIR%%/qtnetwork/images/torrent-example.png
%%QT_DOCDIR%%/qtnetwork/images/udppackets.png
%%QT_DOCDIR%%/qtnetwork/network.html
%%QT_DOCDIR%%/qtnetwork/qabstractnetworkcache-members.html
%%QT_DOCDIR%%/qtnetwork/qabstractnetworkcache.html
%%QT_DOCDIR%%/qtnetwork/qabstractsocket-members.html
%%QT_DOCDIR%%/qtnetwork/qabstractsocket.html
%%QT_DOCDIR%%/qtnetwork/qauthenticator-members.html
%%QT_DOCDIR%%/qtnetwork/qauthenticator.html
%%QT_DOCDIR%%/qtnetwork/qdnsdomainnamerecord-members.html
%%QT_DOCDIR%%/qtnetwork/qdnsdomainnamerecord.html
%%QT_DOCDIR%%/qtnetwork/qdnshostaddressrecord-members.html
%%QT_DOCDIR%%/qtnetwork/qdnshostaddressrecord.html
%%QT_DOCDIR%%/qtnetwork/qdnslookup-members.html
%%QT_DOCDIR%%/qtnetwork/qdnslookup.html
%%QT_DOCDIR%%/qtnetwork/qdnsmailexchangerecord-members.html
%%QT_DOCDIR%%/qtnetwork/qdnsmailexchangerecord.html
%%QT_DOCDIR%%/qtnetwork/qdnsservicerecord-members.html
%%QT_DOCDIR%%/qtnetwork/qdnsservicerecord.html
%%QT_DOCDIR%%/qtnetwork/qdnstextrecord-members.html
%%QT_DOCDIR%%/qtnetwork/qdnstextrecord.html
%%QT_DOCDIR%%/qtnetwork/qhostaddress-members.html
%%QT_DOCDIR%%/qtnetwork/qhostaddress.html
%%QT_DOCDIR%%/qtnetwork/qhostinfo-members.html
%%QT_DOCDIR%%/qtnetwork/qhostinfo.html
%%QT_DOCDIR%%/qtnetwork/qhttpmultipart-members.html
%%QT_DOCDIR%%/qtnetwork/qhttpmultipart.html
%%QT_DOCDIR%%/qtnetwork/qhttppart-members.html
%%QT_DOCDIR%%/qtnetwork/qhttppart.html
%%QT_DOCDIR%%/qtnetwork/qlocalserver-members.html
%%QT_DOCDIR%%/qtnetwork/qlocalserver.html
%%QT_DOCDIR%%/qtnetwork/qlocalsocket-members.html
%%QT_DOCDIR%%/qtnetwork/qlocalsocket.html
%%QT_DOCDIR%%/qtnetwork/qnetworkaccessmanager-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkaccessmanager.html
%%QT_DOCDIR%%/qtnetwork/qnetworkaddressentry-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkaddressentry.html
%%QT_DOCDIR%%/qtnetwork/qnetworkcachemetadata-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkcachemetadata.html
%%QT_DOCDIR%%/qtnetwork/qnetworkconfiguration-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkconfiguration.html
%%QT_DOCDIR%%/qtnetwork/qnetworkconfigurationmanager-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkconfigurationmanager.html
%%QT_DOCDIR%%/qtnetwork/qnetworkcookie-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkcookie.html
%%QT_DOCDIR%%/qtnetwork/qnetworkcookiejar-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkcookiejar.html
%%QT_DOCDIR%%/qtnetwork/qnetworkdiskcache-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkdiskcache.html
%%QT_DOCDIR%%/qtnetwork/qnetworkinterface-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkinterface.html
%%QT_DOCDIR%%/qtnetwork/qnetworkproxy-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkproxy.html
%%QT_DOCDIR%%/qtnetwork/qnetworkproxyfactory-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkproxyfactory.html
%%QT_DOCDIR%%/qtnetwork/qnetworkproxyquery-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkproxyquery.html
%%QT_DOCDIR%%/qtnetwork/qnetworkreply-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkreply.html
%%QT_DOCDIR%%/qtnetwork/qnetworkrequest-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworkrequest.html
%%QT_DOCDIR%%/qtnetwork/qnetworksession-members.html
%%QT_DOCDIR%%/qtnetwork/qnetworksession.html
%%QT_DOCDIR%%/qtnetwork/qssl-obsolete.html
%%QT_DOCDIR%%/qtnetwork/qssl.html
%%QT_DOCDIR%%/qtnetwork/qsslcertificate-members.html
%%QT_DOCDIR%%/qtnetwork/qsslcertificate-obsolete.html
%%QT_DOCDIR%%/qtnetwork/qsslcertificate.html
%%QT_DOCDIR%%/qtnetwork/qsslcertificateextension-members.html
%%QT_DOCDIR%%/qtnetwork/qsslcertificateextension.html
%%QT_DOCDIR%%/qtnetwork/qsslcipher-members.html
%%QT_DOCDIR%%/qtnetwork/qsslcipher.html
%%QT_DOCDIR%%/qtnetwork/qsslconfiguration-members.html
%%QT_DOCDIR%%/qtnetwork/qsslconfiguration.html
%%QT_DOCDIR%%/qtnetwork/qsslellipticcurve-members.html
%%QT_DOCDIR%%/qtnetwork/qsslellipticcurve.html
%%QT_DOCDIR%%/qtnetwork/qsslerror-members.html
%%QT_DOCDIR%%/qtnetwork/qsslerror.html
%%QT_DOCDIR%%/qtnetwork/qsslkey-members.html
%%QT_DOCDIR%%/qtnetwork/qsslkey.html
%%QT_DOCDIR%%/qtnetwork/qsslpresharedkeyauthenticator-members.html
%%QT_DOCDIR%%/qtnetwork/qsslpresharedkeyauthenticator.html
%%QT_DOCDIR%%/qtnetwork/qsslsocket-members.html
%%QT_DOCDIR%%/qtnetwork/qsslsocket-obsolete.html
%%QT_DOCDIR%%/qtnetwork/qsslsocket.html
%%QT_DOCDIR%%/qtnetwork/qtcpserver-members.html
%%QT_DOCDIR%%/qtnetwork/qtcpserver.html
%%QT_DOCDIR%%/qtnetwork/qtcpsocket-members.html
%%QT_DOCDIR%%/qtnetwork/qtcpsocket.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-blockingclient-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-blockingclient-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-blockingfortuneclient-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-fortunethread-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-fortunethread-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastreceiver-broadcastreceiver-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastreceiver-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastreceiver-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastreceiver-receiver-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastreceiver-receiver-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastsender-broadcastsender-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastsender-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastsender-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastsender-sender-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastsender-sender-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-download-download-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-download-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-download-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-downloadmanager-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-downloadmanager-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-downloadmanager-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-textprogressbar-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-textprogressbar-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneclient-client-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneclient-client-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneclient-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneclient-fortuneclient-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneclient-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneserver-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneserver-fortuneserver-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneserver-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneserver-server-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneserver-server-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-googlesuggest-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-googlesuggest-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-googlesuggest-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-searchbox-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-searchbox-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-http-authenticationdialog-ui.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-http-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-http-http-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-http-httpwindow-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-http-httpwindow-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-http-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-index.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-loopback-dialog-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-loopback-dialog-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-loopback-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-loopback-loopback-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-loopback-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-module.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastreceiver-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastreceiver-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastreceiver-multicastreceiver-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastreceiver-receiver-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastreceiver-receiver-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastsender-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastsender-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastsender-multicastsender-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastsender-sender-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastsender-sender-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-chatdialog-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-chatdialog-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-chatdialog-ui.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-client-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-client-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-connection-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-connection-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-network-chat-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-peermanager-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-peermanager-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-server-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-server-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-programming.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-certificateinfo-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-certificateinfo-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-certificateinfo-ui.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-securesocketclient-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-securesocketclient-qrc.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-sslclient-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-sslclient-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-sslclient-ui.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-sslerrors-ui.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-dialog-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-dialog-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-fortuneserver-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-fortuneserver-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-fortunethread-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-fortunethread-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-threadedfortuneserver-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-addtorrentdialog-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-addtorrentdialog-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-bencodeparser-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-bencodeparser-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-connectionmanager-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-connectionmanager-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-example.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-filemanager-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-filemanager-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-forms-addtorrentform-ui.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-icons-qrc.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-main-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-mainwindow-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-mainwindow-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-metainfo-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-metainfo-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-peerwireclient-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-peerwireclient-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-ratecontroller-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-ratecontroller-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-torrent-pro.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-torrentclient-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-torrentclient-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-torrentserver-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-torrentserver-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-trackerclient-cpp.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-trackerclient-h.html
%%QT_DOCDIR%%/qtnetwork/qtnetwork.index
%%QT_DOCDIR%%/qtnetwork/qtnetwork.qhp
%%QT_DOCDIR%%/qtnetwork/qtnetwork.qhp.sha1
%%QT_DOCDIR%%/qtnetwork/qtnetwork.tags
%%QT_DOCDIR%%/qtnetwork/qudpsocket-members.html
%%QT_DOCDIR%%/qtnetwork/qudpsocket.html
%%QT_DOCDIR%%/qtnetwork/ssl.html
%%QT_DOCDIR%%/qtnetwork/style/offline-simple.css
%%QT_DOCDIR%%/qtnetwork/style/offline.css
%%QT_DOCDIR%%/qtnfc.qch
%%QT_DOCDIR%%/qtnfc/examples-manifest.xml
%%QT_DOCDIR%%/qtnfc/images/annotatedurl.png
%%QT_DOCDIR%%/qtnfc/images/arrow_bc.png
%%QT_DOCDIR%%/qtnfc/images/bgrContent.png
%%QT_DOCDIR%%/qtnfc/images/btn_next.png
%%QT_DOCDIR%%/qtnfc/images/btn_prev.png
%%QT_DOCDIR%%/qtnfc/images/bullet_dn.png
%%QT_DOCDIR%%/qtnfc/images/bullet_sq.png
%%QT_DOCDIR%%/qtnfc/images/corkboard.png
%%QT_DOCDIR%%/qtnfc/images/home.png
%%QT_DOCDIR%%/qtnfc/images/ico_note.png
%%QT_DOCDIR%%/qtnfc/images/ico_note_attention.png
%%QT_DOCDIR%%/qtnfc/images/ico_out.png
%%QT_DOCDIR%%/qtnfc/images/logo.png
%%QT_DOCDIR%%/qtnfc/images/ndefeditor.png
%%QT_DOCDIR%%/qtnfc/images/qml-poster-example.png
%%QT_DOCDIR%%/qtnfc/nfc-android.html
%%QT_DOCDIR%%/qtnfc/nfc-examples.html
%%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndeffilter-members.html
%%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndeffilter.html
%%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndefmimerecord-members.html
%%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndefmimerecord.html
%%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndefrecord-members.html
%%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndefrecord.html
%%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndeftextrecord-members.html
%%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndeftextrecord.html
%%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndefurirecord-members.html
%%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndefurirecord.html
%%QT_DOCDIR%%/qtnfc/qml-qtnfc-nearfield-members.html
%%QT_DOCDIR%%/qtnfc/qml-qtnfc-nearfield.html
%%QT_DOCDIR%%/qtnfc/qndeffilter-members.html
%%QT_DOCDIR%%/qtnfc/qndeffilter-record-members.html
%%QT_DOCDIR%%/qtnfc/qndeffilter-record.html
%%QT_DOCDIR%%/qtnfc/qndeffilter.html
%%QT_DOCDIR%%/qtnfc/qndefmessage-members.html
%%QT_DOCDIR%%/qtnfc/qndefmessage.html
%%QT_DOCDIR%%/qtnfc/qndefnfcsmartposterrecord-members.html
%%QT_DOCDIR%%/qtnfc/qndefnfcsmartposterrecord.html
%%QT_DOCDIR%%/qtnfc/qndefnfctextrecord-members.html
%%QT_DOCDIR%%/qtnfc/qndefnfctextrecord.html
%%QT_DOCDIR%%/qtnfc/qndefnfcurirecord-members.html
%%QT_DOCDIR%%/qtnfc/qndefnfcurirecord.html
%%QT_DOCDIR%%/qtnfc/qndefrecord-members.html
%%QT_DOCDIR%%/qtnfc/qndefrecord.html
%%QT_DOCDIR%%/qtnfc/qnearfieldmanager-members.html
%%QT_DOCDIR%%/qtnfc/qnearfieldmanager.html
%%QT_DOCDIR%%/qtnfc/qnearfieldsharemanager-members.html
%%QT_DOCDIR%%/qtnfc/qnearfieldsharemanager.html
%%QT_DOCDIR%%/qtnfc/qnearfieldsharetarget-members.html
%%QT_DOCDIR%%/qtnfc/qnearfieldsharetarget.html
%%QT_DOCDIR%%/qtnfc/qnearfieldtarget-members.html
%%QT_DOCDIR%%/qtnfc/qnearfieldtarget-requestid-members.html
%%QT_DOCDIR%%/qtnfc/qnearfieldtarget-requestid.html
%%QT_DOCDIR%%/qtnfc/qnearfieldtarget-requestidprivate.html
%%QT_DOCDIR%%/qtnfc/qnearfieldtarget.html
%%QT_DOCDIR%%/qtnfc/qqmlndefrecord-members.html
%%QT_DOCDIR%%/qtnfc/qqmlndefrecord.html
%%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-annotatedurl-cpp.html
%%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-annotatedurl-h.html
%%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-annotatedurl-pro.html
%%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-example.html
%%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-main-cpp.html
%%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-mainwindow-cpp.html
%%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-mainwindow-h.html
%%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-mainwindow-ui.html
%%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-android-androidmanifest-xml.html
%%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-corkboard-pro.html
%%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-corkboard-qrc.html
%%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-corkboards-qml.html
%%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-example.html
%%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-main-cpp.html
%%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-mode-qml.html
%%QT_DOCDIR%%/qtnfc/qtnfc-index.html
%%QT_DOCDIR%%/qtnfc/qtnfc-module.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-example.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-main-cpp.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-mainwindow-cpp.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-mainwindow-h.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-mainwindow-ui.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-mimeimagerecordeditor-cpp.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-mimeimagerecordeditor-h.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-mimeimagerecordeditor-ui.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-ndefeditor-pro.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-textrecordeditor-cpp.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-textrecordeditor-h.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-textrecordeditor-ui.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-urirecordeditor-cpp.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-urirecordeditor-h.html
%%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-urirecordeditor-ui.html
%%QT_DOCDIR%%/qtnfc/qtnfc-overview.html
%%QT_DOCDIR%%/qtnfc/qtnfc-poster-example.html
%%QT_DOCDIR%%/qtnfc/qtnfc-poster-poster-pro.html
%%QT_DOCDIR%%/qtnfc/qtnfc-poster-poster-qml.html
%%QT_DOCDIR%%/qtnfc/qtnfc-poster-poster-qrc.html
%%QT_DOCDIR%%/qtnfc/qtnfc-poster-qmlposter-cpp.html
%%QT_DOCDIR%%/qtnfc/qtnfc-qmlmodule.html
%%QT_DOCDIR%%/qtnfc/qtnfc.index
%%QT_DOCDIR%%/qtnfc/qtnfc.qhp
%%QT_DOCDIR%%/qtnfc/qtnfc.qhp.sha1
%%QT_DOCDIR%%/qtnfc/qtnfc.tags
%%QT_DOCDIR%%/qtnfc/style/offline-simple.css
%%QT_DOCDIR%%/qtnfc/style/offline.css
%%QT_DOCDIR%%/qtopengl.qch
%%QT_DOCDIR%%/qtopengl/examples-manifest.xml
%%QT_DOCDIR%%/qtopengl/examples-widgets-opengl.html
%%QT_DOCDIR%%/qtopengl/images/2dpainting-example.png
%%QT_DOCDIR%%/qtopengl/images/arrow_bc.png
%%QT_DOCDIR%%/qtopengl/images/bgrContent.png
%%QT_DOCDIR%%/qtopengl/images/btn_next.png
%%QT_DOCDIR%%/qtopengl/images/btn_prev.png
%%QT_DOCDIR%%/qtopengl/images/bullet_dn.png
%%QT_DOCDIR%%/qtopengl/images/bullet_sq.png
%%QT_DOCDIR%%/qtopengl/images/cube.png
%%QT_DOCDIR%%/qtopengl/images/cube_faces.png
%%QT_DOCDIR%%/qtopengl/images/hellogl2-example.png
%%QT_DOCDIR%%/qtopengl/images/home.png
%%QT_DOCDIR%%/qtopengl/images/ico_note.png
%%QT_DOCDIR%%/qtopengl/images/ico_note_attention.png
%%QT_DOCDIR%%/qtopengl/images/ico_out.png
%%QT_DOCDIR%%/qtopengl/images/logo.png
%%QT_DOCDIR%%/qtopengl/images/opengl-examples.png
%%QT_DOCDIR%%/qtopengl/images/textures-example.png
%%QT_DOCDIR%%/qtopengl/images/used-in-examples/textures/images/side1.png
%%QT_DOCDIR%%/qtopengl/images/used-in-examples/textures/images/side2.png
%%QT_DOCDIR%%/qtopengl/images/used-in-examples/textures/images/side3.png
%%QT_DOCDIR%%/qtopengl/images/used-in-examples/textures/images/side4.png
%%QT_DOCDIR%%/qtopengl/images/used-in-examples/textures/images/side5.png
%%QT_DOCDIR%%/qtopengl/images/used-in-examples/textures/images/side6.png
%%QT_DOCDIR%%/qtopengl/qgl.html
%%QT_DOCDIR%%/qtopengl/qglbuffer-members.html
%%QT_DOCDIR%%/qtopengl/qglbuffer.html
%%QT_DOCDIR%%/qtopengl/qglcolormap-members.html
%%QT_DOCDIR%%/qtopengl/qglcolormap.html
%%QT_DOCDIR%%/qtopengl/qglcontext-members.html
%%QT_DOCDIR%%/qtopengl/qglcontext-obsolete.html
%%QT_DOCDIR%%/qtopengl/qglcontext.html
%%QT_DOCDIR%%/qtopengl/qglformat-members.html
%%QT_DOCDIR%%/qtopengl/qglformat.html
%%QT_DOCDIR%%/qtopengl/qglframebufferobject-members.html
%%QT_DOCDIR%%/qtopengl/qglframebufferobject.html
%%QT_DOCDIR%%/qtopengl/qglframebufferobjectformat-members.html
%%QT_DOCDIR%%/qtopengl/qglframebufferobjectformat.html
%%QT_DOCDIR%%/qtopengl/qglfunctions-members.html
%%QT_DOCDIR%%/qtopengl/qglfunctions.html
%%QT_DOCDIR%%/qtopengl/qglpixelbuffer-members.html
%%QT_DOCDIR%%/qtopengl/qglpixelbuffer.html
%%QT_DOCDIR%%/qtopengl/qglshader-members.html
%%QT_DOCDIR%%/qtopengl/qglshader.html
%%QT_DOCDIR%%/qtopengl/qglshaderprogram-members.html
%%QT_DOCDIR%%/qtopengl/qglshaderprogram.html
%%QT_DOCDIR%%/qtopengl/qglwidget-members.html
%%QT_DOCDIR%%/qtopengl/qglwidget-obsolete.html
%%QT_DOCDIR%%/qtopengl/qglwidget.html
%%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-2dpainting-pro.html
%%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-example.html
%%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-glwidget-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-glwidget-h.html
%%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-helper-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-helper-h.html
%%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-main-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-widget-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-widget-h.html
%%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-window-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-window-h.html
%%QT_DOCDIR%%/qtopengl/qtopengl-cube-cube-pro.html
%%QT_DOCDIR%%/qtopengl/qtopengl-cube-example.html
%%QT_DOCDIR%%/qtopengl/qtopengl-cube-fshader-glsl.html
%%QT_DOCDIR%%/qtopengl/qtopengl-cube-geometryengine-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-cube-geometryengine-h.html
%%QT_DOCDIR%%/qtopengl/qtopengl-cube-main-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-cube-mainwidget-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-cube-mainwidget-h.html
%%QT_DOCDIR%%/qtopengl/qtopengl-cube-shaders-qrc.html
%%QT_DOCDIR%%/qtopengl/qtopengl-cube-textures-qrc.html
%%QT_DOCDIR%%/qtopengl/qtopengl-cube-vshader-glsl.html
%%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-example.html
%%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-glwidget-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-glwidget-h.html
%%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-hellogl2-pro.html
%%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-logo-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-logo-h.html
%%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-main-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-mainwindow-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-mainwindow-h.html
%%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-window-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-window-h.html
%%QT_DOCDIR%%/qtopengl/qtopengl-index.html
%%QT_DOCDIR%%/qtopengl/qtopengl-module.html
%%QT_DOCDIR%%/qtopengl/qtopengl-textures-example.html
%%QT_DOCDIR%%/qtopengl/qtopengl-textures-glwidget-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-textures-glwidget-h.html
%%QT_DOCDIR%%/qtopengl/qtopengl-textures-main-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-textures-textures-pro.html
%%QT_DOCDIR%%/qtopengl/qtopengl-textures-textures-qrc.html
%%QT_DOCDIR%%/qtopengl/qtopengl-textures-window-cpp.html
%%QT_DOCDIR%%/qtopengl/qtopengl-textures-window-h.html
%%QT_DOCDIR%%/qtopengl/qtopengl.index
%%QT_DOCDIR%%/qtopengl/qtopengl.qhp
%%QT_DOCDIR%%/qtopengl/qtopengl.qhp.sha1
%%QT_DOCDIR%%/qtopengl/style/offline-simple.css
%%QT_DOCDIR%%/qtopengl/style/offline.css
%%QT_DOCDIR%%/qtplatformheaders.qch
%%QT_DOCDIR%%/qtplatformheaders/images/arrow_bc.png
%%QT_DOCDIR%%/qtplatformheaders/images/bgrContent.png
%%QT_DOCDIR%%/qtplatformheaders/images/btn_next.png
%%QT_DOCDIR%%/qtplatformheaders/images/btn_prev.png
%%QT_DOCDIR%%/qtplatformheaders/images/bullet_dn.png
%%QT_DOCDIR%%/qtplatformheaders/images/bullet_sq.png
%%QT_DOCDIR%%/qtplatformheaders/images/home.png
%%QT_DOCDIR%%/qtplatformheaders/images/ico_note.png
%%QT_DOCDIR%%/qtplatformheaders/images/ico_note_attention.png
%%QT_DOCDIR%%/qtplatformheaders/images/ico_out.png
%%QT_DOCDIR%%/qtplatformheaders/images/logo.png
%%QT_DOCDIR%%/qtplatformheaders/qcocoanativecontext-members.html
%%QT_DOCDIR%%/qtplatformheaders/qcocoanativecontext.html
%%QT_DOCDIR%%/qtplatformheaders/qcocoawindowfunctions-members.html
%%QT_DOCDIR%%/qtplatformheaders/qcocoawindowfunctions.html
%%QT_DOCDIR%%/qtplatformheaders/qeglfsfunctions-members.html
%%QT_DOCDIR%%/qtplatformheaders/qeglfsfunctions.html
%%QT_DOCDIR%%/qtplatformheaders/qeglnativecontext-members.html
%%QT_DOCDIR%%/qtplatformheaders/qeglnativecontext.html
%%QT_DOCDIR%%/qtplatformheaders/qglxnativecontext-members.html
%%QT_DOCDIR%%/qtplatformheaders/qglxnativecontext.html
%%QT_DOCDIR%%/qtplatformheaders/qtplatformheaders-index.html
%%QT_DOCDIR%%/qtplatformheaders/qtplatformheaders-module.html
%%QT_DOCDIR%%/qtplatformheaders/qtplatformheaders.index
%%QT_DOCDIR%%/qtplatformheaders/qtplatformheaders.qhp
%%QT_DOCDIR%%/qtplatformheaders/qtplatformheaders.qhp.sha1
%%QT_DOCDIR%%/qtplatformheaders/qwglnativecontext-members.html
%%QT_DOCDIR%%/qtplatformheaders/qwglnativecontext.html
%%QT_DOCDIR%%/qtplatformheaders/qwindowswindowfunctions-members.html
%%QT_DOCDIR%%/qtplatformheaders/qwindowswindowfunctions.html
%%QT_DOCDIR%%/qtplatformheaders/qxcbwindowfunctions-members.html
%%QT_DOCDIR%%/qtplatformheaders/qxcbwindowfunctions.html
%%QT_DOCDIR%%/qtplatformheaders/style/offline-simple.css
%%QT_DOCDIR%%/qtplatformheaders/style/offline.css
%%QT_DOCDIR%%/qtpositioning.qch
%%QT_DOCDIR%%/qtpositioning/examples-manifest.xml
%%QT_DOCDIR%%/qtpositioning/images/arrow_bc.png
%%QT_DOCDIR%%/qtpositioning/images/bgrContent.png
%%QT_DOCDIR%%/qtpositioning/images/btn_next.png
%%QT_DOCDIR%%/qtpositioning/images/btn_prev.png
%%QT_DOCDIR%%/qtpositioning/images/bullet_dn.png
%%QT_DOCDIR%%/qtpositioning/images/bullet_sq.png
%%QT_DOCDIR%%/qtpositioning/images/example-satelliteinfo.png
%%QT_DOCDIR%%/qtpositioning/images/example-weatherinfo.png
%%QT_DOCDIR%%/qtpositioning/images/home.png
%%QT_DOCDIR%%/qtpositioning/images/ico_note.png
%%QT_DOCDIR%%/qtpositioning/images/ico_note_attention.png
%%QT_DOCDIR%%/qtpositioning/images/ico_out.png
%%QT_DOCDIR%%/qtpositioning/images/logo.png
%%QT_DOCDIR%%/qtpositioning/images/qml-flickr-1.jpg
%%QT_DOCDIR%%/qtpositioning/location-positioning-cpp.html
%%QT_DOCDIR%%/qtpositioning/location-positioning-qml.html
%%QT_DOCDIR%%/qtpositioning/positioning-cpp-qml.html
%%QT_DOCDIR%%/qtpositioning/qgeoaddress-members.html
%%QT_DOCDIR%%/qtpositioning/qgeoaddress.html
%%QT_DOCDIR%%/qtpositioning/qgeoareamonitorinfo-members.html
%%QT_DOCDIR%%/qtpositioning/qgeoareamonitorinfo.html
%%QT_DOCDIR%%/qtpositioning/qgeoareamonitorsource-members.html
%%QT_DOCDIR%%/qtpositioning/qgeoareamonitorsource.html
%%QT_DOCDIR%%/qtpositioning/qgeocircle-members.html
%%QT_DOCDIR%%/qtpositioning/qgeocircle.html
%%QT_DOCDIR%%/qtpositioning/qgeocoordinate-members.html
%%QT_DOCDIR%%/qtpositioning/qgeocoordinate.html
%%QT_DOCDIR%%/qtpositioning/qgeolocation-members.html
%%QT_DOCDIR%%/qtpositioning/qgeolocation.html
%%QT_DOCDIR%%/qtpositioning/qgeopositioninfo-members.html
%%QT_DOCDIR%%/qtpositioning/qgeopositioninfo.html
%%QT_DOCDIR%%/qtpositioning/qgeopositioninfosource-members.html
%%QT_DOCDIR%%/qtpositioning/qgeopositioninfosource.html
%%QT_DOCDIR%%/qtpositioning/qgeopositioninfosourcefactory-members.html
%%QT_DOCDIR%%/qtpositioning/qgeopositioninfosourcefactory.html
%%QT_DOCDIR%%/qtpositioning/qgeorectangle-members.html
%%QT_DOCDIR%%/qtpositioning/qgeorectangle.html
%%QT_DOCDIR%%/qtpositioning/qgeosatelliteinfo-members.html
%%QT_DOCDIR%%/qtpositioning/qgeosatelliteinfo.html
%%QT_DOCDIR%%/qtpositioning/qgeosatelliteinfosource-members.html
%%QT_DOCDIR%%/qtpositioning/qgeosatelliteinfosource.html
%%QT_DOCDIR%%/qtpositioning/qgeoshape-members.html
%%QT_DOCDIR%%/qtpositioning/qgeoshape.html
%%QT_DOCDIR%%/qtpositioning/qml-coordinate.html
%%QT_DOCDIR%%/qtpositioning/qml-geocircle.html
%%QT_DOCDIR%%/qtpositioning/qml-georectangle.html
%%QT_DOCDIR%%/qtpositioning/qml-geoshape.html
%%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-address-members.html
%%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-address.html
%%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-coordinateanimation-members.html
%%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-coordinateanimation.html
%%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-location-members.html
%%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-location.html
%%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-position-members.html
%%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-position.html
%%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-positionsource-members.html
%%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-positionsource.html
%%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-qtpositioning-members.html
%%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-qtpositioning.html
%%QT_DOCDIR%%/qtpositioning/qnmeapositioninfosource-members.html
%%QT_DOCDIR%%/qtpositioning/qnmeapositioninfosource.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-examples.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-example.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickr-90-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickr-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickr-qrc.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrcommon-progress-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrcommon-restmodel-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrcommon-scrollbar-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrcommon-slider-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-button-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-geotab-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-griddelegate-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-imagedetails-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-listdelegate-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-titlebar-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-toolbar-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-geoflickr-pro.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-geoflickr-qmlproject.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-qmllocationflickr-cpp.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-index.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-clientapplication-cpp.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-clientapplication-h.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-example.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-logfile-qrc.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-logfilepositionsource-cpp.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-logfilepositionsource-h.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-logfilepositionsource-pro.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-main-cpp.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-module.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-plugins.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-qmlmodule.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-example.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-main-cpp.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-satelliteinfo-pro.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-satelliteinfo-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-satelliteinfo-qrc.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-satellitemodel-cpp.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-satellitemodel-h.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-appmodel-cpp.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-appmodel-h.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-components-bigforecasticon-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-components-forecasticon-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-components-weathericon-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-example.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-main-cpp.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-weatherinfo-pro.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-weatherinfo-qml.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-weatherinfo-qrc.html
%%QT_DOCDIR%%/qtpositioning/qtpositioning.index
%%QT_DOCDIR%%/qtpositioning/qtpositioning.qhp
%%QT_DOCDIR%%/qtpositioning/qtpositioning.qhp.sha1
%%QT_DOCDIR%%/qtpositioning/qtpositioning.tags
%%QT_DOCDIR%%/qtpositioning/style/offline-simple.css
%%QT_DOCDIR%%/qtpositioning/style/offline.css
%%QT_DOCDIR%%/qtprintsupport.qch
%%QT_DOCDIR%%/qtprintsupport/images/arrow_bc.png
%%QT_DOCDIR%%/qtprintsupport/images/bgrContent.png
%%QT_DOCDIR%%/qtprintsupport/images/btn_next.png
%%QT_DOCDIR%%/qtprintsupport/images/btn_prev.png
%%QT_DOCDIR%%/qtprintsupport/images/bullet_dn.png
%%QT_DOCDIR%%/qtprintsupport/images/bullet_sq.png
%%QT_DOCDIR%%/qtprintsupport/images/home.png
%%QT_DOCDIR%%/qtprintsupport/images/ico_note.png
%%QT_DOCDIR%%/qtprintsupport/images/ico_note_attention.png
%%QT_DOCDIR%%/qtprintsupport/images/ico_out.png
%%QT_DOCDIR%%/qtprintsupport/images/logo.png
%%QT_DOCDIR%%/qtprintsupport/images/plastique-printdialog-properties.png
%%QT_DOCDIR%%/qtprintsupport/images/plastique-printdialog.png
%%QT_DOCDIR%%/qtprintsupport/images/printer-rects.png
%%QT_DOCDIR%%/qtprintsupport/pdf-licensing.html
%%QT_DOCDIR%%/qtprintsupport/printing.html
%%QT_DOCDIR%%/qtprintsupport/qabstractprintdialog-members.html
%%QT_DOCDIR%%/qtprintsupport/qabstractprintdialog-obsolete.html
%%QT_DOCDIR%%/qtprintsupport/qabstractprintdialog.html
%%QT_DOCDIR%%/qtprintsupport/qpagesetupdialog-members.html
%%QT_DOCDIR%%/qtprintsupport/qpagesetupdialog.html
%%QT_DOCDIR%%/qtprintsupport/qprintdialog-members.html
%%QT_DOCDIR%%/qtprintsupport/qprintdialog.html
%%QT_DOCDIR%%/qtprintsupport/qprintengine-members.html
%%QT_DOCDIR%%/qtprintsupport/qprintengine.html
%%QT_DOCDIR%%/qtprintsupport/qprinter-members.html
%%QT_DOCDIR%%/qtprintsupport/qprinter-obsolete.html
%%QT_DOCDIR%%/qtprintsupport/qprinter.html
%%QT_DOCDIR%%/qtprintsupport/qprinterinfo-members.html
%%QT_DOCDIR%%/qtprintsupport/qprinterinfo-obsolete.html
%%QT_DOCDIR%%/qtprintsupport/qprinterinfo.html
%%QT_DOCDIR%%/qtprintsupport/qprintpreviewdialog-members.html
%%QT_DOCDIR%%/qtprintsupport/qprintpreviewdialog.html
%%QT_DOCDIR%%/qtprintsupport/qprintpreviewwidget-members.html
%%QT_DOCDIR%%/qtprintsupport/qprintpreviewwidget.html
%%QT_DOCDIR%%/qtprintsupport/qtprintsupport-index.html
%%QT_DOCDIR%%/qtprintsupport/qtprintsupport-module.html
%%QT_DOCDIR%%/qtprintsupport/qtprintsupport.index
%%QT_DOCDIR%%/qtprintsupport/qtprintsupport.qhp
%%QT_DOCDIR%%/qtprintsupport/qtprintsupport.qhp.sha1
%%QT_DOCDIR%%/qtprintsupport/qtprintsupport.tags
%%QT_DOCDIR%%/qtprintsupport/style/offline-simple.css
%%QT_DOCDIR%%/qtprintsupport/style/offline.css
+%%QT_DOCDIR%%/qtpurchasing.qch
+%%QT_DOCDIR%%/qtpurchasing/examples-manifest.xml
+%%QT_DOCDIR%%/qtpurchasing/images/arrow_bc.png
+%%QT_DOCDIR%%/qtpurchasing/images/bgrContent.png
+%%QT_DOCDIR%%/qtpurchasing/images/btn_next.png
+%%QT_DOCDIR%%/qtpurchasing/images/btn_prev.png
+%%QT_DOCDIR%%/qtpurchasing/images/bullet_dn.png
+%%QT_DOCDIR%%/qtpurchasing/images/bullet_sq.png
+%%QT_DOCDIR%%/qtpurchasing/images/home.png
+%%QT_DOCDIR%%/qtpurchasing/images/ico_note.png
+%%QT_DOCDIR%%/qtpurchasing/images/ico_note_attention.png
+%%QT_DOCDIR%%/qtpurchasing/images/ico_out.png
+%%QT_DOCDIR%%/qtpurchasing/images/logo.png
+%%QT_DOCDIR%%/qtpurchasing/images/qthangman-example.png
+%%QT_DOCDIR%%/qtpurchasing/images/qthangman-store-example.png
+%%QT_DOCDIR%%/qtpurchasing/qinappproduct-members.html
+%%QT_DOCDIR%%/qtpurchasing/qinappproduct.html
+%%QT_DOCDIR%%/qtpurchasing/qinappstore-members.html
+%%QT_DOCDIR%%/qtpurchasing/qinappstore.html
+%%QT_DOCDIR%%/qtpurchasing/qinapptransaction-members.html
+%%QT_DOCDIR%%/qtpurchasing/qinapptransaction.html
+%%QT_DOCDIR%%/qtpurchasing/qml-qtpurchasing-product-members.html
+%%QT_DOCDIR%%/qtpurchasing/qml-qtpurchasing-product.html
+%%QT_DOCDIR%%/qtpurchasing/qml-qtpurchasing-store-members.html
+%%QT_DOCDIR%%/qtpurchasing/qml-qtpurchasing-store.html
+%%QT_DOCDIR%%/qtpurchasing/qml-qtpurchasing-transaction-members.html
+%%QT_DOCDIR%%/qtpurchasing/qml-qtpurchasing-transaction.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-appstore.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-examples.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-gettingstarted-cpp.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-gettingstarted-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-googleplay.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-index.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-module.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qmlmodule.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-example.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-hangmangame-cpp.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-hangmangame-h.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-main-cpp.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-gameview-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-guesswordview-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-hangman-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-howtoview-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-key-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-letter-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-letterselector-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-main-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-mainview-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-pageheader-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-scoreitem-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-simplebutton-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-splashscreen-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-storeitem-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-storeview-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qml-qthangman-word-qml.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-qthangman-pro.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing-qthangman-resources-qrc.html
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing.index
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing.qhp
+%%QT_DOCDIR%%/qtpurchasing/qtpurchasing.qhp.sha1
+%%QT_DOCDIR%%/qtpurchasing/style/offline-simple.css
+%%QT_DOCDIR%%/qtpurchasing/style/offline.css
%%QT_DOCDIR%%/qtqml.qch
%%QT_DOCDIR%%/qtqml/examples-manifest.xml
%%QT_DOCDIR%%/qtqml/images/arrow_bc.png
%%QT_DOCDIR%%/qtqml/images/bgrContent.png
%%QT_DOCDIR%%/qtqml/images/btn_next.png
%%QT_DOCDIR%%/qtqml/images/btn_prev.png
%%QT_DOCDIR%%/qtqml/images/bullet_dn.png
%%QT_DOCDIR%%/qtqml/images/bullet_sq.png
%%QT_DOCDIR%%/qtqml/images/button-types.png
%%QT_DOCDIR%%/qtqml/images/declarative-rect_tint.png
%%QT_DOCDIR%%/qtqml/images/documents-definetypes-attributes.png
%%QT_DOCDIR%%/qtqml/images/documents-definetypes-simple.png
%%QT_DOCDIR%%/qtqml/images/extending-tutorial-chapter1.png
%%QT_DOCDIR%%/qtqml/images/extending-tutorial-chapter2.png
%%QT_DOCDIR%%/qtqml/images/extending-tutorial-chapter3.png
%%QT_DOCDIR%%/qtqml/images/extending-tutorial-chapter5.png
%%QT_DOCDIR%%/qtqml/images/home.png
%%QT_DOCDIR%%/qtqml/images/ico_note.png
%%QT_DOCDIR%%/qtqml/images/ico_note_attention.png
%%QT_DOCDIR%%/qtqml/images/ico_out.png
%%QT_DOCDIR%%/qtqml/images/listmodel-nested.png
%%QT_DOCDIR%%/qtqml/images/listmodel.png
%%QT_DOCDIR%%/qtqml/images/logo.png
%%QT_DOCDIR%%/qtqml/images/qml-dynamicscene-example.png
%%QT_DOCDIR%%/qtqml/images/qml-i18n-example.png
%%QT_DOCDIR%%/qtqml/images/qml-plugins-example.png
%%QT_DOCDIR%%/qtqml/images/qml-xmlhttprequest-example.png
%%QT_DOCDIR%%/qtqml/images/qtqml-syntax-basics-object-declaration.png
%%QT_DOCDIR%%/qtqml/images/statemachine-button-history.png
%%QT_DOCDIR%%/qtqml/images/statemachine-button-nested.png
%%QT_DOCDIR%%/qtqml/images/statemachine-button.png
%%QT_DOCDIR%%/qtqml/images/statemachine-finished.png
%%QT_DOCDIR%%/qtqml/images/statemachine-nonparallel.png
%%QT_DOCDIR%%/qtqml/images/statemachine-parallel.png
%%QT_DOCDIR%%/qtqml/images/visualitemmodel.png
%%QT_DOCDIR%%/qtqml/qjsengine-members.html
%%QT_DOCDIR%%/qtqml/qjsengine-obsolete.html
%%QT_DOCDIR%%/qtqml/qjsengine.html
%%QT_DOCDIR%%/qtqml/qjsvalue-members.html
%%QT_DOCDIR%%/qtqml/qjsvalue-obsolete.html
%%QT_DOCDIR%%/qtqml/qjsvalue.html
%%QT_DOCDIR%%/qtqml/qjsvalueiterator-members.html
%%QT_DOCDIR%%/qtqml/qjsvalueiterator.html
%%QT_DOCDIR%%/qtqml/qml-bool.html
%%QT_DOCDIR%%/qtqml/qml-date.html
%%QT_DOCDIR%%/qtqml/qml-double.html
%%QT_DOCDIR%%/qtqml/qml-enumeration.html
%%QT_DOCDIR%%/qtqml/qml-int.html
%%QT_DOCDIR%%/qtqml/qml-list.html
%%QT_DOCDIR%%/qtqml/qml-package-members.html
%%QT_DOCDIR%%/qtqml/qml-package.html
%%QT_DOCDIR%%/qtqml/qml-point.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-binding-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-binding.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-component-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-component.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-connections-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-connections.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-date-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-date.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-instantiator-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-instantiator.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-locale-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-locale.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-models-delegatemodel-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-models-delegatemodel.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-models-delegatemodelgroup-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-models-delegatemodelgroup.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-models-itemselectionmodel-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-models-itemselectionmodel.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-models-listelement-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-models-listelement.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-models-listmodel-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-models-listmodel.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-models-objectmodel-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-models-objectmodel.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-number-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-number.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-qt-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-qt.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-qtobject-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-qtobject.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-finalstate-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-finalstate.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-historystate-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-historystate.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-qabstractstate-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-qabstractstate.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-qabstracttransition-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-qabstracttransition.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-qsignaltransition-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-qsignaltransition.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-signaltransition-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-signaltransition.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-state-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-state.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-statemachine-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-statemachine.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-timeouttransition-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-timeouttransition.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-string-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-string.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-timer-members.html
%%QT_DOCDIR%%/qtqml/qml-qtqml-timer.html
%%QT_DOCDIR%%/qtqml/qml-real.html
%%QT_DOCDIR%%/qtqml/qml-rect.html
%%QT_DOCDIR%%/qtqml/qml-size.html
%%QT_DOCDIR%%/qtqml/qml-string.html
%%QT_DOCDIR%%/qtqml/qml-url.html
%%QT_DOCDIR%%/qtqml/qml-var.html
%%QT_DOCDIR%%/qtqml/qml-variant.html
%%QT_DOCDIR%%/qtqml/qml-visualdatagroup-members.html
%%QT_DOCDIR%%/qtqml/qml-visualdatagroup.html
%%QT_DOCDIR%%/qtqml/qml-visualdatamodel-members.html
%%QT_DOCDIR%%/qtqml/qml-visualdatamodel.html
%%QT_DOCDIR%%/qtqml/qml-visualitemmodel-members.html
%%QT_DOCDIR%%/qtqml/qml-visualitemmodel.html
%%QT_DOCDIR%%/qtqml/qml-workerscript-members.html
%%QT_DOCDIR%%/qtqml/qml-workerscript.html
%%QT_DOCDIR%%/qtqml/qmlextendingexamples.html
%%QT_DOCDIR%%/qtqml/qmlreference.html
%%QT_DOCDIR%%/qtqml/qmlstatemachine.html
%%QT_DOCDIR%%/qtqml/qmodelindex-and-related-classes-in-qml.html
%%QT_DOCDIR%%/qtqml/qqmlabstracturlinterceptor-members.html
%%QT_DOCDIR%%/qtqml/qqmlabstracturlinterceptor.html
%%QT_DOCDIR%%/qtqml/qqmlapplicationengine-members.html
%%QT_DOCDIR%%/qtqml/qqmlapplicationengine.html
%%QT_DOCDIR%%/qtqml/qqmlcomponent-members.html
%%QT_DOCDIR%%/qtqml/qqmlcomponent.html
%%QT_DOCDIR%%/qtqml/qqmlcontext-members.html
%%QT_DOCDIR%%/qtqml/qqmlcontext.html
%%QT_DOCDIR%%/qtqml/qqmlengine-members.html
%%QT_DOCDIR%%/qtqml/qqmlengine.html
%%QT_DOCDIR%%/qtqml/qqmlerror-members.html
%%QT_DOCDIR%%/qtqml/qqmlerror.html
%%QT_DOCDIR%%/qtqml/qqmlexpression-members.html
%%QT_DOCDIR%%/qtqml/qqmlexpression.html
%%QT_DOCDIR%%/qtqml/qqmlextensionplugin-members.html
%%QT_DOCDIR%%/qtqml/qqmlextensionplugin.html
%%QT_DOCDIR%%/qtqml/qqmlfileselector-members.html
%%QT_DOCDIR%%/qtqml/qqmlfileselector.html
%%QT_DOCDIR%%/qtqml/qqmlimageproviderbase-members.html
%%QT_DOCDIR%%/qtqml/qqmlimageproviderbase.html
%%QT_DOCDIR%%/qtqml/qqmlincubationcontroller-members.html
%%QT_DOCDIR%%/qtqml/qqmlincubationcontroller.html
%%QT_DOCDIR%%/qtqml/qqmlincubator-members.html
%%QT_DOCDIR%%/qtqml/qqmlincubator.html
%%QT_DOCDIR%%/qtqml/qqmllistproperty-members.html
%%QT_DOCDIR%%/qtqml/qqmllistproperty.html
%%QT_DOCDIR%%/qtqml/qqmllistreference-members.html
%%QT_DOCDIR%%/qtqml/qqmllistreference.html
%%QT_DOCDIR%%/qtqml/qqmlnetworkaccessmanagerfactory-members.html
%%QT_DOCDIR%%/qtqml/qqmlnetworkaccessmanagerfactory.html
%%QT_DOCDIR%%/qtqml/qqmlparserstatus-members.html
%%QT_DOCDIR%%/qtqml/qqmlparserstatus.html
%%QT_DOCDIR%%/qtqml/qqmlproperty-members.html
%%QT_DOCDIR%%/qtqml/qqmlproperty.html
%%QT_DOCDIR%%/qtqml/qqmlpropertymap-members.html
%%QT_DOCDIR%%/qtqml/qqmlpropertymap.html
%%QT_DOCDIR%%/qtqml/qqmlpropertyvaluesource-members.html
%%QT_DOCDIR%%/qtqml/qqmlpropertyvaluesource.html
%%QT_DOCDIR%%/qtqml/qqmlscriptstring-members.html
%%QT_DOCDIR%%/qtqml/qqmlscriptstring.html
%%QT_DOCDIR%%/qtqml/qtjavascript.html
%%QT_DOCDIR%%/qtqml/qtqml-cppclasses-topic.html
%%QT_DOCDIR%%/qtqml/qtqml-cppintegration-contextproperties.html
%%QT_DOCDIR%%/qtqml/qtqml-cppintegration-data.html
%%QT_DOCDIR%%/qtqml/qtqml-cppintegration-definetypes.html
%%QT_DOCDIR%%/qtqml/qtqml-cppintegration-exposecppattributes.html
%%QT_DOCDIR%%/qtqml/qtqml-cppintegration-interactqmlfromcpp.html
%%QT_DOCDIR%%/qtqml/qtqml-cppintegration-topic.html
%%QT_DOCDIR%%/qtqml/qtqml-documents-definetypes.html
%%QT_DOCDIR%%/qtqml/qtqml-documents-networktransparency.html
%%QT_DOCDIR%%/qtqml/qtqml-documents-scope.html
%%QT_DOCDIR%%/qtqml/qtqml-documents-structure.html
%%QT_DOCDIR%%/qtqml/qtqml-documents-topic.html
%%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-content-button-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-content-genericsceneitem-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-content-itemcreation-js.html
%%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-content-paletteitem-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-content-perspectiveitem-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-content-sun-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-dynamicscene-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-dynamicscene-qmlproject.html
%%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-example.html
%%QT_DOCDIR%%/qtqml/qtqml-index.html
%%QT_DOCDIR%%/qtqml/qtqml-javascript-dynamicobjectcreation.html
%%QT_DOCDIR%%/qtqml/qtqml-javascript-expressions.html
%%QT_DOCDIR%%/qtqml/qtqml-javascript-functionlist.html
%%QT_DOCDIR%%/qtqml/qtqml-javascript-hostenvironment.html
%%QT_DOCDIR%%/qtqml/qtqml-javascript-imports.html
%%QT_DOCDIR%%/qtqml/qtqml-javascript-qmlglobalobject.html
%%QT_DOCDIR%%/qtqml/qtqml-javascript-resources.html
%%QT_DOCDIR%%/qtqml/qtqml-javascript-topic.html
%%QT_DOCDIR%%/qtqml/qtqml-models-qmlmodule.html
%%QT_DOCDIR%%/qtqml/qtqml-module.html
%%QT_DOCDIR%%/qtqml/qtqml-modules-cppplugins.html
%%QT_DOCDIR%%/qtqml/qtqml-modules-identifiedmodules.html
%%QT_DOCDIR%%/qtqml/qtqml-modules-legacymodules.html
%%QT_DOCDIR%%/qtqml/qtqml-modules-qmldir.html
%%QT_DOCDIR%%/qtqml/qtqml-modules-topic.html
%%QT_DOCDIR%%/qtqml/qtqml-networkaccessmanagerfactory-example.html
%%QT_DOCDIR%%/qtqml/qtqml-networkaccessmanagerfactory-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-networkaccessmanagerfactory-networkaccessmanagerfactory-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-networkaccessmanagerfactory-networkaccessmanagerfactory-qmlproject.html
%%QT_DOCDIR%%/qtqml/qtqml-networkaccessmanagerfactory-networkaccessmanagerfactory-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-networkaccessmanagerfactory-view-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-qml-i18n-example.html
%%QT_DOCDIR%%/qtqml/qtqml-qml-i18n-qml-i18n-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-qml-i18n-qml-i18n-qmlproject.html
%%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-example.html
%%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-imports-timeexample-clock-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-imports-timeexample-qmldir.html
%%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-plugin-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-plugins-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-plugins-qmlproject.html
%%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-qmlextensionplugins-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-qmlmodule.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-adding-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-adding-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-example-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-example.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-person-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-person-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-attached-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-attached-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-birthdayparty-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-birthdayparty-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-example-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-example.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-person-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-person-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-binding-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-binding-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-birthdayparty-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-birthdayparty-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-example-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-example.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-happybirthdaysong-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-happybirthdaysong-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-person-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-person-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-birthdayparty-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-birthdayparty-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-coercion-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-coercion-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-example-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-example.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-person-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-person-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-birthdayparty-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-birthdayparty-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-default-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-default-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-example-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-example.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-person-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-person-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-example-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-example.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-extended-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-extended-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-lineedit-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-lineedit-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-birthdayparty-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-birthdayparty-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-example-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-example.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-grouped-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-grouped-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-person-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-person-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-birthdayparty-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-birthdayparty-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-example-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-example.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-methods-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-methods-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-person-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-person-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-birthdayparty-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-birthdayparty-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-example-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-example.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-person-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-person-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-properties-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-properties-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-birthdayparty-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-birthdayparty-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-example-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-example.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-person-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-person-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-signal-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-signal-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-birthdayparty-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-birthdayparty-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-example-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-example.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-happybirthdaysong-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-happybirthdaysong-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-person-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-person-h.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-valuesource-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-valuesource-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-statemachine-qmlmodule.html
%%QT_DOCDIR%%/qtqml/qtqml-syntax-basics.html
%%QT_DOCDIR%%/qtqml/qtqml-syntax-directoryimports.html
%%QT_DOCDIR%%/qtqml/qtqml-syntax-imports.html
%%QT_DOCDIR%%/qtqml/qtqml-syntax-objectattributes.html
%%QT_DOCDIR%%/qtqml/qtqml-syntax-propertybinding.html
%%QT_DOCDIR%%/qtqml/qtqml-syntax-signals.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter1-basics-app-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter1-basics-chapter1-basics-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter1-basics-chapter1-basics-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter1-basics-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter1-basics-piechart-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter1-basics-piechart-h.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter2-methods-app-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter2-methods-chapter2-methods-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter2-methods-chapter2-methods-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter2-methods-piechart-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter2-methods-piechart-h.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter3-bindings-app-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter3-bindings-chapter3-bindings-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter3-bindings-chapter3-bindings-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter3-bindings-piechart-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter3-bindings-piechart-h.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-app-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-chapter4-custompropertytypes-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-chapter4-custompropertytypes-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-piechart-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-piechart-h.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-pieslice-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-pieslice-h.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-app-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-chapter5-listproperties-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-chapter5-listproperties-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-piechart-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-piechart-h.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-pieslice-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-pieslice-h.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-app-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-app-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-app-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-chapter6-plugins-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-chartsplugin-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-chartsplugin-h.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-import-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-piechart-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-piechart-h.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-pieslice-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-pieslice-h.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-qmldir.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-example.html
%%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-extending-qml-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-typesystem-basictypes.html
%%QT_DOCDIR%%/qtqml/qtqml-typesystem-objecttypes.html
%%QT_DOCDIR%%/qtqml/qtqml-typesystem-topic.html
%%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-data-xml.html
%%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-example.html
%%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-get-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-main-cpp.html
%%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-xmlhttprequest-pro.html
%%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-xmlhttprequest-qml.html
%%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-xmlhttprequest-qmlproject.html
%%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-xmlhttprequest-qrc.html
%%QT_DOCDIR%%/qtqml/qtqml.index
%%QT_DOCDIR%%/qtqml/qtqml.qhp
%%QT_DOCDIR%%/qtqml/qtqml.qhp.sha1
%%QT_DOCDIR%%/qtqml/qtqml.tags
%%QT_DOCDIR%%/qtqml/style/offline-simple.css
%%QT_DOCDIR%%/qtqml/style/offline.css
%%QT_DOCDIR%%/qtquick.qch
%%QT_DOCDIR%%/qtquick/demos-manifest.xml
%%QT_DOCDIR%%/qtquick/examples-manifest.xml
%%QT_DOCDIR%%/qtquick/images/3d-rotation-axis.png
%%QT_DOCDIR%%/qtquick/images/ListViewHorizontal.png
%%QT_DOCDIR%%/qtquick/images/anchor_ordering.png
%%QT_DOCDIR%%/qtquick/images/anchor_ordering_bad.png
%%QT_DOCDIR%%/qtquick/images/anchorchanges.png
%%QT_DOCDIR%%/qtquick/images/animatedimageitem.gif
%%QT_DOCDIR%%/qtquick/images/arrow_bc.png
%%QT_DOCDIR%%/qtquick/images/axisrotation.png
%%QT_DOCDIR%%/qtquick/images/bgrContent.png
%%QT_DOCDIR%%/qtquick/images/btn_next.png
%%QT_DOCDIR%%/qtquick/images/btn_prev.png
%%QT_DOCDIR%%/qtquick/images/bullet_dn.png
%%QT_DOCDIR%%/qtquick/images/bullet_sq.png
+%%QT_DOCDIR%%/qtquick/images/columnlayout.png
%%QT_DOCDIR%%/qtquick/images/custom-geometry-example.png
%%QT_DOCDIR%%/qtquick/images/declarative-adv-tutorial1.png
%%QT_DOCDIR%%/qtquick/images/declarative-adv-tutorial2.png
%%QT_DOCDIR%%/qtquick/images/declarative-adv-tutorial3.png
%%QT_DOCDIR%%/qtquick/images/declarative-adv-tutorial4.gif
%%QT_DOCDIR%%/qtquick/images/declarative-anchors_example.png
%%QT_DOCDIR%%/qtquick/images/declarative-anchors_example2.png
%%QT_DOCDIR%%/qtquick/images/declarative-arcdirection.png
%%QT_DOCDIR%%/qtquick/images/declarative-arcradius.png
%%QT_DOCDIR%%/qtquick/images/declarative-colors.png
%%QT_DOCDIR%%/qtquick/images/declarative-gridmesh.png
%%QT_DOCDIR%%/qtquick/images/declarative-item_opacity1.png
%%QT_DOCDIR%%/qtquick/images/declarative-item_opacity2.png
%%QT_DOCDIR%%/qtquick/images/declarative-item_stacking1.png
%%QT_DOCDIR%%/qtquick/images/declarative-item_stacking2.png
%%QT_DOCDIR%%/qtquick/images/declarative-item_stacking3.png
%%QT_DOCDIR%%/qtquick/images/declarative-item_stacking4.png
%%QT_DOCDIR%%/qtquick/images/declarative-largearc.png
%%QT_DOCDIR%%/qtquick/images/declarative-nopercent.png
%%QT_DOCDIR%%/qtquick/images/declarative-patharc.png
%%QT_DOCDIR%%/qtquick/images/declarative-pathattribute.png
%%QT_DOCDIR%%/qtquick/images/declarative-pathcubic.png
%%QT_DOCDIR%%/qtquick/images/declarative-pathcurve.png
%%QT_DOCDIR%%/qtquick/images/declarative-pathquad.png
%%QT_DOCDIR%%/qtquick/images/declarative-pathsvg.png
%%QT_DOCDIR%%/qtquick/images/declarative-percent.png
%%QT_DOCDIR%%/qtquick/images/declarative-qmlfocus1.png
%%QT_DOCDIR%%/qtquick/images/declarative-qmlfocus2.png
%%QT_DOCDIR%%/qtquick/images/declarative-qmlfocus3.png
%%QT_DOCDIR%%/qtquick/images/declarative-qmlfocus4.png
%%QT_DOCDIR%%/qtquick/images/declarative-qmlfocus5.png
%%QT_DOCDIR%%/qtquick/images/declarative-qtlogo-preserveaspectcrop.png
%%QT_DOCDIR%%/qtquick/images/declarative-qtlogo-preserveaspectfit.png
%%QT_DOCDIR%%/qtquick/images/declarative-qtlogo-stretch.png
%%QT_DOCDIR%%/qtquick/images/declarative-qtlogo-tile.png
%%QT_DOCDIR%%/qtquick/images/declarative-qtlogo-tilehorizontally.png
%%QT_DOCDIR%%/qtquick/images/declarative-qtlogo-tilevertically.png
%%QT_DOCDIR%%/qtquick/images/declarative-qtlogo.png
%%QT_DOCDIR%%/qtquick/images/declarative-rect.png
%%QT_DOCDIR%%/qtquick/images/declarative-rect_gradient.png
%%QT_DOCDIR%%/qtquick/images/declarative-rotation.png
%%QT_DOCDIR%%/qtquick/images/declarative-samegame.png
%%QT_DOCDIR%%/qtquick/images/declarative-scale.png
%%QT_DOCDIR%%/qtquick/images/declarative-scalegrid.png
%%QT_DOCDIR%%/qtquick/images/declarative-shadereffectitem.png
%%QT_DOCDIR%%/qtquick/images/declarative-shadereffectsource.png
%%QT_DOCDIR%%/qtquick/images/declarative-text.png
%%QT_DOCDIR%%/qtquick/images/declarative-textballoons_example.png
%%QT_DOCDIR%%/qtquick/images/declarative-textedit.gif
%%QT_DOCDIR%%/qtquick/images/declarative-textformat.png
%%QT_DOCDIR%%/qtquick/images/declarative-textstyle.png
%%QT_DOCDIR%%/qtquick/images/declarative-transformorigin.png
%%QT_DOCDIR%%/qtquick/images/declarative-tutorial1.png
%%QT_DOCDIR%%/qtquick/images/declarative-tutorial2.png
%%QT_DOCDIR%%/qtquick/images/declarative-tutorial3_animation.gif
%%QT_DOCDIR%%/qtquick/images/edge1.png
%%QT_DOCDIR%%/qtquick/images/edge2.png
%%QT_DOCDIR%%/qtquick/images/edge3.png
%%QT_DOCDIR%%/qtquick/images/edge4.png
%%QT_DOCDIR%%/qtquick/images/edges_qml.png
%%QT_DOCDIR%%/qtquick/images/flickable-rebound.gif
%%QT_DOCDIR%%/qtquick/images/flickable.gif
%%QT_DOCDIR%%/qtquick/images/flipable.gif
%%QT_DOCDIR%%/qtquick/images/fuzzydot.png
%%QT_DOCDIR%%/qtquick/images/glowdot.png
%%QT_DOCDIR%%/qtquick/images/graph-example.jpg
%%QT_DOCDIR%%/qtquick/images/gridLayout_aligncenter.png
%%QT_DOCDIR%%/qtquick/images/gridLayout_aligntop.png
%%QT_DOCDIR%%/qtquick/images/gridLayout_aligntopleft.png
%%QT_DOCDIR%%/qtquick/images/gridLayout_example.png
+%%QT_DOCDIR%%/qtquick/images/gridlayout.png
%%QT_DOCDIR%%/qtquick/images/gridview-highlight.png
%%QT_DOCDIR%%/qtquick/images/gridview-layout-lefttoright-ltr-btt.png
%%QT_DOCDIR%%/qtquick/images/gridview-layout-lefttoright-ltr-ttb.png
%%QT_DOCDIR%%/qtquick/images/gridview-layout-lefttoright-rtl-btt.png
%%QT_DOCDIR%%/qtquick/images/gridview-layout-lefttoright-rtl-ttb.png
%%QT_DOCDIR%%/qtquick/images/gridview-layout-toptobottom-ltr-btt.png
%%QT_DOCDIR%%/qtquick/images/gridview-layout-toptobottom-ltr-ttb.png
%%QT_DOCDIR%%/qtquick/images/gridview-layout-toptobottom-rtl-btt.png
%%QT_DOCDIR%%/qtquick/images/gridview-layout-toptobottom-rtl-ttb.png
%%QT_DOCDIR%%/qtquick/images/gridview-simple.png
%%QT_DOCDIR%%/qtquick/images/home.png
%%QT_DOCDIR%%/qtquick/images/horizontalpositioner_example.png
%%QT_DOCDIR%%/qtquick/images/ico_note.png
%%QT_DOCDIR%%/qtquick/images/ico_note_attention.png
%%QT_DOCDIR%%/qtquick/images/ico_out.png
%%QT_DOCDIR%%/qtquick/images/imageprovider.png
%%QT_DOCDIR%%/qtquick/images/layoutmirroring.png
%%QT_DOCDIR%%/qtquick/images/listview-decorations.png
%%QT_DOCDIR%%/qtquick/images/listview-highlight.png
%%QT_DOCDIR%%/qtquick/images/listview-layout-bottomtotop.png
%%QT_DOCDIR%%/qtquick/images/listview-layout-lefttoright.png
%%QT_DOCDIR%%/qtquick/images/listview-layout-righttoleft.png
%%QT_DOCDIR%%/qtquick/images/listview-layout-toptobottom.png
%%QT_DOCDIR%%/qtquick/images/listview-section.png
%%QT_DOCDIR%%/qtquick/images/listview-setup.png
%%QT_DOCDIR%%/qtquick/images/listview-simple.png
%%QT_DOCDIR%%/qtquick/images/logo.png
%%QT_DOCDIR%%/qtquick/images/manual-layout.png
%%QT_DOCDIR%%/qtquick/images/margins_qml.png
%%QT_DOCDIR%%/qtquick/images/mob-idle.png
%%QT_DOCDIR%%/qtquick/images/modelview-overview.png
%%QT_DOCDIR%%/qtquick/images/openglunderqml-example.jpg
%%QT_DOCDIR%%/qtquick/images/parentchange.png
%%QT_DOCDIR%%/qtquick/images/pathview.gif
%%QT_DOCDIR%%/qtquick/images/positioner-example.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inback.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inbounce.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-incirc.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-incubic.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inelastic.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inexpo.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutback.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutbounce.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutcirc.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutcubic.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutelastic.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutexpo.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutquad.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutquart.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutquint.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutsine.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inquad.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inquart.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-inquint.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-insine.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-linear.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outback.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outbounce.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outcirc.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outcubic.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outelastic.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outexpo.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinback.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinbounce.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outincirc.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outincubic.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinelastic.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinexpo.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinquad.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinquart.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinquint.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinsine.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outquad.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outquart.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outquint.png
%%QT_DOCDIR%%/qtquick/images/qeasingcurve-outsine.png
%%QT_DOCDIR%%/qtquick/images/qml-abstractitemmodel-example.png
%%QT_DOCDIR%%/qtquick/images/qml-affectors-example.png
%%QT_DOCDIR%%/qtquick/images/qml-animations-example.png
%%QT_DOCDIR%%/qtquick/images/qml-blending-layered.png
%%QT_DOCDIR%%/qtquick/images/qml-blending-nonlayered.png
%%QT_DOCDIR%%/qtquick/images/qml-borderimage-normal-image.png
%%QT_DOCDIR%%/qtquick/images/qml-borderimage-scaled.png
%%QT_DOCDIR%%/qtquick/images/qml-borderimage-tiled.png
%%QT_DOCDIR%%/qtquick/images/qml-canvas-example.png
%%QT_DOCDIR%%/qtquick/images/qml-column.png
%%QT_DOCDIR%%/qtquick/images/qml-customparticle-example.png
%%QT_DOCDIR%%/qtquick/images/qml-dialcontrol-example.png
%%QT_DOCDIR%%/qtquick/images/qml-dnd2-example.png
%%QT_DOCDIR%%/qtquick/images/qml-draganddrop-example.png
%%QT_DOCDIR%%/qtquick/images/qml-emitters-example.png
%%QT_DOCDIR%%/qtquick/images/qml-flipable-example.png
%%QT_DOCDIR%%/qtquick/images/qml-flow-snippet.png
%%QT_DOCDIR%%/qtquick/images/qml-flow-text1.png
%%QT_DOCDIR%%/qtquick/images/qml-flow-text2.png
%%QT_DOCDIR%%/qtquick/images/qml-gradient.png
%%QT_DOCDIR%%/qtquick/images/qml-grid-no-spacing.png
%%QT_DOCDIR%%/qtquick/images/qml-grid-spacing.png
%%QT_DOCDIR%%/qtquick/images/qml-imageelements-example.png
%%QT_DOCDIR%%/qtquick/images/qml-imageparticle-example.png
%%QT_DOCDIR%%/qtquick/images/qml-imageprovider-example.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-arc.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-arcTo.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-bezierCurveTo.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-clip-complex.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-context.gif
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-math-rotate.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-math.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-rotate.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-scale.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-scalex.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-scaley.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-skewx.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-skewy.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-startAngle.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-translate.png
%%QT_DOCDIR%%/qtquick/images/qml-item-canvas-translatey.png
%%QT_DOCDIR%%/qtquick/images/qml-keyinteraction-example.png
%%QT_DOCDIR%%/qtquick/images/qml-listview-sections-example.png
%%QT_DOCDIR%%/qtquick/images/qml-localstorage-example.png
%%QT_DOCDIR%%/qtquick/images/qml-modelviews-example.png
%%QT_DOCDIR%%/qtquick/images/qml-mousearea-example.png
%%QT_DOCDIR%%/qtquick/images/qml-mousearea-snippet.png
%%QT_DOCDIR%%/qtquick/images/qml-objectlistmodel-example.png
%%QT_DOCDIR%%/qtquick/images/qml-positioners-example.png
%%QT_DOCDIR%%/qtquick/images/qml-righttoleft-example.png
%%QT_DOCDIR%%/qtquick/images/qml-row.png
%%QT_DOCDIR%%/qtquick/images/qml-scrollbar-example.png
%%QT_DOCDIR%%/qtquick/images/qml-shadereffect-layereffect.png
%%QT_DOCDIR%%/qtquick/images/qml-shadereffect-nolayereffect.png
%%QT_DOCDIR%%/qtquick/images/qml-shadereffect-opacitymask.png
%%QT_DOCDIR%%/qtquick/images/qml-shadereffects-example.png
%%QT_DOCDIR%%/qtquick/images/qml-stringlistmodel-example.png
%%QT_DOCDIR%%/qtquick/images/qml-system-example.png
%%QT_DOCDIR%%/qtquick/images/qml-tabwidget-example.png
%%QT_DOCDIR%%/qtquick/images/qml-text-example.png
%%QT_DOCDIR%%/qtquick/images/qml-threading-example.png
%%QT_DOCDIR%%/qtquick/images/qml-touchinteraction-example.png
%%QT_DOCDIR%%/qtquick/images/qml-window-example.png
%%QT_DOCDIR%%/qtquick/images/qml-xmllistmodel-example.png
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-calqlatr.png
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-clocks-small.png
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-maroon-med-1.png
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-maroon-med-2.png
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-maroon-med-3.jpg
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-maroon-med-4.jpg
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-maroon-med-5.jpg
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-maroon-med-6.jpg
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-photosurface-small.png
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-photoviewer-small.png
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-rssnews-small.png
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-samegame-med-1.png
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-samegame-med-2.png
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-stocqt.png
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-tweetsearch-med-1.png
%%QT_DOCDIR%%/qtquick/images/qtquick-demo-tweetsearch-med-2.png
+%%QT_DOCDIR%%/qtquick/images/qtquicklayouts-example-layouts.png
%%QT_DOCDIR%%/qtquick/images/qtquickwidgets-example.png
%%QT_DOCDIR%%/qtquick/images/rect-color.png
%%QT_DOCDIR%%/qtquick/images/rendercontrol-example.jpg
%%QT_DOCDIR%%/qtquick/images/repeater-index.png
%%QT_DOCDIR%%/qtquick/images/repeater-modeldata.png
%%QT_DOCDIR%%/qtquick/images/repeater-simple.png
%%QT_DOCDIR%%/qtquick/images/repeater.png
+%%QT_DOCDIR%%/qtquick/images/rowlayout-minimum.png
+%%QT_DOCDIR%%/qtquick/images/rowlayout.png
%%QT_DOCDIR%%/qtquick/images/screen-and-window-dimensions.jpg
%%QT_DOCDIR%%/qtquick/images/sg-renderloop-singlethreaded.jpg
%%QT_DOCDIR%%/qtquick/images/sg-renderloop-threaded.jpg
%%QT_DOCDIR%%/qtquick/images/simplematerial-example.jpg
%%QT_DOCDIR%%/qtquick/images/spritecutting.png
%%QT_DOCDIR%%/qtquick/images/spriteenginegraph.png
%%QT_DOCDIR%%/qtquick/images/star.png
%%QT_DOCDIR%%/qtquick/images/textureinsgnode-example.jpg
%%QT_DOCDIR%%/qtquick/images/textureinthread-example.jpg
%%QT_DOCDIR%%/qtquick/images/translate.png
%%QT_DOCDIR%%/qtquick/images/twotextureproviders-example.jpg
%%QT_DOCDIR%%/qtquick/images/verticalpositioner_example.png
%%QT_DOCDIR%%/qtquick/images/verticalpositioner_transition.gif
%%QT_DOCDIR%%/qtquick/images/viewtransitions-basic.gif
%%QT_DOCDIR%%/qtquick/images/viewtransitions-delayedbyindex.gif
%%QT_DOCDIR%%/qtquick/images/viewtransitions-intermediatemove.gif
%%QT_DOCDIR%%/qtquick/images/viewtransitions-interruptedbad.gif
%%QT_DOCDIR%%/qtquick/images/viewtransitions-interruptedgood.gif
%%QT_DOCDIR%%/qtquick/images/viewtransitions-pathanim.gif
%%QT_DOCDIR%%/qtquick/images/viewtransitions-scriptactionbad.gif
%%QT_DOCDIR%%/qtquick/images/visual-coordinates-example.png
%%QT_DOCDIR%%/qtquick/images/visual-parent-example.png
%%QT_DOCDIR%%/qtquick/images/visual-parent-example2.png
%%QT_DOCDIR%%/qtquick/images/visualcanvas_list.png
%%QT_DOCDIR%%/qtquick/images/visualcanvas_overlap.png
%%QT_DOCDIR%%/qtquick/images/visualize-batches.png
%%QT_DOCDIR%%/qtquick/images/visualize-clip.png
%%QT_DOCDIR%%/qtquick/images/visualize-original.png
%%QT_DOCDIR%%/qtquick/images/visualize-overdraw-1.png
%%QT_DOCDIR%%/qtquick/images/visualize-overdraw-2.png
%%QT_DOCDIR%%/qtquick/qml-advtutorial.html
%%QT_DOCDIR%%/qtquick/qml-color.html
%%QT_DOCDIR%%/qtquick/qml-dynamicview-tutorial.html
%%QT_DOCDIR%%/qtquick/qml-font.html
%%QT_DOCDIR%%/qtquick/qml-matrix4x4.html
%%QT_DOCDIR%%/qtquick/qml-qt-labs-folderlistmodel-folderlistmodel-members.html
%%QT_DOCDIR%%/qtquick/qml-qt-labs-folderlistmodel-folderlistmodel.html
%%QT_DOCDIR%%/qtquick/qml-qt-labs-settings-settings-members.html
%%QT_DOCDIR%%/qtquick/qml-qt-labs-settings-settings.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-accessible-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-accessible.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-anchoranimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-anchoranimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-anchorchanges-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-anchorchanges.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-animatedimage-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-animatedimage.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-animatedsprite-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-animatedsprite.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-animation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-animation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-animationcontroller-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-animationcontroller.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-animator-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-animator.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-behavior-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-behavior.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-borderimage-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-borderimage.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-canvas-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-canvas-obsolete.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-canvas.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-canvasgradient-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-canvasgradient.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-canvasimagedata-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-canvasimagedata.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-canvaspixelarray-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-canvaspixelarray.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-coloranimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-coloranimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-column-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-column.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-context2d-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-context2d.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-doublevalidator-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-doublevalidator.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-drag-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-drag.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-dragevent-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-dragevent.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-droparea-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-droparea.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-enterkey-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-enterkey.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-flickable-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-flickable.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-flipable-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-flipable.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-flow-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-flow.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-focusscope-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-focusscope.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-fontloader-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-fontloader.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-fontmetrics-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-fontmetrics.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-gradient-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-gradient.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-gradientstop-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-gradientstop.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-grid-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-grid.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-gridmesh-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-gridmesh.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-gridview-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-gridview.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-image-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-image.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-intvalidator-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-intvalidator.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-item-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-item.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-itemgrabresult-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-itemgrabresult.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-keyevent-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-keyevent.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-keynavigation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-keynavigation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-keys-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-keys.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-layoutmirroring-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-layoutmirroring.html
+%%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-columnlayout-members.html
+%%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-columnlayout.html
+%%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-gridlayout-members.html
+%%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-gridlayout.html
+%%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-layout-members.html
+%%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-layout.html
+%%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-rowlayout-members.html
+%%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-rowlayout.html
+%%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-stacklayout-members.html
+%%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-stacklayout.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-listview-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-listview.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-loader-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-loader.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-matrix4x4-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-matrix4x4.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-mousearea-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-mousearea.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-mouseevent-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-mouseevent.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-multipointtoucharea-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-multipointtoucharea.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-numberanimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-numberanimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-opacityanimator-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-opacityanimator.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-openglinfo-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-openglinfo.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-parallelanimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-parallelanimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-parentanimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-parentanimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-parentchange-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-parentchange.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-affector-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-affector.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-age-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-age.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-angledirection-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-angledirection.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-attractor-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-attractor.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-cumulativedirection-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-cumulativedirection.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-customparticle-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-customparticle.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-direction-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-direction.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-ellipseshape-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-ellipseshape.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-emitter-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-emitter.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-friction-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-friction.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-gravity-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-gravity.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-groupgoal-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-groupgoal.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-imageparticle-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-imageparticle.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-itemparticle-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-itemparticle.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-lineshape-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-lineshape.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-maskshape-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-maskshape.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particle-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particle.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particlegroup-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particlegroup.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particlepainter-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particlepainter.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particlesystem-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particlesystem.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-pointdirection-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-pointdirection.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-rectangleshape-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-rectangleshape.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-shape-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-shape.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-spritegoal-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-spritegoal.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-targetdirection-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-targetdirection.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-trailemitter-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-trailemitter.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-turbulence-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-turbulence.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-wander-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-particles-wander.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-path-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-path.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathanimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathanimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-patharc-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-patharc.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathattribute-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathattribute.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathcubic-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathcubic.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathcurve-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathcurve.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathelement-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathelement.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathinterpolator-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathinterpolator.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathline-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathline.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathpercent-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathpercent.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathquad-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathquad.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathsvg-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathsvg.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathview-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pathview.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pauseanimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pauseanimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pincharea-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pincharea.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pinchevent-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-pinchevent.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-positioner-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-positioner.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-propertyaction-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-propertyaction.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-propertyanimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-propertyanimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-propertychanges-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-propertychanges.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-rectangle-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-rectangle.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-regexpvalidator-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-regexpvalidator.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-repeater-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-repeater.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-rotation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-rotation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-rotationanimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-rotationanimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-rotationanimator-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-rotationanimator.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-row-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-row.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-scale-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-scale.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-scaleanimator-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-scaleanimator.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-scriptaction-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-scriptaction.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-sequentialanimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-sequentialanimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-shadereffect-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-shadereffect.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-shadereffectsource-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-shadereffectsource.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-shortcut-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-shortcut.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-smoothedanimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-smoothedanimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-springanimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-springanimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-sprite-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-sprite.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-spritesequence-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-spritesequence.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-state-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-state.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-statechangescript-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-statechangescript.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-stategroup-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-stategroup.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-systempalette-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-systempalette.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-text-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-text.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-textedit-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-textedit.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-textinput-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-textinput.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-textmetrics-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-textmetrics.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-touchpoint-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-touchpoint.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-transform-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-transform.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-transition-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-transition.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-translate-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-translate.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-uniformanimator-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-uniformanimator.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-vector3danimation-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-vector3danimation.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-viewtransition-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-viewtransition.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-wheelevent-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-wheelevent.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-window-closeevent-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-window-closeevent.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-window-screen-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-window-screen-obsolete.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-window-screen.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-window-window-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-window-window.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-xanimator-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-xanimator.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-xmllistmodel-xmllistmodel-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-xmllistmodel-xmllistmodel.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-xmllistmodel-xmlrole-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-xmllistmodel-xmlrole.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-yanimator-members.html
%%QT_DOCDIR%%/qtquick/qml-qtquick-yanimator.html
%%QT_DOCDIR%%/qtquick/qml-qttest-signalspy-members.html
%%QT_DOCDIR%%/qtquick/qml-qttest-signalspy.html
%%QT_DOCDIR%%/qtquick/qml-qttest-testcase-members.html
%%QT_DOCDIR%%/qtquick/qml-qttest-testcase.html
%%QT_DOCDIR%%/qtquick/qml-quaternion.html
%%QT_DOCDIR%%/qtquick/qml-tutorial.html
%%QT_DOCDIR%%/qtquick/qml-tutorial1.html
%%QT_DOCDIR%%/qtquick/qml-tutorial2.html
%%QT_DOCDIR%%/qtquick/qml-tutorial3.html
%%QT_DOCDIR%%/qtquick/qml-vector2d.html
%%QT_DOCDIR%%/qtquick/qml-vector3d.html
%%QT_DOCDIR%%/qtquick/qml-vector4d.html
%%QT_DOCDIR%%/qtquick/qmlexampletoggleswitch.html
%%QT_DOCDIR%%/qtquick/qquickasyncimageprovider-members.html
%%QT_DOCDIR%%/qtquick/qquickasyncimageprovider.html
%%QT_DOCDIR%%/qtquick/qquickframebufferobject-members.html
%%QT_DOCDIR%%/qtquick/qquickframebufferobject-renderer-members.html
%%QT_DOCDIR%%/qtquick/qquickframebufferobject-renderer.html
%%QT_DOCDIR%%/qtquick/qquickframebufferobject.html
%%QT_DOCDIR%%/qtquick/qquickimageprovider-members.html
%%QT_DOCDIR%%/qtquick/qquickimageprovider.html
%%QT_DOCDIR%%/qtquick/qquickimageresponse-members.html
%%QT_DOCDIR%%/qtquick/qquickimageresponse.html
%%QT_DOCDIR%%/qtquick/qquickitem-itemchangedata-members.html
%%QT_DOCDIR%%/qtquick/qquickitem-itemchangedata.html
%%QT_DOCDIR%%/qtquick/qquickitem-members.html
%%QT_DOCDIR%%/qtquick/qquickitem-updatepaintnodedata-members.html
%%QT_DOCDIR%%/qtquick/qquickitem-updatepaintnodedata.html
%%QT_DOCDIR%%/qtquick/qquickitem.html
%%QT_DOCDIR%%/qtquick/qquickitemgrabresult-members.html
%%QT_DOCDIR%%/qtquick/qquickitemgrabresult.html
%%QT_DOCDIR%%/qtquick/qquickpainteditem-members.html
%%QT_DOCDIR%%/qtquick/qquickpainteditem-obsolete.html
%%QT_DOCDIR%%/qtquick/qquickpainteditem.html
%%QT_DOCDIR%%/qtquick/qquickrendercontrol-members.html
%%QT_DOCDIR%%/qtquick/qquickrendercontrol.html
%%QT_DOCDIR%%/qtquick/qquicktextdocument-members.html
%%QT_DOCDIR%%/qtquick/qquicktextdocument.html
%%QT_DOCDIR%%/qtquick/qquicktexturefactory-members.html
%%QT_DOCDIR%%/qtquick/qquicktexturefactory.html
%%QT_DOCDIR%%/qtquick/qquickview-members.html
%%QT_DOCDIR%%/qtquick/qquickview.html
%%QT_DOCDIR%%/qtquick/qquickwidget-members.html
%%QT_DOCDIR%%/qtquick/qquickwidget.html
%%QT_DOCDIR%%/qtquick/qquickwindow-members.html
%%QT_DOCDIR%%/qtquick/qquickwindow.html
%%QT_DOCDIR%%/qtquick/qsgabstractrenderer-members.html
%%QT_DOCDIR%%/qtquick/qsgabstractrenderer.html
%%QT_DOCDIR%%/qtquick/qsgbasicgeometrynode-members.html
%%QT_DOCDIR%%/qtquick/qsgbasicgeometrynode.html
%%QT_DOCDIR%%/qtquick/qsgclipnode-members.html
%%QT_DOCDIR%%/qtquick/qsgclipnode.html
%%QT_DOCDIR%%/qtquick/qsgdynamictexture-members.html
%%QT_DOCDIR%%/qtquick/qsgdynamictexture.html
%%QT_DOCDIR%%/qtquick/qsgengine-members.html
%%QT_DOCDIR%%/qtquick/qsgengine.html
%%QT_DOCDIR%%/qtquick/qsgflatcolormaterial-members.html
%%QT_DOCDIR%%/qtquick/qsgflatcolormaterial.html
%%QT_DOCDIR%%/qtquick/qsggeometry-attribute-members.html
%%QT_DOCDIR%%/qtquick/qsggeometry-attribute.html
%%QT_DOCDIR%%/qtquick/qsggeometry-attributeset-members.html
%%QT_DOCDIR%%/qtquick/qsggeometry-attributeset.html
%%QT_DOCDIR%%/qtquick/qsggeometry-coloredpoint2d-members.html
%%QT_DOCDIR%%/qtquick/qsggeometry-coloredpoint2d.html
%%QT_DOCDIR%%/qtquick/qsggeometry-members.html
%%QT_DOCDIR%%/qtquick/qsggeometry-point2d-members.html
%%QT_DOCDIR%%/qtquick/qsggeometry-point2d.html
%%QT_DOCDIR%%/qtquick/qsggeometry-texturedpoint2d-members.html
%%QT_DOCDIR%%/qtquick/qsggeometry-texturedpoint2d.html
%%QT_DOCDIR%%/qtquick/qsggeometry.html
%%QT_DOCDIR%%/qtquick/qsggeometrynode-members.html
%%QT_DOCDIR%%/qtquick/qsggeometrynode.html
%%QT_DOCDIR%%/qtquick/qsgmaterial-members.html
%%QT_DOCDIR%%/qtquick/qsgmaterial.html
%%QT_DOCDIR%%/qtquick/qsgmaterialshader-members.html
%%QT_DOCDIR%%/qtquick/qsgmaterialshader-renderstate-members.html
%%QT_DOCDIR%%/qtquick/qsgmaterialshader-renderstate.html
%%QT_DOCDIR%%/qtquick/qsgmaterialshader.html
%%QT_DOCDIR%%/qtquick/qsgmaterialtype.html
%%QT_DOCDIR%%/qtquick/qsgnode-members.html
%%QT_DOCDIR%%/qtquick/qsgnode.html
%%QT_DOCDIR%%/qtquick/qsgopacitynode-members.html
%%QT_DOCDIR%%/qtquick/qsgopacitynode.html
%%QT_DOCDIR%%/qtquick/qsgopaquetexturematerial-members.html
%%QT_DOCDIR%%/qtquick/qsgopaquetexturematerial.html
%%QT_DOCDIR%%/qtquick/qsgsimplematerial-members.html
%%QT_DOCDIR%%/qtquick/qsgsimplematerial.html
%%QT_DOCDIR%%/qtquick/qsgsimplematerialshader-members.html
%%QT_DOCDIR%%/qtquick/qsgsimplematerialshader.html
%%QT_DOCDIR%%/qtquick/qsgsimplerectnode-members.html
%%QT_DOCDIR%%/qtquick/qsgsimplerectnode.html
%%QT_DOCDIR%%/qtquick/qsgsimpletexturenode-members.html
%%QT_DOCDIR%%/qtquick/qsgsimpletexturenode.html
%%QT_DOCDIR%%/qtquick/qsgtexture-members.html
%%QT_DOCDIR%%/qtquick/qsgtexture.html
%%QT_DOCDIR%%/qtquick/qsgtexturematerial-members.html
%%QT_DOCDIR%%/qtquick/qsgtexturematerial.html
%%QT_DOCDIR%%/qtquick/qsgtextureprovider-members.html
%%QT_DOCDIR%%/qtquick/qsgtextureprovider.html
%%QT_DOCDIR%%/qtquick/qsgtransformnode-members.html
%%QT_DOCDIR%%/qtquick/qsgtransformnode.html
%%QT_DOCDIR%%/qtquick/qsgvertexcolormaterial-members.html
%%QT_DOCDIR%%/qtquick/qsgvertexcolormaterial.html
%%QT_DOCDIR%%/qtquick/qt-labs-folderlistmodel-qmlmodule.html
%%QT_DOCDIR%%/qtquick/qt-labs-settings-qmlmodule.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-animation-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-animation-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-animation-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-animation-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-basics-animators-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-basics-color-animation-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-basics-property-animation-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-behaviors-behavior-example-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-behaviors-siderect-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-behaviors-tvtennis-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-behaviors-wigglytext-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-easing-easing-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-example.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-pathanimation-pathanimation-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-pathinterpolator-pathinterpolator-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-states-states-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-animation-states-transitions-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-beziercurve-beziercurve-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-canvas-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-canvas-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-canvas-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-clip-clip-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-example.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-quadraticcurveto-quadraticcurveto-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-roundedrect-roundedrect-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-smile-smile-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-squircle-squircle-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-tiger-tiger-js.html
%%QT_DOCDIR%%/qtquick/qtquick-canvas-tiger-tiger-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-codesamples.html
%%QT_DOCDIR%%/qtquick/qtquick-convenience-topic.html
%%QT_DOCDIR%%/qtquick/qtquick-cppextensionpoints.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-content-dial-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-content-quitbutton-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-dialcontrol-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-dialcontrol-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-dialcontrol-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-dialcontrol-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-example.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-flipable-content-card-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-flipable-example.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-flipable-flipable-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-flipable-flipable-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-example.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-painteditem-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-painteditem-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-textballoon-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-textballoon-h.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-textballoonplugin-plugin-h.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-textballoonplugin-qmldir.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-textballoons-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-scrollbar-example.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-scrollbar-main-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-scrollbar-scrollbar-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-scrollbar-scrollbar-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-tabwidget-example.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-tabwidget-main-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-tabwidget-tabwidget-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-customitems-tabwidget-tabwidget-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-calqlatr-calqlatr-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-calqlatr-calqlatr-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-calqlatr-calqlatr-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-calqlatr-calqlatr-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-calqlatr-content-button-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-calqlatr-content-calculator-js.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-calqlatr-content-display-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-calqlatr-content-numberpad-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-calqlatr-example.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-calqlatr-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-clocks-clocks-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-clocks-clocks-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-clocks-clocks-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-clocks-clocks-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-clocks-content-clock-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-clocks-example.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-clocks-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-buildbutton-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-gamecanvas-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-gameoverscreen-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-infobar-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-logic-js.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-mobs-mobbase-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-newgamescreen-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-soundeffect-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-towers-bomb-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-towers-factory-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-towers-melee-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-towers-ranged-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-content-towers-towerbase-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-example.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-maroon-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-maroon-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-maroon-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-maroon-maroon-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photosurface-example.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photosurface-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photosurface-photosurface-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photosurface-photosurface-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photosurface-photosurface-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photosurface-photosurface-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-example.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-i18n-qml-de-qm.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-i18n-qml-fr-qm.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-main-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-photoviewer-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-photoviewercore-albumdelegate-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-photoviewercore-busyindicator-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-photoviewercore-button-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-photoviewercore-editablebutton-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-photoviewercore-photodelegate-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-photoviewercore-progressbar-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-photoviewercore-rssmodel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-photoviewercore-script-script-js.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-photoviewercore-tag-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-photoviewer-qml-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-rssnews-content-busyindicator-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-rssnews-content-categorydelegate-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-rssnews-content-newsdelegate-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-rssnews-content-rssfeeds-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-rssnews-content-scrollbar-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-rssnews-example.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-rssnews-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-rssnews-rssnews-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-rssnews-rssnews-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-rssnews-rssnews-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-rssnews-rssnews-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-bbsettings-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-blackberry-settings-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-block-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-blockemitter-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-button-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-gamearea-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-levels-level0-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-levels-level1-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-levels-level2-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-levels-level3-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-levels-level4-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-levels-level5-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-levels-level6-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-levels-level7-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-levels-level8-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-levels-level9-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-levels-templatebase-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-logoanimation-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-menuemitter-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-paintemitter-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-primarypack-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-puzzleblock-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-qmldir.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-samegame-js.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-samegametext-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-settings-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-simpleblock-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-content-smoketext-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-example.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-samegame-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-samegame-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-samegame-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-samegame-samegame-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-content-button-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-content-checkbox-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-content-qmldir.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-content-settings-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-content-stockchart-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-content-stockinfo-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-content-stocklistmodel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-content-stocklistview-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-content-stockmodel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-content-stocksettingspanel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-content-stockview-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-content-windows-settings-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-example.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-stocqt-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-stocqt-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-stocqt-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-stocqt-stocqt-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-content-flipbar-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-content-lineinput-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-content-listfooter-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-content-listheader-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-content-searchdelegate-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-content-tweetdelegate-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-content-tweetsearch-js.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-content-tweetsmodel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-example.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-tweetsearch-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-tweetsearch-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-tweetsearch-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-demos-tweetsearch-tweetsearch-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-draganddrop-draganddrop-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-draganddrop-draganddrop-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-draganddrop-draganddrop-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-draganddrop-draganddrop-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-draganddrop-example.html
%%QT_DOCDIR%%/qtquick/qtquick-draganddrop-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-draganddrop-tiles-dragtile-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-draganddrop-tiles-droptile-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-draganddrop-tiles-tiles-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-draganddrop-views-gridview-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-effects-particles.html
%%QT_DOCDIR%%/qtquick/qtquick-effects-sprites.html
%%QT_DOCDIR%%/qtquick/qtquick-effects-topic.html
%%QT_DOCDIR%%/qtquick/qtquick-effects-transformations.html
%%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-draganddroptextitem-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-example.html
%%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-externaldraganddrop-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-externaldraganddrop-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-externaldraganddrop-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-externaldraganddrop-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-animatedsprite-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-borderimage-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-content-borderimageselector-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-content-imagecell-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-content-myborderimage-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-content-shadowrectangle-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-example.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-image-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-imageelements-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-imageelements-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-imageelements-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-imageelements-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-shadows-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-imageelements-spritesequence-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-imageprovider-example.html
%%QT_DOCDIR%%/qtquick/qtquick-imageprovider-imageprovider-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-imageprovider-imageprovider-example-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-imageprovider-imageprovider-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-imageprovider-imageprovider-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-imageprovider-imageprovidercore-qmldir.html
%%QT_DOCDIR%%/qtquick/qtquick-imageresponseprovider-example.html
%%QT_DOCDIR%%/qtquick/qtquick-imageresponseprovider-imageresponseprovider-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-imageresponseprovider-imageresponseprovider-example-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-imageresponseprovider-imageresponseprovider-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-imageresponseprovider-imageresponseprovider-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-imageresponseprovider-imageresponseprovidercore-qmldir.html
%%QT_DOCDIR%%/qtquick/qtquick-index.html
%%QT_DOCDIR%%/qtquick/qtquick-input-focus.html
%%QT_DOCDIR%%/qtquick/qtquick-input-mouseevents.html
%%QT_DOCDIR%%/qtquick/qtquick-input-textinput.html
%%QT_DOCDIR%%/qtquick/qtquick-input-topic.html
%%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-example.html
%%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-focus-core-contextmenu-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-focus-core-gridmenu-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-focus-core-listmenu-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-focus-core-listviewdelegate-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-focus-core-tabmenu-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-focus-focus-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-keyinteraction-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-keyinteraction-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-keyinteraction-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-keyinteraction-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-main-cpp.html
+%%QT_DOCDIR%%/qtquick/qtquick-layouts-example.html
+%%QT_DOCDIR%%/qtquick/qtquick-layouts-layouts-pro.html
+%%QT_DOCDIR%%/qtquick/qtquick-layouts-layouts-qml.html
+%%QT_DOCDIR%%/qtquick/qtquick-layouts-layouts-qmlproject.html
+%%QT_DOCDIR%%/qtquick/qtquick-layouts-layouts-qrc.html
+%%QT_DOCDIR%%/qtquick/qtquick-layouts-main-cpp.html
+%%QT_DOCDIR%%/qtquick/qtquick-layouts-qmlmodule.html
%%QT_DOCDIR%%/qtquick/qtquick-localstorage-example.html
%%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-hello-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-localstorage-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-localstorage-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-localstorage-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-localstorage-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-localstorage-qmlmodule.html
%%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-abstractitemmodel-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-abstractitemmodel-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-example.html
%%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-model-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-model-h.html
%%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-view-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-dataobject-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-dataobject-h.html
%%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-example.html
%%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-objectlistmodel-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-objectlistmodel-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-view-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-models-stringlistmodel-example.html
%%QT_DOCDIR%%/qtquick/qtquick-models-stringlistmodel-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-models-stringlistmodel-stringlistmodel-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-models-stringlistmodel-stringlistmodel-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-models-stringlistmodel-view-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-modelviewsdata-cppmodels.html
%%QT_DOCDIR%%/qtquick/qtquick-modelviewsdata-modelview.html
%%QT_DOCDIR%%/qtquick/qtquick-modelviewsdata-topic.html
%%QT_DOCDIR%%/qtquick/qtquick-module.html
%%QT_DOCDIR%%/qtquick/qtquick-mousearea-example.html
%%QT_DOCDIR%%/qtquick/qtquick-mousearea-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-mousearea-mousearea-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-mousearea-mousearea-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-mousearea-mousearea-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-mousearea-mousearea-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-mousearea-mousearea-wheel-example-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-affectors-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-affectors-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-affectors-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-affectors-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-age-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-attractor-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-customaffector-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-friction-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-gravity-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-greybutton-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-groupgoal-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-move-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-spritegoal-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-turbulence-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-wander-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-example.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-content-blurparticles-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-content-fragmentshader-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-content-imagecolors-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-customparticle-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-customparticle-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-customparticle-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-customparticle-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-example.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-burstandpulse-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-customemitter-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-emitmask-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-maximumemitted-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-shapeanddirection-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-trailemitter-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-velocityfrommotion-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-emitters-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-emitters-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-emitters-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-emitters-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-example.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-allatonce-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-colored-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-colortable-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-deformation-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-rotation-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-sharing-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-sprites-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-example.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-imageparticle-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-imageparticle-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-imageparticle-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-imageparticle-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-performance.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-qmlmodule.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-system-content-dynamiccomparison-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-system-content-dynamicemitters-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-system-content-multiplepainters-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-system-content-startstop-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-system-content-timedgroupchanges-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-system-example.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-system-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-system-system-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-system-system-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-system-system-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-particles-system-system-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-positioners-example.html
%%QT_DOCDIR%%/qtquick/qtquick-positioners-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-positioners-positioners-attachedproperties-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-positioners-positioners-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-positioners-positioners-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-positioners-positioners-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-positioners-positioners-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-positioners-positioners-transitions-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-positioning-anchors.html
%%QT_DOCDIR%%/qtquick/qtquick-positioning-layouts.html
%%QT_DOCDIR%%/qtquick/qtquick-positioning-righttoleft.html
%%QT_DOCDIR%%/qtquick/qtquick-positioning-topic.html
%%QT_DOCDIR%%/qtquick/qtquick-qmlmodule.html
%%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-accessibility-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-accessibility-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-accessibility-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-content-button-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-content-checkbox-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-content-slider-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-example.html
%%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-quick-accessibility-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-example.html
%%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-quickwidget-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-quickwidget-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-rotatingsquare-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-cuberenderer-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-cuberenderer-h.html
%%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-demo-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-example.html
%%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-rendercontrol-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-rendercontrol-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-window-multithreaded-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-window-multithreaded-h.html
%%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-window-singlethreaded-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-window-singlethreaded-h.html
%%QT_DOCDIR%%/qtquick/qtquick-righttoleft-example.html
%%QT_DOCDIR%%/qtquick/qtquick-righttoleft-layoutdirection-layoutdirection-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-righttoleft-layoutdirection-layoutdirection-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-righttoleft-layoutmirroring-layoutmirroring-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-righttoleft-layoutmirroring-layoutmirroring-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-righttoleft-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-righttoleft-righttoleft-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-righttoleft-righttoleft-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-righttoleft-righttoleft-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-righttoleft-righttoleft-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-righttoleft-textalignment-textalignment-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-righttoleft-textalignment-textalignment-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-beziercurve-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-beziercurve-h.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-customgeometry-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-customgeometry-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-example.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-main-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-example.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-graph-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-graph-h.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-graph-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-graph-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-gridnode-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-gridnode-h.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-linenode-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-linenode-h.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-main-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-noisynode-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-noisynode-h.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-materials.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-nodes.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-example.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-main-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-openglunderqml-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-openglunderqml-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-squircle-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-squircle-h.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-simplematerial-example.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-simplematerial-main-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-simplematerial-simplematerial-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-simplematerial-simplematerial-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-simplematerial-simplematerial-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-example.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-fboinsgrenderer-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-fboinsgrenderer-h.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-main-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-textureinsgnode-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-textureinsgnode-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-error-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-example.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-main-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-textureinthread-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-textureinthread-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-threadrenderer-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-threadrenderer-h.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-example.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-main-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-twotextureproviders-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-twotextureproviders-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-xorblender-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-xorblender-h.html
%%QT_DOCDIR%%/qtquick/qtquick-shadereffects-content-slider-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-shadereffects-example.html
%%QT_DOCDIR%%/qtquick/qtquick-shadereffects-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-shadereffects-shadereffects-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-shadereffects-shadereffects-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-shadereffects-shadereffects-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-shadereffects-shadereffects-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-statesanimations-animations.html
%%QT_DOCDIR%%/qtquick/qtquick-statesanimations-behaviors.html
%%QT_DOCDIR%%/qtquick/qtquick-statesanimations-states.html
%%QT_DOCDIR%%/qtquick/qtquick-statesanimations-topic.html
%%QT_DOCDIR%%/qtquick/qtquick-text-example.html
%%QT_DOCDIR%%/qtquick/qtquick-text-fonts-availablefonts-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-text-fonts-banner-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-text-fonts-fonts-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-text-fonts-hello-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-text-imgtag-imgtag-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-text-imgtag-textwithimage-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-text-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-text-styledtext-layout-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-text-text-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-text-text-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-text-text-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-text-text-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-text-textselection-textselection-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-text-validator.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-example.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-threadedlistmodel-dataloader-js.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-threadedlistmodel-example.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-threadedlistmodel-threadedlistmodel-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-threadedlistmodel-timedisplay-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-threading-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-threading-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-threading-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-threading-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-workerscript-spinner-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-workerscript-workerscript-js.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-workerscript-workerscript-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-threading-workerscript-workerscript-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-example.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-flickable-basic-flickable-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-flickable-content-panel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-flickable-corkboards-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-multipointtouch-bearwhack-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-multipointtouch-content-augmentedtouchpoint-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-multipointtouch-content-bearwhackparticlesystem-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-multipointtouch-content-particleflame-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-multipointtouch-multiflame-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-pincharea-flickresize-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-touchinteraction-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-touchinteraction-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-touchinteraction-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-touchinteraction-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview1-dynamicview-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview1-dynamicview1-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview1-example.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview1-petsmodel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview2-dynamicview-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview2-dynamicview2-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview2-example.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview2-petsmodel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview3-dynamicview-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview3-dynamicview3-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview3-example.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview3-petsmodel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview4-dynamicview-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview4-dynamicview4-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview4-example.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview4-listselector-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview4-petsmodel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame1-block-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame1-button-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame1-example.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame1-samegame-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame1-samegame1-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame2-block-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame2-button-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame2-example.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame2-samegame-js.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame2-samegame-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame2-samegame2-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-block-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-button-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-dialog-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-example.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-samegame-js.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-samegame-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-samegame3-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-content-boomblock-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-content-button-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-content-dialog-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-content-samegame-js.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-example.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-highscores-score-data-xml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-samegame-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-samegame4-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-views-example.html
%%QT_DOCDIR%%/qtquick/qtquick-views-gridview-gridview-example-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-listview-content-petsmodel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-listview-content-pressandholdbutton-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-listview-content-recipesmodel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-listview-content-smalltext-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-listview-content-textbutton-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-listview-content-togglebutton-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-listview-displaymargin-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-listview-dynamiclist-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-listview-expandingdelegates-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-listview-highlight-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-listview-highlightranges-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-listview-sections-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-views-objectmodel-objectmodel-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-package-delegate-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-package-view-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-parallax-content-clock-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-parallax-content-parallaxview-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-parallax-content-pics-home-page-svg.html
%%QT_DOCDIR%%/qtquick/qtquick-views-parallax-content-quitbutton-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-parallax-content-smiley-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-parallax-parallax-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-pathview-pathview-example-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-views-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-views-views-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-views-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-views-views-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-views-visualdatamodel-dragselection-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-visualdatamodel-slideshow-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-views-visualdatamodel-visualdatamodel-qmlproject.html
%%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-coordinates.html
%%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-scenegraph-renderer.html
%%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-scenegraph.html
%%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-topic.html
%%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-visualparent.html
%%QT_DOCDIR%%/qtquick/qtquick-visualtypes-topic.html
%%QT_DOCDIR%%/qtquick/qtquick-window-example.html
%%QT_DOCDIR%%/qtquick/qtquick-window-main-cpp.html
%%QT_DOCDIR%%/qtquick/qtquick-window-qmlmodule.html
%%QT_DOCDIR%%/qtquick/qtquick-window-resources-icon-svg.html
%%QT_DOCDIR%%/qtquick/qtquick-window-screeninfo-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-window-splash-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-window-window-pro.html
%%QT_DOCDIR%%/qtquick/qtquick-window-window-qml.html
%%QT_DOCDIR%%/qtquick/qtquick-window-window-qrc.html
%%QT_DOCDIR%%/qtquick/qtquick-xmllistmodel-qmlmodule.html
%%QT_DOCDIR%%/qtquick/qtquick.index
%%QT_DOCDIR%%/qtquick/qtquick.qhp
%%QT_DOCDIR%%/qtquick/qtquick.qhp.sha1
%%QT_DOCDIR%%/qtquick/qtquick.tags
+%%QT_DOCDIR%%/qtquick/qtquicklayouts-index.html
+%%QT_DOCDIR%%/qtquick/qtquicklayouts-overview.html
%%QT_DOCDIR%%/qtquick/qtquickwidgets-module.html
%%QT_DOCDIR%%/qtquick/qttest-qmlmodule.html
%%QT_DOCDIR%%/qtquick/style/offline-simple.css
%%QT_DOCDIR%%/qtquick/style/offline.css
%%QT_DOCDIR%%/qtquickcontrols.qch
%%QT_DOCDIR%%/qtquickcontrols/applicationwindow.html
%%QT_DOCDIR%%/qtquickcontrols/controls.html
%%QT_DOCDIR%%/qtquickcontrols/controlsstyling.html
%%QT_DOCDIR%%/qtquickcontrols/examples-manifest.xml
%%QT_DOCDIR%%/qtquickcontrols/images/applicationwindow.png
%%QT_DOCDIR%%/qtquickcontrols/images/arrow_bc.png
%%QT_DOCDIR%%/qtquickcontrols/images/bgrContent.png
%%QT_DOCDIR%%/qtquickcontrols/images/btn_next.png
%%QT_DOCDIR%%/qtquickcontrols/images/btn_prev.png
%%QT_DOCDIR%%/qtquickcontrols/images/bullet_dn.png
%%QT_DOCDIR%%/qtquickcontrols/images/bullet_sq.png
%%QT_DOCDIR%%/qtquickcontrols/images/busyindicator.png
%%QT_DOCDIR%%/qtquickcontrols/images/button.png
%%QT_DOCDIR%%/qtquickcontrols/images/calendar.png
%%QT_DOCDIR%%/qtquickcontrols/images/calendarstyle-components-week-numbers.png
%%QT_DOCDIR%%/qtquickcontrols/images/checkbox.png
%%QT_DOCDIR%%/qtquickcontrols/images/circulargauge-angles.png
%%QT_DOCDIR%%/qtquickcontrols/images/circulargauge-needle-example-2.png
%%QT_DOCDIR%%/qtquickcontrols/images/circulargauge-needle.png
%%QT_DOCDIR%%/qtquickcontrols/images/circulargauge-reversed.png
%%QT_DOCDIR%%/qtquickcontrols/images/circulargauge-tickmark-indices-values.png
%%QT_DOCDIR%%/qtquickcontrols/images/combobox.png
%%QT_DOCDIR%%/qtquickcontrols/images/gauge-minorTickmark-example.png
%%QT_DOCDIR%%/qtquickcontrols/images/gauge-temperature.png
%%QT_DOCDIR%%/qtquickcontrols/images/gauge-tickmark-example.png
%%QT_DOCDIR%%/qtquickcontrols/images/groupbox.png
%%QT_DOCDIR%%/qtquickcontrols/images/home.png
%%QT_DOCDIR%%/qtquickcontrols/images/ico_note.png
%%QT_DOCDIR%%/qtquickcontrols/images/ico_note_attention.png
%%QT_DOCDIR%%/qtquickcontrols/images/ico_out.png
%%QT_DOCDIR%%/qtquickcontrols/images/label.png
%%QT_DOCDIR%%/qtquickcontrols/images/logo.png
%%QT_DOCDIR%%/qtquickcontrols/images/menu.png
%%QT_DOCDIR%%/qtquickcontrols/images/menubar-action.png
%%QT_DOCDIR%%/qtquickcontrols/images/menubar.png
%%QT_DOCDIR%%/qtquickcontrols/images/piemenu-menuitem-example.png
%%QT_DOCDIR%%/qtquickcontrols/images/progressbar.png
-%%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols-example-basiclayouts.png
%%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols-example-calendar.png
%%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols-example-filesystembrowser.png
%%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols-example-gallery-android-dark.png
%%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols-example-gallery-android.png
%%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols-example-gallery-osx.png
%%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols-example-styles.png
%%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols-example-tableview.png
%%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols-example-text.png
%%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols-example-touch.png
%%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols-example-uiforms.png
%%QT_DOCDIR%%/qtquickcontrols/images/radiobutton.png
%%QT_DOCDIR%%/qtquickcontrols/images/scrollview.png
%%QT_DOCDIR%%/qtquickcontrols/images/slider.png
%%QT_DOCDIR%%/qtquickcontrols/images/spinbox.png
%%QT_DOCDIR%%/qtquickcontrols/images/splitview.png
%%QT_DOCDIR%%/qtquickcontrols/images/square-blue.png
%%QT_DOCDIR%%/qtquickcontrols/images/square-green.png
%%QT_DOCDIR%%/qtquickcontrols/images/square-red.png
%%QT_DOCDIR%%/qtquickcontrols/images/square-white.png
%%QT_DOCDIR%%/qtquickcontrols/images/square-yellow.png
%%QT_DOCDIR%%/qtquickcontrols/images/stackview.png
%%QT_DOCDIR%%/qtquickcontrols/images/styling-circulargauge-background-example.png
%%QT_DOCDIR%%/qtquickcontrols/images/styling-circulargauge-knob-example.png
%%QT_DOCDIR%%/qtquickcontrols/images/styling-circulargauge-minorTickmark-example.png
%%QT_DOCDIR%%/qtquickcontrols/images/styling-circulargauge-needle-example.png
%%QT_DOCDIR%%/qtquickcontrols/images/styling-circulargauge-tickmark-example.png
%%QT_DOCDIR%%/qtquickcontrols/images/styling-circulargauge-tickmarkLabel-example.png
%%QT_DOCDIR%%/qtquickcontrols/images/styling-gauge-font-size.png
%%QT_DOCDIR%%/qtquickcontrols/images/styling-gauge-foreground.png
%%QT_DOCDIR%%/qtquickcontrols/images/styling-gauge-minorTickmark.png
%%QT_DOCDIR%%/qtquickcontrols/images/styling-gauge-tickmark.png
%%QT_DOCDIR%%/qtquickcontrols/images/styling-gauge-valueBar.png
%%QT_DOCDIR%%/qtquickcontrols/images/switch.png
%%QT_DOCDIR%%/qtquickcontrols/images/tableview.png
%%QT_DOCDIR%%/qtquickcontrols/images/tabview.png
%%QT_DOCDIR%%/qtquickcontrols/images/textarea.png
%%QT_DOCDIR%%/qtquickcontrols/images/textfield.png
%%QT_DOCDIR%%/qtquickcontrols/images/toolbar.png
%%QT_DOCDIR%%/qtquickcontrols/images/treeview.png
%%QT_DOCDIR%%/qtquickcontrols/images/tumbler-flat-style.png
%%QT_DOCDIR%%/qtquickcontrols/images/tumbler.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/calendar/images/eventindicator.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/styles/images/bubble.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/styles/images/button-pressed.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/styles/images/button.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/styles/images/progress-background.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/styles/images/progress-fill.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/styles/images/slider-handle.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/styles/images/tab.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/styles/images/tab_selected.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/styles/images/textfield.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/touch/images/button_default.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/touch/images/button_pressed.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/touch/images/navigation_next_item.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/touch/images/navigation_previous_item.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/touch/images/tab_selected.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/touch/images/tabs_standard.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/touch/images/textinput.png
%%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/touch/images/toolbar.png
%%QT_DOCDIR%%/qtquickcontrols/menus.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-action-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-action.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-applicationwindow-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-applicationwindow.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-busyindicator-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-busyindicator.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-button-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-button.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-calendar-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-calendar.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-checkbox-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-checkbox.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-combobox-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-combobox.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-exclusivegroup-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-exclusivegroup.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-groupbox-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-groupbox.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-label-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-label.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-menu-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-menu.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-menubar-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-menubar.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-menuitem-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-menuitem.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-menuseparator-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-menuseparator.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-progressbar-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-progressbar.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-radiobutton-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-radiobutton.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-scrollview-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-scrollview.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-slider-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-slider.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-spinbox-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-spinbox.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-splitview-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-splitview.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-stack-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-stack.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-stackview-members.html
@comment %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-stackview-obsolete.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-stackview.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-stackviewdelegate-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-stackviewdelegate.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-statusbar-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-statusbar.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-applicationwindowstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-applicationwindowstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-busyindicatorstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-busyindicatorstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-buttonstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-buttonstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-calendarstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-calendarstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-checkboxstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-checkboxstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-circulargaugestyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-circulargaugestyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-comboboxstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-comboboxstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-delaybuttonstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-delaybuttonstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-dialstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-dialstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-gaugestyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-gaugestyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-menubarstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-menubarstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-menustyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-menustyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-piemenustyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-piemenustyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-progressbarstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-progressbarstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-radiobuttonstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-radiobuttonstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-scrollviewstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-scrollviewstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-sliderstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-sliderstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-spinboxstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-spinboxstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-statusbarstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-statusbarstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-statusindicatorstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-statusindicatorstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-switchstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-switchstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-tableviewstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-tableviewstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-tabviewstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-tabviewstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-textareastyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-textareastyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-textfieldstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-textfieldstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-togglebuttonstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-togglebuttonstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-toolbarstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-toolbarstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-treeviewstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-treeviewstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-tumblerstyle-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-styles-tumblerstyle.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-switch-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-switch.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-tab-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-tab.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-tableview-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-tableview.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-tableviewcolumn-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-tableviewcolumn.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-tabview-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-tabview.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-textarea-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-textarea.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-textfield-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-textfield.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-toolbar-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-toolbar.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-toolbutton-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-toolbutton.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-treeview-members.html
%%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls-treeview.html
%%QT_DOCDIR%%/qtquickcontrols/qtquick-controls-qmlmodule.html
%%QT_DOCDIR%%/qtquickcontrols/qtquick-controls-styles-qmlmodule.html
-%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-basiclayouts-basiclayouts-pro.html
-%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-basiclayouts-basiclayouts-qmlproject.html
-%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-basiclayouts-example.html
-%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-basiclayouts-main-qml.html
-%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-basiclayouts-resources-qrc.html
-%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-basiclayouts-src-main-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-calendar-calendar-pro.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-calendar-example.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-calendar-qml-main-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-calendar-resources-qrc.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-calendar-src-event-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-calendar-src-event-h.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-calendar-src-main-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-calendar-src-sqleventmodel-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-calendar-src-sqleventmodel-h.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-examples.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-filesystembrowser-example.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-filesystembrowser-filesystembrowser-pro.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-filesystembrowser-main-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-filesystembrowser-main-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-filesystembrowser-qml-qrc.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-example.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-gallery-pro.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-gallery-qrc.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-main-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-main-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-qml-android-ui-js.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-qml-buttonpage-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-qml-inputpage-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-qml-ios-ui-js.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-qml-osx-ui-js.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-qml-progresspage-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-qml-ui-js.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-index.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-overview.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-platformnotes.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-styles-example.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-styles-main-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-styles-main-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-styles-styles-pro.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-styles-styles-qrc.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-tableview-example.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-tableview-main-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-tableview-src-main-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-tableview-src-sortfilterproxymodel-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-tableview-src-sortfilterproxymodel-h.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-tableview-tableview-pro.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-tableview-tableview-qrc.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-example.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-qml-main-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-qml-toolbarseparator-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-resources-qrc.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-src-documenthandler-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-src-documenthandler-h.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-src-main-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-texteditor-pro.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-content-androiddelegate-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-content-buttonpage-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-content-listpage-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-content-progressbarpage-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-content-sliderpage-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-content-tabbarpage-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-content-textinputpage-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-example.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-main-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-resources-qrc.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-src-main-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-touch-pro.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-touch-touch-qmlproject.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-example.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-main-cpp.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-main-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-mainform-ui-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-qml-customermodel-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-qml-history-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-qml-historyform-ui-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-qml-notes-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-qml-notesform-ui-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-qml-settings-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-qml-settingsform-ui-qml.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-uiforms-pro.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-uiforms-uiforms-qrc.html
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols.index
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols.qhp
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols.qhp.sha1
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols.tags
%%QT_DOCDIR%%/qtquickcontrols/qtquickcontrolsstyles-index.html
%%QT_DOCDIR%%/qtquickcontrols/style/offline-simple.css
%%QT_DOCDIR%%/qtquickcontrols/style/offline.css
%%QT_DOCDIR%%/qtquickcontrols/styling-circulargauge.html
%%QT_DOCDIR%%/qtquickcontrols/styling-gauge.html
%%QT_DOCDIR%%/qtquickcontrols/stylingtutorials.html
%%QT_DOCDIR%%/qtquickcontrols/views.html
%%QT_DOCDIR%%/qtquickcontrols/viewsstyling.html
+%%QT_DOCDIR%%/qtquickcontrols2.qch
+%%QT_DOCDIR%%/qtquickcontrols2/examples-manifest.xml
+%%QT_DOCDIR%%/qtquickcontrols2/images/arrow_bc.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/bgrContent.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/btn_next.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/btn_prev.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/bullet_dn.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/bullet_sq.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/home.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/ico_note.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/ico_note_attention.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/ico_out.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/logo.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtlabscalendar-dayofweekrow-layout.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtlabscalendar-dayofweekrow.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtlabscalendar-monthgrid-layout.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtlabscalendar-monthgrid.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtlabscalendar-weeknumbercolumn-layout.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtlabscalendar-weeknumbercolumn.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-applicationwindow-wireframe.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-busyindicator-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-busyindicator.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-busyindicator.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-button-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-button-flat.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-button-highlighted.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-button.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-checkbox-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-checkbox-tristate.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-checkbox.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-checkbox.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-checkdelegate-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-checkdelegate.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-combobox-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-combobox.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-control.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-customize-buttons.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-default.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-dial-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-dial-no-wrap.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-dial-wrap.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-dial.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-drawer-expanded-wireframe.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-drawer-wireframe.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-frame-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-frame.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-gallery-drawer.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-gallery-menu.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-gallery-welcome.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-groupbox-checkable.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-groupbox-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-groupbox.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-itemdelegate-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-itemdelegate.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-label-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-label.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-material-attributes.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-material-button.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-material-dark.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-material.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-menu.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-page-wireframe.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-pageindicator-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-pageindicator.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-pane-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-pane.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-popup-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-popup-settings.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-popup-transformorigin.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-progressbar-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-progressbar-disabled.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-progressbar-indeterminate.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-progressbar-normal.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-radiobutton-checked.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-radiobutton-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-radiobutton-disabled.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-radiobutton-focused.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-radiobutton-normal.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-radiobutton.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-radiodelegate-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-radiodelegate.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-rangeslider-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-rangeslider.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-scrollbar-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-scrollbar.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-scrollindicator-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-scrollindicator.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-slider-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-slider-disabled.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-slider-focused.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-slider-normal.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-slider.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-slider.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-spinbox-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-spinbox-double.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-spinbox-textual.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-spinbox.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-stackview-wireframe.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-swipedelegate-behind.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-swipedelegate-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-swipedelegate-leading-trailing.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-swipedelegate.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-swipeview-wireframe.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-switch-checked.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-switch-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-switch-disabled.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-switch-focused.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-switch-normal.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-switch.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-switch.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-switchdelegate-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-switchdelegate.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-tabbar-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-tabbar-flickable.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-tabbar-wireframe.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-tabbutton.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-textarea-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-textarea-flickable.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-textarea.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-textfield-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-textfield-disabled.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-textfield-focused.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-textfield-normal.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-textfield.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-toolbar-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-toolbar.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-toolbutton-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-toolbutton.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-tooltip-slider.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-tooltip.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-tumbler-custom.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-tumbler-wrap.gif
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-tumbler.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-universal-attributes.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-universal-button.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-universal-dark.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/qtquickcontrols2-universal.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/+material/back.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/+material/back@2x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/+material/back@3x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/+material/back@4x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/+material/drawer.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/+material/drawer@2x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/+material/drawer@3x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/+material/drawer@4x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/+material/menu.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/+material/menu@2x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/+material/menu@3x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/+material/menu@4x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/arrow.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/arrow@2x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/arrow@3x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/arrow@4x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/arrows.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/arrows@2x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/arrows@3x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/arrows@4x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/back.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/back@2x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/back@3x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/back@4x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/drawer.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/drawer@2x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/drawer@3x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/drawer@4x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/menu.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/menu@2x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/menu@3x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/menu@4x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/qt-logo.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/qt-logo@2x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/qt-logo@3x.png
+%%QT_DOCDIR%%/qtquickcontrols2/images/used-in-examples/gallery/images/qt-logo@4x.png
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qt-labs-calendar2-calendar-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qt-labs-calendar2-calendar.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qt-labs-calendar2-calendarmodel-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qt-labs-calendar2-calendarmodel.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qt-labs-calendar2-dayofweekrow-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qt-labs-calendar2-dayofweekrow.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qt-labs-calendar2-monthgrid-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qt-labs-calendar2-monthgrid.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qt-labs-calendar2-weeknumbercolumn-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qt-labs-calendar2-weeknumbercolumn.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-abstractbutton-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-abstractbutton.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-applicationwindow-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-applicationwindow.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-busyindicator-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-busyindicator.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-button-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-button.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-buttongroup-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-buttongroup.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-checkbox-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-checkbox.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-checkdelegate-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-checkdelegate.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-combobox-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-combobox.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-container-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-container.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-control-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-control.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-dial-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-dial.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-drawer-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-drawer.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-frame-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-frame.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-groupbox-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-groupbox.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-itemdelegate-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-itemdelegate.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-label-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-label.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-menu-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-menu.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-menuitem-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-menuitem.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-page-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-page.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-pageindicator-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-pageindicator.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-pane-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-pane.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-popup-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-popup.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-progressbar-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-progressbar.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-radiobutton-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-radiobutton.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-radiodelegate-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-radiodelegate.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-rangeslider-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-rangeslider.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-scrollbar-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-scrollbar.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-scrollindicator-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-scrollindicator.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-slider-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-slider.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-spinbox-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-spinbox.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-stackview-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-stackview.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-swipedelegate-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-swipedelegate.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-swipeview-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-swipeview.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-switch-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-switch.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-switchdelegate-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-switchdelegate.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-tabbar-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-tabbar.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-tabbutton-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-tabbutton.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-textarea-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-textarea.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-textfield-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-textfield.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-toolbar-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-toolbar.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-toolbutton-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-toolbutton.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-tooltip-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-tooltip.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-tumbler-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qml-qtquick-controls2-tumbler.html
+%%QT_DOCDIR%%/qtquickcontrols2/qquickstyle-members.html
+%%QT_DOCDIR%%/qtquickcontrols2/qquickstyle.html
+%%QT_DOCDIR%%/qtquickcontrols2/qt-labs-calendar2-qmlmodule.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtlabscalendar-index.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquick-controls2-qmlmodule.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquick-templates2-qmlmodule.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-buttons.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter1-settingup-chapter1-settingup-pro.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter1-settingup-main-cpp.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter1-settingup-main-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter1-settingup-qml-qrc.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter2-lists-chapter2-lists-pro.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter2-lists-main-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter2-lists-qml-qrc.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter3-navigation-chapter3-navigation-pro.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter3-navigation-contactpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter3-navigation-conversationpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter3-navigation-main-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter3-navigation-qml-qrc.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter4-models-chapter4-models-pro.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter4-models-contactpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter4-models-conversationpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter4-models-main-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter4-models-qml-qrc.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter4-models-sqlcontactmodel-cpp.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter4-models-sqlcontactmodel-h.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter4-models-sqlconversationmodel-cpp.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter4-models-sqlconversationmodel-h.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter5-styling-chapter5-styling-pro.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter5-styling-chattoolbar-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter5-styling-contactpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter5-styling-conversationpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter5-styling-main-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter5-styling-material-chattoolbar-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter5-styling-qml-qrc.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter5-styling-sqlcontactmodel-cpp.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter5-styling-sqlcontactmodel-h.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter5-styling-sqlconversationmodel-cpp.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chapter5-styling-sqlconversationmodel-h.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-chattutorial-pro.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-example.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-chattutorial-shared-shared-qrc.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-containers.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-customize.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-default.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-delegates.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-deployment.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-differences.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-examples.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-fileselectors.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-example.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-gallery-cpp.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-gallery-pro.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-gallery-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-gallery-qrc.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-busyindicatorpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-buttonpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-checkboxpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-comboboxpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-delegatepage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-dialpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-drawerpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-framepage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-groupboxpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-menupage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-pageindicatorpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-popuppage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-progressbarpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-radiobuttonpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-rangesliderpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-scrollablepage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-scrollbarpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-scrollindicatorpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-sliderpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-spinboxpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-stackviewpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-swipeviewpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-switchpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-tabbarpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-textareapage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-textfieldpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-tooltippage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gallery-pages-tumblerpage-qml.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-gettingstarted.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-guidelines.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-highdpi.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-index.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-indicators.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-input.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-material.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-menus.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-module.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-navigation.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-popups.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-styles.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2-universal.html
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2.index
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2.qhp
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2.qhp.sha1
+%%QT_DOCDIR%%/qtquickcontrols2/qtquickcontrols2.tags
+%%QT_DOCDIR%%/qtquickcontrols2/qtquicktemplates2-index.html
+%%QT_DOCDIR%%/qtquickcontrols2/style/offline-simple.css
+%%QT_DOCDIR%%/qtquickcontrols2/style/offline.css
%%QT_DOCDIR%%/qtquickdialogs.qch
%%QT_DOCDIR%%/qtquickdialogs/examples-manifest.xml
%%QT_DOCDIR%%/qtquickdialogs/images/arrow_bc.png
%%QT_DOCDIR%%/qtquickdialogs/images/bgrContent.png
%%QT_DOCDIR%%/qtquickdialogs/images/btn_next.png
%%QT_DOCDIR%%/qtquickdialogs/images/btn_prev.png
%%QT_DOCDIR%%/qtquickdialogs/images/bullet_dn.png
%%QT_DOCDIR%%/qtquickdialogs/images/bullet_sq.png
%%QT_DOCDIR%%/qtquickdialogs/images/critical.png
%%QT_DOCDIR%%/qtquickdialogs/images/home.png
%%QT_DOCDIR%%/qtquickdialogs/images/ico_note.png
%%QT_DOCDIR%%/qtquickdialogs/images/ico_note_attention.png
%%QT_DOCDIR%%/qtquickdialogs/images/ico_out.png
%%QT_DOCDIR%%/qtquickdialogs/images/information.png
%%QT_DOCDIR%%/qtquickdialogs/images/logo.png
%%QT_DOCDIR%%/qtquickdialogs/images/question.png
%%QT_DOCDIR%%/qtquickdialogs/images/replacefile.png
%%QT_DOCDIR%%/qtquickdialogs/images/systemdialogs-example.jpg
%%QT_DOCDIR%%/qtquickdialogs/images/warning.png
%%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-colordialog-members.html
%%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-colordialog.html
%%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-dialog-members.html
%%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-dialog.html
%%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-filedialog-members.html
%%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-filedialog.html
%%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-fontdialog-members.html
%%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-fontdialog.html
%%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-messagedialog-members.html
%%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-messagedialog.html
%%QT_DOCDIR%%/qtquickdialogs/qtquick-dialogs-qmlmodule.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialog-examples.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-index.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-colordialogs-qml.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-customdialogs-qml.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-example.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-filedialogs-qml.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-fontdialogs-qml.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-main-cpp.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-messagedialogs-qml.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-systemdialogs-pro.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-systemdialogs-qml.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-systemdialogs-qrc.html
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs.index
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs.qhp
%%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs.qhp.sha1
%%QT_DOCDIR%%/qtquickdialogs/style/offline-simple.css
%%QT_DOCDIR%%/qtquickdialogs/style/offline.css
%%QT_DOCDIR%%/qtquickextras.qch
%%QT_DOCDIR%%/qtquickextras/examples-manifest.xml
%%QT_DOCDIR%%/qtquickextras/images/arrow_bc.png
%%QT_DOCDIR%%/qtquickextras/images/bgrContent.png
%%QT_DOCDIR%%/qtquickextras/images/btn_next.png
%%QT_DOCDIR%%/qtquickextras/images/btn_prev.png
%%QT_DOCDIR%%/qtquickextras/images/bullet_dn.png
%%QT_DOCDIR%%/qtquickextras/images/bullet_sq.png
%%QT_DOCDIR%%/qtquickextras/images/circulargauge.png
%%QT_DOCDIR%%/qtquickextras/images/delaybutton-activated.png
%%QT_DOCDIR%%/qtquickextras/images/delaybutton-progress.png
%%QT_DOCDIR%%/qtquickextras/images/delaybutton.png
%%QT_DOCDIR%%/qtquickextras/images/dial.png
%%QT_DOCDIR%%/qtquickextras/images/gauge.png
%%QT_DOCDIR%%/qtquickextras/images/home.png
%%QT_DOCDIR%%/qtquickextras/images/ico_note.png
%%QT_DOCDIR%%/qtquickextras/images/ico_note_attention.png
%%QT_DOCDIR%%/qtquickextras/images/ico_out.png
%%QT_DOCDIR%%/qtquickextras/images/logo.png
%%QT_DOCDIR%%/qtquickextras/images/piemenu-boundingItem-example.png
%%QT_DOCDIR%%/qtquickextras/images/piemenu-boundingItem-null-example.png
%%QT_DOCDIR%%/qtquickextras/images/piemenu.png
%%QT_DOCDIR%%/qtquickextras/images/qtquickextras-example-dashboard.png
%%QT_DOCDIR%%/qtquickextras/images/qtquickextras-example-flat.png
%%QT_DOCDIR%%/qtquickextras/images/qtquickextras-example-gallery.png
%%QT_DOCDIR%%/qtquickextras/images/statusindicator-active.png
%%QT_DOCDIR%%/qtquickextras/images/statusindicator-green.png
%%QT_DOCDIR%%/qtquickextras/images/statusindicator-inactive.png
%%QT_DOCDIR%%/qtquickextras/images/togglebutton-checked.png
%%QT_DOCDIR%%/qtquickextras/images/togglebutton-unchecked.png
%%QT_DOCDIR%%/qtquickextras/images/tumbler.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/dashboard/images/fuel-icon.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/dashboard/images/temperature-icon.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-bw-normal.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-bw-pressed.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-image-bw.jpg
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-image-rgb.jpg
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-image-sepia.jpg
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-rgb-normal.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-rgb-pressed.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-sepia-normal.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-sepia-pressed.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/background-light.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/background.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/center-light.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/center.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/icon-back.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/icon-go.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/icon-settings.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/info.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/needle-light.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/needle.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/qt-logo.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/zoom_in.png
%%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/zoom_out.png
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-circulargauge-members.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-circulargauge.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-delaybutton-members.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-delaybutton.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-dial-members.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-dial.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-gauge-members.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-gauge.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-picture-members.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-picture.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-piemenu-members.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-piemenu-obsolete.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-piemenu.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-statusindicator-members.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-statusindicator-obsolete.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-statusindicator.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-togglebutton-members.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-togglebutton.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-tumbler-members.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-tumbler.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-tumblercolumn-members.html
%%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-tumblercolumn.html
%%QT_DOCDIR%%/qtquickextras/qtquick-extras-qmlmodule.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-dashboard-pro.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-dashboard-qrc.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-example.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-main-cpp.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-qml-dashboard-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-qml-dashboardgaugestyle-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-qml-icongaugestyle-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-qml-tachometerstyle-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-qml-turnindicator-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-qml-valuesource-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-examples.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-content-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-example.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-flat-pro.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-flat-qrc.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-main-cpp.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-main-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-settingsicon-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-example.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-gallery-pro.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-gallery-qrc.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-main-cpp.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-blackbuttonbackground-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-blackbuttonstyle-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-circulargaugedarkstyle-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-circulargaugedefaultstyle-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-circulargaugelightstyle-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-circulargaugeview-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-controllabel-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-controlview-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-controlviewtoolbar-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-customizerlabel-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-customizerslider-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-customizerswitch-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-flickablemoreindicator-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-gallery-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-piemenucontrolview-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-piemenudarkstyle-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-piemenudefaultstyle-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-stylepicker-qml.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-index.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras-overview.html
%%QT_DOCDIR%%/qtquickextras/qtquickextras.index
%%QT_DOCDIR%%/qtquickextras/qtquickextras.qhp
%%QT_DOCDIR%%/qtquickextras/qtquickextras.qhp.sha1
%%QT_DOCDIR%%/qtquickextras/style/offline-simple.css
%%QT_DOCDIR%%/qtquickextras/style/offline.css
-%%QT_DOCDIR%%/qtquicklayouts.qch
-%%QT_DOCDIR%%/qtquicklayouts/images/arrow_bc.png
-%%QT_DOCDIR%%/qtquicklayouts/images/bgrContent.png
-%%QT_DOCDIR%%/qtquicklayouts/images/btn_next.png
-%%QT_DOCDIR%%/qtquicklayouts/images/btn_prev.png
-%%QT_DOCDIR%%/qtquicklayouts/images/bullet_dn.png
-%%QT_DOCDIR%%/qtquicklayouts/images/bullet_sq.png
-%%QT_DOCDIR%%/qtquicklayouts/images/columnlayout.png
-%%QT_DOCDIR%%/qtquicklayouts/images/gridlayout.png
-%%QT_DOCDIR%%/qtquicklayouts/images/home.png
-%%QT_DOCDIR%%/qtquicklayouts/images/ico_note.png
-%%QT_DOCDIR%%/qtquicklayouts/images/ico_note_attention.png
-%%QT_DOCDIR%%/qtquicklayouts/images/ico_out.png
-%%QT_DOCDIR%%/qtquicklayouts/images/logo.png
-%%QT_DOCDIR%%/qtquicklayouts/images/rowlayout-minimum.png
-%%QT_DOCDIR%%/qtquicklayouts/images/rowlayout.png
-%%QT_DOCDIR%%/qtquicklayouts/qml-qtquick-layouts-columnlayout-members.html
-%%QT_DOCDIR%%/qtquicklayouts/qml-qtquick-layouts-columnlayout.html
-%%QT_DOCDIR%%/qtquicklayouts/qml-qtquick-layouts-gridlayout-members.html
-%%QT_DOCDIR%%/qtquicklayouts/qml-qtquick-layouts-gridlayout.html
-%%QT_DOCDIR%%/qtquicklayouts/qml-qtquick-layouts-layout-members.html
-%%QT_DOCDIR%%/qtquicklayouts/qml-qtquick-layouts-layout.html
-%%QT_DOCDIR%%/qtquicklayouts/qml-qtquick-layouts-rowlayout-members.html
-%%QT_DOCDIR%%/qtquicklayouts/qml-qtquick-layouts-rowlayout.html
-%%QT_DOCDIR%%/qtquicklayouts/qml-qtquick-layouts-stacklayout-members.html
-%%QT_DOCDIR%%/qtquicklayouts/qml-qtquick-layouts-stacklayout.html
-%%QT_DOCDIR%%/qtquicklayouts/qtquick-layouts-qmlmodule.html
-%%QT_DOCDIR%%/qtquicklayouts/qtquicklayouts-index.html
-%%QT_DOCDIR%%/qtquicklayouts/qtquicklayouts-overview.html
-%%QT_DOCDIR%%/qtquicklayouts/qtquicklayouts.index
-%%QT_DOCDIR%%/qtquicklayouts/qtquicklayouts.qhp
-%%QT_DOCDIR%%/qtquicklayouts/qtquicklayouts.qhp.sha1
-%%QT_DOCDIR%%/qtquicklayouts/style/offline-simple.css
-%%QT_DOCDIR%%/qtquicklayouts/style/offline.css
%%QT_DOCDIR%%/qtscript.qch
%%QT_DOCDIR%%/qtscript/ecmascript.html
%%QT_DOCDIR%%/qtscript/examples-manifest.xml
%%QT_DOCDIR%%/qtscript/images/arrow_bc.png
%%QT_DOCDIR%%/qtscript/images/bgrContent.png
%%QT_DOCDIR%%/qtscript/images/btn_next.png
%%QT_DOCDIR%%/qtscript/images/btn_prev.png
%%QT_DOCDIR%%/qtscript/images/bullet_dn.png
%%QT_DOCDIR%%/qtscript/images/bullet_sq.png
%%QT_DOCDIR%%/qtscript/images/context2d-example-smileysmile.png
%%QT_DOCDIR%%/qtscript/images/context2d-example.png
%%QT_DOCDIR%%/qtscript/images/defaultprototypes-example.png
%%QT_DOCDIR%%/qtscript/images/home.png
%%QT_DOCDIR%%/qtscript/images/ico_note.png
%%QT_DOCDIR%%/qtscript/images/ico_note_attention.png
%%QT_DOCDIR%%/qtscript/images/ico_out.png
%%QT_DOCDIR%%/qtscript/images/logo.png
%%QT_DOCDIR%%/qtscript/images/qtscript-debugger.png
%%QT_DOCDIR%%/qtscript/qscriptable-members.html
%%QT_DOCDIR%%/qtscript/qscriptable.html
%%QT_DOCDIR%%/qtscript/qscriptclass-members.html
%%QT_DOCDIR%%/qtscript/qscriptclass.html
%%QT_DOCDIR%%/qtscript/qscriptclasspropertyiterator-members.html
%%QT_DOCDIR%%/qtscript/qscriptclasspropertyiterator.html
%%QT_DOCDIR%%/qtscript/qscriptcontext-members.html
%%QT_DOCDIR%%/qtscript/qscriptcontext.html
%%QT_DOCDIR%%/qtscript/qscriptcontextinfo-members.html
%%QT_DOCDIR%%/qtscript/qscriptcontextinfo-obsolete.html
%%QT_DOCDIR%%/qtscript/qscriptcontextinfo.html
%%QT_DOCDIR%%/qtscript/qscriptengine-members.html
%%QT_DOCDIR%%/qtscript/qscriptengine-obsolete.html
%%QT_DOCDIR%%/qtscript/qscriptengine.html
%%QT_DOCDIR%%/qtscript/qscriptengineagent-members.html
%%QT_DOCDIR%%/qtscript/qscriptengineagent.html
%%QT_DOCDIR%%/qtscript/qscriptextensionplugin-members.html
%%QT_DOCDIR%%/qtscript/qscriptextensionplugin.html
%%QT_DOCDIR%%/qtscript/qscriptprogram-members.html
%%QT_DOCDIR%%/qtscript/qscriptprogram.html
%%QT_DOCDIR%%/qtscript/qscriptstring-members.html
%%QT_DOCDIR%%/qtscript/qscriptstring.html
%%QT_DOCDIR%%/qtscript/qscriptsyntaxcheckresult-members.html
%%QT_DOCDIR%%/qtscript/qscriptsyntaxcheckresult.html
%%QT_DOCDIR%%/qtscript/qscriptvalue-members.html
%%QT_DOCDIR%%/qtscript/qscriptvalue-obsolete.html
%%QT_DOCDIR%%/qtscript/qscriptvalue.html
%%QT_DOCDIR%%/qtscript/qscriptvalueiterator-members.html
%%QT_DOCDIR%%/qtscript/qscriptvalueiterator.html
%%QT_DOCDIR%%/qtscript/qtscript-index.html
%%QT_DOCDIR%%/qtscript/qtscript-module.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-context2d-cpp.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-context2d-h.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-context2d-pro.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-context2d-qrc.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-domimage-cpp.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-domimage-h.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-environment-cpp.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-environment-h.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-example.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-main-cpp.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-qcontext2dcanvas-cpp.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-qcontext2dcanvas-h.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-alpha-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-arc-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-bezier-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-clock-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-fill1-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-grad-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-linecap-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-linestye-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-moveto-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-moveto2-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-pacman-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-plasma-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-pong-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-quad-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-rgba-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-rotate-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-scale-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-stroke1-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-scripts-translate-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-window-cpp.html
%%QT_DOCDIR%%/qtscript/qtscript-script-context2d-window-h.html
%%QT_DOCDIR%%/qtscript/qtscript-script-defaultprototypes-code-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-defaultprototypes-defaultprototypes-pro.html
%%QT_DOCDIR%%/qtscript/qtscript-script-defaultprototypes-defaultprototypes-qrc.html
%%QT_DOCDIR%%/qtscript/qtscript-script-defaultprototypes-example.html
%%QT_DOCDIR%%/qtscript/qtscript-script-defaultprototypes-main-cpp.html
%%QT_DOCDIR%%/qtscript/qtscript-script-defaultprototypes-prototypes-cpp.html
%%QT_DOCDIR%%/qtscript/qtscript-script-defaultprototypes-prototypes-h.html
%%QT_DOCDIR%%/qtscript/qtscript-script-helloscript-example.html
%%QT_DOCDIR%%/qtscript/qtscript-script-helloscript-helloscript-js.html
%%QT_DOCDIR%%/qtscript/qtscript-script-helloscript-helloscript-pro.html
%%QT_DOCDIR%%/qtscript/qtscript-script-helloscript-helloscript-qrc.html
%%QT_DOCDIR%%/qtscript/qtscript-script-helloscript-main-cpp.html
%%QT_DOCDIR%%/qtscript/qtscript.index
%%QT_DOCDIR%%/qtscript/qtscript.qhp
%%QT_DOCDIR%%/qtscript/qtscript.qhp.sha1
%%QT_DOCDIR%%/qtscript/qtscriptdebugger-manual.html
%%QT_DOCDIR%%/qtscript/qtscriptextensions.html
%%QT_DOCDIR%%/qtscript/script.html
%%QT_DOCDIR%%/qtscript/style/offline-simple.css
%%QT_DOCDIR%%/qtscript/style/offline.css
%%QT_DOCDIR%%/qtscripttools.qch
%%QT_DOCDIR%%/qtscripttools/images/arrow_bc.png
%%QT_DOCDIR%%/qtscripttools/images/bgrContent.png
%%QT_DOCDIR%%/qtscripttools/images/btn_next.png
%%QT_DOCDIR%%/qtscripttools/images/btn_prev.png
%%QT_DOCDIR%%/qtscripttools/images/bullet_dn.png
%%QT_DOCDIR%%/qtscripttools/images/bullet_sq.png
%%QT_DOCDIR%%/qtscripttools/images/home.png
%%QT_DOCDIR%%/qtscripttools/images/ico_note.png
%%QT_DOCDIR%%/qtscripttools/images/ico_note_attention.png
%%QT_DOCDIR%%/qtscripttools/images/ico_out.png
%%QT_DOCDIR%%/qtscripttools/images/logo.png
%%QT_DOCDIR%%/qtscripttools/qscriptenginedebugger-members.html
%%QT_DOCDIR%%/qtscripttools/qscriptenginedebugger.html
%%QT_DOCDIR%%/qtscripttools/qtscripttools-index.html
%%QT_DOCDIR%%/qtscripttools/qtscripttools-module.html
%%QT_DOCDIR%%/qtscripttools/qtscripttools.index
%%QT_DOCDIR%%/qtscripttools/qtscripttools.qhp
%%QT_DOCDIR%%/qtscripttools/qtscripttools.qhp.sha1
%%QT_DOCDIR%%/qtscripttools/style/offline-simple.css
%%QT_DOCDIR%%/qtscripttools/style/offline.css
+%%QT_DOCDIR%%/qtscxml.qch
+%%QT_DOCDIR%%/qtscxml/examples-manifest.xml
+%%QT_DOCDIR%%/qtscxml/examples-qtscxml.html
+%%QT_DOCDIR%%/qtscxml/images/arrow_bc.png
+%%QT_DOCDIR%%/qtscxml/images/bgrContent.png
+%%QT_DOCDIR%%/qtscxml/images/btn_next.png
+%%QT_DOCDIR%%/qtscxml/images/btn_prev.png
+%%QT_DOCDIR%%/qtscxml/images/bullet_dn.png
+%%QT_DOCDIR%%/qtscxml/images/bullet_sq.png
+%%QT_DOCDIR%%/qtscxml/images/calculator-qml.png
+%%QT_DOCDIR%%/qtscxml/images/calculator.png
+%%QT_DOCDIR%%/qtscxml/images/home.png
+%%QT_DOCDIR%%/qtscxml/images/ico_note.png
+%%QT_DOCDIR%%/qtscxml/images/ico_note_attention.png
+%%QT_DOCDIR%%/qtscxml/images/ico_out.png
+%%QT_DOCDIR%%/qtscxml/images/invoke-dynamic.png
+%%QT_DOCDIR%%/qtscxml/images/invoke-static.png
+%%QT_DOCDIR%%/qtscxml/images/logo.png
+%%QT_DOCDIR%%/qtscxml/images/mediaplayer.png
+%%QT_DOCDIR%%/qtscxml/images/pinball-statechart-global.png
+%%QT_DOCDIR%%/qtscxml/images/pinball-statechart-guicontrol.png
+%%QT_DOCDIR%%/qtscxml/images/pinball-statechart-internalstate.png
+%%QT_DOCDIR%%/qtscxml/images/pinball-statechart-logicalstate.png
+%%QT_DOCDIR%%/qtscxml/images/pinball-statechart-modestate.png
+%%QT_DOCDIR%%/qtscxml/images/pinball-statechart-onstate.png
+%%QT_DOCDIR%%/qtscxml/images/pinball-statechart-workflow.png
+%%QT_DOCDIR%%/qtscxml/images/pinball.png
+%%QT_DOCDIR%%/qtscxml/images/trafficlight.png
+%%QT_DOCDIR%%/qtscxml/qml-mediaplayer-qml-dynamic-members.html
+%%QT_DOCDIR%%/qtscxml/qml-mediaplayer-qml-dynamic.html
+%%QT_DOCDIR%%/qtscxml/qml-scxml-statemachineloader-members.html
+%%QT_DOCDIR%%/qtscxml/qml-scxml-statemachineloader.html
+%%QT_DOCDIR%%/qtscxml/qscxmlc.html
+%%QT_DOCDIR%%/qtscxml/qscxmlcppdatamodel-members.html
+%%QT_DOCDIR%%/qtscxml/qscxmlcppdatamodel.html
+%%QT_DOCDIR%%/qtscxml/qscxmldatamodel-members.html
+%%QT_DOCDIR%%/qtscxml/qscxmldatamodel.html
+%%QT_DOCDIR%%/qtscxml/qscxmlecmascriptdatamodel-members.html
+%%QT_DOCDIR%%/qtscxml/qscxmlecmascriptdatamodel.html
+%%QT_DOCDIR%%/qtscxml/qscxmlerror-members.html
+%%QT_DOCDIR%%/qtscxml/qscxmlerror.html
+%%QT_DOCDIR%%/qtscxml/qscxmlevent-members.html
+%%QT_DOCDIR%%/qtscxml/qscxmlevent.html
+%%QT_DOCDIR%%/qtscxml/qscxmleventfilter-members.html
+%%QT_DOCDIR%%/qtscxml/qscxmleventfilter.html
+%%QT_DOCDIR%%/qtscxml/qscxmlnulldatamodel-members.html
+%%QT_DOCDIR%%/qtscxml/qscxmlnulldatamodel.html
+%%QT_DOCDIR%%/qtscxml/qscxmlparser-loader-members.html
+%%QT_DOCDIR%%/qtscxml/qscxmlparser-loader.html
+%%QT_DOCDIR%%/qtscxml/qscxmlparser-members.html
+%%QT_DOCDIR%%/qtscxml/qscxmlparser.html
+%%QT_DOCDIR%%/qtscxml/qscxmlstatemachine-members.html
+%%QT_DOCDIR%%/qtscxml/qscxmlstatemachine.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-calculator-qml-button-qml.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-calculator-qml-calculator-qml-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-calculator-qml-calculator-qml-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-calculator-qml-calculator-qml-qml.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-calculator-qml-calculator-qml-qrc.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-calculator-qml-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-calculator-widgets-calculator-widgets-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-calculator-widgets-calculator-widgets-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-calculator-widgets-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-calculator-widgets-mainwindow-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-calculator-widgets-mainwindow-h.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-calculator-widgets-mainwindow-ui.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-index.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-instantiating-state-machines.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-invoke-dynamic-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-invoke-dynamic-invoke-dynamic-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-invoke-dynamic-invoke-dynamic-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-invoke-dynamic-invoke-dynamic-qml.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-invoke-dynamic-invoke-dynamic-qrc.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-invoke-static-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-invoke-static-invoke-static-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-invoke-static-invoke-static-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-invoke-static-invoke-static-qml.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-invoke-static-invoke-static-qrc.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-mediaplayer-cppdatamodel-scxml.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-mediaplayer-qml-cppdatamodel-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-mediaplayer-qml-cppdatamodel-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-mediaplayer-qml-cppdatamodel-qml.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-mediaplayer-qml-cppdatamodel-qrc.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-thedatamodel-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-thedatamodel-h.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-dynamic-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-dynamic-mediaplayer-qml-dynamic-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-dynamic-mediaplayer-qml-dynamic-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-dynamic-mediaplayer-qml-dynamic-qml.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-dynamic-mediaplayer-qml-dynamic-qrc.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-static-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-static-mediaplayer-qml-static-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-static-mediaplayer-qml-static-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-static-mediaplayer-qml-static-qml.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-static-mediaplayer-qml-static-qrc.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-dynamic-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-dynamic-mediaplayer-qrc.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-dynamic-mediaplayer-widgets-dynamic-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-dynamic-mediaplayer-widgets-dynamic-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-static-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-static-mediaplayer-widgets-static-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-static-mediaplayer-widgets-static-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-module.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-overview.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-pinball-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-pinball-main-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-pinball-mainwindow-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-pinball-mainwindow-h.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-pinball-mainwindow-ui.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-pinball-pinball-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-pinball-pinball-scxml.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-scxml-compliance.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-dynamic-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-dynamic-trafficlight-qml-dynamic-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-dynamic-trafficlight-qml-dynamic-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-dynamic-trafficlight-qml-dynamic-qml.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-dynamic-trafficlight-qml-dynamic-qrc.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-static-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-static-trafficlight-qml-static-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-static-trafficlight-qml-static-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-static-trafficlight-qml-static-qml.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-static-trafficlight-qml-static-qrc.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-dynamic-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-dynamic-trafficlight-widgets-dynamic-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-dynamic-trafficlight-widgets-dynamic-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-dynamic-trafficlight-widgets-dynamic-qrc.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-static-example.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-static-trafficlight-widgets-static-cpp.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-static-trafficlight-widgets-static-pro.html
+%%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-static-trafficlight-widgets-static-qrc.html
+%%QT_DOCDIR%%/qtscxml/qtscxml.index
+%%QT_DOCDIR%%/qtscxml/qtscxml.qhp
+%%QT_DOCDIR%%/qtscxml/qtscxml.qhp.sha1
+%%QT_DOCDIR%%/qtscxml/qtscxml.tags
+%%QT_DOCDIR%%/qtscxml/scxml-qmlmodule.html
+%%QT_DOCDIR%%/qtscxml/style/offline-simple.css
+%%QT_DOCDIR%%/qtscxml/style/offline.css
%%QT_DOCDIR%%/qtsensors.qch
%%QT_DOCDIR%%/qtsensors/compatmap.html
%%QT_DOCDIR%%/qtsensors/creating-a-sensor-plugin.html
%%QT_DOCDIR%%/qtsensors/determining-the-default-sensor-for-a-type.html
%%QT_DOCDIR%%/qtsensors/dynamic-sensor-backend-registration.html
%%QT_DOCDIR%%/qtsensors/examples-manifest.xml
%%QT_DOCDIR%%/qtsensors/genericbackend.html
%%QT_DOCDIR%%/qtsensors/images/accelbubble.png
%%QT_DOCDIR%%/qtsensors/images/arrow_bc.png
%%QT_DOCDIR%%/qtsensors/images/bgrContent.png
%%QT_DOCDIR%%/qtsensors/images/btn_next.png
%%QT_DOCDIR%%/qtsensors/images/btn_prev.png
%%QT_DOCDIR%%/qtsensors/images/bullet_dn.png
%%QT_DOCDIR%%/qtsensors/images/bullet_sq.png
%%QT_DOCDIR%%/qtsensors/images/home.png
%%QT_DOCDIR%%/qtsensors/images/ico_note.png
%%QT_DOCDIR%%/qtsensors/images/ico_note_attention.png
%%QT_DOCDIR%%/qtsensors/images/ico_out.png
%%QT_DOCDIR%%/qtsensors/images/logo.png
%%QT_DOCDIR%%/qtsensors/images/maze.png
%%QT_DOCDIR%%/qtsensors/images/qmlqtsensors.png
%%QT_DOCDIR%%/qtsensors/images/qtsensors-examples-explorer.png
%%QT_DOCDIR%%/qtsensors/images/qtsensors-examples-grue.png
%%QT_DOCDIR%%/qtsensors/images/sensorgesture-cover.png
%%QT_DOCDIR%%/qtsensors/images/sensorgesture-doubletap.png
%%QT_DOCDIR%%/qtsensors/images/sensorgesture-facedown.png
%%QT_DOCDIR%%/qtsensors/images/sensorgesture-faceup.png
%%QT_DOCDIR%%/qtsensors/images/sensorgesture-hover.png
%%QT_DOCDIR%%/qtsensors/images/sensorgesture-shake.png
%%QT_DOCDIR%%/qtsensors/images/sensorgesture-slam_1.png
%%QT_DOCDIR%%/qtsensors/images/sensorgesture-slam_2.png
%%QT_DOCDIR%%/qtsensors/images/sensorgesture-twist.png
%%QT_DOCDIR%%/qtsensors/images/sensorgesture-whip.png
%%QT_DOCDIR%%/qtsensors/images/sensorgesturecpp.png
%%QT_DOCDIR%%/qtsensors/images/sensors-coordinates.jpg
%%QT_DOCDIR%%/qtsensors/images/sensors-coordinates2.jpg
%%QT_DOCDIR%%/qtsensors/images/sensors-coordinates3.jpg
%%QT_DOCDIR%%/qtsensors/images/sensors-dynamic.png
%%QT_DOCDIR%%/qtsensors/images/sensors-geo-vs-raw-magnetism.jpg
%%QT_DOCDIR%%/qtsensors/images/sensors-orientation.jpg
%%QT_DOCDIR%%/qtsensors/images/sensors-overview.png
%%QT_DOCDIR%%/qtsensors/images/sensors-rotation-anim.gif
%%QT_DOCDIR%%/qtsensors/images/sensors-rotation.jpg
%%QT_DOCDIR%%/qtsensors/images/sensors-rotation2.jpg
%%QT_DOCDIR%%/qtsensors/images/sensors-rotation3.jpg
%%QT_DOCDIR%%/qtsensors/images/sensors-sides.jpg
%%QT_DOCDIR%%/qtsensors/images/sensors-sides2.jpg
%%QT_DOCDIR%%/qtsensors/images/sensors-static.png
%%QT_DOCDIR%%/qtsensors/images/shakeit.png
%%QT_DOCDIR%%/qtsensors/qaccelerometer-members.html
%%QT_DOCDIR%%/qtsensors/qaccelerometer.html
%%QT_DOCDIR%%/qtsensors/qaccelerometerfilter-members.html
%%QT_DOCDIR%%/qtsensors/qaccelerometerfilter.html
%%QT_DOCDIR%%/qtsensors/qaccelerometerreading-members.html
%%QT_DOCDIR%%/qtsensors/qaccelerometerreading.html
%%QT_DOCDIR%%/qtsensors/qaltimeter-members.html
%%QT_DOCDIR%%/qtsensors/qaltimeter.html
%%QT_DOCDIR%%/qtsensors/qaltimeterfilter-members.html
%%QT_DOCDIR%%/qtsensors/qaltimeterfilter.html
%%QT_DOCDIR%%/qtsensors/qaltimeterreading-members.html
%%QT_DOCDIR%%/qtsensors/qaltimeterreading.html
%%QT_DOCDIR%%/qtsensors/qambientlightfilter-members.html
%%QT_DOCDIR%%/qtsensors/qambientlightfilter.html
%%QT_DOCDIR%%/qtsensors/qambientlightreading-members.html
%%QT_DOCDIR%%/qtsensors/qambientlightreading.html
%%QT_DOCDIR%%/qtsensors/qambientlightsensor-members.html
%%QT_DOCDIR%%/qtsensors/qambientlightsensor.html
%%QT_DOCDIR%%/qtsensors/qambienttemperaturefilter-members.html
%%QT_DOCDIR%%/qtsensors/qambienttemperaturefilter.html
%%QT_DOCDIR%%/qtsensors/qambienttemperaturereading-members.html
%%QT_DOCDIR%%/qtsensors/qambienttemperaturereading.html
%%QT_DOCDIR%%/qtsensors/qambienttemperaturesensor-members.html
%%QT_DOCDIR%%/qtsensors/qambienttemperaturesensor.html
%%QT_DOCDIR%%/qtsensors/qcompass-members.html
%%QT_DOCDIR%%/qtsensors/qcompass.html
%%QT_DOCDIR%%/qtsensors/qcompassfilter-members.html
%%QT_DOCDIR%%/qtsensors/qcompassfilter.html
%%QT_DOCDIR%%/qtsensors/qcompassreading-members.html
%%QT_DOCDIR%%/qtsensors/qcompassreading.html
%%QT_DOCDIR%%/qtsensors/qdistancefilter-members.html
%%QT_DOCDIR%%/qtsensors/qdistancefilter.html
%%QT_DOCDIR%%/qtsensors/qdistancereading-members.html
%%QT_DOCDIR%%/qtsensors/qdistancereading.html
%%QT_DOCDIR%%/qtsensors/qdistancesensor-members.html
%%QT_DOCDIR%%/qtsensors/qdistancesensor.html
%%QT_DOCDIR%%/qtsensors/qgyroscope-members.html
%%QT_DOCDIR%%/qtsensors/qgyroscope.html
%%QT_DOCDIR%%/qtsensors/qgyroscopefilter-members.html
%%QT_DOCDIR%%/qtsensors/qgyroscopefilter.html
%%QT_DOCDIR%%/qtsensors/qgyroscopereading-members.html
%%QT_DOCDIR%%/qtsensors/qgyroscopereading.html
%%QT_DOCDIR%%/qtsensors/qholsterfilter-members.html
%%QT_DOCDIR%%/qtsensors/qholsterfilter.html
%%QT_DOCDIR%%/qtsensors/qholsterreading-members.html
%%QT_DOCDIR%%/qtsensors/qholsterreading.html
%%QT_DOCDIR%%/qtsensors/qholstersensor-members.html
%%QT_DOCDIR%%/qtsensors/qholstersensor.html
%%QT_DOCDIR%%/qtsensors/qirproximityfilter-members.html
%%QT_DOCDIR%%/qtsensors/qirproximityfilter.html
%%QT_DOCDIR%%/qtsensors/qirproximityreading-members.html
%%QT_DOCDIR%%/qtsensors/qirproximityreading.html
%%QT_DOCDIR%%/qtsensors/qirproximitysensor-members.html
%%QT_DOCDIR%%/qtsensors/qirproximitysensor.html
%%QT_DOCDIR%%/qtsensors/qlightfilter-members.html
%%QT_DOCDIR%%/qtsensors/qlightfilter.html
%%QT_DOCDIR%%/qtsensors/qlightreading-members.html
%%QT_DOCDIR%%/qtsensors/qlightreading.html
%%QT_DOCDIR%%/qtsensors/qlightsensor-members.html
%%QT_DOCDIR%%/qtsensors/qlightsensor.html
%%QT_DOCDIR%%/qtsensors/qmagnetometer-members.html
%%QT_DOCDIR%%/qtsensors/qmagnetometer.html
%%QT_DOCDIR%%/qtsensors/qmagnetometerfilter-members.html
%%QT_DOCDIR%%/qtsensors/qmagnetometerfilter.html
%%QT_DOCDIR%%/qtsensors/qmagnetometerreading-members.html
%%QT_DOCDIR%%/qtsensors/qmagnetometerreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-accelerometer-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-accelerometer.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-accelerometerreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-accelerometerreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-altimeter-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-altimeter.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-altimeterreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-altimeterreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambientlightreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambientlightreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambientlightsensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambientlightsensor.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambienttemperaturereading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambienttemperaturereading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambienttemperaturesensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambienttemperaturesensor.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-compass-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-compass.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-compassreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-compassreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-distancereading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-distancereading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-distancesensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-distancesensor.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-gyroscope-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-gyroscope.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-gyroscopereading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-gyroscopereading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-holsterreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-holsterreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-holstersensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-holstersensor.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-irproximityreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-irproximityreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-irproximitysensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-irproximitysensor.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-lightreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-lightreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-lightsensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-lightsensor.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-magnetometer-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-magnetometer.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-magnetometerreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-magnetometerreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-orientationreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-orientationreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-orientationsensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-orientationsensor.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-pressurereading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-pressurereading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-pressuresensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-pressuresensor.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-proximityreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-proximityreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-proximitysensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-proximitysensor.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-rotationreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-rotationreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-rotationsensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-rotationsensor.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensor.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensorgesture-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensorgesture.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensorglobal-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensorglobal.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensorreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensorreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-tapreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-tapreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-tapsensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-tapsensor.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-tiltreading-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-tiltreading.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-tiltsensor-members.html
%%QT_DOCDIR%%/qtsensors/qml-qtsensors-tiltsensor.html
%%QT_DOCDIR%%/qtsensors/qorientationfilter-members.html
%%QT_DOCDIR%%/qtsensors/qorientationfilter.html
%%QT_DOCDIR%%/qtsensors/qorientationreading-members.html
%%QT_DOCDIR%%/qtsensors/qorientationreading.html
%%QT_DOCDIR%%/qtsensors/qorientationsensor-members.html
%%QT_DOCDIR%%/qtsensors/qorientationsensor.html
%%QT_DOCDIR%%/qtsensors/qpressurefilter-members.html
%%QT_DOCDIR%%/qtsensors/qpressurefilter.html
%%QT_DOCDIR%%/qtsensors/qpressurereading-members.html
%%QT_DOCDIR%%/qtsensors/qpressurereading.html
%%QT_DOCDIR%%/qtsensors/qpressuresensor-members.html
%%QT_DOCDIR%%/qtsensors/qpressuresensor.html
%%QT_DOCDIR%%/qtsensors/qproximityfilter-members.html
%%QT_DOCDIR%%/qtsensors/qproximityfilter.html
%%QT_DOCDIR%%/qtsensors/qproximityreading-members.html
%%QT_DOCDIR%%/qtsensors/qproximityreading.html
%%QT_DOCDIR%%/qtsensors/qproximitysensor-members.html
%%QT_DOCDIR%%/qtsensors/qproximitysensor.html
%%QT_DOCDIR%%/qtsensors/qrotationfilter-members.html
%%QT_DOCDIR%%/qtsensors/qrotationfilter.html
%%QT_DOCDIR%%/qtsensors/qrotationreading-members.html
%%QT_DOCDIR%%/qtsensors/qrotationreading.html
%%QT_DOCDIR%%/qtsensors/qrotationsensor-members.html
%%QT_DOCDIR%%/qtsensors/qrotationsensor.html
%%QT_DOCDIR%%/qtsensors/qsensor-members.html
%%QT_DOCDIR%%/qtsensors/qsensor.html
%%QT_DOCDIR%%/qtsensors/qsensorbackend-members.html
%%QT_DOCDIR%%/qtsensors/qsensorbackend.html
%%QT_DOCDIR%%/qtsensors/qsensorbackendfactory-members.html
%%QT_DOCDIR%%/qtsensors/qsensorbackendfactory.html
%%QT_DOCDIR%%/qtsensors/qsensorchangesinterface-members.html
%%QT_DOCDIR%%/qtsensors/qsensorchangesinterface.html
%%QT_DOCDIR%%/qtsensors/qsensorfilter-members.html
%%QT_DOCDIR%%/qtsensors/qsensorfilter.html
%%QT_DOCDIR%%/qtsensors/qsensorgesture-members.html
%%QT_DOCDIR%%/qtsensors/qsensorgesture.html
%%QT_DOCDIR%%/qtsensors/qsensorgesturemanager-members.html
%%QT_DOCDIR%%/qtsensors/qsensorgesturemanager.html
%%QT_DOCDIR%%/qtsensors/qsensorgestureplugininterface-members.html
%%QT_DOCDIR%%/qtsensors/qsensorgestureplugininterface.html
%%QT_DOCDIR%%/qtsensors/qsensorgesturerecognizer-members.html
%%QT_DOCDIR%%/qtsensors/qsensorgesturerecognizer.html
%%QT_DOCDIR%%/qtsensors/qsensormanager-members.html
%%QT_DOCDIR%%/qtsensors/qsensormanager.html
%%QT_DOCDIR%%/qtsensors/qsensorplugininterface-members.html
%%QT_DOCDIR%%/qtsensors/qsensorplugininterface.html
%%QT_DOCDIR%%/qtsensors/qsensorreading-members.html
%%QT_DOCDIR%%/qtsensors/qsensorreading.html
%%QT_DOCDIR%%/qtsensors/qtapfilter-members.html
%%QT_DOCDIR%%/qtsensors/qtapfilter.html
%%QT_DOCDIR%%/qtsensors/qtapreading-members.html
%%QT_DOCDIR%%/qtsensors/qtapreading.html
%%QT_DOCDIR%%/qtsensors/qtapsensor-members.html
%%QT_DOCDIR%%/qtsensors/qtapsensor.html
%%QT_DOCDIR%%/qtsensors/qtiltfilter-members.html
%%QT_DOCDIR%%/qtsensors/qtiltfilter.html
%%QT_DOCDIR%%/qtsensors/qtiltreading-members.html
%%QT_DOCDIR%%/qtsensors/qtiltreading.html
%%QT_DOCDIR%%/qtsensors/qtiltsensor-members.html
%%QT_DOCDIR%%/qtsensors/qtiltsensor.html
%%QT_DOCDIR%%/qtsensors/qtsensorgestures-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-accelbubble-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-accelbubble-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-accelbubble-qrc.html
%%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-android-androidmanifest-xml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-content-bluebubble-svg.html
%%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-example.html
%%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-main-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-examples.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-console-app-console-app-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-example.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-grue-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-grue-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-import-import-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-import-qmldir.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-lib-gruesensor-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-lib-gruesensor-h.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-lib-gruesensor-p-h.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-lib-lib-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-main-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-plugin-gruesensorimpl-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-plugin-gruesensorimpl-h.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-plugin-plugin-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-qml-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-grue-qml-qrc.html
%%QT_DOCDIR%%/qtsensors/qtsensors-index.html
%%QT_DOCDIR%%/qtsensors/qtsensors-maze-android-androidmanifest-xml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-maze-components-applicationwindow-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-maze-components-button-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-maze-congratulation-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-maze-example.html
%%QT_DOCDIR%%/qtsensors/qtsensors-maze-labyrinthsquare-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-maze-lib-js.html
%%QT_DOCDIR%%/qtsensors/qtsensors-maze-main-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-maze-maze-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-maze-maze-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-maze-maze-qrc.html
%%QT_DOCDIR%%/qtsensors/qtsensors-maze-mouse-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-module.html
%%QT_DOCDIR%%/qtsensors/qtsensors-porting.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlmodule.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-components-applicationwindow-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-components-button-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-components-divider-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-example.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-main-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-qmlqtsensors-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-qmlqtsensors-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-qmlqtsensors-qrc.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-button-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-example.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-gesturelist-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-gesturesview-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-gestureview-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-main-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-plugin-plugin-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-plugin-qcountergestureplugin-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-plugin-qcountergestureplugin-h.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-plugin-qcounterrecognizer-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-plugin-qcounterrecognizer-h.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-qml-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-qml-qrc.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-qmlsensorgestures-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-qmlsensorgestures-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-example.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-explorer-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-explorer-h.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-import-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-propertyinfo-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-propertyinfo-h.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-qmldir.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-sensoritem-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-sensoritem-h.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-main-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-qml-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-qml-qrc.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-sensor-explorer-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-sensor-explorer-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensorgestures-example.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensorgestures-main-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensorgestures-mainwindow-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensorgestures-mainwindow-h.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensorgestures-mainwindow-ui.html
%%QT_DOCDIR%%/qtsensors/qtsensors-sensorgestures-sensorgestures-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-shakeit-example.html
%%QT_DOCDIR%%/qtsensors/qtsensors-shakeit-main-cpp.html
%%QT_DOCDIR%%/qtsensors/qtsensors-shakeit-shakeit-pro.html
%%QT_DOCDIR%%/qtsensors/qtsensors-shakeit-shakeit-qml.html
%%QT_DOCDIR%%/qtsensors/qtsensors-shakeit-shakeit-qrc.html
%%QT_DOCDIR%%/qtsensors/qtsensors.index
%%QT_DOCDIR%%/qtsensors/qtsensors.qhp
%%QT_DOCDIR%%/qtsensors/qtsensors.qhp.sha1
%%QT_DOCDIR%%/qtsensors/qtsensors.tags
%%QT_DOCDIR%%/qtsensors/senorfwbackend.html
%%QT_DOCDIR%%/qtsensors/sensorgesture-emulator-topics.html
%%QT_DOCDIR%%/qtsensors/sensorgesture-plugins-topics.html
%%QT_DOCDIR%%/qtsensors/sensors-backend-topics.html
%%QT_DOCDIR%%/qtsensors/style/offline-simple.css
%%QT_DOCDIR%%/qtsensors/style/offline.css
%%QT_DOCDIR%%/qtserialbus.qch
%%QT_DOCDIR%%/qtserialbus/examples-manifest.xml
%%QT_DOCDIR%%/qtserialbus/images/arrow_bc.png
%%QT_DOCDIR%%/qtserialbus/images/bgrContent.png
%%QT_DOCDIR%%/qtserialbus/images/btn_next.png
%%QT_DOCDIR%%/qtserialbus/images/btn_prev.png
%%QT_DOCDIR%%/qtserialbus/images/bullet_dn.png
%%QT_DOCDIR%%/qtserialbus/images/bullet_sq.png
%%QT_DOCDIR%%/qtserialbus/images/can-example.png
%%QT_DOCDIR%%/qtserialbus/images/home.png
%%QT_DOCDIR%%/qtserialbus/images/ico_note.png
%%QT_DOCDIR%%/qtserialbus/images/ico_note_attention.png
%%QT_DOCDIR%%/qtserialbus/images/ico_out.png
%%QT_DOCDIR%%/qtserialbus/images/logo.png
%%QT_DOCDIR%%/qtserialbus/images/modbusmaster.png
%%QT_DOCDIR%%/qtserialbus/images/modbusserver.png
%%QT_DOCDIR%%/qtserialbus/images/used-in-examples/can/images/application-exit.png
%%QT_DOCDIR%%/qtserialbus/images/used-in-examples/can/images/clear.png
%%QT_DOCDIR%%/qtserialbus/images/used-in-examples/can/images/connect.png
%%QT_DOCDIR%%/qtserialbus/images/used-in-examples/can/images/disconnect.png
%%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/master/images/application-exit.png
%%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/master/images/connect.png
%%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/master/images/disconnect.png
%%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/master/images/settings.png
%%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/slave/images/application-exit.png
%%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/slave/images/connect.png
%%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/slave/images/disconnect.png
%%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/slave/images/settings.png
%%QT_DOCDIR%%/qtserialbus/qcanbus-members.html
%%QT_DOCDIR%%/qtserialbus/qcanbus.html
%%QT_DOCDIR%%/qtserialbus/qcanbusdevice-filter-members.html
%%QT_DOCDIR%%/qtserialbus/qcanbusdevice-filter.html
%%QT_DOCDIR%%/qtserialbus/qcanbusdevice-members.html
%%QT_DOCDIR%%/qtserialbus/qcanbusdevice.html
%%QT_DOCDIR%%/qtserialbus/qcanbusfactory-members.html
%%QT_DOCDIR%%/qtserialbus/qcanbusfactory.html
%%QT_DOCDIR%%/qtserialbus/qcanbusframe-members.html
%%QT_DOCDIR%%/qtserialbus/qcanbusframe-timestamp-members.html
%%QT_DOCDIR%%/qtserialbus/qcanbusframe-timestamp.html
%%QT_DOCDIR%%/qtserialbus/qcanbusframe.html
%%QT_DOCDIR%%/qtserialbus/qmodbusclient-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbusclient.html
%%QT_DOCDIR%%/qtserialbus/qmodbusdataunit-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbusdataunit.html
%%QT_DOCDIR%%/qtserialbus/qmodbusdevice-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbusdevice.html
+%%QT_DOCDIR%%/qtserialbus/qmodbusdeviceidentification-members.html
+%%QT_DOCDIR%%/qtserialbus/qmodbusdeviceidentification.html
%%QT_DOCDIR%%/qtserialbus/qmodbusexceptionresponse-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbusexceptionresponse.html
%%QT_DOCDIR%%/qtserialbus/qmodbuspdu-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbuspdu.html
%%QT_DOCDIR%%/qtserialbus/qmodbusreply-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbusreply.html
%%QT_DOCDIR%%/qtserialbus/qmodbusrequest-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbusrequest.html
%%QT_DOCDIR%%/qtserialbus/qmodbusresponse-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbusresponse.html
%%QT_DOCDIR%%/qtserialbus/qmodbusrtuserialmaster-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbusrtuserialmaster.html
%%QT_DOCDIR%%/qtserialbus/qmodbusrtuserialslave-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbusrtuserialslave.html
%%QT_DOCDIR%%/qtserialbus/qmodbusserver-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbusserver.html
%%QT_DOCDIR%%/qtserialbus/qmodbustcpclient-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbustcpclient.html
%%QT_DOCDIR%%/qtserialbus/qmodbustcpserver-members.html
%%QT_DOCDIR%%/qtserialbus/qmodbustcpserver.html
%%QT_DOCDIR%%/qtserialbus/qtcanbus-backends.html
%%QT_DOCDIR%%/qtserialbus/qtmodbus-backends.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-can-can-pro.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-can-can-qrc.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-can-connectdialog-cpp.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-can-connectdialog-h.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-can-connectdialog-ui.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-can-example.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-can-main-cpp.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-can-mainwindow-cpp.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-can-mainwindow-h.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-can-mainwindow-ui.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-examples.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-index.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-example.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-main-cpp.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-mainwindow-cpp.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-mainwindow-h.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-mainwindow-ui.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-master-pro.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-master-qrc.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-settingsdialog-cpp.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-settingsdialog-h.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-settingsdialog-ui.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-writeregistermodel-cpp.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-writeregistermodel-h.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-example.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-main-cpp.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-mainwindow-cpp.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-mainwindow-h.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-mainwindow-ui.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-settingsdialog-cpp.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-settingsdialog-h.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-settingsdialog-ui.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-slave-pro.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-slave-qrc.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-module.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-peakcan-overview.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-socketcan-overview.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus-tinycan-overview.html
%%QT_DOCDIR%%/qtserialbus/qtserialbus.index
%%QT_DOCDIR%%/qtserialbus/qtserialbus.qhp
%%QT_DOCDIR%%/qtserialbus/qtserialbus.qhp.sha1
%%QT_DOCDIR%%/qtserialbus/qtserialbus.tags
%%QT_DOCDIR%%/qtserialbus/style/offline-simple.css
%%QT_DOCDIR%%/qtserialbus/style/offline.css
%%QT_DOCDIR%%/qtserialport.qch
%%QT_DOCDIR%%/qtserialport/examples-manifest.xml
%%QT_DOCDIR%%/qtserialport/images/arrow_bc.png
%%QT_DOCDIR%%/qtserialport/images/bgrContent.png
%%QT_DOCDIR%%/qtserialport/images/blockingmaster-example.png
%%QT_DOCDIR%%/qtserialport/images/blockingslave-example.png
%%QT_DOCDIR%%/qtserialport/images/btn_next.png
%%QT_DOCDIR%%/qtserialport/images/btn_prev.png
%%QT_DOCDIR%%/qtserialport/images/bullet_dn.png
%%QT_DOCDIR%%/qtserialport/images/bullet_sq.png
%%QT_DOCDIR%%/qtserialport/images/cenumerator-example.png
%%QT_DOCDIR%%/qtserialport/images/creaderasync-example.png
%%QT_DOCDIR%%/qtserialport/images/creadersync-example.png
%%QT_DOCDIR%%/qtserialport/images/cwriterasync-example.png
%%QT_DOCDIR%%/qtserialport/images/cwritersync-example.png
%%QT_DOCDIR%%/qtserialport/images/enumerator-example.png
%%QT_DOCDIR%%/qtserialport/images/home.png
%%QT_DOCDIR%%/qtserialport/images/ico_note.png
%%QT_DOCDIR%%/qtserialport/images/ico_note_attention.png
%%QT_DOCDIR%%/qtserialport/images/ico_out.png
%%QT_DOCDIR%%/qtserialport/images/logo.png
%%QT_DOCDIR%%/qtserialport/images/terminal-example.png
%%QT_DOCDIR%%/qtserialport/images/used-in-examples/terminal/images/application-exit.png
%%QT_DOCDIR%%/qtserialport/images/used-in-examples/terminal/images/clear.png
%%QT_DOCDIR%%/qtserialport/images/used-in-examples/terminal/images/connect.png
%%QT_DOCDIR%%/qtserialport/images/used-in-examples/terminal/images/disconnect.png
%%QT_DOCDIR%%/qtserialport/images/used-in-examples/terminal/images/settings.png
%%QT_DOCDIR%%/qtserialport/qserialport-members.html
%%QT_DOCDIR%%/qtserialport/qserialport-obsolete.html
%%QT_DOCDIR%%/qtserialport/qserialport.html
%%QT_DOCDIR%%/qtserialport/qserialportinfo-members.html
%%QT_DOCDIR%%/qtserialport/qserialportinfo-obsolete.html
%%QT_DOCDIR%%/qtserialport/qserialportinfo.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-blockingmaster-pro.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-dialog-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-dialog-h.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-example.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-main-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-masterthread-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-masterthread-h.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-blockingslave-pro.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-dialog-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-dialog-h.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-example.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-main-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-slavethread-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-slavethread-h.html
%%QT_DOCDIR%%/qtserialport/qtserialport-cenumerator-cenumerator-pro.html
%%QT_DOCDIR%%/qtserialport/qtserialport-cenumerator-example.html
%%QT_DOCDIR%%/qtserialport/qtserialport-cenumerator-main-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-creaderasync-creaderasync-pro.html
%%QT_DOCDIR%%/qtserialport/qtserialport-creaderasync-example.html
%%QT_DOCDIR%%/qtserialport/qtserialport-creaderasync-main-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-creaderasync-serialportreader-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-creaderasync-serialportreader-h.html
%%QT_DOCDIR%%/qtserialport/qtserialport-creadersync-creadersync-pro.html
%%QT_DOCDIR%%/qtserialport/qtserialport-creadersync-example.html
%%QT_DOCDIR%%/qtserialport/qtserialport-creadersync-main-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-cwriterasync-cwriterasync-pro.html
%%QT_DOCDIR%%/qtserialport/qtserialport-cwriterasync-example.html
%%QT_DOCDIR%%/qtserialport/qtserialport-cwriterasync-main-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-cwriterasync-serialportwriter-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-cwriterasync-serialportwriter-h.html
%%QT_DOCDIR%%/qtserialport/qtserialport-cwritersync-cwritersync-pro.html
%%QT_DOCDIR%%/qtserialport/qtserialport-cwritersync-example.html
%%QT_DOCDIR%%/qtserialport/qtserialport-cwritersync-main-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-enumerator-enumerator-pro.html
%%QT_DOCDIR%%/qtserialport/qtserialport-enumerator-example.html
%%QT_DOCDIR%%/qtserialport/qtserialport-enumerator-main-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-examples.html
%%QT_DOCDIR%%/qtserialport/qtserialport-index.html
%%QT_DOCDIR%%/qtserialport/qtserialport-module.html
%%QT_DOCDIR%%/qtserialport/qtserialport-terminal-console-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-terminal-console-h.html
%%QT_DOCDIR%%/qtserialport/qtserialport-terminal-example.html
%%QT_DOCDIR%%/qtserialport/qtserialport-terminal-main-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-terminal-mainwindow-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-terminal-mainwindow-h.html
%%QT_DOCDIR%%/qtserialport/qtserialport-terminal-mainwindow-ui.html
%%QT_DOCDIR%%/qtserialport/qtserialport-terminal-settingsdialog-cpp.html
%%QT_DOCDIR%%/qtserialport/qtserialport-terminal-settingsdialog-h.html
%%QT_DOCDIR%%/qtserialport/qtserialport-terminal-settingsdialog-ui.html
%%QT_DOCDIR%%/qtserialport/qtserialport-terminal-terminal-pro.html
%%QT_DOCDIR%%/qtserialport/qtserialport-terminal-terminal-qrc.html
%%QT_DOCDIR%%/qtserialport/qtserialport.index
%%QT_DOCDIR%%/qtserialport/qtserialport.qhp
%%QT_DOCDIR%%/qtserialport/qtserialport.qhp.sha1
%%QT_DOCDIR%%/qtserialport/style/offline-simple.css
%%QT_DOCDIR%%/qtserialport/style/offline.css
%%QT_DOCDIR%%/qtsql.qch
%%QT_DOCDIR%%/qtsql/database.html
%%QT_DOCDIR%%/qtsql/examples-manifest.xml
%%QT_DOCDIR%%/qtsql/images/arrow_bc.png
%%QT_DOCDIR%%/qtsql/images/bgrContent.png
%%QT_DOCDIR%%/qtsql/images/books-demo.png
%%QT_DOCDIR%%/qtsql/images/btn_next.png
%%QT_DOCDIR%%/qtsql/images/btn_prev.png
%%QT_DOCDIR%%/qtsql/images/bullet_dn.png
%%QT_DOCDIR%%/qtsql/images/bullet_sq.png
%%QT_DOCDIR%%/qtsql/images/cachedtable-example.png
%%QT_DOCDIR%%/qtsql/images/drilldown-example.png
%%QT_DOCDIR%%/qtsql/images/foreignkeys.png
%%QT_DOCDIR%%/qtsql/images/home.png
%%QT_DOCDIR%%/qtsql/images/ico_note.png
%%QT_DOCDIR%%/qtsql/images/ico_note_attention.png
%%QT_DOCDIR%%/qtsql/images/ico_out.png
%%QT_DOCDIR%%/qtsql/images/insertrowinmodelview.png
%%QT_DOCDIR%%/qtsql/images/logo.png
%%QT_DOCDIR%%/qtsql/images/masterdetail-example.png
%%QT_DOCDIR%%/qtsql/images/noforeignkeys.png
%%QT_DOCDIR%%/qtsql/images/qdatawidgetmapper-simple.png
%%QT_DOCDIR%%/qtsql/images/querymodel-example.png
%%QT_DOCDIR%%/qtsql/images/relationaltable.png
%%QT_DOCDIR%%/qtsql/images/relationaltablemodel-example.png
%%QT_DOCDIR%%/qtsql/images/sql-widget-mapper.png
%%QT_DOCDIR%%/qtsql/images/sqlbrowser-demo.png
%%QT_DOCDIR%%/qtsql/images/tablemodel-example.png
%%QT_DOCDIR%%/qtsql/images/used-in-examples/books/images/star.png
%%QT_DOCDIR%%/qtsql/images/used-in-examples/drilldown/images/qt-creator.png
%%QT_DOCDIR%%/qtsql/images/used-in-examples/drilldown/images/qt-logo.png
%%QT_DOCDIR%%/qtsql/images/used-in-examples/drilldown/images/qt-project.png
%%QT_DOCDIR%%/qtsql/images/used-in-examples/drilldown/images/qt-quick.png
%%QT_DOCDIR%%/qtsql/images/used-in-examples/masterdetail/images/icon.png
%%QT_DOCDIR%%/qtsql/images/used-in-examples/masterdetail/images/image.png
%%QT_DOCDIR%%/qtsql/images/widgetmapper-sql-mapping-table.png
%%QT_DOCDIR%%/qtsql/images/widgetmapper-sql-mapping.png
%%QT_DOCDIR%%/qtsql/qsql.html
%%QT_DOCDIR%%/qtsql/qsqldatabase-members.html
%%QT_DOCDIR%%/qtsql/qsqldatabase.html
%%QT_DOCDIR%%/qtsql/qsqldriver-members.html
%%QT_DOCDIR%%/qtsql/qsqldriver.html
%%QT_DOCDIR%%/qtsql/qsqldrivercreator-members.html
%%QT_DOCDIR%%/qtsql/qsqldrivercreator.html
%%QT_DOCDIR%%/qtsql/qsqldrivercreatorbase-members.html
%%QT_DOCDIR%%/qtsql/qsqldrivercreatorbase.html
%%QT_DOCDIR%%/qtsql/qsqldriverplugin-members.html
%%QT_DOCDIR%%/qtsql/qsqldriverplugin.html
%%QT_DOCDIR%%/qtsql/qsqlerror-members.html
%%QT_DOCDIR%%/qtsql/qsqlerror-obsolete.html
%%QT_DOCDIR%%/qtsql/qsqlerror.html
%%QT_DOCDIR%%/qtsql/qsqlfield-members.html
%%QT_DOCDIR%%/qtsql/qsqlfield.html
%%QT_DOCDIR%%/qtsql/qsqlindex-members.html
%%QT_DOCDIR%%/qtsql/qsqlindex.html
%%QT_DOCDIR%%/qtsql/qsqlquery-members.html
%%QT_DOCDIR%%/qtsql/qsqlquery.html
%%QT_DOCDIR%%/qtsql/qsqlquerymodel-members.html
%%QT_DOCDIR%%/qtsql/qsqlquerymodel.html
%%QT_DOCDIR%%/qtsql/qsqlrecord-members.html
%%QT_DOCDIR%%/qtsql/qsqlrecord.html
%%QT_DOCDIR%%/qtsql/qsqlrelation-members.html
%%QT_DOCDIR%%/qtsql/qsqlrelation.html
%%QT_DOCDIR%%/qtsql/qsqlrelationaldelegate-members.html
%%QT_DOCDIR%%/qtsql/qsqlrelationaldelegate.html
%%QT_DOCDIR%%/qtsql/qsqlrelationaltablemodel-members.html
%%QT_DOCDIR%%/qtsql/qsqlrelationaltablemodel.html
%%QT_DOCDIR%%/qtsql/qsqlresult-members.html
%%QT_DOCDIR%%/qtsql/qsqlresult.html
%%QT_DOCDIR%%/qtsql/qsqltablemodel-members.html
%%QT_DOCDIR%%/qtsql/qsqltablemodel.html
%%QT_DOCDIR%%/qtsql/qtsql-books-bookdelegate-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-books-bookdelegate-h.html
%%QT_DOCDIR%%/qtsql/qtsql-books-books-pro.html
%%QT_DOCDIR%%/qtsql/qtsql-books-books-qrc.html
%%QT_DOCDIR%%/qtsql/qtsql-books-bookwindow-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-books-bookwindow-h.html
%%QT_DOCDIR%%/qtsql/qtsql-books-bookwindow-ui.html
%%QT_DOCDIR%%/qtsql/qtsql-books-example.html
%%QT_DOCDIR%%/qtsql/qtsql-books-initdb-h.html
%%QT_DOCDIR%%/qtsql/qtsql-books-main-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-cachedtable-cachedtable-pro.html
%%QT_DOCDIR%%/qtsql/qtsql-cachedtable-example.html
%%QT_DOCDIR%%/qtsql/qtsql-cachedtable-main-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-cachedtable-tableeditor-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-cachedtable-tableeditor-h.html
%%QT_DOCDIR%%/qtsql/qtsql-drilldown-drilldown-pro.html
%%QT_DOCDIR%%/qtsql/qtsql-drilldown-drilldown-qrc.html
%%QT_DOCDIR%%/qtsql/qtsql-drilldown-example.html
%%QT_DOCDIR%%/qtsql/qtsql-drilldown-imageitem-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-drilldown-imageitem-h.html
%%QT_DOCDIR%%/qtsql/qtsql-drilldown-informationwindow-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-drilldown-informationwindow-h.html
%%QT_DOCDIR%%/qtsql/qtsql-drilldown-main-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-drilldown-view-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-drilldown-view-h.html
%%QT_DOCDIR%%/qtsql/qtsql-index.html
%%QT_DOCDIR%%/qtsql/qtsql-masterdetail-albumdetails-xml.html
%%QT_DOCDIR%%/qtsql/qtsql-masterdetail-database-h.html
%%QT_DOCDIR%%/qtsql/qtsql-masterdetail-dialog-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-masterdetail-dialog-h.html
%%QT_DOCDIR%%/qtsql/qtsql-masterdetail-example.html
%%QT_DOCDIR%%/qtsql/qtsql-masterdetail-main-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-masterdetail-mainwindow-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-masterdetail-mainwindow-h.html
%%QT_DOCDIR%%/qtsql/qtsql-masterdetail-masterdetail-pro.html
%%QT_DOCDIR%%/qtsql/qtsql-masterdetail-masterdetail-qrc.html
%%QT_DOCDIR%%/qtsql/qtsql-module.html
%%QT_DOCDIR%%/qtsql/qtsql-querymodel-customsqlmodel-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-querymodel-customsqlmodel-h.html
%%QT_DOCDIR%%/qtsql/qtsql-querymodel-editablesqlmodel-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-querymodel-editablesqlmodel-h.html
%%QT_DOCDIR%%/qtsql/qtsql-querymodel-example.html
%%QT_DOCDIR%%/qtsql/qtsql-querymodel-main-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-querymodel-querymodel-pro.html
%%QT_DOCDIR%%/qtsql/qtsql-relationaltablemodel-example.html
%%QT_DOCDIR%%/qtsql/qtsql-relationaltablemodel-relationaltablemodel-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-relationaltablemodel-relationaltablemodel-pro.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-browser-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-browser-h.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-browserwidget-ui.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-connectionwidget-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-connectionwidget-h.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-example.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-main-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-qsqlconnectiondialog-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-qsqlconnectiondialog-h.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-qsqlconnectiondialog-ui.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-sqlbrowser-pro.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlwidgetmapper-example.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlwidgetmapper-main-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlwidgetmapper-sqlwidgetmapper-pro.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlwidgetmapper-window-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-sqlwidgetmapper-window-h.html
%%QT_DOCDIR%%/qtsql/qtsql-tablemodel-example.html
%%QT_DOCDIR%%/qtsql/qtsql-tablemodel-tablemodel-cpp.html
%%QT_DOCDIR%%/qtsql/qtsql-tablemodel-tablemodel-pro.html
%%QT_DOCDIR%%/qtsql/qtsql.index
%%QT_DOCDIR%%/qtsql/qtsql.qhp
%%QT_DOCDIR%%/qtsql/qtsql.qhp.sha1
%%QT_DOCDIR%%/qtsql/qtsql.tags
%%QT_DOCDIR%%/qtsql/sql-connecting.html
%%QT_DOCDIR%%/qtsql/sql-driver.html
%%QT_DOCDIR%%/qtsql/sql-forms.html
%%QT_DOCDIR%%/qtsql/sql-model.html
%%QT_DOCDIR%%/qtsql/sql-presenting.html
%%QT_DOCDIR%%/qtsql/sql-programming.html
%%QT_DOCDIR%%/qtsql/sql-sqlstatements.html
%%QT_DOCDIR%%/qtsql/sql-types.html
%%QT_DOCDIR%%/qtsql/style/offline-simple.css
%%QT_DOCDIR%%/qtsql/style/offline.css
%%QT_DOCDIR%%/qtsvg.qch
%%QT_DOCDIR%%/qtsvg/examples-manifest.xml
%%QT_DOCDIR%%/qtsvg/images/arrow_bc.png
%%QT_DOCDIR%%/qtsvg/images/bgrContent.png
%%QT_DOCDIR%%/qtsvg/images/btn_next.png
%%QT_DOCDIR%%/qtsvg/images/btn_prev.png
%%QT_DOCDIR%%/qtsvg/images/bullet_dn.png
%%QT_DOCDIR%%/qtsvg/images/bullet_sq.png
%%QT_DOCDIR%%/qtsvg/images/home.png
%%QT_DOCDIR%%/qtsvg/images/ico_note.png
%%QT_DOCDIR%%/qtsvg/images/ico_note_attention.png
%%QT_DOCDIR%%/qtsvg/images/ico_out.png
%%QT_DOCDIR%%/qtsvg/images/logo.png
%%QT_DOCDIR%%/qtsvg/images/svggenerator-example.png
%%QT_DOCDIR%%/qtsvg/images/svgviewer-example.png
%%QT_DOCDIR%%/qtsvg/images/textobject-example.png
%%QT_DOCDIR%%/qtsvg/qgraphicssvgitem-members.html
%%QT_DOCDIR%%/qtsvg/qgraphicssvgitem-obsolete.html
%%QT_DOCDIR%%/qtsvg/qgraphicssvgitem.html
%%QT_DOCDIR%%/qtsvg/qsvggenerator-members.html
%%QT_DOCDIR%%/qtsvg/qsvggenerator.html
%%QT_DOCDIR%%/qtsvg/qsvgrenderer-members.html
%%QT_DOCDIR%%/qtsvg/qsvgrenderer.html
%%QT_DOCDIR%%/qtsvg/qsvgwidget-members.html
%%QT_DOCDIR%%/qtsvg/qsvgwidget.html
%%QT_DOCDIR%%/qtsvg/qtsvg-index.html
%%QT_DOCDIR%%/qtsvg/qtsvg-module.html
%%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-example.html
%%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-files-heart-svg.html
%%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-main-cpp.html
%%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-resources-qrc.html
%%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-svgtextobject-cpp.html
%%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-svgtextobject-h.html
%%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-textobject-pro.html
%%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-window-cpp.html
%%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-window-h.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-displaywidget-cpp.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-displaywidget-h.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-example.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-forms-window-ui.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-main-cpp.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-svggenerator-pro.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-svggenerator-qrc.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-window-cpp.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-window-h.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-example.html
+%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-exportdialog-cpp.html
+%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-exportdialog-h.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-files-bubbles-svg.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-files-cubic-svg.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-files-spheres-svg.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-main-cpp.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-mainwindow-cpp.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-mainwindow-h.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-svgview-cpp.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-svgview-h.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-svgviewer-pro.html
%%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-svgviewer-qrc.html
%%QT_DOCDIR%%/qtsvg/qtsvg.index
%%QT_DOCDIR%%/qtsvg/qtsvg.qhp
%%QT_DOCDIR%%/qtsvg/qtsvg.qhp.sha1
%%QT_DOCDIR%%/qtsvg/qtsvg.tags
%%QT_DOCDIR%%/qtsvg/qtsvglicense.html
%%QT_DOCDIR%%/qtsvg/style/offline-simple.css
%%QT_DOCDIR%%/qtsvg/style/offline.css
%%QT_DOCDIR%%/qtsvg/svgrendering.html
%%QT_DOCDIR%%/qttestlib.qch
%%QT_DOCDIR%%/qttestlib/examples-manifest.xml
%%QT_DOCDIR%%/qttestlib/images/arrow_bc.png
%%QT_DOCDIR%%/qttestlib/images/bgrContent.png
%%QT_DOCDIR%%/qttestlib/images/btn_next.png
%%QT_DOCDIR%%/qttestlib/images/btn_prev.png
%%QT_DOCDIR%%/qttestlib/images/bullet_dn.png
%%QT_DOCDIR%%/qttestlib/images/bullet_sq.png
%%QT_DOCDIR%%/qttestlib/images/home.png
%%QT_DOCDIR%%/qttestlib/images/ico_note.png
%%QT_DOCDIR%%/qttestlib/images/ico_note_attention.png
%%QT_DOCDIR%%/qttestlib/images/ico_out.png
%%QT_DOCDIR%%/qttestlib/images/logo.png
%%QT_DOCDIR%%/qttestlib/qsignalspy-members.html
%%QT_DOCDIR%%/qttestlib/qsignalspy.html
%%QT_DOCDIR%%/qttestlib/qtest-obsolete.html
%%QT_DOCDIR%%/qttestlib/qtest-overview.html
%%QT_DOCDIR%%/qttestlib/qtest-qtoucheventsequence-members.html
%%QT_DOCDIR%%/qttestlib/qtest-qtoucheventsequence.html
%%QT_DOCDIR%%/qttestlib/qtest-tutorial.html
%%QT_DOCDIR%%/qttestlib/qtest.html
%%QT_DOCDIR%%/qttestlib/qtesteventlist-members.html
%%QT_DOCDIR%%/qttestlib/qtesteventlist.html
%%QT_DOCDIR%%/qttestlib/qttest-index.html
%%QT_DOCDIR%%/qttestlib/qttest-module.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial1-example.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial1-testqstring-cpp.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial1-tutorial1-pro.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial2-example.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial2-testqstring-cpp.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial2-tutorial2-pro.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial3-example.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial3-testgui-cpp.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial3-tutorial3-pro.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial4-example.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial4-testgui-cpp.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial4-tutorial4-pro.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial5-benchmarking-cpp.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial5-example.html
%%QT_DOCDIR%%/qttestlib/qttestlib-tutorial5-tutorial5-pro.html
%%QT_DOCDIR%%/qttestlib/qttestlib.index
%%QT_DOCDIR%%/qttestlib/qttestlib.qhp
%%QT_DOCDIR%%/qttestlib/qttestlib.qhp.sha1
%%QT_DOCDIR%%/qttestlib/qttestlib.tags
%%QT_DOCDIR%%/qttestlib/style/offline-simple.css
%%QT_DOCDIR%%/qttestlib/style/offline.css
%%QT_DOCDIR%%/qtuitools.qch
%%QT_DOCDIR%%/qtuitools/examples-manifest.xml
%%QT_DOCDIR%%/qtuitools/examples-qtuitools.html
%%QT_DOCDIR%%/qtuitools/images/arrow_bc.png
%%QT_DOCDIR%%/qtuitools/images/bgrContent.png
%%QT_DOCDIR%%/qtuitools/images/btn_next.png
%%QT_DOCDIR%%/qtuitools/images/btn_prev.png
%%QT_DOCDIR%%/qtuitools/images/bullet_dn.png
%%QT_DOCDIR%%/qtuitools/images/bullet_sq.png
%%QT_DOCDIR%%/qtuitools/images/home.png
%%QT_DOCDIR%%/qtuitools/images/ico_note.png
%%QT_DOCDIR%%/qtuitools/images/ico_note_attention.png
%%QT_DOCDIR%%/qtuitools/images/ico_out.png
%%QT_DOCDIR%%/qtuitools/images/logo.png
%%QT_DOCDIR%%/qtuitools/images/multipleinheritance-example.png
%%QT_DOCDIR%%/qtuitools/images/textfinder-example-find.png
%%QT_DOCDIR%%/qtuitools/images/textfinder-example-find2.png
%%QT_DOCDIR%%/qtuitools/images/textfinder-example-userinterface.png
%%QT_DOCDIR%%/qtuitools/images/uitools-examples.png
%%QT_DOCDIR%%/qtuitools/qtuitools-index.html
%%QT_DOCDIR%%/qtuitools/qtuitools-module.html
%%QT_DOCDIR%%/qtuitools/qtuitools-multipleinheritance-calculatorform-cpp.html
%%QT_DOCDIR%%/qtuitools/qtuitools-multipleinheritance-calculatorform-h.html
%%QT_DOCDIR%%/qtuitools/qtuitools-multipleinheritance-calculatorform-ui.html
%%QT_DOCDIR%%/qtuitools/qtuitools-multipleinheritance-example.html
%%QT_DOCDIR%%/qtuitools/qtuitools-multipleinheritance-main-cpp.html
%%QT_DOCDIR%%/qtuitools/qtuitools-multipleinheritance-multipleinheritance-pro.html
%%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-example.html
%%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-forms-textfinder-ui.html
%%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-main-cpp.html
%%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-textfinder-cpp.html
%%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-textfinder-h.html
%%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-textfinder-pro.html
%%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-textfinder-qrc.html
%%QT_DOCDIR%%/qtuitools/qtuitools.index
%%QT_DOCDIR%%/qtuitools/qtuitools.qhp
%%QT_DOCDIR%%/qtuitools/qtuitools.qhp.sha1
%%QT_DOCDIR%%/qtuitools/quiloader-members.html
%%QT_DOCDIR%%/qtuitools/quiloader.html
%%QT_DOCDIR%%/qtuitools/style/offline-simple.css
%%QT_DOCDIR%%/qtuitools/style/offline.css
+%%QT_DOCDIR%%/qtvirtualkeyboard.qch
+%%QT_DOCDIR%%/qtvirtualkeyboard/build.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/deployment-guide.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/examples-manifest.xml
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/arrow_bc.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/basic-example.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/bgrContent.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/btn_next.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/btn_prev.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/bullet_dn.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/bullet_sq.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/gesture-double-left.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/gesture-double-up.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/gesture-single-down-left.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/gesture-single-left.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/gesture-single-right.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/gesture-single-up.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/handwriting-mode-icon.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/home.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/ico_note.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/ico_note_attention.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/ico_out.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/language-icon.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/images/logo.png
+%%QT_DOCDIR%%/qtvirtualkeyboard/inputframework-module.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-backspacekey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-backspacekey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-basekey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-basekey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-changelanguagekey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-changelanguagekey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-enterkey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-enterkey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-enterkeyaction-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-enterkeyaction.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-fillerkey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-fillerkey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-handwritinginputpanel-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-handwritinginputpanel.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-handwritingmodekey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-handwritingmodekey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-hidekeyboardkey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-hidekeyboardkey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-inputcontext-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-inputcontext.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-inputengine-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-inputengine.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-inputmethod-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-inputmethod.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-inputpanel-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-inputpanel.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-key-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-key.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-keyboardcolumn-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-keyboardcolumn.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-keyboardlayout-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-keyboardlayout.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-keyboardlayoutloader-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-keyboardlayoutloader.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-keyboardrow-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-keyboardrow.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-modekey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-modekey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-numberkey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-numberkey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-selectionlistmodel-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-selectionlistmodel.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-settings-virtualkeyboardsettings-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-settings-virtualkeyboardsettings.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-shifthandler-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-shifthandler.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-shiftkey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-shiftkey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-spacekey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-spacekey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-styles-keyboardstyle-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-styles-keyboardstyle.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-styles-keyicon-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-styles-keyicon.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-styles-keypanel-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-styles-keypanel.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-styles-selectionlistitem-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-styles-selectionlistitem.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-styles-tracecanvas-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-styles-tracecanvas.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-styles-traceinputkeypanel-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-styles-traceinputkeypanel.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-symbolmodekey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-symbolmodekey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-trace-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-trace.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-traceinputarea-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-traceinputarea.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-traceinputkey-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qml-qtquick-virtualkeyboard-traceinputkey.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qt-virtual-keyboard-qmltypes.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtquick-virtualkeyboard-qmlmodule.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtquick-virtualkeyboard-settings-qmlmodule.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtquick-virtualkeyboard-styles-qmlmodule.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-basic-b2qt-qml.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-basic-pro.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-basic-qml.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-content-autoscroller-qml.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-content-floatingbutton-active-svg.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-content-floatingbutton-available-svg.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-content-floatingbutton-unavailable-svg.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-content-handwritingmodebutton-qml.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-content-scrollbar-qml.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-content-textarea-qml.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-content-textbase-qml.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-content-textfield-qml.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-demo-qrc.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-example.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-basic-main-cpp.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-examples.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-index.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-inputcontext-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-inputcontext.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-inputengine-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-inputengine.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-selectionlistmodel-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-selectionlistmodel.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-shifthandler-members.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-shifthandler.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard-user-guide.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard.html
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard.index
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard.qhp
+%%QT_DOCDIR%%/qtvirtualkeyboard/qtvirtualkeyboard.qhp.sha1
+%%QT_DOCDIR%%/qtvirtualkeyboard/style/offline-simple.css
+%%QT_DOCDIR%%/qtvirtualkeyboard/style/offline.css
+%%QT_DOCDIR%%/qtvirtualkeyboard/technical-guide.html
%%QT_DOCDIR%%/qtwebchannel.qch
%%QT_DOCDIR%%/qtwebchannel/examples-manifest.xml
%%QT_DOCDIR%%/qtwebchannel/images/arrow_bc.png
%%QT_DOCDIR%%/qtwebchannel/images/bgrContent.png
%%QT_DOCDIR%%/qtwebchannel/images/btn_next.png
%%QT_DOCDIR%%/qtwebchannel/images/btn_prev.png
%%QT_DOCDIR%%/qtwebchannel/images/bullet_dn.png
%%QT_DOCDIR%%/qtwebchannel/images/bullet_sq.png
%%QT_DOCDIR%%/qtwebchannel/images/chatclient-html.png
%%QT_DOCDIR%%/qtwebchannel/images/chatclient-qml.png
%%QT_DOCDIR%%/qtwebchannel/images/chatserver-cpp.png
%%QT_DOCDIR%%/qtwebchannel/images/home.png
%%QT_DOCDIR%%/qtwebchannel/images/ico_note.png
%%QT_DOCDIR%%/qtwebchannel/images/ico_note_attention.png
%%QT_DOCDIR%%/qtwebchannel/images/ico_out.png
%%QT_DOCDIR%%/qtwebchannel/images/logo.png
%%QT_DOCDIR%%/qtwebchannel/images/standalone-screenshot.png
%%QT_DOCDIR%%/qtwebchannel/qml-qtwebchannel-webchannel-members.html
%%QT_DOCDIR%%/qtwebchannel/qml-qtwebchannel-webchannel.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-html-chatclient-html-pro.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-html-chatclient-html.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-html-example.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-qml-chatclient-qml-pro.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-qml-example.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-qml-qmlchatclient-qml.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatserver-cpp-chatserver-cpp-pro.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatserver-cpp-chatserver-cpp.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatserver-cpp-chatserver-h.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatserver-cpp-example.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatserver-cpp-main-cpp.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-examples.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-index.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-javascript.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-module.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-qmlmodule.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-dialog-ui.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-example.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-index-html.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-main-cpp.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-standalone-pro.html
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel.index
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel.qhp
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel.qhp.sha1
%%QT_DOCDIR%%/qtwebchannel/qtwebchannel.tags
%%QT_DOCDIR%%/qtwebchannel/qwebchannel-members.html
%%QT_DOCDIR%%/qtwebchannel/qwebchannel.html
%%QT_DOCDIR%%/qtwebchannel/qwebchannelabstracttransport-members.html
%%QT_DOCDIR%%/qtwebchannel/qwebchannelabstracttransport.html
%%QT_DOCDIR%%/qtwebchannel/style/offline-simple.css
%%QT_DOCDIR%%/qtwebchannel/style/offline.css
%%QT_DOCDIR%%/qtwebsockets.qch
%%QT_DOCDIR%%/qtwebsockets/echoclient.html
%%QT_DOCDIR%%/qtwebsockets/echoserver.html
%%QT_DOCDIR%%/qtwebsockets/examples-manifest.xml
%%QT_DOCDIR%%/qtwebsockets/images/arrow_bc.png
%%QT_DOCDIR%%/qtwebsockets/images/bgrContent.png
%%QT_DOCDIR%%/qtwebsockets/images/btn_next.png
%%QT_DOCDIR%%/qtwebsockets/images/btn_prev.png
%%QT_DOCDIR%%/qtwebsockets/images/bullet_dn.png
%%QT_DOCDIR%%/qtwebsockets/images/bullet_sq.png
%%QT_DOCDIR%%/qtwebsockets/images/echoclient-html-example.png
%%QT_DOCDIR%%/qtwebsockets/images/home.png
%%QT_DOCDIR%%/qtwebsockets/images/ico_note.png
%%QT_DOCDIR%%/qtwebsockets/images/ico_note_attention.png
%%QT_DOCDIR%%/qtwebsockets/images/ico_out.png
%%QT_DOCDIR%%/qtwebsockets/images/logo.png
%%QT_DOCDIR%%/qtwebsockets/images/websockets-pictorial-representation.jpg
%%QT_DOCDIR%%/qtwebsockets/qmaskgenerator-members.html
%%QT_DOCDIR%%/qtwebsockets/qmaskgenerator.html
%%QT_DOCDIR%%/qtwebsockets/qml-qtwebsockets-websocket-members.html
%%QT_DOCDIR%%/qtwebsockets/qml-qtwebsockets-websocket.html
%%QT_DOCDIR%%/qtwebsockets/qml-qtwebsockets-websocketserver-members.html
%%QT_DOCDIR%%/qtwebsockets/qml-qtwebsockets-websocketserver.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoclient-echoclient-cpp.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoclient-echoclient-h.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoclient-echoclient-pro.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoclient-example.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoclient-main-cpp.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoserver-echoclient-html.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoserver-echoserver-cpp.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoserver-echoserver-h.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoserver-echoserver-pro.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoserver-example.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoserver-main-cpp.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-examples.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-index.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-module.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlmodule.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketclient-data-qrc.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketclient-example.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketclient-main-cpp.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketclient-qml-qmlwebsocketclient-main-qml.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketclient-qmlwebsocketclient-pro.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketserver-data-qrc.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketserver-example.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketserver-main-cpp.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketserver-qml-qmlwebsocketserver-main-qml.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketserver-qmlwebsocketserver-pro.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-simplechat-chatclient-html.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-simplechat-chatserver-cpp.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-simplechat-chatserver-h.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-simplechat-example.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-simplechat-main-cpp.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-simplechat-simplechat-pro.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoclient-example.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoclient-main-cpp.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoclient-sslechoclient-cpp.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoclient-sslechoclient-h.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoclient-sslechoclient-pro.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-example.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-main-cpp.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-securesocketclient-qrc.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-sslechoclient-html.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-sslechoserver-cpp.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-sslechoserver-h.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-sslechoserver-pro.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets-testing.html
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets.index
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets.qhp
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets.qhp.sha1
%%QT_DOCDIR%%/qtwebsockets/qtwebsockets.tags
%%QT_DOCDIR%%/qtwebsockets/qwebsocket-members.html
%%QT_DOCDIR%%/qtwebsockets/qwebsocket.html
%%QT_DOCDIR%%/qtwebsockets/qwebsocketcorsauthenticator-members.html
%%QT_DOCDIR%%/qtwebsockets/qwebsocketcorsauthenticator.html
%%QT_DOCDIR%%/qtwebsockets/qwebsocketprotocol.html
%%QT_DOCDIR%%/qtwebsockets/qwebsocketserver-members.html
%%QT_DOCDIR%%/qtwebsockets/qwebsocketserver.html
%%QT_DOCDIR%%/qtwebsockets/style/offline-simple.css
%%QT_DOCDIR%%/qtwebsockets/style/offline.css
%%QT_DOCDIR%%/qtwebsockets/websockets-overview.html
%%QT_DOCDIR%%/qtwidgets.qch
%%QT_DOCDIR%%/qtwidgets/application-windows.html
%%QT_DOCDIR%%/qtwidgets/dialogs.html
%%QT_DOCDIR%%/qtwidgets/examples-desktop.html
%%QT_DOCDIR%%/qtwidgets/examples-dialogs.html
%%QT_DOCDIR%%/qtwidgets/examples-graphicsview.html
%%QT_DOCDIR%%/qtwidgets/examples-itemviews.html
%%QT_DOCDIR%%/qtwidgets/examples-mainwindow.html
%%QT_DOCDIR%%/qtwidgets/examples-manifest.xml
%%QT_DOCDIR%%/qtwidgets/examples-painting.html
%%QT_DOCDIR%%/qtwidgets/examples-richtext.html
%%QT_DOCDIR%%/qtwidgets/examples-widgets.html
%%QT_DOCDIR%%/qtwidgets/focus.html
%%QT_DOCDIR%%/qtwidgets/gallery-fusion.html
-%%QT_DOCDIR%%/qtwidgets/gallery-gtk.html
%%QT_DOCDIR%%/qtwidgets/gallery-macintosh.html
%%QT_DOCDIR%%/qtwidgets/gallery-windows.html
%%QT_DOCDIR%%/qtwidgets/gallery-windowsvista.html
%%QT_DOCDIR%%/qtwidgets/gallery-windowsxp.html
%%QT_DOCDIR%%/qtwidgets/gallery.html
%%QT_DOCDIR%%/qtwidgets/gestures-overview.html
%%QT_DOCDIR%%/qtwidgets/graphicsview.html
%%QT_DOCDIR%%/qtwidgets/guibooks.html
%%QT_DOCDIR%%/qtwidgets/images/addressbook-adddialog.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-classes.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-editdialog.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-example.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-filemenu.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-newaddresstab.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-signals.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-toolsmenu.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part1-labeled-layout.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part1-labeled-screenshot.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part1-screenshot.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part2-add-contact.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part2-add-flowchart.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part2-add-successful.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part2-labeled-layout.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part2-signals-and-slots.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part2-stretch-effects.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part3-labeled-layout.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part3-linkedlist.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part3-screenshot.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part4-remove.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part5-finddialog.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part5-notfound.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part5-screenshot.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part5-signals-and-slots.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part6-load.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part6-save.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part6-screenshot.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part7-screenshot.png
%%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-screenshot.png
%%QT_DOCDIR%%/qtwidgets/images/affine-demo.png
%%QT_DOCDIR%%/qtwidgets/images/analogclock-example.png
%%QT_DOCDIR%%/qtwidgets/images/analogclock-viewport.png
%%QT_DOCDIR%%/qtwidgets/images/animatedtiles-example.png
%%QT_DOCDIR%%/qtwidgets/images/appchooser-example.png
%%QT_DOCDIR%%/qtwidgets/images/application-menus.png
%%QT_DOCDIR%%/qtwidgets/images/application.png
%%QT_DOCDIR%%/qtwidgets/images/arrow_bc.png
%%QT_DOCDIR%%/qtwidgets/images/assistant-toolbar.png
%%QT_DOCDIR%%/qtwidgets/images/basicdrawing-example.png
%%QT_DOCDIR%%/qtwidgets/images/basicgraphicslayouts-example.png
%%QT_DOCDIR%%/qtwidgets/images/basiclayouts-example.png
%%QT_DOCDIR%%/qtwidgets/images/basicsortfiltermodel-example.png
%%QT_DOCDIR%%/qtwidgets/images/bgrContent.png
%%QT_DOCDIR%%/qtwidgets/images/blurpickereffect-example.png
%%QT_DOCDIR%%/qtwidgets/images/borderlayout-example.png
%%QT_DOCDIR%%/qtwidgets/images/boxes-demo.png
%%QT_DOCDIR%%/qtwidgets/images/branchindicatorimage.png
%%QT_DOCDIR%%/qtwidgets/images/btn_next.png
%%QT_DOCDIR%%/qtwidgets/images/btn_prev.png
%%QT_DOCDIR%%/qtwidgets/images/bullet_dn.png
%%QT_DOCDIR%%/qtwidgets/images/bullet_sq.png
%%QT_DOCDIR%%/qtwidgets/images/button.png
%%QT_DOCDIR%%/qtwidgets/images/buttonbox-gnomelayout-horizontal.png
%%QT_DOCDIR%%/qtwidgets/images/buttonbox-gnomelayout-vertical.png
%%QT_DOCDIR%%/qtwidgets/images/buttonbox-kdelayout-horizontal.png
%%QT_DOCDIR%%/qtwidgets/images/buttonbox-kdelayout-vertical.png
%%QT_DOCDIR%%/qtwidgets/images/buttonbox-mac-modeless-horizontal.png
%%QT_DOCDIR%%/qtwidgets/images/buttonbox-mac-modeless-vertical.png
%%QT_DOCDIR%%/qtwidgets/images/buttonbox-maclayout-horizontal.png
%%QT_DOCDIR%%/qtwidgets/images/buttonbox-maclayout-vertical.png
%%QT_DOCDIR%%/qtwidgets/images/buttonbox-winlayout-horizontal.png
%%QT_DOCDIR%%/qtwidgets/images/buttonbox-winlayout-vertical.png
%%QT_DOCDIR%%/qtwidgets/images/calculator-example.png
%%QT_DOCDIR%%/qtwidgets/images/calculator-ugly.png
%%QT_DOCDIR%%/qtwidgets/images/calendar-example.png
%%QT_DOCDIR%%/qtwidgets/images/calendarwidgetexample.png
%%QT_DOCDIR%%/qtwidgets/images/charactermap-example.png
%%QT_DOCDIR%%/qtwidgets/images/chart-example.png
%%QT_DOCDIR%%/qtwidgets/images/checkbox.png
%%QT_DOCDIR%%/qtwidgets/images/checkboxes-exclusive.png
%%QT_DOCDIR%%/qtwidgets/images/checkboxes-non-exclusive.png
%%QT_DOCDIR%%/qtwidgets/images/checkboxexample.png
%%QT_DOCDIR%%/qtwidgets/images/chip-demo.png
%%QT_DOCDIR%%/qtwidgets/images/classwizard-flow.png
%%QT_DOCDIR%%/qtwidgets/images/classwizard.png
%%QT_DOCDIR%%/qtwidgets/images/clock.png
%%QT_DOCDIR%%/qtwidgets/images/codecs-example.png
%%QT_DOCDIR%%/qtwidgets/images/codeeditor-example.png
%%QT_DOCDIR%%/qtwidgets/images/collidingmice-example.png
%%QT_DOCDIR%%/qtwidgets/images/coloreditorfactoryimage.png
%%QT_DOCDIR%%/qtwidgets/images/columnview.png
%%QT_DOCDIR%%/qtwidgets/images/combobox.png
%%QT_DOCDIR%%/qtwidgets/images/comboboximage.png
%%QT_DOCDIR%%/qtwidgets/images/combowidgetmapper-example.png
%%QT_DOCDIR%%/qtwidgets/images/completer-example-country.png
%%QT_DOCDIR%%/qtwidgets/images/completer-example-dirmodel.png
%%QT_DOCDIR%%/qtwidgets/images/completer-example-qdirmodel.png
%%QT_DOCDIR%%/qtwidgets/images/completer-example-word.png
%%QT_DOCDIR%%/qtwidgets/images/completer-example.png
%%QT_DOCDIR%%/qtwidgets/images/composition-demo.png
%%QT_DOCDIR%%/qtwidgets/images/concentriccircles-example.png
%%QT_DOCDIR%%/qtwidgets/images/conceptualpushbuttontree.png
%%QT_DOCDIR%%/qtwidgets/images/configdialog-example.png
%%QT_DOCDIR%%/qtwidgets/images/customcompleter-example.png
%%QT_DOCDIR%%/qtwidgets/images/customcompleter-insertcompletion.png
%%QT_DOCDIR%%/qtwidgets/images/customsortfiltermodel-example.png
%%QT_DOCDIR%%/qtwidgets/images/deform-demo.png
%%QT_DOCDIR%%/qtwidgets/images/designer-stylesheet-options.png
%%QT_DOCDIR%%/qtwidgets/images/designer-stylesheet-usage.png
%%QT_DOCDIR%%/qtwidgets/images/designer-validator-highlighter.png
%%QT_DOCDIR%%/qtwidgets/images/desktop-examples.png
%%QT_DOCDIR%%/qtwidgets/images/diagramscene.png
%%QT_DOCDIR%%/qtwidgets/images/dialog-examples.png
%%QT_DOCDIR%%/qtwidgets/images/digitalclock-example.png
%%QT_DOCDIR%%/qtwidgets/images/dirview-example.png
%%QT_DOCDIR%%/qtwidgets/images/dockwidget.png
%%QT_DOCDIR%%/qtwidgets/images/dockwidgetimage.png
%%QT_DOCDIR%%/qtwidgets/images/dockwidgets-example.png
%%QT_DOCDIR%%/qtwidgets/images/draganddroppuzzle-example.png
%%QT_DOCDIR%%/qtwidgets/images/dragdroprobot-example.png
%%QT_DOCDIR%%/qtwidgets/images/draggableicons-example.png
%%QT_DOCDIR%%/qtwidgets/images/draggabletext-example.png
%%QT_DOCDIR%%/qtwidgets/images/dropsite-example.png
%%QT_DOCDIR%%/qtwidgets/images/dummy_tree.png
%%QT_DOCDIR%%/qtwidgets/images/easing-example.png
%%QT_DOCDIR%%/qtwidgets/images/echopluginexample.png
%%QT_DOCDIR%%/qtwidgets/images/elasticnodes-example.png
%%QT_DOCDIR%%/qtwidgets/images/elidedlabel-example.png
%%QT_DOCDIR%%/qtwidgets/images/embeddeddialogs-demo.png
%%QT_DOCDIR%%/qtwidgets/images/example_model.png
%%QT_DOCDIR%%/qtwidgets/images/extension-example.png
%%QT_DOCDIR%%/qtwidgets/images/extension_more.png
%%QT_DOCDIR%%/qtwidgets/images/factorial-example.png
%%QT_DOCDIR%%/qtwidgets/images/fademessageeffect-example-faded.png
%%QT_DOCDIR%%/qtwidgets/images/fademessageeffect-example.png
%%QT_DOCDIR%%/qtwidgets/images/fetchmore-example.png
%%QT_DOCDIR%%/qtwidgets/images/filedialogurls.png
%%QT_DOCDIR%%/qtwidgets/images/findfiles-example.png
%%QT_DOCDIR%%/qtwidgets/images/findfiles_progress_dialog.png
%%QT_DOCDIR%%/qtwidgets/images/flowlayout-example.png
%%QT_DOCDIR%%/qtwidgets/images/fontsampler-example.png
%%QT_DOCDIR%%/qtwidgets/images/frames.png
%%QT_DOCDIR%%/qtwidgets/images/fridgemagnets-example.png
%%QT_DOCDIR%%/qtwidgets/images/frozencolumn-example.png
%%QT_DOCDIR%%/qtwidgets/images/frozencolumn-tableview.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-calendarwidget.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-checkbox.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-colordialog.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-combobox.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-dateedit.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-datetimeedit.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-dial.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-doublespinbox.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-fontcombobox.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-fontdialog.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-frame.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-groupbox.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-horizontalscrollbar.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-label.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-lcdnumber.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-lineedit.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-listview.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-menu.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-progressbar.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-progressdialog.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-pushbutton-menu.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-pushbutton.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-radiobutton.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-slider.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-spinbox.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-statusbar-sizegrip.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-tabbar-truncated.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-tabbar.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-tableview.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-tabwidget.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-textedit.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-timeedit.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-toolbox.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-toolbutton.png
%%QT_DOCDIR%%/qtwidgets/images/fusion-treeview.png
%%QT_DOCDIR%%/qtwidgets/images/geometry.png
%%QT_DOCDIR%%/qtwidgets/images/gradients-demo.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsanchorlayout-example.png
%%QT_DOCDIR%%/qtwidgets/images/graphicseffect-blur.png
%%QT_DOCDIR%%/qtwidgets/images/graphicseffect-colorize.png
%%QT_DOCDIR%%/qtwidgets/images/graphicseffect-drop-shadow.png
%%QT_DOCDIR%%/qtwidgets/images/graphicseffect-opacity.png
%%QT_DOCDIR%%/qtwidgets/images/graphicseffect-plain.png
%%QT_DOCDIR%%/qtwidgets/images/graphicseffect-widget.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsflowlayout-example.png
%%QT_DOCDIR%%/qtwidgets/images/graphicssimpleanchorlayout-example.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-ellipseitem-pie.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-ellipseitem.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-examples.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-items.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-lineitem.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-parentchild.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-pathitem.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-pixmapitem.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-polygonitem.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-rectitem.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-simpletextitem.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-textitem.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-view.png
%%QT_DOCDIR%%/qtwidgets/images/graphicsview-zorder.png
%%QT_DOCDIR%%/qtwidgets/images/gridlayout.png
%%QT_DOCDIR%%/qtwidgets/images/groupbox-example.png
%%QT_DOCDIR%%/qtwidgets/images/groupbox.png
%%QT_DOCDIR%%/qtwidgets/images/groupboximage.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-calendarwidget.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-checkbox.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-combobox.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-dateedit.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-datetimeedit.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-dial.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-doublespinbox.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-fontcombobox.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-frame.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-groupbox.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-horizontalscrollbar.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-label.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-lcdnumber.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-lineedit.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-listview.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-progressbar.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-pushbutton.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-radiobutton.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-slider.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-spinbox.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-tableview.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-tabwidget.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-textedit.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-timeedit.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-toolbox.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-toolbutton.png
-%%QT_DOCDIR%%/qtwidgets/images/gtk-treeview.png
%%QT_DOCDIR%%/qtwidgets/images/header.png
%%QT_DOCDIR%%/qtwidgets/images/headerimage.png
%%QT_DOCDIR%%/qtwidgets/images/home.png
%%QT_DOCDIR%%/qtwidgets/images/i18n-example.png
%%QT_DOCDIR%%/qtwidgets/images/ico_note.png
%%QT_DOCDIR%%/qtwidgets/images/ico_note_attention.png
%%QT_DOCDIR%%/qtwidgets/images/ico_out.png
%%QT_DOCDIR%%/qtwidgets/images/icons-example.png
%%QT_DOCDIR%%/qtwidgets/images/icons-view-menu.png
%%QT_DOCDIR%%/qtwidgets/images/icons_find_normal.png
%%QT_DOCDIR%%/qtwidgets/images/icons_find_normal_disabled.png
%%QT_DOCDIR%%/qtwidgets/images/icons_images_groupbox.png
%%QT_DOCDIR%%/qtwidgets/images/icons_monkey.png
%%QT_DOCDIR%%/qtwidgets/images/icons_monkey_active.png
%%QT_DOCDIR%%/qtwidgets/images/icons_monkey_mess.png
%%QT_DOCDIR%%/qtwidgets/images/icons_preview_area.png
%%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_16x16.png
%%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_17x17.png
%%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_32x32.png
%%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_33x33.png
%%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_48x48.png
%%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_64x64.png
%%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_8x8.png
%%QT_DOCDIR%%/qtwidgets/images/icons_size_groupbox.png
%%QT_DOCDIR%%/qtwidgets/images/icons_size_spinbox.png
%%QT_DOCDIR%%/qtwidgets/images/imagecomposition-example.png
%%QT_DOCDIR%%/qtwidgets/images/imagegestures-example.jpg
%%QT_DOCDIR%%/qtwidgets/images/imageviewer-example.png
%%QT_DOCDIR%%/qtwidgets/images/imageviewer-fit_to_window_1.png
%%QT_DOCDIR%%/qtwidgets/images/imageviewer-fit_to_window_2.png
%%QT_DOCDIR%%/qtwidgets/images/imageviewer-original_size.png
%%QT_DOCDIR%%/qtwidgets/images/imageviewer-zoom_in_1.png
%%QT_DOCDIR%%/qtwidgets/images/imageviewer-zoom_in_2.png
%%QT_DOCDIR%%/qtwidgets/images/inputdialogs.png
%%QT_DOCDIR%%/qtwidgets/images/interview-demo.png
%%QT_DOCDIR%%/qtwidgets/images/itemviews-editabletreemodel-indexes.png
%%QT_DOCDIR%%/qtwidgets/images/itemviews-editabletreemodel-items.png
%%QT_DOCDIR%%/qtwidgets/images/itemviews-editabletreemodel-model.png
%%QT_DOCDIR%%/qtwidgets/images/itemviews-editabletreemodel-values.png
%%QT_DOCDIR%%/qtwidgets/images/itemviews-editabletreemodel.png
%%QT_DOCDIR%%/qtwidgets/images/itemviews-examples.png
%%QT_DOCDIR%%/qtwidgets/images/itemviewspuzzle-example.png
%%QT_DOCDIR%%/qtwidgets/images/layout1.png
%%QT_DOCDIR%%/qtwidgets/images/layout2.png
%%QT_DOCDIR%%/qtwidgets/images/licensewizard-example.png
%%QT_DOCDIR%%/qtwidgets/images/licensewizard-flow.png
%%QT_DOCDIR%%/qtwidgets/images/lightingeffect-example.png
%%QT_DOCDIR%%/qtwidgets/images/lineedits-example.png
%%QT_DOCDIR%%/qtwidgets/images/list_table_tree.png
%%QT_DOCDIR%%/qtwidgets/images/listview.png
%%QT_DOCDIR%%/qtwidgets/images/logo.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-calendarwidget.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-checkbox.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-combobox.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-dateedit.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-datetimeedit.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-dial.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-doublespinbox.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-fontcombobox.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-frame.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-groupbox.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-horizontalscrollbar.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-label.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-lcdnumber.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-lineedit.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-listview.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-menu.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-progressbar.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-pushbutton.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-radiobutton.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-slider.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-spinbox.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-tableview.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-tabwidget.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-textedit.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-timeedit.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-toolbox.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-toolbutton.png
%%QT_DOCDIR%%/qtwidgets/images/macintosh-treeview.png
%%QT_DOCDIR%%/qtwidgets/images/mainwindow-demo.png
%%QT_DOCDIR%%/qtwidgets/images/mainwindow-docks-example.png
%%QT_DOCDIR%%/qtwidgets/images/mainwindow-docks.png
%%QT_DOCDIR%%/qtwidgets/images/mainwindow-examples.png
%%QT_DOCDIR%%/qtwidgets/images/mainwindowlayout.png
%%QT_DOCDIR%%/qtwidgets/images/mdi-cascade.png
%%QT_DOCDIR%%/qtwidgets/images/mdi-example.png
%%QT_DOCDIR%%/qtwidgets/images/mdi-tile.png
%%QT_DOCDIR%%/qtwidgets/images/menu.png
%%QT_DOCDIR%%/qtwidgets/images/menubar.png
%%QT_DOCDIR%%/qtwidgets/images/menubarimage.png
%%QT_DOCDIR%%/qtwidgets/images/menuimage.png
%%QT_DOCDIR%%/qtwidgets/images/menus-example.png
%%QT_DOCDIR%%/qtwidgets/images/modelview-combobox.png
%%QT_DOCDIR%%/qtwidgets/images/modelview-header.png
%%QT_DOCDIR%%/qtwidgets/images/modelview-models.png
%%QT_DOCDIR%%/qtwidgets/images/modelview-overview.png
%%QT_DOCDIR%%/qtwidgets/images/modelview-roles.png
%%QT_DOCDIR%%/qtwidgets/images/modelview-tablemodel.png
%%QT_DOCDIR%%/qtwidgets/images/modelview-treemodel.png
%%QT_DOCDIR%%/qtwidgets/images/modelview.png
%%QT_DOCDIR%%/qtwidgets/images/mousebutton-buttontester.png
%%QT_DOCDIR%%/qtwidgets/images/move-blocks-chart.png
%%QT_DOCDIR%%/qtwidgets/images/moveblocks-example.png
%%QT_DOCDIR%%/qtwidgets/images/movie-example.png
%%QT_DOCDIR%%/qtwidgets/images/msgbox1.png
%%QT_DOCDIR%%/qtwidgets/images/msgbox2.png
%%QT_DOCDIR%%/qtwidgets/images/msgbox3.png
%%QT_DOCDIR%%/qtwidgets/images/msgbox4.png
%%QT_DOCDIR%%/qtwidgets/images/orderform-example-detailsdialog.png
%%QT_DOCDIR%%/qtwidgets/images/orderform-example.png
%%QT_DOCDIR%%/qtwidgets/images/padnavigator-example.png
%%QT_DOCDIR%%/qtwidgets/images/painterpaths-example.png
%%QT_DOCDIR%%/qtwidgets/images/painting-examples.png
%%QT_DOCDIR%%/qtwidgets/images/paintsystem-icon.png
%%QT_DOCDIR%%/qtwidgets/images/paintsystem-stylepainter.png
%%QT_DOCDIR%%/qtwidgets/images/pangesture.png
%%QT_DOCDIR%%/qtwidgets/images/parent-child-widgets.png
%%QT_DOCDIR%%/qtwidgets/images/pathstroke-demo.png
%%QT_DOCDIR%%/qtwidgets/images/pinchgesture.png
%%QT_DOCDIR%%/qtwidgets/images/pingpong-example.png
%%QT_DOCDIR%%/qtwidgets/images/pixelator-example.png
%%QT_DOCDIR%%/qtwidgets/images/plugandpaint-plugindialog.png
%%QT_DOCDIR%%/qtwidgets/images/plugandpaint.png
%%QT_DOCDIR%%/qtwidgets/images/progressBar-stylesheet.png
%%QT_DOCDIR%%/qtwidgets/images/progressBar2-stylesheet.png
%%QT_DOCDIR%%/qtwidgets/images/progressbar.png
%%QT_DOCDIR%%/qtwidgets/images/progressbarimage.png
%%QT_DOCDIR%%/qtwidgets/images/propagation-custom.png
%%QT_DOCDIR%%/qtwidgets/images/propagation-standard.png
%%QT_DOCDIR%%/qtwidgets/images/pushbutton.png
%%QT_DOCDIR%%/qtwidgets/images/qactiongroup-align.png
%%QT_DOCDIR%%/qtwidgets/images/qcalendarwidget-grid.png
%%QT_DOCDIR%%/qtwidgets/images/qcalendarwidget-maximum.png
%%QT_DOCDIR%%/qtwidgets/images/qcalendarwidget-minimum.png
%%QT_DOCDIR%%/qtwidgets/images/qcolumnview.png
%%QT_DOCDIR%%/qtwidgets/images/qcompleter.png
%%QT_DOCDIR%%/qtwidgets/images/qdesktopwidget.png
%%QT_DOCDIR%%/qtwidgets/images/qerrormessage.png
%%QT_DOCDIR%%/qtwidgets/images/qformlayout-kde.png
%%QT_DOCDIR%%/qtwidgets/images/qformlayout-mac.png
%%QT_DOCDIR%%/qtwidgets/images/qformlayout-qpe.png
%%QT_DOCDIR%%/qtwidgets/images/qformlayout-win.png
%%QT_DOCDIR%%/qtwidgets/images/qformlayout-with-6-children.png
%%QT_DOCDIR%%/qtwidgets/images/qgraphicsproxywidget-embed.png
%%QT_DOCDIR%%/qtwidgets/images/qgridlayout-with-5-children.png
%%QT_DOCDIR%%/qtwidgets/images/qhboxlayout-with-5-children.png
%%QT_DOCDIR%%/qtwidgets/images/qmdisubwindowlayout.png
%%QT_DOCDIR%%/qtwidgets/images/qmessagebox-crit.png
%%QT_DOCDIR%%/qtwidgets/images/qmessagebox-info.png
%%QT_DOCDIR%%/qtwidgets/images/qmessagebox-quest.png
%%QT_DOCDIR%%/qtwidgets/images/qmessagebox-warn.png
%%QT_DOCDIR%%/qtwidgets/images/qscrollarea-noscrollbars.png
%%QT_DOCDIR%%/qtwidgets/images/qscrollarea-onescrollbar.png
%%QT_DOCDIR%%/qtwidgets/images/qscrollarea-twoscrollbars.png
%%QT_DOCDIR%%/qtwidgets/images/qscrollbar-picture.png
%%QT_DOCDIR%%/qtwidgets/images/qscrollbar-values.png
%%QT_DOCDIR%%/qtwidgets/images/qspinbox-plusminus.png
%%QT_DOCDIR%%/qtwidgets/images/qspinbox-updown.png
%%QT_DOCDIR%%/qtwidgets/images/qstyle-comboboxes.png
%%QT_DOCDIR%%/qtwidgets/images/qstyleoptiontoolbar-position.png
%%QT_DOCDIR%%/qtwidgets/images/qtableview-resized.png
%%QT_DOCDIR%%/qtwidgets/images/qtwizard-aero1.png
%%QT_DOCDIR%%/qtwidgets/images/qtwizard-aero2.png
%%QT_DOCDIR%%/qtwidgets/images/qtwizard-classic1.png
%%QT_DOCDIR%%/qtwidgets/images/qtwizard-classic2.png
%%QT_DOCDIR%%/qtwidgets/images/qtwizard-mac1.png
%%QT_DOCDIR%%/qtwidgets/images/qtwizard-mac2.png
%%QT_DOCDIR%%/qtwidgets/images/qtwizard-macpage.png
%%QT_DOCDIR%%/qtwidgets/images/qtwizard-modern1.png
%%QT_DOCDIR%%/qtwidgets/images/qtwizard-modern2.png
%%QT_DOCDIR%%/qtwidgets/images/qtwizard-nonmacpage.png
%%QT_DOCDIR%%/qtwidgets/images/qundoview.png
%%QT_DOCDIR%%/qtwidgets/images/qvboxlayout-with-5-children.png
%%QT_DOCDIR%%/qtwidgets/images/readonlytable_role.png
%%QT_DOCDIR%%/qtwidgets/images/regexp-example.png
%%QT_DOCDIR%%/qtwidgets/images/regularexpression-example.png
%%QT_DOCDIR%%/qtwidgets/images/richtext-examples.png
%%QT_DOCDIR%%/qtwidgets/images/rogue-example.png
%%QT_DOCDIR%%/qtwidgets/images/rogue-statechart.png
%%QT_DOCDIR%%/qtwidgets/images/rubberband.png
%%QT_DOCDIR%%/qtwidgets/images/rubberbandimage.png
%%QT_DOCDIR%%/qtwidgets/images/screenshot-example.png
%%QT_DOCDIR%%/qtwidgets/images/scribble-example.png
%%QT_DOCDIR%%/qtwidgets/images/scrollbar.png
%%QT_DOCDIR%%/qtwidgets/images/scrollbarimage.png
%%QT_DOCDIR%%/qtwidgets/images/sdi-example.png
%%QT_DOCDIR%%/qtwidgets/images/selected-items1.png
%%QT_DOCDIR%%/qtwidgets/images/selected-items2.png
%%QT_DOCDIR%%/qtwidgets/images/selected-items3.png
%%QT_DOCDIR%%/qtwidgets/images/selection-extended.png
%%QT_DOCDIR%%/qtwidgets/images/selection-multi.png
%%QT_DOCDIR%%/qtwidgets/images/selection-single.png
%%QT_DOCDIR%%/qtwidgets/images/selection2.png
%%QT_DOCDIR%%/qtwidgets/images/settingseditor-example.png
%%QT_DOCDIR%%/qtwidgets/images/shapedclock-dragging.png
%%QT_DOCDIR%%/qtwidgets/images/shapedclock-example.png
%%QT_DOCDIR%%/qtwidgets/images/shareddirmodel.png
%%QT_DOCDIR%%/qtwidgets/images/sharedmodel-tableviews.png
%%QT_DOCDIR%%/qtwidgets/images/sharedselection-tableviews.png
%%QT_DOCDIR%%/qtwidgets/images/signals-n-slots-aw-nat.png
%%QT_DOCDIR%%/qtwidgets/images/simpleanchorlayout-example.png
%%QT_DOCDIR%%/qtwidgets/images/simpledommodel-example.png
%%QT_DOCDIR%%/qtwidgets/images/simpletreemodel-example.png
%%QT_DOCDIR%%/qtwidgets/images/simplewidgetmapper-example.png
%%QT_DOCDIR%%/qtwidgets/images/sipdialog-closed.png
%%QT_DOCDIR%%/qtwidgets/images/sipdialog-opened.png
%%QT_DOCDIR%%/qtwidgets/images/sizegrip.png
%%QT_DOCDIR%%/qtwidgets/images/sizegripimage.png
%%QT_DOCDIR%%/qtwidgets/images/slider.png
%%QT_DOCDIR%%/qtwidgets/images/sliderimage.png
%%QT_DOCDIR%%/qtwidgets/images/sliders-example.png
%%QT_DOCDIR%%/qtwidgets/images/spinbox.png
%%QT_DOCDIR%%/qtwidgets/images/spinboxdelegate-example.png
%%QT_DOCDIR%%/qtwidgets/images/spinboxes-example.png
%%QT_DOCDIR%%/qtwidgets/images/spinboximage.png
%%QT_DOCDIR%%/qtwidgets/images/spreadsheet-demo.png
%%QT_DOCDIR%%/qtwidgets/images/standard-views.png
%%QT_DOCDIR%%/qtwidgets/images/standarddialogs-example.png
%%QT_DOCDIR%%/qtwidgets/images/standardwidget.png
%%QT_DOCDIR%%/qtwidgets/images/stardelegate.png
%%QT_DOCDIR%%/qtwidgets/images/states-example.png
%%QT_DOCDIR%%/qtwidgets/images/stickman-example.png
%%QT_DOCDIR%%/qtwidgets/images/stickman-example1.png
%%QT_DOCDIR%%/qtwidgets/images/stickman-example2.png
%%QT_DOCDIR%%/qtwidgets/images/stickman-example3.png
%%QT_DOCDIR%%/qtwidgets/images/stringlistmodel.png
%%QT_DOCDIR%%/qtwidgets/images/stylepluginexample.png
%%QT_DOCDIR%%/qtwidgets/images/styles-3d.png
%%QT_DOCDIR%%/qtwidgets/images/styles-aliasing.png
%%QT_DOCDIR%%/qtwidgets/images/styles-disabledwood.png
%%QT_DOCDIR%%/qtwidgets/images/styles-enabledwood.png
%%QT_DOCDIR%%/qtwidgets/images/styles-woodbuttons.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-border-image-normal.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-border-image-stretched.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-border-image-wrong.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-boxmodel.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-branch-closed.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-branch-end.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-branch-more.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-branch-open.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-coffee-cleanlooks.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-coffee-xp.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-pagefold-mac.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-pagefold.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-redbutton1.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-redbutton2.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-redbutton3.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-scrollbar1.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-scrollbar2.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-treeview.png
%%QT_DOCDIR%%/qtwidgets/images/stylesheet-vline.png
%%QT_DOCDIR%%/qtwidgets/images/sub-attaq-demo.png
%%QT_DOCDIR%%/qtwidgets/images/swipegesture.png
%%QT_DOCDIR%%/qtwidgets/images/syntaxhighlighter-example.png
%%QT_DOCDIR%%/qtwidgets/images/system-tray.png
%%QT_DOCDIR%%/qtwidgets/images/systemtray-editor.png
%%QT_DOCDIR%%/qtwidgets/images/systemtray-example.png
%%QT_DOCDIR%%/qtwidgets/images/tab.png
%%QT_DOCDIR%%/qtwidgets/images/tabWidget-stylesheet1.png
%%QT_DOCDIR%%/qtwidgets/images/tabWidget-stylesheet2.png
%%QT_DOCDIR%%/qtwidgets/images/tabWidget-stylesheet3.png
%%QT_DOCDIR%%/qtwidgets/images/tabdialog-example.png
%%QT_DOCDIR%%/qtwidgets/images/tableWidget-stylesheet.png
%%QT_DOCDIR%%/qtwidgets/images/tabletexample.png
%%QT_DOCDIR%%/qtwidgets/images/tableview.png
%%QT_DOCDIR%%/qtwidgets/images/tabwidget.png
%%QT_DOCDIR%%/qtwidgets/images/tetrix-example.png
%%QT_DOCDIR%%/qtwidgets/images/textedit-demo.png
%%QT_DOCDIR%%/qtwidgets/images/titlebar.png
%%QT_DOCDIR%%/qtwidgets/images/titlebarimage.png
%%QT_DOCDIR%%/qtwidgets/images/toolbar.png
%%QT_DOCDIR%%/qtwidgets/images/toolbarimage.png
%%QT_DOCDIR%%/qtwidgets/images/toolbox.png
%%QT_DOCDIR%%/qtwidgets/images/toolboximage.png
%%QT_DOCDIR%%/qtwidgets/images/toolbutton.png
%%QT_DOCDIR%%/qtwidgets/images/toolbuttonimage.png
%%QT_DOCDIR%%/qtwidgets/images/tooltips-example.png
%%QT_DOCDIR%%/qtwidgets/images/trafficlight-example.png
%%QT_DOCDIR%%/qtwidgets/images/trafficlight-example1.png
%%QT_DOCDIR%%/qtwidgets/images/trafficlight-example2.png
%%QT_DOCDIR%%/qtwidgets/images/transformations-example.png
%%QT_DOCDIR%%/qtwidgets/images/tree_2_with_algorithm.png
%%QT_DOCDIR%%/qtwidgets/images/treemodel-structure.png
%%QT_DOCDIR%%/qtwidgets/images/treemodelcompleter-example.png
%%QT_DOCDIR%%/qtwidgets/images/treeview.png
%%QT_DOCDIR%%/qtwidgets/images/trivialwizard-example-conclusion.png
%%QT_DOCDIR%%/qtwidgets/images/trivialwizard-example-flow.png
%%QT_DOCDIR%%/qtwidgets/images/trivialwizard-example-introduction.png
%%QT_DOCDIR%%/qtwidgets/images/trivialwizard-example-registration.png
%%QT_DOCDIR%%/qtwidgets/images/undodemo.png
%%QT_DOCDIR%%/qtwidgets/images/undoframeworkexample.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/Time-For-Lunch-2.jpg
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/centered.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/ellipse.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/figure8.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/kinetic.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/random.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/tile.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/easing/images/qt-logo.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/desktop/systray/images/bad.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/desktop/systray/images/heart.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/desktop/systray/images/trash.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/background.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/banner.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/logo1.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/logo2.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/logo3.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/watermark1.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/watermark2.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/configdialog/images/config.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/configdialog/images/query.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/configdialog/images/update.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/licensewizard/images/logo.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/licensewizard/images/watermark.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/draganddrop/draggableicons/images/boat.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/draganddrop/draggableicons/images/car.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/draganddrop/draggableicons/images/house.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/accessories-calculator.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/accessories-text-editor.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/background.jpg
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/help-browser.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/internet-group-chat.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/internet-mail.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/internet-web-browser.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/office-calendar.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/system-users.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/basicgraphicslayouts/images/block.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/collidingmice/images/cheese.jpg
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/background1.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/background2.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/background3.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/background4.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/bold.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/bringtofront.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/delete.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/floodfill.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/italic.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/linecolor.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/linepointer.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/pointer.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/sendtoback.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/textpointer.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/underline.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/dragdroprobot/images/head.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/artsfftscope.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/blue_angle_swirl.jpg
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/kontact_contacts.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/kontact_journal.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/kontact_mail.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/kontact_notes.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/kopeteavailable.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/metacontact_online.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/minitools.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/weatheranchorlayout/images/5days.jpg
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/weatheranchorlayout/images/details.jpg
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/weatheranchorlayout/images/place.jpg
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/weatheranchorlayout/images/tabbar.jpg
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/weatheranchorlayout/images/title.jpg
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/weatheranchorlayout/images/weather-few-clouds.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/customsortfiltermodel/images/find.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/interview/images/folder.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/interview/images/interview.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/interview/images/services.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/pixelator/images/qt.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/spreadsheet/images/interview.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/application/images/copy.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/application/images/cut.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/application/images/new.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/application/images/open.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/application/images/paste.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/application/images/save.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/dockwidgets/images/new.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/dockwidgets/images/print.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/dockwidgets/images/save.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/dockwidgets/images/undo.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mdi/images/copy.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mdi/images/cut.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mdi/images/new.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mdi/images/open.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mdi/images/paste.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mdi/images/save.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/sdi/images/copy.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/sdi/images/cut.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/sdi/images/new.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/sdi/images/open.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/sdi/images/paste.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/sdi/images/save.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/basicdrawing/images/brick.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/basicdrawing/images/qt-logo.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/imagecomposition/images/background.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/imagecomposition/images/blackrectangle.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/imagecomposition/images/butterfly.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/imagecomposition/images/checker.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/logo32.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/editcopy.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/editcut.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/editpaste.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/editredo.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/editundo.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/exportpdf.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/filenew.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/fileopen.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/fileprint.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/filesave.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textbold.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textcenter.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textitalic.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textjustify.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textleft.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textright.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textunder.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/zoomin.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/zoomout.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/editcopy.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/editcut.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/editpaste.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/editredo.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/editundo.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/exportpdf.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/filenew.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/fileopen.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/fileprint.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/filesave.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textbold.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textcenter.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textitalic.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textjustify.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textleft.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textright.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textunder.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/zoomin.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/zoomout.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/regularexpression/images/copy.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undoframework/images/cross.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/designer.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/find_disabled.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/find_normal.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_off_128x128.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_off_16x16.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_off_32x32.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_off_64x64.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_on_128x128.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_on_16x16.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_on_32x32.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_on_64x64.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/qt_extended_16x16.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/qt_extended_32x32.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/qt_extended_48x48.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/styles/images/woodbackground.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/styles/images/woodbutton.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/checkbox_checked.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/checkbox_checked_hover.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/checkbox_checked_pressed.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/checkbox_unchecked.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/checkbox_unchecked_hover.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/checkbox_unchecked_pressed.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/down_arrow.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/down_arrow_disabled.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/frame.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/pagefold.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/pushbutton.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/pushbutton_hover.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/pushbutton_pressed.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/radiobutton_checked.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/radiobutton_checked_hover.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/radiobutton_checked_pressed.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/radiobutton_unchecked.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/radiobutton_unchecked_hover.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/radiobutton_unchecked_pressed.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/sizegrip.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spindown.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spindown_hover.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spindown_off.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spindown_pressed.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spinup.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spinup_hover.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spinup_off.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spinup_pressed.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/up_arrow.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/up_arrow_disabled.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tablet/images/cursor-airbrush.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tablet/images/cursor-eraser.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tablet/images/cursor-felt-marker.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tablet/images/cursor-pencil.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tooltips/images/circle.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tooltips/images/square.png
%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tooltips/images/triangle.png
%%QT_DOCDIR%%/qtwidgets/images/weatheranchorlayout-example.png
%%QT_DOCDIR%%/qtwidgets/images/whatsthis.png
%%QT_DOCDIR%%/qtwidgets/images/widget-examples.png
%%QT_DOCDIR%%/qtwidgets/images/widgetdelegate.png
%%QT_DOCDIR%%/qtwidgets/images/widgetmapper-combo-mapping.png
%%QT_DOCDIR%%/qtwidgets/images/widgetmapper-simple-mapping.png
%%QT_DOCDIR%%/qtwidgets/images/widgetmapper.png
%%QT_DOCDIR%%/qtwidgets/images/widgets-tutorial-childwidget.png
%%QT_DOCDIR%%/qtwidgets/images/widgets-tutorial-nestedlayouts.png
%%QT_DOCDIR%%/qtwidgets/images/widgets-tutorial-toplevel.png
%%QT_DOCDIR%%/qtwidgets/images/widgets-tutorial-windowlayout.png
%%QT_DOCDIR%%/qtwidgets/images/wiggly-example.png
%%QT_DOCDIR%%/qtwidgets/images/windowflags-example.png
%%QT_DOCDIR%%/qtwidgets/images/windowflags_controllerwindow.png
%%QT_DOCDIR%%/qtwidgets/images/windowflags_previewwindow.png
%%QT_DOCDIR%%/qtwidgets/images/windows-calendarwidget.png
%%QT_DOCDIR%%/qtwidgets/images/windows-checkbox.png
%%QT_DOCDIR%%/qtwidgets/images/windows-combobox.png
%%QT_DOCDIR%%/qtwidgets/images/windows-dateedit.png
%%QT_DOCDIR%%/qtwidgets/images/windows-datetimeedit.png
%%QT_DOCDIR%%/qtwidgets/images/windows-dial.png
%%QT_DOCDIR%%/qtwidgets/images/windows-doublespinbox.png
%%QT_DOCDIR%%/qtwidgets/images/windows-fontcombobox.png
%%QT_DOCDIR%%/qtwidgets/images/windows-frame.png
%%QT_DOCDIR%%/qtwidgets/images/windows-groupbox.png
%%QT_DOCDIR%%/qtwidgets/images/windows-horizontalscrollbar.png
%%QT_DOCDIR%%/qtwidgets/images/windows-label.png
%%QT_DOCDIR%%/qtwidgets/images/windows-lcdnumber.png
%%QT_DOCDIR%%/qtwidgets/images/windows-lineedit.png
%%QT_DOCDIR%%/qtwidgets/images/windows-listview.png
%%QT_DOCDIR%%/qtwidgets/images/windows-progressbar.png
%%QT_DOCDIR%%/qtwidgets/images/windows-pushbutton.png
%%QT_DOCDIR%%/qtwidgets/images/windows-radiobutton.png
%%QT_DOCDIR%%/qtwidgets/images/windows-slider.png
%%QT_DOCDIR%%/qtwidgets/images/windows-spinbox.png
%%QT_DOCDIR%%/qtwidgets/images/windows-tableview.png
%%QT_DOCDIR%%/qtwidgets/images/windows-tabwidget.png
%%QT_DOCDIR%%/qtwidgets/images/windows-textedit.png
%%QT_DOCDIR%%/qtwidgets/images/windows-timeedit.png
%%QT_DOCDIR%%/qtwidgets/images/windows-toolbox.png
%%QT_DOCDIR%%/qtwidgets/images/windows-toolbutton.png
%%QT_DOCDIR%%/qtwidgets/images/windows-treeview.png
%%QT_DOCDIR%%/qtwidgets/images/windowstabimage.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-calendarwidget.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-checkbox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-combobox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-dateedit.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-datetimeedit.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-dial.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-doublespinbox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-fontcombobox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-frame.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-groupbox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-horizontalscrollbar.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-label.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-lcdnumber.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-lineedit.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-listview.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-progressbar.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-pushbutton.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-radiobutton.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-slider.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-spinbox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-tableview.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-tabwidget.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-textedit.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-timeedit.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-toolbox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-toolbutton.png
%%QT_DOCDIR%%/qtwidgets/images/windowsvista-treeview.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-calendarwidget.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-checkbox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-combobox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-dateedit.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-datetimeedit.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-dial.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-doublespinbox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-fontcombobox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-frame.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-groupbox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-horizontalscrollbar.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-label.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-lcdnumber.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-lineedit.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-listview.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-menu.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-progressbar.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-pushbutton.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-radiobutton.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-slider.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-spinbox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-tableview.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-tabwidget.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-textedit.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-timeedit.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-toolbox.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-toolbutton.png
%%QT_DOCDIR%%/qtwidgets/images/windowsxp-treeview.png
%%QT_DOCDIR%%/qtwidgets/images/woodbackground.png
%%QT_DOCDIR%%/qtwidgets/images/woodbutton.png
%%QT_DOCDIR%%/qtwidgets/layout.html
%%QT_DOCDIR%%/qtwidgets/mainwindow.html
%%QT_DOCDIR%%/qtwidgets/model-view-programming.html
%%QT_DOCDIR%%/qtwidgets/modelview-part2-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/modelview.html
%%QT_DOCDIR%%/qtwidgets/qabstractbutton-members.html
%%QT_DOCDIR%%/qtwidgets/qabstractbutton.html
%%QT_DOCDIR%%/qtwidgets/qabstractgraphicsshapeitem-members.html
%%QT_DOCDIR%%/qtwidgets/qabstractgraphicsshapeitem.html
%%QT_DOCDIR%%/qtwidgets/qabstractitemdelegate-members.html
%%QT_DOCDIR%%/qtwidgets/qabstractitemdelegate-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qabstractitemdelegate.html
%%QT_DOCDIR%%/qtwidgets/qabstractitemview-members.html
%%QT_DOCDIR%%/qtwidgets/qabstractitemview-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qabstractitemview.html
%%QT_DOCDIR%%/qtwidgets/qabstractscrollarea-members.html
%%QT_DOCDIR%%/qtwidgets/qabstractscrollarea.html
%%QT_DOCDIR%%/qtwidgets/qabstractslider-members.html
%%QT_DOCDIR%%/qtwidgets/qabstractslider.html
%%QT_DOCDIR%%/qtwidgets/qabstractspinbox-members.html
%%QT_DOCDIR%%/qtwidgets/qabstractspinbox.html
%%QT_DOCDIR%%/qtwidgets/qaccessiblewidget-members.html
%%QT_DOCDIR%%/qtwidgets/qaccessiblewidget.html
%%QT_DOCDIR%%/qtwidgets/qaction-members.html
%%QT_DOCDIR%%/qtwidgets/qaction.html
%%QT_DOCDIR%%/qtwidgets/qactiongroup-members.html
%%QT_DOCDIR%%/qtwidgets/qactiongroup.html
%%QT_DOCDIR%%/qtwidgets/qapplication-members.html
%%QT_DOCDIR%%/qtwidgets/qapplication-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qapplication.html
%%QT_DOCDIR%%/qtwidgets/qboxlayout-members.html
%%QT_DOCDIR%%/qtwidgets/qboxlayout.html
%%QT_DOCDIR%%/qtwidgets/qbuttongroup-members.html
%%QT_DOCDIR%%/qtwidgets/qbuttongroup.html
%%QT_DOCDIR%%/qtwidgets/qcalendarwidget-members.html
%%QT_DOCDIR%%/qtwidgets/qcalendarwidget.html
%%QT_DOCDIR%%/qtwidgets/qcheckbox-members.html
%%QT_DOCDIR%%/qtwidgets/qcheckbox.html
%%QT_DOCDIR%%/qtwidgets/qcolordialog-members.html
%%QT_DOCDIR%%/qtwidgets/qcolordialog-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qcolordialog.html
%%QT_DOCDIR%%/qtwidgets/qcolormap-members.html
%%QT_DOCDIR%%/qtwidgets/qcolormap.html
%%QT_DOCDIR%%/qtwidgets/qcolumnview-members.html
%%QT_DOCDIR%%/qtwidgets/qcolumnview.html
%%QT_DOCDIR%%/qtwidgets/qcombobox-members.html
%%QT_DOCDIR%%/qtwidgets/qcombobox-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qcombobox.html
%%QT_DOCDIR%%/qtwidgets/qcommandlinkbutton-members.html
%%QT_DOCDIR%%/qtwidgets/qcommandlinkbutton.html
%%QT_DOCDIR%%/qtwidgets/qcommonstyle-members.html
%%QT_DOCDIR%%/qtwidgets/qcommonstyle.html
%%QT_DOCDIR%%/qtwidgets/qcompleter-members.html
%%QT_DOCDIR%%/qtwidgets/qcompleter.html
%%QT_DOCDIR%%/qtwidgets/qdatawidgetmapper-members.html
%%QT_DOCDIR%%/qtwidgets/qdatawidgetmapper.html
%%QT_DOCDIR%%/qtwidgets/qdateedit-members.html
%%QT_DOCDIR%%/qtwidgets/qdateedit.html
%%QT_DOCDIR%%/qtwidgets/qdatetimeedit-members.html
%%QT_DOCDIR%%/qtwidgets/qdatetimeedit.html
%%QT_DOCDIR%%/qtwidgets/qdesktopwidget-members.html
%%QT_DOCDIR%%/qtwidgets/qdesktopwidget-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qdesktopwidget.html
%%QT_DOCDIR%%/qtwidgets/qdial-members.html
%%QT_DOCDIR%%/qtwidgets/qdial.html
%%QT_DOCDIR%%/qtwidgets/qdialog-members.html
%%QT_DOCDIR%%/qtwidgets/qdialog-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qdialog.html
%%QT_DOCDIR%%/qtwidgets/qdialogbuttonbox-members.html
%%QT_DOCDIR%%/qtwidgets/qdialogbuttonbox.html
%%QT_DOCDIR%%/qtwidgets/qdirmodel-members.html
%%QT_DOCDIR%%/qtwidgets/qdirmodel.html
%%QT_DOCDIR%%/qtwidgets/qdockwidget-members.html
%%QT_DOCDIR%%/qtwidgets/qdockwidget.html
%%QT_DOCDIR%%/qtwidgets/qdoublespinbox-members.html
%%QT_DOCDIR%%/qtwidgets/qdoublespinbox.html
%%QT_DOCDIR%%/qtwidgets/qdrawutil-h.html
%%QT_DOCDIR%%/qtwidgets/qerrormessage-members.html
%%QT_DOCDIR%%/qtwidgets/qerrormessage.html
%%QT_DOCDIR%%/qtwidgets/qfiledialog-members.html
%%QT_DOCDIR%%/qtwidgets/qfiledialog-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qfiledialog.html
%%QT_DOCDIR%%/qtwidgets/qfileiconprovider-members.html
%%QT_DOCDIR%%/qtwidgets/qfileiconprovider.html
%%QT_DOCDIR%%/qtwidgets/qfilesystemmodel-members.html
%%QT_DOCDIR%%/qtwidgets/qfilesystemmodel.html
%%QT_DOCDIR%%/qtwidgets/qfocusframe-members.html
%%QT_DOCDIR%%/qtwidgets/qfocusframe.html
%%QT_DOCDIR%%/qtwidgets/qfontcombobox-members.html
%%QT_DOCDIR%%/qtwidgets/qfontcombobox.html
%%QT_DOCDIR%%/qtwidgets/qfontdialog-members.html
%%QT_DOCDIR%%/qtwidgets/qfontdialog.html
%%QT_DOCDIR%%/qtwidgets/qformlayout-members.html
%%QT_DOCDIR%%/qtwidgets/qformlayout.html
%%QT_DOCDIR%%/qtwidgets/qframe-members.html
%%QT_DOCDIR%%/qtwidgets/qframe.html
%%QT_DOCDIR%%/qtwidgets/qgesture-members.html
%%QT_DOCDIR%%/qtwidgets/qgesture.html
%%QT_DOCDIR%%/qtwidgets/qgestureevent-members.html
%%QT_DOCDIR%%/qtwidgets/qgestureevent.html
%%QT_DOCDIR%%/qtwidgets/qgesturerecognizer-members.html
%%QT_DOCDIR%%/qtwidgets/qgesturerecognizer.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsanchor-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsanchor.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsanchorlayout-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsanchorlayout.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsblureffect-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsblureffect.html
%%QT_DOCDIR%%/qtwidgets/qgraphicscolorizeeffect-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicscolorizeeffect.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsdropshadoweffect-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsdropshadoweffect.html
%%QT_DOCDIR%%/qtwidgets/qgraphicseffect-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicseffect.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsellipseitem-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsellipseitem.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsgridlayout-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsgridlayout.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsitem-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsitem-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsitem.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsitemanimation-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsitemanimation-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsitemanimation.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsitemgroup-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsitemgroup.html
%%QT_DOCDIR%%/qtwidgets/qgraphicslayout-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicslayout.html
%%QT_DOCDIR%%/qtwidgets/qgraphicslayoutitem-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicslayoutitem.html
%%QT_DOCDIR%%/qtwidgets/qgraphicslinearlayout-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicslinearlayout.html
%%QT_DOCDIR%%/qtwidgets/qgraphicslineitem-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicslineitem.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsobject-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsobject.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsopacityeffect-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsopacityeffect.html
%%QT_DOCDIR%%/qtwidgets/qgraphicspathitem-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicspathitem.html
%%QT_DOCDIR%%/qtwidgets/qgraphicspixmapitem-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicspixmapitem.html
%%QT_DOCDIR%%/qtwidgets/qgraphicspolygonitem-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicspolygonitem.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsproxywidget-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsproxywidget.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsrectitem-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsrectitem.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsrotation-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsrotation.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscale-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscale.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscene-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscene-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscene.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenecontextmenuevent-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenecontextmenuevent.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenedragdropevent-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenedragdropevent.html
%%QT_DOCDIR%%/qtwidgets/qgraphicssceneevent-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicssceneevent.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenehelpevent-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenehelpevent.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenehoverevent-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenehoverevent.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenemouseevent-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenemouseevent.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenemoveevent-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenemoveevent.html
%%QT_DOCDIR%%/qtwidgets/qgraphicssceneresizeevent-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicssceneresizeevent.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenewheelevent-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsscenewheelevent.html
%%QT_DOCDIR%%/qtwidgets/qgraphicssimpletextitem-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicssimpletextitem.html
%%QT_DOCDIR%%/qtwidgets/qgraphicstextitem-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicstextitem.html
%%QT_DOCDIR%%/qtwidgets/qgraphicstransform-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicstransform.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsview-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsview-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qgraphicsview.html
%%QT_DOCDIR%%/qtwidgets/qgraphicswidget-members.html
%%QT_DOCDIR%%/qtwidgets/qgraphicswidget.html
%%QT_DOCDIR%%/qtwidgets/qgridlayout-members.html
%%QT_DOCDIR%%/qtwidgets/qgridlayout.html
%%QT_DOCDIR%%/qtwidgets/qgroupbox-members.html
%%QT_DOCDIR%%/qtwidgets/qgroupbox.html
%%QT_DOCDIR%%/qtwidgets/qhboxlayout-members.html
%%QT_DOCDIR%%/qtwidgets/qhboxlayout.html
%%QT_DOCDIR%%/qtwidgets/qheaderview-members.html
%%QT_DOCDIR%%/qtwidgets/qheaderview-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qheaderview.html
%%QT_DOCDIR%%/qtwidgets/qinputdialog-members.html
%%QT_DOCDIR%%/qtwidgets/qinputdialog-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qinputdialog.html
%%QT_DOCDIR%%/qtwidgets/qitemdelegate-members.html
%%QT_DOCDIR%%/qtwidgets/qitemdelegate.html
%%QT_DOCDIR%%/qtwidgets/qitemeditorcreator-members.html
%%QT_DOCDIR%%/qtwidgets/qitemeditorcreator.html
%%QT_DOCDIR%%/qtwidgets/qitemeditorcreatorbase-members.html
%%QT_DOCDIR%%/qtwidgets/qitemeditorcreatorbase.html
%%QT_DOCDIR%%/qtwidgets/qitemeditorfactory-members.html
%%QT_DOCDIR%%/qtwidgets/qitemeditorfactory.html
%%QT_DOCDIR%%/qtwidgets/qkeyeventtransition-members.html
%%QT_DOCDIR%%/qtwidgets/qkeyeventtransition.html
%%QT_DOCDIR%%/qtwidgets/qkeysequenceedit-members.html
%%QT_DOCDIR%%/qtwidgets/qkeysequenceedit.html
%%QT_DOCDIR%%/qtwidgets/qlabel-members.html
%%QT_DOCDIR%%/qtwidgets/qlabel.html
%%QT_DOCDIR%%/qtwidgets/qlayout-members.html
%%QT_DOCDIR%%/qtwidgets/qlayout-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qlayout.html
%%QT_DOCDIR%%/qtwidgets/qlayoutitem-members.html
%%QT_DOCDIR%%/qtwidgets/qlayoutitem.html
%%QT_DOCDIR%%/qtwidgets/qlcdnumber-members.html
%%QT_DOCDIR%%/qtwidgets/qlcdnumber.html
%%QT_DOCDIR%%/qtwidgets/qlineedit-members.html
%%QT_DOCDIR%%/qtwidgets/qlineedit.html
%%QT_DOCDIR%%/qtwidgets/qlistview-members.html
%%QT_DOCDIR%%/qtwidgets/qlistview.html
%%QT_DOCDIR%%/qtwidgets/qlistwidget-members.html
%%QT_DOCDIR%%/qtwidgets/qlistwidget-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qlistwidget.html
%%QT_DOCDIR%%/qtwidgets/qlistwidgetitem-members.html
%%QT_DOCDIR%%/qtwidgets/qlistwidgetitem-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qlistwidgetitem.html
%%QT_DOCDIR%%/qtwidgets/qmaccocoaviewcontainer-members.html
%%QT_DOCDIR%%/qtwidgets/qmaccocoaviewcontainer.html
%%QT_DOCDIR%%/qtwidgets/qmacnativewidget-members.html
%%QT_DOCDIR%%/qtwidgets/qmacnativewidget.html
%%QT_DOCDIR%%/qtwidgets/qmainwindow-members.html
%%QT_DOCDIR%%/qtwidgets/qmainwindow.html
%%QT_DOCDIR%%/qtwidgets/qmdiarea-members.html
%%QT_DOCDIR%%/qtwidgets/qmdiarea.html
%%QT_DOCDIR%%/qtwidgets/qmdisubwindow-members.html
%%QT_DOCDIR%%/qtwidgets/qmdisubwindow.html
%%QT_DOCDIR%%/qtwidgets/qmenu-members.html
%%QT_DOCDIR%%/qtwidgets/qmenu-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qmenu.html
%%QT_DOCDIR%%/qtwidgets/qmenubar-members.html
%%QT_DOCDIR%%/qtwidgets/qmenubar.html
%%QT_DOCDIR%%/qtwidgets/qmessagebox-members.html
%%QT_DOCDIR%%/qtwidgets/qmessagebox-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qmessagebox.html
%%QT_DOCDIR%%/qtwidgets/qmouseeventtransition-members.html
%%QT_DOCDIR%%/qtwidgets/qmouseeventtransition.html
%%QT_DOCDIR%%/qtwidgets/qopenglwidget-members.html
%%QT_DOCDIR%%/qtwidgets/qopenglwidget.html
%%QT_DOCDIR%%/qtwidgets/qpangesture-members.html
%%QT_DOCDIR%%/qtwidgets/qpangesture.html
%%QT_DOCDIR%%/qtwidgets/qpinchgesture-members.html
%%QT_DOCDIR%%/qtwidgets/qpinchgesture.html
%%QT_DOCDIR%%/qtwidgets/qplaintextdocumentlayout-members.html
%%QT_DOCDIR%%/qtwidgets/qplaintextdocumentlayout.html
%%QT_DOCDIR%%/qtwidgets/qplaintextedit-members.html
%%QT_DOCDIR%%/qtwidgets/qplaintextedit.html
%%QT_DOCDIR%%/qtwidgets/qprogressbar-members.html
%%QT_DOCDIR%%/qtwidgets/qprogressbar.html
%%QT_DOCDIR%%/qtwidgets/qprogressdialog-members.html
%%QT_DOCDIR%%/qtwidgets/qprogressdialog.html
%%QT_DOCDIR%%/qtwidgets/qproxystyle-members.html
%%QT_DOCDIR%%/qtwidgets/qproxystyle.html
%%QT_DOCDIR%%/qtwidgets/qpushbutton-members.html
%%QT_DOCDIR%%/qtwidgets/qpushbutton.html
%%QT_DOCDIR%%/qtwidgets/qradiobutton-members.html
%%QT_DOCDIR%%/qtwidgets/qradiobutton.html
%%QT_DOCDIR%%/qtwidgets/qrubberband-members.html
%%QT_DOCDIR%%/qtwidgets/qrubberband.html
%%QT_DOCDIR%%/qtwidgets/qscrollarea-members.html
%%QT_DOCDIR%%/qtwidgets/qscrollarea.html
%%QT_DOCDIR%%/qtwidgets/qscrollbar-members.html
%%QT_DOCDIR%%/qtwidgets/qscrollbar.html
%%QT_DOCDIR%%/qtwidgets/qscroller-members.html
%%QT_DOCDIR%%/qtwidgets/qscroller.html
%%QT_DOCDIR%%/qtwidgets/qscrollerproperties-members.html
%%QT_DOCDIR%%/qtwidgets/qscrollerproperties.html
%%QT_DOCDIR%%/qtwidgets/qshortcut-members.html
%%QT_DOCDIR%%/qtwidgets/qshortcut.html
%%QT_DOCDIR%%/qtwidgets/qsizegrip-members.html
%%QT_DOCDIR%%/qtwidgets/qsizegrip.html
%%QT_DOCDIR%%/qtwidgets/qsizepolicy-members.html
%%QT_DOCDIR%%/qtwidgets/qsizepolicy.html
%%QT_DOCDIR%%/qtwidgets/qslider-members.html
%%QT_DOCDIR%%/qtwidgets/qslider.html
%%QT_DOCDIR%%/qtwidgets/qspaceritem-members.html
%%QT_DOCDIR%%/qtwidgets/qspaceritem.html
%%QT_DOCDIR%%/qtwidgets/qspinbox-members.html
%%QT_DOCDIR%%/qtwidgets/qspinbox.html
%%QT_DOCDIR%%/qtwidgets/qsplashscreen-members.html
%%QT_DOCDIR%%/qtwidgets/qsplashscreen.html
%%QT_DOCDIR%%/qtwidgets/qsplitter-members.html
%%QT_DOCDIR%%/qtwidgets/qsplitter-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qsplitter.html
%%QT_DOCDIR%%/qtwidgets/qsplitterhandle-members.html
%%QT_DOCDIR%%/qtwidgets/qsplitterhandle.html
%%QT_DOCDIR%%/qtwidgets/qstackedlayout-members.html
%%QT_DOCDIR%%/qtwidgets/qstackedlayout.html
%%QT_DOCDIR%%/qtwidgets/qstackedwidget-members.html
%%QT_DOCDIR%%/qtwidgets/qstackedwidget.html
%%QT_DOCDIR%%/qtwidgets/qstandarditemeditorcreator-members.html
%%QT_DOCDIR%%/qtwidgets/qstandarditemeditorcreator.html
%%QT_DOCDIR%%/qtwidgets/qstatusbar-members.html
%%QT_DOCDIR%%/qtwidgets/qstatusbar.html
%%QT_DOCDIR%%/qtwidgets/qstyle-members.html
%%QT_DOCDIR%%/qtwidgets/qstyle-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qstyle.html
%%QT_DOCDIR%%/qtwidgets/qstyleditemdelegate-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleditemdelegate.html
%%QT_DOCDIR%%/qtwidgets/qstylefactory-members.html
%%QT_DOCDIR%%/qtwidgets/qstylefactory.html
%%QT_DOCDIR%%/qtwidgets/qstylehintreturn-members.html
%%QT_DOCDIR%%/qtwidgets/qstylehintreturn.html
%%QT_DOCDIR%%/qtwidgets/qstylehintreturnmask-members.html
%%QT_DOCDIR%%/qtwidgets/qstylehintreturnmask.html
%%QT_DOCDIR%%/qtwidgets/qstylehintreturnvariant-members.html
%%QT_DOCDIR%%/qtwidgets/qstylehintreturnvariant.html
%%QT_DOCDIR%%/qtwidgets/qstyleoption-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoption-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qstyleoption.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionbutton-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionbutton.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptioncombobox-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptioncombobox.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptioncomplex-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptioncomplex.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiondockwidget-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiondockwidget-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiondockwidget.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionfocusrect-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionfocusrect.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionframe-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionframe-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionframe.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiongraphicsitem-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiongraphicsitem-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiongraphicsitem.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiongroupbox-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiongroupbox.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionheader-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionheader.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionmenuitem-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionmenuitem.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionprogressbar-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionprogressbar-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionprogressbar.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionrubberband-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionrubberband.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionsizegrip-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionsizegrip.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionslider-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionslider.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionspinbox-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionspinbox.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontab-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontab-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontab.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontabbarbase-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontabbarbase-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontabbarbase.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontabwidgetframe-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontabwidgetframe-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontabwidgetframe.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontitlebar-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontitlebar.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbar-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbar.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbox-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbox-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbox.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbutton-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbutton.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionviewitem-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionviewitem-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qstyleoptionviewitem.html
%%QT_DOCDIR%%/qtwidgets/qstylepainter-members.html
%%QT_DOCDIR%%/qtwidgets/qstylepainter.html
%%QT_DOCDIR%%/qtwidgets/qstyleplugin-members.html
%%QT_DOCDIR%%/qtwidgets/qstyleplugin.html
%%QT_DOCDIR%%/qtwidgets/qswipegesture-members.html
%%QT_DOCDIR%%/qtwidgets/qswipegesture.html
%%QT_DOCDIR%%/qtwidgets/qsystemtrayicon-members.html
%%QT_DOCDIR%%/qtwidgets/qsystemtrayicon.html
%%QT_DOCDIR%%/qtwidgets/qtabbar-members.html
%%QT_DOCDIR%%/qtwidgets/qtabbar.html
%%QT_DOCDIR%%/qtwidgets/qtableview-members.html
%%QT_DOCDIR%%/qtwidgets/qtableview-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qtableview.html
%%QT_DOCDIR%%/qtwidgets/qtablewidget-members.html
%%QT_DOCDIR%%/qtwidgets/qtablewidget-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qtablewidget.html
%%QT_DOCDIR%%/qtwidgets/qtablewidgetitem-members.html
%%QT_DOCDIR%%/qtwidgets/qtablewidgetitem-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qtablewidgetitem.html
%%QT_DOCDIR%%/qtwidgets/qtablewidgetselectionrange-members.html
%%QT_DOCDIR%%/qtwidgets/qtablewidgetselectionrange.html
%%QT_DOCDIR%%/qtwidgets/qtabwidget-members.html
%%QT_DOCDIR%%/qtwidgets/qtabwidget.html
%%QT_DOCDIR%%/qtwidgets/qtapandholdgesture-members.html
%%QT_DOCDIR%%/qtwidgets/qtapandholdgesture.html
%%QT_DOCDIR%%/qtwidgets/qtapgesture-members.html
%%QT_DOCDIR%%/qtwidgets/qtapgesture.html
%%QT_DOCDIR%%/qtwidgets/qtextbrowser-members.html
%%QT_DOCDIR%%/qtwidgets/qtextbrowser.html
%%QT_DOCDIR%%/qtwidgets/qtextedit-extraselection-members.html
%%QT_DOCDIR%%/qtwidgets/qtextedit-extraselection.html
%%QT_DOCDIR%%/qtwidgets/qtextedit-members.html
%%QT_DOCDIR%%/qtwidgets/qtextedit.html
%%QT_DOCDIR%%/qtwidgets/qtilerules-members.html
%%QT_DOCDIR%%/qtwidgets/qtilerules.html
%%QT_DOCDIR%%/qtwidgets/qtimeedit-members.html
%%QT_DOCDIR%%/qtwidgets/qtimeedit.html
%%QT_DOCDIR%%/qtwidgets/qtoolbar-members.html
%%QT_DOCDIR%%/qtwidgets/qtoolbar.html
%%QT_DOCDIR%%/qtwidgets/qtoolbox-members.html
%%QT_DOCDIR%%/qtwidgets/qtoolbox.html
%%QT_DOCDIR%%/qtwidgets/qtoolbutton-members.html
%%QT_DOCDIR%%/qtwidgets/qtoolbutton.html
%%QT_DOCDIR%%/qtwidgets/qtooltip-members.html
%%QT_DOCDIR%%/qtwidgets/qtooltip.html
%%QT_DOCDIR%%/qtwidgets/qtreeview-members.html
%%QT_DOCDIR%%/qtwidgets/qtreeview-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qtreeview.html
%%QT_DOCDIR%%/qtwidgets/qtreewidget-members.html
%%QT_DOCDIR%%/qtwidgets/qtreewidget-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qtreewidget.html
%%QT_DOCDIR%%/qtwidgets/qtreewidgetitem-members.html
%%QT_DOCDIR%%/qtwidgets/qtreewidgetitem-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qtreewidgetitem.html
%%QT_DOCDIR%%/qtwidgets/qtreewidgetitemiterator-members.html
%%QT_DOCDIR%%/qtwidgets/qtreewidgetitemiterator.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-animatedtiles-animatedtiles-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-animatedtiles-animatedtiles-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-animatedtiles-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-animatedtiles-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-appchooser-appchooser-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-appchooser-appchooser-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-appchooser-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-appchooser-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-animation-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-easing-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-easing-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-form-ui.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-moveblocks-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-moveblocks-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-moveblocks-moveblocks-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-states-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-states-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-states-states-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-states-states-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-animation-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-animation-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-graphicsview-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-graphicsview-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-lifecycle-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-lifecycle-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-node-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-node-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-rectbutton-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-rectbutton-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-stickman-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-stickman-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-stickman-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-stickman-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-animationmanager-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-animationmanager-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-boat-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-boat-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-boat-p-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-bomb-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-bomb-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-data-xml.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-graphicsscene-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-graphicsscene-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-background-n810-svg.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-background-svg.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-boat-svg.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-bomb-svg.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-sand-svg.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-see-svg.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-sky-svg.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-sub-attaq-svg.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-submarine-svg.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-surface-svg.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-torpedo-svg.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pixmapitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pixmapitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-progressitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-progressitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-qanimationstate-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-qanimationstate-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-states-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-states-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-sub-attaq-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-subattaq-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-submarine-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-submarine-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-submarine-p-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-textinformationitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-textinformationitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-torpedo-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-torpedo-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-screenshot-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-screenshot-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-screenshot-screenshot-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-screenshot-screenshot-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-screenshot-screenshot-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-systray-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-systray-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-systray-systray-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-systray-systray-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-systray-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-systray-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-classwizard-classwizard-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-classwizard-classwizard-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-classwizard-classwizard-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-classwizard-classwizard-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-classwizard-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-classwizard-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-configdialog-configdialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-configdialog-configdialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-configdialog-configdialog-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-configdialog-configdialog-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-configdialog-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-configdialog-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-configdialog-pages-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-configdialog-pages-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-extension-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-extension-extension-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-extension-finddialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-extension-finddialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-extension-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-findfiles-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-findfiles-findfiles-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-findfiles-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-findfiles-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-findfiles-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-licensewizard-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-licensewizard-licensewizard-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-licensewizard-licensewizard-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-licensewizard-licensewizard-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-licensewizard-licensewizard-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-licensewizard-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-sipdialog-dialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-sipdialog-dialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-sipdialog-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-sipdialog-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-sipdialog-sipdialog-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-standarddialogs-dialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-standarddialogs-dialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-standarddialogs-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-standarddialogs-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-standarddialogs-standarddialogs-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-tabdialog-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-tabdialog-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-tabdialog-tabdialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-tabdialog-tabdialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-tabdialog-tabdialog-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-trivialwizard-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-trivialwizard-trivialwizard-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-trivialwizard-trivialwizard-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggableicons-draggableicons-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggableicons-draggableicons-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggableicons-dragwidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggableicons-dragwidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggableicons-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggableicons-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggabletext-draggabletext-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggabletext-draggabletext-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggabletext-dragwidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggabletext-dragwidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggabletext-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggabletext-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-droparea-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-droparea-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-dropsite-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-dropsitewindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-dropsitewindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-draglabel-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-draglabel-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-dragwidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-dragwidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-fridgemagnets-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-fridgemagnets-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-pieceslist-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-pieceslist-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-puzzle-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-puzzle-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-puzzlewidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-puzzlewidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-blureffect-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-blureffect-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-blurpicker-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-blurpicker-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-blurpicker-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-blurpicker-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-fademessage-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-fademessage-fademessage-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-fademessage-fademessage-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-fademessage-fademessage-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-fademessage-fademessage-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-fademessage-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-lighting-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-lighting-lighting-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-lighting-lighting-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-lighting-lighting-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-lighting-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-imagegestures-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-imagewidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-imagewidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-mainwidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-mainwidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-anchorlayout-anchorlayout-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-anchorlayout-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-anchorlayout-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-basicgraphicslayouts-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-basicgraphicslayouts-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-layoutitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-layoutitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-3rdparty-fbm-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-boxes-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-boxes-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-glbuffers-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-glbuffers-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-glextensions-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-glextensions-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-gltrianglemesh-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-qtbox-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-qtbox-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-roundedbox-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-roundedbox-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-scene-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-scene-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-trackball-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-trackball-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-chip-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-chip-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-chip-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-images-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-view-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-view-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-collidingmice-collidingmice-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-collidingmice-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-collidingmice-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-collidingmice-mice-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-collidingmice-mouse-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-collidingmice-mouse-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-arrow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-arrow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramscene-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramscene-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramscene-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramscene-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramtextitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramtextitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-coloritem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-coloritem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-dragdroprobot-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-robot-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-robot-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-robot-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-edge-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-edge-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-elasticnodes-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-graphwidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-graphwidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-node-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-node-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-customproxy-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-customproxy-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-embeddeddialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-embeddeddialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-embeddeddialog-ui.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-embeddeddialogs-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-embeddeddialogs-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-flowlayout-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-flowlayout-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-flowlayout-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-flippablepad-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-flippablepad-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-form-ui.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-padnavigator-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-padnavigator-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-padnavigator-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-padnavigator-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-roundrectitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-roundrectitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-splashitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-splashitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-simpleanchorlayout-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-simpleanchorlayout-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-simpleanchorlayout-simpleanchorlayout-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-weatheranchorlayout-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-weatheranchorlayout-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-weatheranchorlayout-weatheranchorlayout-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-weatheranchorlayout-weatheranchorlayout-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-index.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-adddialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-adddialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-addressbook-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-addresswidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-addresswidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-newaddresstab-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-newaddresstab-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-tablemodel-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-tablemodel-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-basicsortfiltermodel-basicsortfiltermodel-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-basicsortfiltermodel-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-basicsortfiltermodel-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-basicsortfiltermodel-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-basicsortfiltermodel-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-chart-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-chart-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-pieview-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-pieview-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-coloreditorfactory-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-colorlisteditor-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-colorlisteditor-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-combowidgetmapper-combowidgetmapper-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-combowidgetmapper-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-combowidgetmapper-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-combowidgetmapper-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-combowidgetmapper-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-customsortfiltermodel-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-customsortfiltermodel-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-filterwidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-filterwidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-mysortfilterproxymodel-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-mysortfilterproxymodel-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-dirview-dirview-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-dirview-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-dirview-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-editabletreemodel-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-editabletreemodel-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-mainwindow-ui.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-treeitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-treeitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-treemodel-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-treemodel-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-fetchmore-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-filelistmodel-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-filelistmodel-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-frozencolumn-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-frozencolumn-freezetablewidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-frozencolumn-freezetablewidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-frozencolumn-frozencolumn-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-frozencolumn-grades-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-frozencolumn-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-interview-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-interview-interview-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-interview-interview-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-interview-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-interview-model-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-interview-model-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-imagemodel-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-imagemodel-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-images-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-pixelator-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-pixeldelegate-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-pixeldelegate-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-piecesmodel-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-piecesmodel-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-puzzle-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-puzzle-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-puzzlewidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-puzzlewidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-domitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-domitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-dommodel-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-dommodel-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-simpledommodel-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-simpletreemodel-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-simpletreemodel-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-treeitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-treeitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-treemodel-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-treemodel-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simplewidgetmapper-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simplewidgetmapper-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simplewidgetmapper-simplewidgetmapper-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simplewidgetmapper-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simplewidgetmapper-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spinboxdelegate-delegate-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spinboxdelegate-delegate-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spinboxdelegate-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spinboxdelegate-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spinboxdelegate-spinboxdelegate-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-printview-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-printview-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheet-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheet-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheet-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheet-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheetdelegate-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheetdelegate-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheetitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheetitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-stardelegate-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-stardelegate-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-stardelegate-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-stareditor-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-stareditor-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-starrating-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-starrating-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-basiclayouts-basiclayouts-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-basiclayouts-dialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-basiclayouts-dialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-basiclayouts-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-basiclayouts-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-borderlayout-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-borderlayout-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-borderlayout-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-dynamiclayouts-dialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-dynamiclayouts-dialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-dynamiclayouts-dynamiclayouts-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-dynamiclayouts-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-dynamiclayouts-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-flowlayout-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-flowlayout-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-flowlayout-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-application-application-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-application-application-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-application-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-application-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-application-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-application-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-dockwidgets-dockwidgets-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-dockwidgets-dockwidgets-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-dockwidgets-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-dockwidgets-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-dockwidgets-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-dockwidgets-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-colorswatch-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-colorswatch-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-mainwindow-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-mainwindow-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-toolbar-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-toolbar-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-mdi-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-mdi-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-mdichild-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-mdichild-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-menus-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-menus-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-menus-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-menus-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-menus-menus-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-sdi-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-sdi-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-sdi-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-sdi-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-sdi-sdi-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-sdi-sdi-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-module.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-affine-affine-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-affine-affine-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-affine-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-affine-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-affine-xform-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-affine-xform-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-basicdrawing-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-basicdrawing-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-renderarea-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-renderarea-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-composition-composition-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-composition-composition-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-composition-composition-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-composition-composition-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-composition-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-composition-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-circlewidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-circlewidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-concentriccircles-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-deform-deform-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-deform-deform-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-deform-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-deform-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-deform-pathdeform-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-deform-pathdeform-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-fontsampler-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-fontsampler-fontsampler-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-fontsampler-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-fontsampler-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-fontsampler-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-fontsampler-mainwindowbase-ui.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-gradients-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-gradients-gradients-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-gradients-gradients-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-gradients-gradients-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-gradients-gradients-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-gradients-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-imagecomposition-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-imagecomposition-imagecomposer-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-imagecomposition-imagecomposer-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-imagecomposition-imagecomposition-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-imagecomposition-imagecomposition-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-imagecomposition-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-painterpaths-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-renderarea-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-renderarea-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-pathstroke-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-pathstroke-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-pathstroke-pathstroke-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-pathstroke-pathstroke-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-pathstroke-pathstroke-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-pathstroke-pathstroke-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-renderarea-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-renderarea-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-transformations-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-calendar-calendar-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-calendar-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-calendar-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-calendar-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-calendar-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-detailsdialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-detailsdialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-orderform-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-highlighter-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-highlighter-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-syntaxhighlighter-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-textedit-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-textedit-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-textedit-textedit-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-textedit-textedit-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-textedit-textedit-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-textedit-textedit-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-eventtransitions-eventtransitions-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-eventtransitions-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-eventtransitions-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-factorial-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-factorial-factorial-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-factorial-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-pingpong-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-pingpong-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-pingpong-pingpong-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-rogue-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-rogue-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-rogue-movementtransition-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-rogue-rogue-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-rogue-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-rogue-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-trafficlight-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-trafficlight-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-trafficlight-trafficlight-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-twowaybutton-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-twowaybutton-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-twowaybutton-twowaybutton-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-codecs-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-previewform-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-previewform-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-completer-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-completer-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-fsmodel-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-fsmodel-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-customcompleter-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-customcompleter-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-textedit-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-textedit-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-echoplugin-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-echowindow-echointerface-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-echowindow-echowindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-echowindow-echowindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-echowindow-echowindow-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-echowindow-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-plugin-echoplugin-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-plugin-echoplugin-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-plugin-plugin-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-i18n-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-i18n-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-languagechooser-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-languagechooser-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-app-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-interfaces-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-paintarea-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-paintarea-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-plugindialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-plugindialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-basictools-basictools-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-basictools-basictoolsplugin-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-basictools-basictoolsplugin-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-basictools-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-extrafilters-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-extrafilters-extrafilters-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-extrafilters-extrafiltersplugin-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-extrafilters-extrafiltersplugin-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regexp-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regexp-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regexp-regexp-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regexp-regexpdialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regexp-regexpdialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regularexpression-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regularexpression-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regularexpression-regularexpression-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regularexpression-regularexpression-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regularexpression-regularexpressiondialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regularexpression-regularexpressiondialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-locationdialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-locationdialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-settingseditor-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-settingstree-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-settingstree-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-variantdelegate-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-variantdelegate-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-plugin-plugin-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-plugin-simplestyle-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-plugin-simplestyle-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-plugin-simplestyleplugin-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-plugin-simplestyleplugin-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-styleplugin-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-stylewindow-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-stylewindow-stylewindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-stylewindow-stylewindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-stylewindow-stylewindow-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-treemodelcompleter-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-treemodelcompleter-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-treemodelcompleter-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-treemodelcompleter-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-commands-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-commands-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-document-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-document-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-mainwindow-ui.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-undo-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-undo-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-commands-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-commands-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-diagramitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-diagramitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-diagramscene-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-diagramscene-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-undoframework-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-undoframework-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part1-addressbook-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part1-addressbook-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part1-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part1-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part1-part1-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part2-addressbook-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part2-addressbook-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part2-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part2-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part2-part2-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part3-addressbook-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part3-addressbook-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part3-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part3-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part3-part3-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part4-addressbook-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part4-addressbook-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part4-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part4-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part4-part4-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-addressbook-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-addressbook-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-finddialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-finddialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-part5-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-addressbook-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-addressbook-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-finddialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-finddialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-part6-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-addressbook-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-addressbook-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-finddialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-finddialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-part7-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-childwidget-childwidget-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-childwidget-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-childwidget-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-nestedlayouts-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-nestedlayouts-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-nestedlayouts-nestedlayouts-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-toplevel-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-toplevel-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-toplevel-toplevel-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-windowlayout-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-windowlayout-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-windowlayout-windowlayout-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-analogclock-analogclock-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-analogclock-analogclock-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-analogclock-analogclock-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-analogclock-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-analogclock-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-button-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-button-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-calculator-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-calculator-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-calculator-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calendarwidget-calendarwidget-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calendarwidget-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calendarwidget-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calendarwidget-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calendarwidget-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-charactermap-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-characterwidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-characterwidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-codeeditor-codeeditor-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-codeeditor-codeeditor-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-codeeditor-codeeditor-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-codeeditor-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-codeeditor-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-digitalclock-digitalclock-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-digitalclock-digitalclock-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-digitalclock-digitalclock-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-digitalclock-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-digitalclock-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-elidedlabel-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-elidedlabel-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-elidedlabel-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-testwidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-testwidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-groupbox-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-groupbox-groupbox-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-groupbox-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-groupbox-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-groupbox-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-iconpreviewarea-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-iconpreviewarea-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-icons-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-iconsizespinbox-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-iconsizespinbox-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-imagedelegate-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-imagedelegate-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-imageviewer-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-imageviewer-imageviewer-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-imageviewer-imageviewer-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-imageviewer-imageviewer-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-imageviewer-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-lineedits-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-lineedits-lineedits-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-lineedits-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-lineedits-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-lineedits-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-mousebuttons-buttontester-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-mousebuttons-buttontester-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-mousebuttons-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-mousebuttons-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-mousebuttons-mousebuttons-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-movie-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-movie-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-movie-movie-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-movie-movieplayer-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-movie-movieplayer-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-scribble-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-scribblearea-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-scribblearea-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-shapedclock-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-shapedclock-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-shapedclock-shapedclock-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-shapedclock-shapedclock-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-shapedclock-shapedclock-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-sliders-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-slidersgroup-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-slidersgroup-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-spinboxes-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-spinboxes-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-spinboxes-spinboxes-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-spinboxes-window-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-spinboxes-window-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-norwegianwoodstyle-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-norwegianwoodstyle-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-styles-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-styles-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-widgetgallery-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-widgetgallery-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-layouts-default-ui.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-layouts-pagefold-ui.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-mainwindow-ui.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-stylesheet-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-stylesheet-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-stylesheeteditor-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-stylesheeteditor-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-stylesheeteditor-ui.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-images-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-mainwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-mainwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-tablet-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-tabletapplication-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-tabletapplication-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-tabletcanvas-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-tabletcanvas-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrix-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrixboard-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrixboard-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrixpiece-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrixpiece-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrixwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrixwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-shapeitem-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-shapeitem-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-sortingbox-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-sortingbox-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-tooltips-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-tooltips-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-ledwidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-ledwidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-localeselector-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-localeselector-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-validators-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-validators-qrc.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-validators-ui.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-dialog-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-dialog-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-wiggly-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-wigglywidget-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-wigglywidget-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-controllerwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-controllerwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-example.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-main-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-previewwindow-cpp.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-previewwindow-h.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-windowflags-pro.html
%%QT_DOCDIR%%/qtwidgets/qtwidgets.index
%%QT_DOCDIR%%/qtwidgets/qtwidgets.qhp
%%QT_DOCDIR%%/qtwidgets/qtwidgets.qhp.sha1
%%QT_DOCDIR%%/qtwidgets/qtwidgets.tags
%%QT_DOCDIR%%/qtwidgets/qundocommand-members.html
%%QT_DOCDIR%%/qtwidgets/qundocommand.html
%%QT_DOCDIR%%/qtwidgets/qundogroup-members.html
%%QT_DOCDIR%%/qtwidgets/qundogroup.html
%%QT_DOCDIR%%/qtwidgets/qundostack-members.html
%%QT_DOCDIR%%/qtwidgets/qundostack.html
%%QT_DOCDIR%%/qtwidgets/qundoview-members.html
%%QT_DOCDIR%%/qtwidgets/qundoview.html
%%QT_DOCDIR%%/qtwidgets/qvboxlayout-members.html
%%QT_DOCDIR%%/qtwidgets/qvboxlayout.html
%%QT_DOCDIR%%/qtwidgets/qwhatsthis-members.html
%%QT_DOCDIR%%/qtwidgets/qwhatsthis.html
%%QT_DOCDIR%%/qtwidgets/qwidget-members.html
%%QT_DOCDIR%%/qtwidgets/qwidget-obsolete.html
%%QT_DOCDIR%%/qtwidgets/qwidget-styling.html
%%QT_DOCDIR%%/qtwidgets/qwidget.html
%%QT_DOCDIR%%/qtwidgets/qwidgetaction-members.html
%%QT_DOCDIR%%/qtwidgets/qwidgetaction.html
%%QT_DOCDIR%%/qtwidgets/qwidgetitem-members.html
%%QT_DOCDIR%%/qtwidgets/qwidgetitem.html
%%QT_DOCDIR%%/qtwidgets/qwizard-members.html
%%QT_DOCDIR%%/qtwidgets/qwizard.html
%%QT_DOCDIR%%/qtwidgets/qwizardpage-members.html
%%QT_DOCDIR%%/qtwidgets/qwizardpage.html
%%QT_DOCDIR%%/qtwidgets/standard-dialogs.html
%%QT_DOCDIR%%/qtwidgets/style-reference.html
%%QT_DOCDIR%%/qtwidgets/style/offline-simple.css
%%QT_DOCDIR%%/qtwidgets/style/offline.css
%%QT_DOCDIR%%/qtwidgets/stylesheet-customizing.html
%%QT_DOCDIR%%/qtwidgets/stylesheet-designer.html
%%QT_DOCDIR%%/qtwidgets/stylesheet-examples.html
%%QT_DOCDIR%%/qtwidgets/stylesheet-reference.html
%%QT_DOCDIR%%/qtwidgets/stylesheet-syntax.html
%%QT_DOCDIR%%/qtwidgets/stylesheet.html
%%QT_DOCDIR%%/qtwidgets/textedit-example.html
%%QT_DOCDIR%%/qtwidgets/tutorials-addressbook.html
%%QT_DOCDIR%%/qtwidgets/widget-classes.html
%%QT_DOCDIR%%/qtwidgets/widgets-tutorial.html
%%QT_DOCDIR%%/qtwinextras.qch
%%QT_DOCDIR%%/qtwinextras/examples-manifest.xml
%%QT_DOCDIR%%/qtwinextras/examples-qtwinextras.html
%%QT_DOCDIR%%/qtwinextras/images/arrow_bc.png
%%QT_DOCDIR%%/qtwinextras/images/bgrContent.png
%%QT_DOCDIR%%/qtwinextras/images/btn_next.png
%%QT_DOCDIR%%/qtwinextras/images/btn_prev.png
%%QT_DOCDIR%%/qtwinextras/images/bullet_dn.png
%%QT_DOCDIR%%/qtwinextras/images/bullet_sq.png
%%QT_DOCDIR%%/qtwinextras/images/glass.png
%%QT_DOCDIR%%/qtwinextras/images/home.png
%%QT_DOCDIR%%/qtwinextras/images/ico_note.png
%%QT_DOCDIR%%/qtwinextras/images/ico_note_attention.png
%%QT_DOCDIR%%/qtwinextras/images/ico_out.png
%%QT_DOCDIR%%/qtwinextras/images/jumplist.png
%%QT_DOCDIR%%/qtwinextras/images/logo.png
%%QT_DOCDIR%%/qtwinextras/images/peek-on.png
%%QT_DOCDIR%%/qtwinextras/images/qtwinextras-musicplayer-composited.png
%%QT_DOCDIR%%/qtwinextras/images/qtwinextras-musicplayer-non-composited.png
%%QT_DOCDIR%%/qtwinextras/images/qtwinextras-musicplayer-taskbar.png
%%QT_DOCDIR%%/qtwinextras/images/qtwinextras-musicplayer-thumbnail.png
%%QT_DOCDIR%%/qtwinextras/images/qtwinextras-quickplayer-composited.png
%%QT_DOCDIR%%/qtwinextras/images/qtwinextras-quickplayer-non-composited.png
%%QT_DOCDIR%%/qtwinextras/images/qtwinextras-quickplayer-taskbar.png
%%QT_DOCDIR%%/qtwinextras/images/qtwinextras-quickplayer-thumbnail.png
%%QT_DOCDIR%%/qtwinextras/images/taskbar-button.png
%%QT_DOCDIR%%/qtwinextras/images/taskbar-progress-indeterminate.png
%%QT_DOCDIR%%/qtwinextras/images/taskbar-progress-paused.png
%%QT_DOCDIR%%/qtwinextras/images/taskbar-progress-stopped.png
%%QT_DOCDIR%%/qtwinextras/images/taskbar-progress.png
%%QT_DOCDIR%%/qtwinextras/images/thumbbar.png
%%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-pause-16.png
%%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-pause-32.png
%%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-play-16.png
%%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-play-32.png
%%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-seek-backward-32.png
%%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-seek-forward-32.png
%%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-stop-32.png
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-dwmfeatures-members.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-dwmfeatures.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplist-members.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplist.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistcategory-members.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistcategory.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistdestination-members.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistdestination.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistlink-members.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistlink.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistseparator-members.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistseparator.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-taskbarbutton-members.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-taskbarbutton.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-thumbnailtoolbar-members.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-thumbnailtoolbar.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-thumbnailtoolbutton-members.html
%%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-thumbnailtoolbutton.html
%%QT_DOCDIR%%/qtwinextras/qtwin.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-iconextractor-example.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-iconextractor-iconextractor-pro.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-iconextractor-main-cpp.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-index.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-module.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-example.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-main-cpp.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-musicplayer-cpp.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-musicplayer-h.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-musicplayer-pro.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-volumebutton-cpp.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-volumebutton-h.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-overview.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-qmlmodule.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-quickplayer-example.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-quickplayer-main-cpp.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-quickplayer-qml-main-qml.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-quickplayer-quickplayer-pro.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras-quickplayer-quickplayer-qrc.html
%%QT_DOCDIR%%/qtwinextras/qtwinextras.index
%%QT_DOCDIR%%/qtwinextras/qtwinextras.qhp
%%QT_DOCDIR%%/qtwinextras/qtwinextras.qhp.sha1
%%QT_DOCDIR%%/qtwinextras/qwinjumplist-members.html
%%QT_DOCDIR%%/qtwinextras/qwinjumplist.html
%%QT_DOCDIR%%/qtwinextras/qwinjumplistcategory-members.html
%%QT_DOCDIR%%/qtwinextras/qwinjumplistcategory.html
%%QT_DOCDIR%%/qtwinextras/qwinjumplistitem-members.html
%%QT_DOCDIR%%/qtwinextras/qwinjumplistitem.html
%%QT_DOCDIR%%/qtwinextras/qwinmime-members.html
%%QT_DOCDIR%%/qtwinextras/qwinmime.html
%%QT_DOCDIR%%/qtwinextras/qwintaskbarbutton-members.html
%%QT_DOCDIR%%/qtwinextras/qwintaskbarbutton.html
%%QT_DOCDIR%%/qtwinextras/qwintaskbarprogress-members.html
%%QT_DOCDIR%%/qtwinextras/qwintaskbarprogress.html
%%QT_DOCDIR%%/qtwinextras/qwinthumbnailtoolbar-members.html
%%QT_DOCDIR%%/qtwinextras/qwinthumbnailtoolbar.html
%%QT_DOCDIR%%/qtwinextras/qwinthumbnailtoolbutton-members.html
%%QT_DOCDIR%%/qtwinextras/qwinthumbnailtoolbutton.html
%%QT_DOCDIR%%/qtwinextras/style/offline-simple.css
%%QT_DOCDIR%%/qtwinextras/style/offline.css
%%QT_DOCDIR%%/qtx11extras.qch
%%QT_DOCDIR%%/qtx11extras/images/arrow_bc.png
%%QT_DOCDIR%%/qtx11extras/images/bgrContent.png
%%QT_DOCDIR%%/qtx11extras/images/btn_next.png
%%QT_DOCDIR%%/qtx11extras/images/btn_prev.png
%%QT_DOCDIR%%/qtx11extras/images/bullet_dn.png
%%QT_DOCDIR%%/qtx11extras/images/bullet_sq.png
%%QT_DOCDIR%%/qtx11extras/images/home.png
%%QT_DOCDIR%%/qtx11extras/images/ico_note.png
%%QT_DOCDIR%%/qtx11extras/images/ico_note_attention.png
%%QT_DOCDIR%%/qtx11extras/images/ico_out.png
%%QT_DOCDIR%%/qtx11extras/images/logo.png
%%QT_DOCDIR%%/qtx11extras/qtx11extras-index.html
%%QT_DOCDIR%%/qtx11extras/qtx11extras-module.html
%%QT_DOCDIR%%/qtx11extras/qtx11extras.index
%%QT_DOCDIR%%/qtx11extras/qtx11extras.qhp
%%QT_DOCDIR%%/qtx11extras/qtx11extras.qhp.sha1
%%QT_DOCDIR%%/qtx11extras/qx11info-members.html
%%QT_DOCDIR%%/qtx11extras/qx11info.html
%%QT_DOCDIR%%/qtx11extras/style/offline-simple.css
%%QT_DOCDIR%%/qtx11extras/style/offline.css
%%QT_DOCDIR%%/qtxml.qch
%%QT_DOCDIR%%/qtxml/examples-manifest.xml
%%QT_DOCDIR%%/qtxml/images/arrow_bc.png
%%QT_DOCDIR%%/qtxml/images/bgrContent.png
%%QT_DOCDIR%%/qtxml/images/btn_next.png
%%QT_DOCDIR%%/qtxml/images/btn_prev.png
%%QT_DOCDIR%%/qtxml/images/bullet_dn.png
%%QT_DOCDIR%%/qtxml/images/bullet_sq.png
%%QT_DOCDIR%%/qtxml/images/dombookmarks-example.png
%%QT_DOCDIR%%/qtxml/images/home.png
%%QT_DOCDIR%%/qtxml/images/ico_note.png
%%QT_DOCDIR%%/qtxml/images/ico_note_attention.png
%%QT_DOCDIR%%/qtxml/images/ico_out.png
%%QT_DOCDIR%%/qtxml/images/logo.png
%%QT_DOCDIR%%/qtxml/images/saxbookmarks-example.png
%%QT_DOCDIR%%/qtxml/images/xmlstreamexample-filemenu.png
%%QT_DOCDIR%%/qtxml/images/xmlstreamexample-helpmenu.png
%%QT_DOCDIR%%/qtxml/images/xmlstreamexample-screenshot.png
%%QT_DOCDIR%%/qtxml/qdomattr-members.html
%%QT_DOCDIR%%/qtxml/qdomattr.html
%%QT_DOCDIR%%/qtxml/qdomcdatasection-members.html
%%QT_DOCDIR%%/qtxml/qdomcdatasection.html
%%QT_DOCDIR%%/qtxml/qdomcharacterdata-members.html
%%QT_DOCDIR%%/qtxml/qdomcharacterdata.html
%%QT_DOCDIR%%/qtxml/qdomcomment-members.html
%%QT_DOCDIR%%/qtxml/qdomcomment.html
%%QT_DOCDIR%%/qtxml/qdomdocument-members.html
%%QT_DOCDIR%%/qtxml/qdomdocument.html
%%QT_DOCDIR%%/qtxml/qdomdocumentfragment-members.html
%%QT_DOCDIR%%/qtxml/qdomdocumentfragment.html
%%QT_DOCDIR%%/qtxml/qdomdocumenttype-members.html
%%QT_DOCDIR%%/qtxml/qdomdocumenttype.html
%%QT_DOCDIR%%/qtxml/qdomelement-members.html
%%QT_DOCDIR%%/qtxml/qdomelement.html
%%QT_DOCDIR%%/qtxml/qdomentity-members.html
%%QT_DOCDIR%%/qtxml/qdomentity.html
%%QT_DOCDIR%%/qtxml/qdomentityreference-members.html
%%QT_DOCDIR%%/qtxml/qdomentityreference.html
%%QT_DOCDIR%%/qtxml/qdomimplementation-members.html
%%QT_DOCDIR%%/qtxml/qdomimplementation.html
%%QT_DOCDIR%%/qtxml/qdomnamednodemap-members.html
%%QT_DOCDIR%%/qtxml/qdomnamednodemap.html
%%QT_DOCDIR%%/qtxml/qdomnode-members.html
%%QT_DOCDIR%%/qtxml/qdomnode.html
%%QT_DOCDIR%%/qtxml/qdomnodelist-members.html
%%QT_DOCDIR%%/qtxml/qdomnodelist.html
%%QT_DOCDIR%%/qtxml/qdomnotation-members.html
%%QT_DOCDIR%%/qtxml/qdomnotation.html
%%QT_DOCDIR%%/qtxml/qdomprocessinginstruction-members.html
%%QT_DOCDIR%%/qtxml/qdomprocessinginstruction.html
%%QT_DOCDIR%%/qtxml/qdomtext-members.html
%%QT_DOCDIR%%/qtxml/qdomtext.html
%%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-dombookmarks-pro.html
%%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-example.html
%%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-main-cpp.html
%%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-mainwindow-cpp.html
%%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-mainwindow-h.html
%%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-xbeltree-cpp.html
%%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-xbeltree-h.html
%%QT_DOCDIR%%/qtxml/qtxml-index.html
%%QT_DOCDIR%%/qtxml/qtxml-module.html
%%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-example.html
%%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-main-cpp.html
%%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-mainwindow-cpp.html
%%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-mainwindow-h.html
%%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-saxbookmarks-pro.html
%%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-xbelgenerator-cpp.html
%%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-xbelgenerator-h.html
%%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-xbelhandler-cpp.html
%%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-xbelhandler-h.html
%%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-example.html
%%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-main-cpp.html
%%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-mainwindow-cpp.html
%%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-mainwindow-h.html
%%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-streambookmarks-pro.html
%%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-xbelreader-cpp.html
%%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-xbelreader-h.html
%%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-xbelwriter-cpp.html
%%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-xbelwriter-h.html
%%QT_DOCDIR%%/qtxml/qtxml-xmlstreamlint-example.html
%%QT_DOCDIR%%/qtxml/qtxml-xmlstreamlint-main-cpp.html
%%QT_DOCDIR%%/qtxml/qtxml-xmlstreamlint-xmlstreamlint-pro.html
%%QT_DOCDIR%%/qtxml/qtxml.index
%%QT_DOCDIR%%/qtxml/qtxml.qhp
%%QT_DOCDIR%%/qtxml/qtxml.qhp.sha1
%%QT_DOCDIR%%/qtxml/qtxml.tags
%%QT_DOCDIR%%/qtxml/qxmlattributes-members.html
%%QT_DOCDIR%%/qtxml/qxmlattributes.html
%%QT_DOCDIR%%/qtxml/qxmlcontenthandler-members.html
%%QT_DOCDIR%%/qtxml/qxmlcontenthandler.html
%%QT_DOCDIR%%/qtxml/qxmldeclhandler-members.html
%%QT_DOCDIR%%/qtxml/qxmldeclhandler.html
%%QT_DOCDIR%%/qtxml/qxmldefaulthandler-members.html
%%QT_DOCDIR%%/qtxml/qxmldefaulthandler.html
%%QT_DOCDIR%%/qtxml/qxmldtdhandler-members.html
%%QT_DOCDIR%%/qtxml/qxmldtdhandler.html
%%QT_DOCDIR%%/qtxml/qxmlentityresolver-members.html
%%QT_DOCDIR%%/qtxml/qxmlentityresolver.html
%%QT_DOCDIR%%/qtxml/qxmlerrorhandler-members.html
%%QT_DOCDIR%%/qtxml/qxmlerrorhandler.html
%%QT_DOCDIR%%/qtxml/qxmlinputsource-members.html
%%QT_DOCDIR%%/qtxml/qxmlinputsource.html
%%QT_DOCDIR%%/qtxml/qxmllexicalhandler-members.html
%%QT_DOCDIR%%/qtxml/qxmllexicalhandler.html
%%QT_DOCDIR%%/qtxml/qxmllocator-members.html
%%QT_DOCDIR%%/qtxml/qxmllocator.html
%%QT_DOCDIR%%/qtxml/qxmlnamespacesupport-members.html
%%QT_DOCDIR%%/qtxml/qxmlnamespacesupport.html
%%QT_DOCDIR%%/qtxml/qxmlparseexception-members.html
%%QT_DOCDIR%%/qtxml/qxmlparseexception.html
%%QT_DOCDIR%%/qtxml/qxmlreader-members.html
%%QT_DOCDIR%%/qtxml/qxmlreader-obsolete.html
%%QT_DOCDIR%%/qtxml/qxmlreader.html
%%QT_DOCDIR%%/qtxml/qxmlsimplereader-members.html
%%QT_DOCDIR%%/qtxml/qxmlsimplereader.html
%%QT_DOCDIR%%/qtxml/style/offline-simple.css
%%QT_DOCDIR%%/qtxml/style/offline.css
%%QT_DOCDIR%%/qtxml/xml-dom-tml.html
%%QT_DOCDIR%%/qtxml/xml-namespaces.html
%%QT_DOCDIR%%/qtxml/xml-processing.html
%%QT_DOCDIR%%/qtxml/xml-sax.html
%%QT_DOCDIR%%/qtxml/xml-streaming.html
%%QT_DOCDIR%%/qtxml/xml-tools.html
%%QT_DOCDIR%%/qtxmlpatterns.qch
%%QT_DOCDIR%%/qtxmlpatterns/examples-manifest.xml
%%QT_DOCDIR%%/qtxmlpatterns/images/arrow_bc.png
%%QT_DOCDIR%%/qtxmlpatterns/images/bgrContent.png
%%QT_DOCDIR%%/qtxmlpatterns/images/btn_next.png
%%QT_DOCDIR%%/qtxmlpatterns/images/btn_prev.png
%%QT_DOCDIR%%/qtxmlpatterns/images/bullet_dn.png
%%QT_DOCDIR%%/qtxmlpatterns/images/bullet_sq.png
%%QT_DOCDIR%%/qtxmlpatterns/images/filetree_1-example.png
%%QT_DOCDIR%%/qtxmlpatterns/images/filetree_2-example.png
%%QT_DOCDIR%%/qtxmlpatterns/images/home.png
%%QT_DOCDIR%%/qtxmlpatterns/images/ico_note.png
%%QT_DOCDIR%%/qtxmlpatterns/images/ico_note_attention.png
%%QT_DOCDIR%%/qtxmlpatterns/images/ico_out.png
%%QT_DOCDIR%%/qtxmlpatterns/images/logo.png
%%QT_DOCDIR%%/qtxmlpatterns/images/patternist-wordProcessor.png
%%QT_DOCDIR%%/qtxmlpatterns/images/recipes-example.png
%%QT_DOCDIR%%/qtxmlpatterns/images/schema-example.png
%%QT_DOCDIR%%/qtxmlpatterns/qabstractmessagehandler-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qabstractmessagehandler.html
%%QT_DOCDIR%%/qtxmlpatterns/qabstracturiresolver-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qabstracturiresolver.html
%%QT_DOCDIR%%/qtxmlpatterns/qabstractxmlnodemodel-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qabstractxmlnodemodel.html
%%QT_DOCDIR%%/qtxmlpatterns/qabstractxmlreceiver-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qabstractxmlreceiver.html
%%QT_DOCDIR%%/qtxmlpatterns/qsimplexmlnodemodel-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qsimplexmlnodemodel.html
%%QT_DOCDIR%%/qtxmlpatterns/qsourcelocation-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qsourcelocation.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-example.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-filetree-cpp.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-filetree-h.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-filetree-pro.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-forms-mainwindow-ui.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-main-cpp.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-mainwindow-cpp.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-mainwindow-h.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-queries-listcppfiles-xq.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-queries-qrc.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-queries-wholetree-xq.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-index.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-module.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-example.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-files-allrecipes-xq.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-files-cookbook-xml.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-files-liquidingredientsinsoup-xq.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-files-mushroomsoup-xq.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-files-preparationlessthan30-xq.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-files-preparationtimes-xq.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-forms-querywidget-mobiles-ui.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-forms-querywidget-ui.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-main-cpp.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-querymainwindow-cpp.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-querymainwindow-h.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-recipes-pro.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-recipes-qrc.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-example.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-files-invalid-contact-xml.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-files-invalid-order-xml.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-files-invalid-recipe-xml.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-files-valid-contact-xml.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-files-valid-order-xml.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-files-valid-recipe-xml.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-main-cpp.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-mainwindow-cpp.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-mainwindow-h.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-schema-mobiles-ui.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-schema-pro.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-schema-qrc.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-schema-ui.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-xquery-example.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-xquery-globalvariables-globals-cpp.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-xquery-globalvariables-reportglobals-xq.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-xquery-xquery-pro.html
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns.index
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns.qhp
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns.qhp.sha1
%%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns.tags
%%QT_DOCDIR%%/qtxmlpatterns/qxmlformatter-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlformatter.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlitem-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlitem.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlname-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlname.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlnamepool-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlnamepool.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlnodemodelindex-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlnodemodelindex.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlquery-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlquery.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlresultitems-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlresultitems.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlschema-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlschema.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlschemavalidator-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlschemavalidator.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlserializer-members.html
%%QT_DOCDIR%%/qtxmlpatterns/qxmlserializer.html
%%QT_DOCDIR%%/qtxmlpatterns/style/offline-simple.css
%%QT_DOCDIR%%/qtxmlpatterns/style/offline.css
%%QT_DOCDIR%%/qtxmlpatterns/xmlpattern-examples.html
%%QT_DOCDIR%%/qtxmlpatterns/xmlprocessing.html
%%QT_DOCDIR%%/qtxmlpatterns/xquery-introduction.html
Index: head/misc/qt5-examples/Makefile
===================================================================
--- head/misc/qt5-examples/Makefile (revision 434379)
+++ head/misc/qt5-examples/Makefile (revision 434380)
@@ -1,45 +1,46 @@
# Created by: Marie Loise Nolden <nolden@kde.org>
# $FreeBSD$
PORTNAME= examples
DISTVERSION= ${QT5_VERSION}
CATEGORIES= misc
MASTER_SITES= QT/official_releases/qt/${QT5_VERSION:R}/${QT5_VERSION}/single
PKGNAMEPREFIX= qt5-
DISTNAME= qt-everywhere-opensource-src-${QT5_VERSION}
DIST_SUBDIR= KDE/Qt/${QT5_VERSION}
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 5 examples sourcecode
NO_ARCH= yes
NO_BUILD= yes
USES= tar:xz
USE_QT5= #
DESCR= ${.CURDIR:H:H}/devel/qt5/pkg-descr
DISTINFO_FILE= ${.CURDIR:H:H}/misc/qt5-doc/distinfo
EXAMPLESDIR= ${PREFIX}/share/examples/qt5
# The destination location depends on the values given in
# share/doc/qt5/<module>/examples-manifest.xml. The exception is
# qtscript and qtserialbus where the examples are looked up in $EXAMPLESDIR/.
# This way, the examples show up in qtcreator on the examples front page.
-EXAMPLES= qt3d qtbase qtcanvas3d qtconnectivity qtdeclarative qtenginio \
- qtlocation qtmultimedia qtquickcontrols qtquickcontrols2 \
- qtscript qtsensors qtserialbus qtserialport qtsvg qttools \
- qtwebchannel qtwebsockets qtxmlpatterns
+EXAMPLES= qt3d qtbase qtcanvas3d qtcharts qtconnectivity qtdeclarative \
+ qtgamepad qtlocation qtmultimedia qtpurchasing qtquickcontrols \
+ qtquickcontrols2 qtscript qtscxml qtsensors qtserialbus \
+ qtserialport qtsvg qttools qtvirtualkeyboard qtwebchannel \
+ qtwebsockets qtxmlpatterns
.for example in ${EXAMPLES}
-EXTRACT_AFTER_ARGS+= ${DISTNAME:C,\-[0-9]$,,}/${example}/examples
+EXTRACT_AFTER_ARGS+= ${DISTNAME}/${example}/examples
.endfor
do-install:
.for example in ${EXAMPLES}
cd ${WRKSRC}/${example}/examples && \
${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}
.endfor
.include <bsd.port.mk>
Index: head/misc/qt5-examples/pkg-plist
===================================================================
--- head/misc/qt5-examples/pkg-plist (revision 434379)
+++ head/misc/qt5-examples/pkg-plist (revision 434380)
@@ -1,6162 +1,6442 @@
%%QT_EXAMPLEDIR%%/HACKING
%%QT_EXAMPLEDIR%%/README
%%QT_EXAMPLEDIR%%/aggregate/examples.pro
%%QT_EXAMPLEDIR%%/assistant/assistant.pro
%%QT_EXAMPLEDIR%%/assistant/doc/images/simpletextviewer-example.png
%%QT_EXAMPLEDIR%%/assistant/doc/images/simpletextviewer-findfiledialog.png
%%QT_EXAMPLEDIR%%/assistant/doc/images/simpletextviewer-mainwindow.png
%%QT_EXAMPLEDIR%%/assistant/doc/src/remotecontrol.qdoc
%%QT_EXAMPLEDIR%%/assistant/doc/src/simpletextviewer.qdoc
%%QT_EXAMPLEDIR%%/assistant/remotecontrol/enter.png
%%QT_EXAMPLEDIR%%/assistant/remotecontrol/main.cpp
%%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.cpp
%%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.h
%%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.pro
%%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.qrc
%%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.ui
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/assistant.cpp
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/assistant.h
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/about.txt
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/browse.html
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/filedialog.html
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/findfile.html
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/browse.png
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/fadedfilemenu.png
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/filedialog.png
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/handbook.png
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/icon.png
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/mainwindow.png
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/open.png
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/wildcard.png
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/index.html
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/intro.html
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/openfile.html
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/simpletextviewer.qch
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/simpletextviewer.qhc
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/simpletextviewer.qhcp
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/simpletextviewer.qhp
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/wildcardmatching.html
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/findfiledialog.cpp
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/findfiledialog.h
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/main.cpp
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/mainwindow.cpp
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/mainwindow.h
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/simpletextviewer.pro
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/textedit.cpp
%%QT_EXAMPLEDIR%%/assistant/simpletextviewer/textedit.h
%%QT_EXAMPLEDIR%%/bluetooth/bluetooth.pro
%%QT_EXAMPLEDIR%%/bluetooth/btchat/btchat.pro
%%QT_EXAMPLEDIR%%/bluetooth/btchat/chat.cpp
%%QT_EXAMPLEDIR%%/bluetooth/btchat/chat.h
%%QT_EXAMPLEDIR%%/bluetooth/btchat/chat.ui
%%QT_EXAMPLEDIR%%/bluetooth/btchat/chatclient.cpp
%%QT_EXAMPLEDIR%%/bluetooth/btchat/chatclient.h
%%QT_EXAMPLEDIR%%/bluetooth/btchat/chatserver.cpp
%%QT_EXAMPLEDIR%%/bluetooth/btchat/chatserver.h
%%QT_EXAMPLEDIR%%/bluetooth/btchat/doc/images/btchat-example.png
%%QT_EXAMPLEDIR%%/bluetooth/btchat/doc/src/btchat.qdoc
%%QT_EXAMPLEDIR%%/bluetooth/btchat/main.cpp
%%QT_EXAMPLEDIR%%/bluetooth/btchat/remoteselector.cpp
%%QT_EXAMPLEDIR%%/bluetooth/btchat/remoteselector.h
%%QT_EXAMPLEDIR%%/bluetooth/btchat/remoteselector.ui
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/btfiletransfer.pro
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/btfiletransfer.qrc
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/busy.gif
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/doc/images/btfiletransfer-example.png
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/doc/src/btfiletransfer.qdoc
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/main.cpp
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/pairing.gif
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/pindisplay.cpp
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/pindisplay.h
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/pindisplay.ui
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/progress.cpp
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/progress.h
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/progress.ui
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/remoteselector.cpp
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/remoteselector.h
%%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/remoteselector.ui
%%QT_EXAMPLEDIR%%/bluetooth/btscanner/btscanner.pro
%%QT_EXAMPLEDIR%%/bluetooth/btscanner/device.cpp
%%QT_EXAMPLEDIR%%/bluetooth/btscanner/device.h
%%QT_EXAMPLEDIR%%/bluetooth/btscanner/device.ui
%%QT_EXAMPLEDIR%%/bluetooth/btscanner/doc/images/btscanner-example.png
%%QT_EXAMPLEDIR%%/bluetooth/btscanner/doc/src/btscanner.qdoc
%%QT_EXAMPLEDIR%%/bluetooth/btscanner/main.cpp
%%QT_EXAMPLEDIR%%/bluetooth/btscanner/service.cpp
%%QT_EXAMPLEDIR%%/bluetooth/btscanner/service.h
%%QT_EXAMPLEDIR%%/bluetooth/btscanner/service.ui
%%QT_EXAMPLEDIR%%/bluetooth/chat/Button.qml
%%QT_EXAMPLEDIR%%/bluetooth/chat/InputBox.qml
%%QT_EXAMPLEDIR%%/bluetooth/chat/Search.qml
%%QT_EXAMPLEDIR%%/bluetooth/chat/chat.pro
%%QT_EXAMPLEDIR%%/bluetooth/chat/chat.qml
%%QT_EXAMPLEDIR%%/bluetooth/chat/chat.qrc
%%QT_EXAMPLEDIR%%/bluetooth/chat/doc/images/chat-view.png
%%QT_EXAMPLEDIR%%/bluetooth/chat/doc/src/chat.qdoc
%%QT_EXAMPLEDIR%%/bluetooth/chat/images/clear.png
%%QT_EXAMPLEDIR%%/bluetooth/chat/images/default.png
%%QT_EXAMPLEDIR%%/bluetooth/chat/images/lineedit-bg.png
%%QT_EXAMPLEDIR%%/bluetooth/chat/qmlchat.cpp
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/assets/Button.qml
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/assets/Point.qml
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/assets/blue_heart.png
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/assets/blue_heart_small.png
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/assets/busy_dark.png
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/assets/dialog.qml
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/assets/draw.js
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/assets/home.qml
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/assets/main.qml
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/assets/monitor.qml
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/assets/results.qml
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/assets/star.png
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/deviceinfo.cpp
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/deviceinfo.h
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/doc/images/heartratefound.png
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/doc/images/heartratemonitor.png
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/doc/images/heartrateresults.png
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/doc/src/heartlistener.qdoc
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/heartlistener.pro
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/heartrate.cpp
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/heartrate.h
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/main.cpp
%%QT_EXAMPLEDIR%%/bluetooth/heartlistener/resources.qrc
+%%QT_EXAMPLEDIR%%/bluetooth/heartrate-server/doc/src/heartrate-server.qdoc
+%%QT_EXAMPLEDIR%%/bluetooth/heartrate-server/heartrate-server.pro
+%%QT_EXAMPLEDIR%%/bluetooth/heartrate-server/main.cpp
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Characteristics.qml
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Dialog.qml
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Header.qml
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Label.qml
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Menu.qml
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Services.qml
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/busy_dark.png
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/main.qml
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/characteristicinfo.cpp
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/characteristicinfo.h
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/device.cpp
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/device.h
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/deviceinfo.cpp
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/deviceinfo.h
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/doc/images/lowenergyscanner-chars.png
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/doc/images/lowenergyscanner-devices.png
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/doc/images/lowenergyscanner-services.png
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/doc/src/lowenergyscanner.qdoc
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/lowenergyscanner.pro
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/main.cpp
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/resources.qrc
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/serviceinfo.cpp
%%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/serviceinfo.h
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/Button.qml
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/DeviceDiscovery.qml
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/FileSending.qml
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/PictureSelector.qml
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/background.png
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/bttransfer.qml
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/doc/images/opp-example-1.png
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/doc/images/opp-example-2.png
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/doc/images/opp-example-3.png
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/doc/src/picturetransfer.qdoc
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/filetransfer.cpp
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/filetransfer.h
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/icon.png
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/main.cpp
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/picturetransfer.pro
%%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/qmltransfer.qrc
%%QT_EXAMPLEDIR%%/bluetooth/pingpong/assets/Board.qml
%%QT_EXAMPLEDIR%%/bluetooth/pingpong/assets/Dialog.qml
%%QT_EXAMPLEDIR%%/bluetooth/pingpong/assets/Menu.qml
%%QT_EXAMPLEDIR%%/bluetooth/pingpong/assets/main.qml
%%QT_EXAMPLEDIR%%/bluetooth/pingpong/doc/images/intro.png
%%QT_EXAMPLEDIR%%/bluetooth/pingpong/doc/images/intro1.png
%%QT_EXAMPLEDIR%%/bluetooth/pingpong/doc/src/pingpong.qdoc
%%QT_EXAMPLEDIR%%/bluetooth/pingpong/main.cpp
%%QT_EXAMPLEDIR%%/bluetooth/pingpong/pingpong.cpp
%%QT_EXAMPLEDIR%%/bluetooth/pingpong/pingpong.h
%%QT_EXAMPLEDIR%%/bluetooth/pingpong/pingpong.pro
%%QT_EXAMPLEDIR%%/bluetooth/pingpong/resource.qrc
%%QT_EXAMPLEDIR%%/bluetooth/scanner/Button.qml
%%QT_EXAMPLEDIR%%/bluetooth/scanner/default.png
%%QT_EXAMPLEDIR%%/bluetooth/scanner/doc/images/devicescan.png
%%QT_EXAMPLEDIR%%/bluetooth/scanner/doc/images/servicescan.png
%%QT_EXAMPLEDIR%%/bluetooth/scanner/doc/src/scanner.qdoc
%%QT_EXAMPLEDIR%%/bluetooth/scanner/qmlscanner.cpp
%%QT_EXAMPLEDIR%%/bluetooth/scanner/scanner.pro
%%QT_EXAMPLEDIR%%/bluetooth/scanner/scanner.qml
%%QT_EXAMPLEDIR%%/bluetooth/scanner/scanner.qrc
%%QT_EXAMPLEDIR%%/canvas3d/3rdparty/ThreeJSLoader.js
%%QT_EXAMPLEDIR%%/canvas3d/3rdparty/gl-matrix.js
%%QT_EXAMPLEDIR%%/canvas3d/3rdparty/three.js
%%QT_EXAMPLEDIR%%/canvas3d/3rdparty/threex.planets.js
%%QT_EXAMPLEDIR%%/canvas3d/canvas3d.pro
%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/doc/images/framebuffer-example.png
%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/doc/src/framebuffer.qdoc
%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/framebuffer.pro
%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/framebuffer.qrc
%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/main.cpp
%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/qml/framebuffer/framebuffer.js
%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/qml/framebuffer/main.qml
%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/qml/framebuffer/qtlogo.png
%%QT_EXAMPLEDIR%%/canvas3d/interaction/3dmodels.txt
%%QT_EXAMPLEDIR%%/canvas3d/interaction/doc/images/interaction-example.png
%%QT_EXAMPLEDIR%%/canvas3d/interaction/doc/src/interaction.qdoc
%%QT_EXAMPLEDIR%%/canvas3d/interaction/interaction.pro
%%QT_EXAMPLEDIR%%/canvas3d/interaction/interaction.qrc
%%QT_EXAMPLEDIR%%/canvas3d/interaction/main.cpp
%%QT_EXAMPLEDIR%%/canvas3d/interaction/qml/interaction/barrel.jpg
%%QT_EXAMPLEDIR%%/canvas3d/interaction/qml/interaction/barrel.json
%%QT_EXAMPLEDIR%%/canvas3d/interaction/qml/interaction/interaction.js
%%QT_EXAMPLEDIR%%/canvas3d/interaction/qml/interaction/main.qml
%%QT_EXAMPLEDIR%%/canvas3d/interaction/readme.txt
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/3dmodels.txt
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/doc/images/jsonmodels-example.png
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/doc/src/jsonmodels.qdoc
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/jsonmodels.pro
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/main.cpp
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml.qrc
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/bush.json
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/bush.png
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/gold.jpg
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/gold.json
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/jsonmodels.js
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/jsonmodels.qml
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/pallet.jpg
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/pallet.json
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/rock.jpg
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/rock.json
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/woodbox.jpg
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/woodbox.json
%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/readme.txt
%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/doc/images/quickitemtexture-example.png
%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/doc/src/quickitemtexture.qdoc
%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/main.cpp
%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/qml/quickitemtexture/main.qml
%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/qml/quickitemtexture/quickitemtexture.js
%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/quickitemtexture.pro
%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/quickitemtexture.qrc
%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/doc/images/textureandlight-example.png
%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/doc/src/textureandlight.qdoc
%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/main.cpp
%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/qml/textureandlight/main.qml
%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/qml/textureandlight/qtlogo.png
%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/qml/textureandlight/textureandlight.js
%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/textureandlight.pro
%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/textureandlight.qrc
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/cellphone.pro
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/cellphone.qrc
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/doc/images/cellphone-example.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/doc/src/cellphone.qdoc
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/calendar.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/camera.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/clock.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/contacts.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/gallery.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/games.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/lock.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/mail.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/maps.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/menu_background.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/music.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/plutomap1k.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/qtlogo_with_alpha.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/settings.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/todo.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/videos.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/main.cpp
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphone.js
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphone_case.json
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphone_front.json
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphone_icon.json
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphoneapp.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphonecanvas.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/colorselector.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/fpsdisplay.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/main.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/controls/ControlEventSource.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ImageCube.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/InfoSheet.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/Navibutton.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/SwipeArea.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/doc/images/oneqt-example.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/doc/src/oneqt.qdoc
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/imagecube.js
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/Info.plist
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon29x29.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon29x29@2x.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon29x29@2x~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon29x29~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon40x40@2x.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon40x40@2x~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon40x40~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon50x50@2x~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon50x50~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon57x57.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon57x57@2x.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon60x60@2x.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon72x72@2x~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon72x72~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon76x76@2x~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon76x76~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/main.cpp
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/oneqt.pro
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/oneqt.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/oneqt.qrc
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/dataviz.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/devices.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/embedded.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/iot.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/multiscreen.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/puzzle-pieces.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/qtlogo.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/qtlogosmall.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/FpsDisplay.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/InfoSheet.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/PlanetButton.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/StyledSlider.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/doc/images/planets-example.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/doc/src/planets.qdoc
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earth.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earthbump1k.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earthcloudmapcolortrans.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earthmap1k.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earthspec1k.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/galaxy_starfield.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/jupiter.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/jupitermap.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/mars.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/marsbump1k.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/marsmap1k.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/mercury.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/mercurybump.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/mercurymap.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/moonbump1k.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/moonmap1k.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/neptune.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/neptunemap.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/plutobump1k.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/plutomap1k.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/saturn.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/saturnmap.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/saturnringcolortrans.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/sun.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/sunmap.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/uranus.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/uranusmap.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/uranusringcolortrans.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/venus.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/venusbump.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/venusmap.jpg
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon29x29.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon29x29@2x.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon29x29@2x~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon29x29~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon40x40@2x.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon40x40@2x~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon40x40~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon50x50@2x~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon50x50~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon57x57.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon57x57@2x.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon60x60@2x.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon72x72@2x~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon72x72~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon76x76@2x~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon76x76~ipad.png
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/Info.plist
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/main.cpp
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/planets.js
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/planets.pro
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/planets.qml
%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/planets.qrc
%%QT_EXAMPLEDIR%%/canvas3d/threejs/threejs.pro
+%%QT_EXAMPLEDIR%%/charts/areachart/areachart.pro
+%%QT_EXAMPLEDIR%%/charts/areachart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/audio/audio.pro
+%%QT_EXAMPLEDIR%%/charts/audio/main.cpp
+%%QT_EXAMPLEDIR%%/charts/audio/widget.cpp
+%%QT_EXAMPLEDIR%%/charts/audio/widget.h
+%%QT_EXAMPLEDIR%%/charts/audio/xyseriesiodevice.cpp
+%%QT_EXAMPLEDIR%%/charts/audio/xyseriesiodevice.h
+%%QT_EXAMPLEDIR%%/charts/barchart/barchart.pro
+%%QT_EXAMPLEDIR%%/charts/barchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/barmodelmapper/barmodelmapper.pro
+%%QT_EXAMPLEDIR%%/charts/barmodelmapper/customtablemodel.cpp
+%%QT_EXAMPLEDIR%%/charts/barmodelmapper/customtablemodel.h
+%%QT_EXAMPLEDIR%%/charts/barmodelmapper/main.cpp
+%%QT_EXAMPLEDIR%%/charts/barmodelmapper/tablewidget.cpp
+%%QT_EXAMPLEDIR%%/charts/barmodelmapper/tablewidget.h
+%%QT_EXAMPLEDIR%%/charts/boxplotchart/acme_data.txt
+%%QT_EXAMPLEDIR%%/charts/boxplotchart/boxdatareader.cpp
+%%QT_EXAMPLEDIR%%/charts/boxplotchart/boxdatareader.h
+%%QT_EXAMPLEDIR%%/charts/boxplotchart/boxplotchart.pro
+%%QT_EXAMPLEDIR%%/charts/boxplotchart/boxplotdata.qrc
+%%QT_EXAMPLEDIR%%/charts/boxplotchart/boxwhisk_data.txt
+%%QT_EXAMPLEDIR%%/charts/boxplotchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/callout/callout.cpp
+%%QT_EXAMPLEDIR%%/charts/callout/callout.h
+%%QT_EXAMPLEDIR%%/charts/callout/callout.pro
+%%QT_EXAMPLEDIR%%/charts/callout/main.cpp
+%%QT_EXAMPLEDIR%%/charts/callout/view.cpp
+%%QT_EXAMPLEDIR%%/charts/callout/view.h
+%%QT_EXAMPLEDIR%%/charts/chartinteractions/chart.cpp
+%%QT_EXAMPLEDIR%%/charts/chartinteractions/chart.h
+%%QT_EXAMPLEDIR%%/charts/chartinteractions/chartinteractions.pro
+%%QT_EXAMPLEDIR%%/charts/chartinteractions/chartview.cpp
+%%QT_EXAMPLEDIR%%/charts/chartinteractions/chartview.h
+%%QT_EXAMPLEDIR%%/charts/chartinteractions/main.cpp
+%%QT_EXAMPLEDIR%%/charts/charts.pro
+%%QT_EXAMPLEDIR%%/charts/chartthemes/chartthemes.pro
+%%QT_EXAMPLEDIR%%/charts/chartthemes/main.cpp
+%%QT_EXAMPLEDIR%%/charts/chartthemes/themewidget.cpp
+%%QT_EXAMPLEDIR%%/charts/chartthemes/themewidget.h
+%%QT_EXAMPLEDIR%%/charts/customchart/customchart.pro
+%%QT_EXAMPLEDIR%%/charts/customchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/datetimeaxis/datetimeaxis.pro
+%%QT_EXAMPLEDIR%%/charts/datetimeaxis/main.cpp
+%%QT_EXAMPLEDIR%%/charts/datetimeaxis/sun_spots.txt
+%%QT_EXAMPLEDIR%%/charts/datetimeaxis/sundata.qrc
+%%QT_EXAMPLEDIR%%/charts/donutbreakdown/donutbreakdown.pro
+%%QT_EXAMPLEDIR%%/charts/donutbreakdown/donutbreakdownchart.cpp
+%%QT_EXAMPLEDIR%%/charts/donutbreakdown/donutbreakdownchart.h
+%%QT_EXAMPLEDIR%%/charts/donutbreakdown/main.cpp
+%%QT_EXAMPLEDIR%%/charts/donutbreakdown/mainslice.cpp
+%%QT_EXAMPLEDIR%%/charts/donutbreakdown/mainslice.h
+%%QT_EXAMPLEDIR%%/charts/donutchart/donutchart.pro
+%%QT_EXAMPLEDIR%%/charts/donutchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/dynamicspline/chart.cpp
+%%QT_EXAMPLEDIR%%/charts/dynamicspline/chart.h
+%%QT_EXAMPLEDIR%%/charts/dynamicspline/dynamicspline.pro
+%%QT_EXAMPLEDIR%%/charts/dynamicspline/main.cpp
+%%QT_EXAMPLEDIR%%/charts/horizontalbarchart/horizontalbarchart.pro
+%%QT_EXAMPLEDIR%%/charts/horizontalbarchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/horizontalpercentbarchart/horizontalpercentbarchart.pro
+%%QT_EXAMPLEDIR%%/charts/horizontalpercentbarchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/horizontalstackedbarchart/horizontalstackedbarchart.pro
+%%QT_EXAMPLEDIR%%/charts/horizontalstackedbarchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/legend/legend.pro
+%%QT_EXAMPLEDIR%%/charts/legend/main.cpp
+%%QT_EXAMPLEDIR%%/charts/legend/mainwidget.cpp
+%%QT_EXAMPLEDIR%%/charts/legend/mainwidget.h
+%%QT_EXAMPLEDIR%%/charts/legendmarkers/legendmarkers.pro
+%%QT_EXAMPLEDIR%%/charts/legendmarkers/main.cpp
+%%QT_EXAMPLEDIR%%/charts/legendmarkers/mainwidget.cpp
+%%QT_EXAMPLEDIR%%/charts/legendmarkers/mainwidget.h
+%%QT_EXAMPLEDIR%%/charts/lineandbar/lineandbar.pro
+%%QT_EXAMPLEDIR%%/charts/lineandbar/main.cpp
+%%QT_EXAMPLEDIR%%/charts/linechart/linechart.pro
+%%QT_EXAMPLEDIR%%/charts/linechart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/logvalueaxis/logvalueaxis.pro
+%%QT_EXAMPLEDIR%%/charts/logvalueaxis/main.cpp
+%%QT_EXAMPLEDIR%%/charts/modeldata/customtablemodel.cpp
+%%QT_EXAMPLEDIR%%/charts/modeldata/customtablemodel.h
+%%QT_EXAMPLEDIR%%/charts/modeldata/main.cpp
+%%QT_EXAMPLEDIR%%/charts/modeldata/modeldata.pro
+%%QT_EXAMPLEDIR%%/charts/modeldata/tablewidget.cpp
+%%QT_EXAMPLEDIR%%/charts/modeldata/tablewidget.h
+%%QT_EXAMPLEDIR%%/charts/multiaxis/main.cpp
+%%QT_EXAMPLEDIR%%/charts/multiaxis/multiaxis.pro
+%%QT_EXAMPLEDIR%%/charts/nesteddonuts/main.cpp
+%%QT_EXAMPLEDIR%%/charts/nesteddonuts/nesteddonuts.pro
+%%QT_EXAMPLEDIR%%/charts/nesteddonuts/widget.cpp
+%%QT_EXAMPLEDIR%%/charts/nesteddonuts/widget.h
+%%QT_EXAMPLEDIR%%/charts/openglseries/datasource.cpp
+%%QT_EXAMPLEDIR%%/charts/openglseries/datasource.h
+%%QT_EXAMPLEDIR%%/charts/openglseries/main.cpp
+%%QT_EXAMPLEDIR%%/charts/openglseries/openglseries.pro
+%%QT_EXAMPLEDIR%%/charts/percentbarchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/percentbarchart/percentbarchart.pro
+%%QT_EXAMPLEDIR%%/charts/piechart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/piechart/piechart.pro
+%%QT_EXAMPLEDIR%%/charts/piechartcustomization/brushtool.cpp
+%%QT_EXAMPLEDIR%%/charts/piechartcustomization/brushtool.h
+%%QT_EXAMPLEDIR%%/charts/piechartcustomization/customslice.cpp
+%%QT_EXAMPLEDIR%%/charts/piechartcustomization/customslice.h
+%%QT_EXAMPLEDIR%%/charts/piechartcustomization/main.cpp
+%%QT_EXAMPLEDIR%%/charts/piechartcustomization/mainwidget.cpp
+%%QT_EXAMPLEDIR%%/charts/piechartcustomization/mainwidget.h
+%%QT_EXAMPLEDIR%%/charts/piechartcustomization/pentool.cpp
+%%QT_EXAMPLEDIR%%/charts/piechartcustomization/pentool.h
+%%QT_EXAMPLEDIR%%/charts/piechartcustomization/piechartcustomization.pro
+%%QT_EXAMPLEDIR%%/charts/piechartdrilldown/drilldownchart.cpp
+%%QT_EXAMPLEDIR%%/charts/piechartdrilldown/drilldownchart.h
+%%QT_EXAMPLEDIR%%/charts/piechartdrilldown/drilldownslice.cpp
+%%QT_EXAMPLEDIR%%/charts/piechartdrilldown/drilldownslice.h
+%%QT_EXAMPLEDIR%%/charts/piechartdrilldown/main.cpp
+%%QT_EXAMPLEDIR%%/charts/piechartdrilldown/piechartdrilldown.pro
+%%QT_EXAMPLEDIR%%/charts/polarchart/chartview.cpp
+%%QT_EXAMPLEDIR%%/charts/polarchart/chartview.h
+%%QT_EXAMPLEDIR%%/charts/polarchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/polarchart/polarchart.pro
+%%QT_EXAMPLEDIR%%/charts/qmlaxes/main.cpp
+%%QT_EXAMPLEDIR%%/charts/qmlaxes/qml/qmlaxes/View1.qml
+%%QT_EXAMPLEDIR%%/charts/qmlaxes/qml/qmlaxes/View2.qml
+%%QT_EXAMPLEDIR%%/charts/qmlaxes/qml/qmlaxes/View3.qml
+%%QT_EXAMPLEDIR%%/charts/qmlaxes/qml/qmlaxes/main.qml
+%%QT_EXAMPLEDIR%%/charts/qmlaxes/qmlaxes.pro
+%%QT_EXAMPLEDIR%%/charts/qmlaxes/resources.qrc
+%%QT_EXAMPLEDIR%%/charts/qmlboxplot/main.cpp
+%%QT_EXAMPLEDIR%%/charts/qmlboxplot/qml/qmlboxplot/main.qml
+%%QT_EXAMPLEDIR%%/charts/qmlboxplot/qmlboxplot.pro
+%%QT_EXAMPLEDIR%%/charts/qmlboxplot/resources.qrc
+%%QT_EXAMPLEDIR%%/charts/qmlchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View1.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View10.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View11.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View12.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View2.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View3.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View4.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View5.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View6.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View7.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View8.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View9.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/main.qml
+%%QT_EXAMPLEDIR%%/charts/qmlchart/qmlchart.pro
+%%QT_EXAMPLEDIR%%/charts/qmlchart/resources.qrc
+%%QT_EXAMPLEDIR%%/charts/qmlcustomizations/main.cpp
+%%QT_EXAMPLEDIR%%/charts/qmlcustomizations/qml/qmlcustomizations/main.qml
+%%QT_EXAMPLEDIR%%/charts/qmlcustomizations/qmlcustomizations.pro
+%%QT_EXAMPLEDIR%%/charts/qmlcustomizations/resources.qrc
+%%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/main.cpp
+%%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qml/qmlcustomlegend/AnimatedAreaSeries.qml
+%%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qml/qmlcustomlegend/ChartViewHighlighted.qml
+%%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qml/qmlcustomlegend/ChartViewSelector.qml
+%%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qml/qmlcustomlegend/ChartViewStacked.qml
+%%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qml/qmlcustomlegend/CustomLegend.qml
+%%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qml/qmlcustomlegend/main.qml
+%%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qmlcustomlegend.pro
+%%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/resources.qrc
+%%QT_EXAMPLEDIR%%/charts/qmlf1legends/main.cpp
+%%QT_EXAMPLEDIR%%/charts/qmlf1legends/qml/qmlf1legends/SpeedsXml.qml
+%%QT_EXAMPLEDIR%%/charts/qmlf1legends/qml/qmlf1legends/main.qml
+%%QT_EXAMPLEDIR%%/charts/qmlf1legends/qmlf1legends.pro
+%%QT_EXAMPLEDIR%%/charts/qmlf1legends/resources.qrc
+%%QT_EXAMPLEDIR%%/charts/qmloscilloscope/datasource.cpp
+%%QT_EXAMPLEDIR%%/charts/qmloscilloscope/datasource.h
+%%QT_EXAMPLEDIR%%/charts/qmloscilloscope/main.cpp
+%%QT_EXAMPLEDIR%%/charts/qmloscilloscope/qml/qmloscilloscope/ControlPanel.qml
+%%QT_EXAMPLEDIR%%/charts/qmloscilloscope/qml/qmloscilloscope/MultiButton.qml
+%%QT_EXAMPLEDIR%%/charts/qmloscilloscope/qml/qmloscilloscope/ScopeView.qml
+%%QT_EXAMPLEDIR%%/charts/qmloscilloscope/qml/qmloscilloscope/main.qml
+%%QT_EXAMPLEDIR%%/charts/qmloscilloscope/qmloscilloscope.pro
+%%QT_EXAMPLEDIR%%/charts/qmloscilloscope/resources.qrc
+%%QT_EXAMPLEDIR%%/charts/qmlpiechart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/qmlpiechart/qml/qmlpiechart/main.qml
+%%QT_EXAMPLEDIR%%/charts/qmlpiechart/qmlpiechart.pro
+%%QT_EXAMPLEDIR%%/charts/qmlpiechart/qmlpiechart.svg
+%%QT_EXAMPLEDIR%%/charts/qmlpiechart/resources.qrc
+%%QT_EXAMPLEDIR%%/charts/qmlpolarchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/qmlpolarchart/qml/qmlpolarchart/View1.qml
+%%QT_EXAMPLEDIR%%/charts/qmlpolarchart/qml/qmlpolarchart/View2.qml
+%%QT_EXAMPLEDIR%%/charts/qmlpolarchart/qml/qmlpolarchart/View3.qml
+%%QT_EXAMPLEDIR%%/charts/qmlpolarchart/qml/qmlpolarchart/main.qml
+%%QT_EXAMPLEDIR%%/charts/qmlpolarchart/qmlpolarchart.pro
+%%QT_EXAMPLEDIR%%/charts/qmlpolarchart/resources.qrc
+%%QT_EXAMPLEDIR%%/charts/qmlweather/main.cpp
+%%QT_EXAMPLEDIR%%/charts/qmlweather/qml/qmlweather/main.qml
+%%QT_EXAMPLEDIR%%/charts/qmlweather/qmlweather.pro
+%%QT_EXAMPLEDIR%%/charts/qmlweather/resources.qrc
+%%QT_EXAMPLEDIR%%/charts/scatterchart/chartview.cpp
+%%QT_EXAMPLEDIR%%/charts/scatterchart/chartview.h
+%%QT_EXAMPLEDIR%%/charts/scatterchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/scatterchart/scatterchart.pro
+%%QT_EXAMPLEDIR%%/charts/scatterinteractions/chartview.cpp
+%%QT_EXAMPLEDIR%%/charts/scatterinteractions/chartview.h
+%%QT_EXAMPLEDIR%%/charts/scatterinteractions/main.cpp
+%%QT_EXAMPLEDIR%%/charts/scatterinteractions/scatterinteractions.pro
+%%QT_EXAMPLEDIR%%/charts/splinechart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/splinechart/splinechart.pro
+%%QT_EXAMPLEDIR%%/charts/stackedbarchart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/stackedbarchart/stackedbarchart.pro
+%%QT_EXAMPLEDIR%%/charts/stackedbarchartdrilldown/drilldownchart.cpp
+%%QT_EXAMPLEDIR%%/charts/stackedbarchartdrilldown/drilldownchart.h
+%%QT_EXAMPLEDIR%%/charts/stackedbarchartdrilldown/drilldownseries.cpp
+%%QT_EXAMPLEDIR%%/charts/stackedbarchartdrilldown/drilldownseries.h
+%%QT_EXAMPLEDIR%%/charts/stackedbarchartdrilldown/main.cpp
+%%QT_EXAMPLEDIR%%/charts/stackedbarchartdrilldown/stackedbarchartdrilldown.pro
+%%QT_EXAMPLEDIR%%/charts/temperaturerecords/main.cpp
+%%QT_EXAMPLEDIR%%/charts/temperaturerecords/temperaturerecords.pro
+%%QT_EXAMPLEDIR%%/charts/zoomlinechart/chart.cpp
+%%QT_EXAMPLEDIR%%/charts/zoomlinechart/chart.h
+%%QT_EXAMPLEDIR%%/charts/zoomlinechart/chartview.cpp
+%%QT_EXAMPLEDIR%%/charts/zoomlinechart/chartview.h
+%%QT_EXAMPLEDIR%%/charts/zoomlinechart/main.cpp
+%%QT_EXAMPLEDIR%%/charts/zoomlinechart/zoomlinechart.pro
%%QT_EXAMPLEDIR%%/corelib/corelib.pro
%%QT_EXAMPLEDIR%%/corelib/ipc/README
%%QT_EXAMPLEDIR%%/corelib/ipc/doc/images/localfortuneclient-example.png
%%QT_EXAMPLEDIR%%/corelib/ipc/doc/images/localfortuneserver-example.png
%%QT_EXAMPLEDIR%%/corelib/ipc/doc/images/sharedmemory-example_1.png
%%QT_EXAMPLEDIR%%/corelib/ipc/doc/images/sharedmemory-example_2.png
%%QT_EXAMPLEDIR%%/corelib/ipc/doc/src/localfortuneclient.qdoc
%%QT_EXAMPLEDIR%%/corelib/ipc/doc/src/localfortuneserver.qdoc
%%QT_EXAMPLEDIR%%/corelib/ipc/doc/src/sharedmemory.qdoc
%%QT_EXAMPLEDIR%%/corelib/ipc/ipc.pro
%%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneclient/client.cpp
%%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneclient/client.h
%%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneclient/localfortuneclient.pro
%%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneclient/main.cpp
%%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneserver/localfortuneserver.pro
%%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneserver/main.cpp
%%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneserver/server.cpp
%%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneserver/server.h
%%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/dialog.cpp
%%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/dialog.h
%%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/dialog.ui
%%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/image.png
%%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/main.cpp
%%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/qt.png
%%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/sharedmemory.pro
%%QT_EXAMPLEDIR%%/corelib/json/json.pro
%%QT_EXAMPLEDIR%%/corelib/json/savegame/character.cpp
%%QT_EXAMPLEDIR%%/corelib/json/savegame/character.h
%%QT_EXAMPLEDIR%%/corelib/json/savegame/doc/src/savegame.qdoc
%%QT_EXAMPLEDIR%%/corelib/json/savegame/game.cpp
%%QT_EXAMPLEDIR%%/corelib/json/savegame/game.h
%%QT_EXAMPLEDIR%%/corelib/json/savegame/level.cpp
%%QT_EXAMPLEDIR%%/corelib/json/savegame/level.h
%%QT_EXAMPLEDIR%%/corelib/json/savegame/main.cpp
%%QT_EXAMPLEDIR%%/corelib/json/savegame/savegame.pro
+%%QT_EXAMPLEDIR%%/corelib/mimetypes/doc/images/mimetypebrowser.png
+%%QT_EXAMPLEDIR%%/corelib/mimetypes/doc/src/mimetypebrowser.qdoc
+%%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypebrowser/main.cpp
+%%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypebrowser/mainwindow.cpp
+%%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypebrowser/mainwindow.h
+%%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypebrowser/mimetypebrowser.pro
+%%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypebrowser/mimetypemodel.cpp
+%%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypebrowser/mimetypemodel.h
+%%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypes.pro
%%QT_EXAMPLEDIR%%/corelib/threads/README
%%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot-example.png
%%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot_scroll1.png
%%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot_scroll2.png
%%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot_scroll3.png
%%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot_zoom1.png
%%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot_zoom2.png
%%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot_zoom3.png
%%QT_EXAMPLEDIR%%/corelib/threads/doc/images/queuedcustomtype-example.png
%%QT_EXAMPLEDIR%%/corelib/threads/doc/src/mandelbrot.qdoc
%%QT_EXAMPLEDIR%%/corelib/threads/doc/src/queuedcustomtype.qdoc
%%QT_EXAMPLEDIR%%/corelib/threads/doc/src/semaphores.qdoc
%%QT_EXAMPLEDIR%%/corelib/threads/doc/src/waitconditions.qdoc
%%QT_EXAMPLEDIR%%/corelib/threads/mandelbrot/main.cpp
%%QT_EXAMPLEDIR%%/corelib/threads/mandelbrot/mandelbrot.pro
%%QT_EXAMPLEDIR%%/corelib/threads/mandelbrot/mandelbrotwidget.cpp
%%QT_EXAMPLEDIR%%/corelib/threads/mandelbrot/mandelbrotwidget.h
%%QT_EXAMPLEDIR%%/corelib/threads/mandelbrot/renderthread.cpp
%%QT_EXAMPLEDIR%%/corelib/threads/mandelbrot/renderthread.h
%%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/block.cpp
%%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/block.h
%%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/main.cpp
%%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/queuedcustomtype.pro
%%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/renderthread.cpp
%%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/renderthread.h
%%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/window.cpp
%%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/window.h
%%QT_EXAMPLEDIR%%/corelib/threads/semaphores/semaphores.cpp
%%QT_EXAMPLEDIR%%/corelib/threads/semaphores/semaphores.pro
%%QT_EXAMPLEDIR%%/corelib/threads/threads.pro
%%QT_EXAMPLEDIR%%/corelib/threads/waitconditions/waitconditions.cpp
%%QT_EXAMPLEDIR%%/corelib/threads/waitconditions/waitconditions.pro
%%QT_EXAMPLEDIR%%/corelib/tools/README
%%QT_EXAMPLEDIR%%/corelib/tools/contiguouscache/contiguouscache.pro
%%QT_EXAMPLEDIR%%/corelib/tools/contiguouscache/main.cpp
%%QT_EXAMPLEDIR%%/corelib/tools/contiguouscache/randomlistmodel.cpp
%%QT_EXAMPLEDIR%%/corelib/tools/contiguouscache/randomlistmodel.h
%%QT_EXAMPLEDIR%%/corelib/tools/customtype/customtype.pro
%%QT_EXAMPLEDIR%%/corelib/tools/customtype/main.cpp
%%QT_EXAMPLEDIR%%/corelib/tools/customtype/message.cpp
%%QT_EXAMPLEDIR%%/corelib/tools/customtype/message.h
%%QT_EXAMPLEDIR%%/corelib/tools/customtypesending/customtypesending.pro
%%QT_EXAMPLEDIR%%/corelib/tools/customtypesending/main.cpp
%%QT_EXAMPLEDIR%%/corelib/tools/customtypesending/message.cpp
%%QT_EXAMPLEDIR%%/corelib/tools/customtypesending/message.h
%%QT_EXAMPLEDIR%%/corelib/tools/customtypesending/window.cpp
%%QT_EXAMPLEDIR%%/corelib/tools/customtypesending/window.h
%%QT_EXAMPLEDIR%%/corelib/tools/doc/src/contiguouscache.qdoc
%%QT_EXAMPLEDIR%%/corelib/tools/doc/src/customtype.qdoc
%%QT_EXAMPLEDIR%%/corelib/tools/tools.pro
%%QT_EXAMPLEDIR%%/dbus/chat/chat.cpp
%%QT_EXAMPLEDIR%%/dbus/chat/chat.h
%%QT_EXAMPLEDIR%%/dbus/chat/chat.pro
%%QT_EXAMPLEDIR%%/dbus/chat/chatmainwindow.ui
%%QT_EXAMPLEDIR%%/dbus/chat/chatsetnickname.ui
%%QT_EXAMPLEDIR%%/dbus/chat/org.example.chat.xml
%%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexping.cpp
%%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexping.h
%%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexping.pro
%%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexpingpong.pro
%%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexpong.cpp
%%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexpong.h
%%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexpong.pro
%%QT_EXAMPLEDIR%%/dbus/complexpingpong/ping-common.h
%%QT_EXAMPLEDIR%%/dbus/dbus.pro
%%QT_EXAMPLEDIR%%/dbus/doc/images/dbus-chat-example.png
%%QT_EXAMPLEDIR%%/dbus/doc/src/chat.qdoc
%%QT_EXAMPLEDIR%%/dbus/doc/src/complexpingpong.qdoc
%%QT_EXAMPLEDIR%%/dbus/doc/src/listnames.qdoc
%%QT_EXAMPLEDIR%%/dbus/doc/src/pingpong.qdoc
%%QT_EXAMPLEDIR%%/dbus/listnames/listnames.cpp
%%QT_EXAMPLEDIR%%/dbus/listnames/listnames.pro
%%QT_EXAMPLEDIR%%/dbus/pingpong/ping-common.h
%%QT_EXAMPLEDIR%%/dbus/pingpong/ping.cpp
%%QT_EXAMPLEDIR%%/dbus/pingpong/ping.pro
%%QT_EXAMPLEDIR%%/dbus/pingpong/pingpong.pro
%%QT_EXAMPLEDIR%%/dbus/pingpong/pong.cpp
%%QT_EXAMPLEDIR%%/dbus/pingpong/pong.h
%%QT_EXAMPLEDIR%%/dbus/pingpong/pong.pro
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/car/car.cpp
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/car/car.h
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/car/car.pro
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/car/car.xml
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/car/main.cpp
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/controller/car.xml
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/controller/controller.cpp
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/controller/controller.h
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/controller/controller.pro
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/controller/controller.ui
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/controller/main.cpp
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/doc/images/remotecontrolledcar-car-example.png
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/doc/src/dbus-remotecontrolledcar.qdoc
%%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/remotecontrolledcar.pro
%%QT_EXAMPLEDIR%%/designer/README
%%QT_EXAMPLEDIR%%/designer/calculatorbuilder/calculatorbuilder.pro
%%QT_EXAMPLEDIR%%/designer/calculatorbuilder/calculatorbuilder.qrc
%%QT_EXAMPLEDIR%%/designer/calculatorbuilder/calculatorform.cpp
%%QT_EXAMPLEDIR%%/designer/calculatorbuilder/calculatorform.h
%%QT_EXAMPLEDIR%%/designer/calculatorbuilder/calculatorform.ui
%%QT_EXAMPLEDIR%%/designer/calculatorbuilder/main.cpp
%%QT_EXAMPLEDIR%%/designer/calculatorform/calculatorform.cpp
%%QT_EXAMPLEDIR%%/designer/calculatorform/calculatorform.h
%%QT_EXAMPLEDIR%%/designer/calculatorform/calculatorform.pro
%%QT_EXAMPLEDIR%%/designer/calculatorform/calculatorform.ui
%%QT_EXAMPLEDIR%%/designer/calculatorform/main.cpp
%%QT_EXAMPLEDIR%%/designer/containerextension/containerextension.pro
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidget.cpp
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidget.h
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetcontainerextension.cpp
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetcontainerextension.h
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetextensionfactory.cpp
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetextensionfactory.h
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetplugin.cpp
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetplugin.h
%%QT_EXAMPLEDIR%%/designer/customwidgetplugin/analogclock.cpp
%%QT_EXAMPLEDIR%%/designer/customwidgetplugin/analogclock.h
%%QT_EXAMPLEDIR%%/designer/customwidgetplugin/customwidgetplugin.cpp
%%QT_EXAMPLEDIR%%/designer/customwidgetplugin/customwidgetplugin.h
%%QT_EXAMPLEDIR%%/designer/customwidgetplugin/customwidgetplugin.pro
%%QT_EXAMPLEDIR%%/designer/designer.pro
%%QT_EXAMPLEDIR%%/designer/doc/images/arthurplugin-demo.png
%%QT_EXAMPLEDIR%%/designer/doc/images/calculatorbuilder-example.png
%%QT_EXAMPLEDIR%%/designer/doc/images/calculatorform-example.png
%%QT_EXAMPLEDIR%%/designer/doc/images/containerextension-example.png
%%QT_EXAMPLEDIR%%/designer/doc/images/customwidgetplugin-example.png
%%QT_EXAMPLEDIR%%/designer/doc/images/taskmenuextension-dialog.png
%%QT_EXAMPLEDIR%%/designer/doc/images/taskmenuextension-example-faded.png
%%QT_EXAMPLEDIR%%/designer/doc/images/taskmenuextension-example.png
%%QT_EXAMPLEDIR%%/designer/doc/images/taskmenuextension-menu.png
%%QT_EXAMPLEDIR%%/designer/doc/images/worldtimeclock-connection.png
%%QT_EXAMPLEDIR%%/designer/doc/images/worldtimeclock-signalandslot.png
%%QT_EXAMPLEDIR%%/designer/doc/images/worldtimeclockbuilder-example.png
%%QT_EXAMPLEDIR%%/designer/doc/images/worldtimeclockplugin-example.png
%%QT_EXAMPLEDIR%%/designer/doc/snippets/doc_src_examples_containerextension.pro
%%QT_EXAMPLEDIR%%/designer/doc/snippets/doc_src_examples_customwidgetplugin.pro
%%QT_EXAMPLEDIR%%/designer/doc/snippets/doc_src_examples_taskmenuextension.pro
%%QT_EXAMPLEDIR%%/designer/doc/snippets/doc_src_examples_worldtimeclockplugin.pro
%%QT_EXAMPLEDIR%%/designer/doc/src/calculatorbuilder.qdoc
%%QT_EXAMPLEDIR%%/designer/doc/src/calculatorform.qdoc
%%QT_EXAMPLEDIR%%/designer/doc/src/containerextension.qdoc
%%QT_EXAMPLEDIR%%/designer/doc/src/customwidgetplugin.qdoc
%%QT_EXAMPLEDIR%%/designer/doc/src/taskmenuextension.qdoc
%%QT_EXAMPLEDIR%%/designer/doc/src/worldtimeclockbuilder.qdoc
%%QT_EXAMPLEDIR%%/designer/doc/src/worldtimeclockplugin.qdoc
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/taskmenuextension.pro
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoe.cpp
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoe.h
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoedialog.cpp
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoedialog.h
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoeplugin.cpp
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoeplugin.h
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoetaskmenu.cpp
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoetaskmenu.h
%%QT_EXAMPLEDIR%%/designer/worldtimeclockbuilder/form.ui
%%QT_EXAMPLEDIR%%/designer/worldtimeclockbuilder/main.cpp
%%QT_EXAMPLEDIR%%/designer/worldtimeclockbuilder/worldtimeclockbuilder.pro
%%QT_EXAMPLEDIR%%/designer/worldtimeclockbuilder/worldtimeclockbuilder.qrc
%%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclock.cpp
%%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclock.h
%%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclockplugin.cpp
%%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclockplugin.h
%%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclockplugin.pro
%%QT_EXAMPLEDIR%%/embedded/digiflip/digiflip.cpp
%%QT_EXAMPLEDIR%%/embedded/digiflip/digiflip.pro
%%QT_EXAMPLEDIR%%/embedded/embedded.pro
%%QT_EXAMPLEDIR%%/embedded/flickable/flickable.cpp
%%QT_EXAMPLEDIR%%/embedded/flickable/flickable.h
%%QT_EXAMPLEDIR%%/embedded/flickable/flickable.pro
%%QT_EXAMPLEDIR%%/embedded/flickable/main.cpp
%%QT_EXAMPLEDIR%%/embedded/flightinfo/aircraft.png
%%QT_EXAMPLEDIR%%/embedded/flightinfo/flightinfo.cpp
%%QT_EXAMPLEDIR%%/embedded/flightinfo/flightinfo.pro
%%QT_EXAMPLEDIR%%/embedded/flightinfo/flightinfo.qrc
%%QT_EXAMPLEDIR%%/embedded/flightinfo/form.ui
%%QT_EXAMPLEDIR%%/embedded/lightmaps/lightmaps.cpp
%%QT_EXAMPLEDIR%%/embedded/lightmaps/lightmaps.h
%%QT_EXAMPLEDIR%%/embedded/lightmaps/lightmaps.pro
%%QT_EXAMPLEDIR%%/embedded/lightmaps/main.cpp
%%QT_EXAMPLEDIR%%/embedded/lightmaps/mapzoom.cpp
%%QT_EXAMPLEDIR%%/embedded/lightmaps/mapzoom.h
%%QT_EXAMPLEDIR%%/embedded/lightmaps/slippymap.cpp
%%QT_EXAMPLEDIR%%/embedded/lightmaps/slippymap.h
%%QT_EXAMPLEDIR%%/embedded/raycasting/raycasting.cpp
%%QT_EXAMPLEDIR%%/embedded/raycasting/raycasting.pro
%%QT_EXAMPLEDIR%%/embedded/raycasting/raycasting.qrc
%%QT_EXAMPLEDIR%%/embedded/raycasting/textures.png
%%QT_EXAMPLEDIR%%/embedded/styleexample/files/add.png
%%QT_EXAMPLEDIR%%/embedded/styleexample/files/application.qss
%%QT_EXAMPLEDIR%%/embedded/styleexample/files/blue.qss
%%QT_EXAMPLEDIR%%/embedded/styleexample/files/khaki.qss
%%QT_EXAMPLEDIR%%/embedded/styleexample/files/nature_1.jpg
%%QT_EXAMPLEDIR%%/embedded/styleexample/files/nostyle.qss
%%QT_EXAMPLEDIR%%/embedded/styleexample/files/remove.png
%%QT_EXAMPLEDIR%%/embedded/styleexample/files/transparent.qss
%%QT_EXAMPLEDIR%%/embedded/styleexample/main.cpp
%%QT_EXAMPLEDIR%%/embedded/styleexample/styleexample.pro
%%QT_EXAMPLEDIR%%/embedded/styleexample/styleexample.qrc
%%QT_EXAMPLEDIR%%/embedded/styleexample/stylewidget.cpp
%%QT_EXAMPLEDIR%%/embedded/styleexample/stylewidget.h
%%QT_EXAMPLEDIR%%/embedded/styleexample/stylewidget.ui
-%%QT_EXAMPLEDIR%%/enginio/common/backendhelper/BackendHelper.qml
-%%QT_EXAMPLEDIR%%/enginio/common/backendhelper/backendhelper.cpp
-%%QT_EXAMPLEDIR%%/enginio/common/backendhelper/backendhelper.h
-%%QT_EXAMPLEDIR%%/enginio/common/backendhelper/backendhelper.pri
-%%QT_EXAMPLEDIR%%/enginio/common/backendhelper/helperdialog.ui
-%%QT_EXAMPLEDIR%%/enginio/common/backendhelper/qmlbackendhelper.pri
-%%QT_EXAMPLEDIR%%/enginio/common/backendhelper/qmlbackendhelper.qrc
-%%QT_EXAMPLEDIR%%/enginio/common/icons/add_icon.png
-%%QT_EXAMPLEDIR%%/enginio/common/icons/add_icon_pressed.png
-%%QT_EXAMPLEDIR%%/enginio/common/icons/back_icon.png
-%%QT_EXAMPLEDIR%%/enginio/common/icons/delete_icon.png
-%%QT_EXAMPLEDIR%%/enginio/common/icons/delete_icon_pressed.png
-%%QT_EXAMPLEDIR%%/enginio/common/icons/reload_icon.png
-%%QT_EXAMPLEDIR%%/enginio/common/icons/reload_icon_pressed.png
-%%QT_EXAMPLEDIR%%/enginio/common/icons/share_icon.png
-%%QT_EXAMPLEDIR%%/enginio/common/icons/share_icon_pressed.png
-%%QT_EXAMPLEDIR%%/enginio/common/images/checkbox.png
-%%QT_EXAMPLEDIR%%/enginio/common/images/checkbox_checked.png
-%%QT_EXAMPLEDIR%%/enginio/common/images/delegate.png
-%%QT_EXAMPLEDIR%%/enginio/common/images/delegate_pressed.png
-%%QT_EXAMPLEDIR%%/enginio/common/images/enginio.png
-%%QT_EXAMPLEDIR%%/enginio/common/images/shadow.png
-%%QT_EXAMPLEDIR%%/enginio/common/images/textfield.png
-%%QT_EXAMPLEDIR%%/enginio/enginio.pro
-%%QT_EXAMPLEDIR%%/enginio/quick/image-gallery/doc/images/image-gallery.png
-%%QT_EXAMPLEDIR%%/enginio/quick/image-gallery/doc/src/image-gallery.qdoc
-%%QT_EXAMPLEDIR%%/enginio/quick/image-gallery/gallery.qrc
-%%QT_EXAMPLEDIR%%/enginio/quick/image-gallery/image-gallery.pro
-%%QT_EXAMPLEDIR%%/enginio/quick/image-gallery/image-gallery.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/main.cpp
-%%QT_EXAMPLEDIR%%/enginio/quick/quick.pro
-%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/Header.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/List.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/Login.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/ShareDialog.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/TextField.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/TodoLists.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/TouchButton.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/backendconfig/sharedtodo.zip
-%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/doc/src/socialtodos.qdoc
-%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/socialtodos.pro
-%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/socialtodos.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/socialtodos.qrc
-%%QT_EXAMPLEDIR%%/enginio/quick/todos/doc/images/todolist.png
-%%QT_EXAMPLEDIR%%/enginio/quick/todos/doc/src/todos.qdoc
-%%QT_EXAMPLEDIR%%/enginio/quick/todos/todo.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/todos/todo.qrc
-%%QT_EXAMPLEDIR%%/enginio/quick/todos/todos.pro
-%%QT_EXAMPLEDIR%%/enginio/quick/users/Browse.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/users/Login.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/users/Register.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/users/doc/src/users.qdoc
-%%QT_EXAMPLEDIR%%/enginio/quick/users/users.pro
-%%QT_EXAMPLEDIR%%/enginio/quick/users/users.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/users/users.qrc
-%%QT_EXAMPLEDIR%%/enginio/widgets/cloudaddressbook/addressbookmodel.cpp
-%%QT_EXAMPLEDIR%%/enginio/widgets/cloudaddressbook/addressbookmodel.h
-%%QT_EXAMPLEDIR%%/enginio/widgets/cloudaddressbook/cloudaddressbook.pro
-%%QT_EXAMPLEDIR%%/enginio/widgets/cloudaddressbook/doc/src/cloudaddressbook.qdoc
-%%QT_EXAMPLEDIR%%/enginio/widgets/cloudaddressbook/main.cpp
-%%QT_EXAMPLEDIR%%/enginio/widgets/cloudaddressbook/mainwindow.cpp
-%%QT_EXAMPLEDIR%%/enginio/widgets/cloudaddressbook/mainwindow.h
-%%QT_EXAMPLEDIR%%/enginio/widgets/cloudaddressbook/mainwindow.ui
-%%QT_EXAMPLEDIR%%/enginio/widgets/image-gallery-cpp/doc/src/image-gallery-cpp.qdoc
-%%QT_EXAMPLEDIR%%/enginio/widgets/image-gallery-cpp/image-gallery-cpp.pro
-%%QT_EXAMPLEDIR%%/enginio/widgets/image-gallery-cpp/imagemodel.cpp
-%%QT_EXAMPLEDIR%%/enginio/widgets/image-gallery-cpp/imagemodel.h
-%%QT_EXAMPLEDIR%%/enginio/widgets/image-gallery-cpp/imageobject.cpp
-%%QT_EXAMPLEDIR%%/enginio/widgets/image-gallery-cpp/imageobject.h
-%%QT_EXAMPLEDIR%%/enginio/widgets/image-gallery-cpp/main.cpp
-%%QT_EXAMPLEDIR%%/enginio/widgets/image-gallery-cpp/mainwindow.cpp
-%%QT_EXAMPLEDIR%%/enginio/widgets/image-gallery-cpp/mainwindow.h
-%%QT_EXAMPLEDIR%%/enginio/widgets/todos-cpp/doc/src/todos-cpp.qdoc
-%%QT_EXAMPLEDIR%%/enginio/widgets/todos-cpp/main.cpp
-%%QT_EXAMPLEDIR%%/enginio/widgets/todos-cpp/mainwindow.cpp
-%%QT_EXAMPLEDIR%%/enginio/widgets/todos-cpp/mainwindow.h
-%%QT_EXAMPLEDIR%%/enginio/widgets/todos-cpp/todos-cpp.pro
-%%QT_EXAMPLEDIR%%/enginio/widgets/todos-cpp/todosmodel.cpp
-%%QT_EXAMPLEDIR%%/enginio/widgets/todos-cpp/todosmodel.h
-%%QT_EXAMPLEDIR%%/enginio/widgets/widgets.pro
%%QT_EXAMPLEDIR%%/examples.pro
+%%QT_EXAMPLEDIR%%/gamepad/configureButtons/android/AndroidManifest.xml
+%%QT_EXAMPLEDIR%%/gamepad/configureButtons/configureButtons.pro
+%%QT_EXAMPLEDIR%%/gamepad/configureButtons/doc/images/configuregamepadbuttons-example.png
+%%QT_EXAMPLEDIR%%/gamepad/configureButtons/doc/src/configbuttonsexample.qdoc
+%%QT_EXAMPLEDIR%%/gamepad/configureButtons/main.cpp
+%%QT_EXAMPLEDIR%%/gamepad/configureButtons/main.qml
+%%QT_EXAMPLEDIR%%/gamepad/configureButtons/qml.qrc
+%%QT_EXAMPLEDIR%%/gamepad/gamepad.pro
+%%QT_EXAMPLEDIR%%/gamepad/keyNavigation/doc/images/keynavigationgamepad-example.png
+%%QT_EXAMPLEDIR%%/gamepad/keyNavigation/doc/src/keynaviexample.qdoc
+%%QT_EXAMPLEDIR%%/gamepad/keyNavigation/keyNavigation.pro
+%%QT_EXAMPLEDIR%%/gamepad/keyNavigation/keyNavigation64.png
+%%QT_EXAMPLEDIR%%/gamepad/keyNavigation/keyNavigation80.png
+%%QT_EXAMPLEDIR%%/gamepad/keyNavigation/main.cpp
+%%QT_EXAMPLEDIR%%/gamepad/keyNavigation/qml.qrc
+%%QT_EXAMPLEDIR%%/gamepad/keyNavigation/qml/main.qml
+%%QT_EXAMPLEDIR%%/gamepad/mouseItem/doc/src/mouseitemexample.qdoc
+%%QT_EXAMPLEDIR%%/gamepad/mouseItem/main.cpp
+%%QT_EXAMPLEDIR%%/gamepad/mouseItem/mouseItem.pro
+%%QT_EXAMPLEDIR%%/gamepad/mouseItem/mouseItem64.png
+%%QT_EXAMPLEDIR%%/gamepad/mouseItem/mouseItem80.png
+%%QT_EXAMPLEDIR%%/gamepad/mouseItem/qml.qrc
+%%QT_EXAMPLEDIR%%/gamepad/mouseItem/qml/main.qml
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/doc/images/qtquickgamepad-example.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/doc/src/quickgamepadexample.qdoc
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/main.cpp
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml.qrc
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/ButtonImage.qml
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/DPad.qml
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/JoystickViewer.qml
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/LeftThumbstick.qml
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/RightThumbstick.qml
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/main.qml
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerBack.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerButtonA.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerButtonB.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerButtonGuide.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerButtonX.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerButtonY.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerDPad.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerLeftShoulder.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerLeftThumbstick.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerLeftTrigger.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerRightShoulder.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerRightThumbstick.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerRightTrigger.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerStart.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/quickGamepad.pro
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/quickGamepad64.png
+%%QT_EXAMPLEDIR%%/gamepad/quickGamepad/quickGamepad80.png
+%%QT_EXAMPLEDIR%%/gamepad/simple/android/AndroidManifest.xml
+%%QT_EXAMPLEDIR%%/gamepad/simple/doc/src/simpleexample.qdoc
+%%QT_EXAMPLEDIR%%/gamepad/simple/gamepadmonitor.cpp
+%%QT_EXAMPLEDIR%%/gamepad/simple/gamepadmonitor.h
+%%QT_EXAMPLEDIR%%/gamepad/simple/main.cpp
+%%QT_EXAMPLEDIR%%/gamepad/simple/simple.pro
%%QT_EXAMPLEDIR%%/gui/analogclock/analogclock.pro
%%QT_EXAMPLEDIR%%/gui/analogclock/main.cpp
%%QT_EXAMPLEDIR%%/gui/doc/images/analogclock-window-example.png
%%QT_EXAMPLEDIR%%/gui/doc/images/analogclockwindow-viewport.png
%%QT_EXAMPLEDIR%%/gui/doc/images/openglwindow-example.png
%%QT_EXAMPLEDIR%%/gui/doc/src/analogclockwindow.qdoc
%%QT_EXAMPLEDIR%%/gui/doc/src/openglwindow.qdoc
%%QT_EXAMPLEDIR%%/gui/doc/src/rasterwindow.qdoc
%%QT_EXAMPLEDIR%%/gui/gui.pro
%%QT_EXAMPLEDIR%%/gui/openglwindow/main.cpp
%%QT_EXAMPLEDIR%%/gui/openglwindow/openglwindow.cpp
%%QT_EXAMPLEDIR%%/gui/openglwindow/openglwindow.h
%%QT_EXAMPLEDIR%%/gui/openglwindow/openglwindow.pri
%%QT_EXAMPLEDIR%%/gui/openglwindow/openglwindow.pro
%%QT_EXAMPLEDIR%%/gui/rasterwindow/main.cpp
%%QT_EXAMPLEDIR%%/gui/rasterwindow/rasterwindow.cpp
%%QT_EXAMPLEDIR%%/gui/rasterwindow/rasterwindow.h
%%QT_EXAMPLEDIR%%/gui/rasterwindow/rasterwindow.pri
%%QT_EXAMPLEDIR%%/gui/rasterwindow/rasterwindow.pro
%%QT_EXAMPLEDIR%%/help/README
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/contextsensitivehelp.pro
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/amount.html
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/filter.html
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/plants.html
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/rain.html
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/source.html
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/temperature.html
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/time.html
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/wateringmachine.qch
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/wateringmachine.qhc
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/wateringmachine.qhcp
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/wateringmachine.qhp
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/helpbrowser.cpp
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/helpbrowser.h
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/main.cpp
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/wateringconfigdialog.cpp
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/wateringconfigdialog.h
%%QT_EXAMPLEDIR%%/help/contextsensitivehelp/wateringconfigdialog.ui
%%QT_EXAMPLEDIR%%/help/doc/src/contextsensitivehelp.qdoc
%%QT_EXAMPLEDIR%%/help/help.pro
%%QT_EXAMPLEDIR%%/linguist/README
%%QT_EXAMPLEDIR%%/linguist/arrowpad/arrowpad.cpp
%%QT_EXAMPLEDIR%%/linguist/arrowpad/arrowpad.h
%%QT_EXAMPLEDIR%%/linguist/arrowpad/arrowpad.pro
%%QT_EXAMPLEDIR%%/linguist/arrowpad/main.cpp
%%QT_EXAMPLEDIR%%/linguist/arrowpad/mainwindow.cpp
%%QT_EXAMPLEDIR%%/linguist/arrowpad/mainwindow.h
%%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-arrowpad_en.png
%%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-arrowpad_fr.png
%%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-arrowpad_nl.png
%%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-hellotr_en.png
%%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-hellotr_la.png
%%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-trollprint_10_en.png
%%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-trollprint_10_pt_bad.png
%%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-trollprint_10_pt_good.png
%%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-trollprint_11_en.png
%%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-trollprint_11_pt.png
%%QT_EXAMPLEDIR%%/linguist/doc/snippets/doc_src_examples_arrowpad.cpp
%%QT_EXAMPLEDIR%%/linguist/doc/snippets/doc_src_examples_arrowpad.qdoc
%%QT_EXAMPLEDIR%%/linguist/doc/snippets/doc_src_examples_hellotr.qdoc
%%QT_EXAMPLEDIR%%/linguist/doc/snippets/doc_src_examples_trollprint.cpp
%%QT_EXAMPLEDIR%%/linguist/doc/src/arrowpad.qdoc
%%QT_EXAMPLEDIR%%/linguist/doc/src/hellotr.qdoc
%%QT_EXAMPLEDIR%%/linguist/doc/src/trollprint.qdoc
%%QT_EXAMPLEDIR%%/linguist/hellotr/hellotr.pro
%%QT_EXAMPLEDIR%%/linguist/hellotr/main.cpp
%%QT_EXAMPLEDIR%%/linguist/linguist.pro
%%QT_EXAMPLEDIR%%/linguist/trollprint/main.cpp
%%QT_EXAMPLEDIR%%/linguist/trollprint/mainwindow.cpp
%%QT_EXAMPLEDIR%%/linguist/trollprint/mainwindow.h
%%QT_EXAMPLEDIR%%/linguist/trollprint/printpanel.cpp
%%QT_EXAMPLEDIR%%/linguist/trollprint/printpanel.h
%%QT_EXAMPLEDIR%%/linguist/trollprint/trollprint.pro
%%QT_EXAMPLEDIR%%/linguist/trollprint/trollprint_pt.ts
%%QT_EXAMPLEDIR%%/location/location.pro
%%QT_EXAMPLEDIR%%/location/mapviewer/doc/images/mapviewer.png
%%QT_EXAMPLEDIR%%/location/mapviewer/doc/src/mapviewer.qdoc
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/Geocode.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/GeocodeForm.ui.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/Locale.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/LocaleForm.ui.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/Message.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/MessageForm.ui.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/ReverseGeocode.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/ReverseGeocodeForm.ui.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteAddress.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteAddressForm.ui.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteCoordinate.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteCoordinateForm.ui.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteList.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteListDelegate.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteListHeader.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/helper.js
%%QT_EXAMPLEDIR%%/location/mapviewer/main.cpp
%%QT_EXAMPLEDIR%%/location/mapviewer/map/CircleItem.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/map/ImageItem.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/map/MapComponent.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/map/Marker.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/map/MiniMap.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/map/PolygonItem.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/map/PolylineItem.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/map/RectangleItem.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/mapviewer.pro
%%QT_EXAMPLEDIR%%/location/mapviewer/mapviewer.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/mapviewer.qrc
%%QT_EXAMPLEDIR%%/location/mapviewer/menus/ItemPopupMenu.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/menus/MainMenu.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/menus/MapPopupMenu.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/menus/MarkerPopupMenu.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/resources/icon.png
%%QT_EXAMPLEDIR%%/location/mapviewer/resources/marker.png
%%QT_EXAMPLEDIR%%/location/mapviewer/resources/scale.png
%%QT_EXAMPLEDIR%%/location/mapviewer/resources/scale_end.png
%%QT_EXAMPLEDIR%%/location/minimal_map/doc/images/minimal_map.png
%%QT_EXAMPLEDIR%%/location/minimal_map/doc/src/minimal_map.qdoc
%%QT_EXAMPLEDIR%%/location/minimal_map/main.cpp
%%QT_EXAMPLEDIR%%/location/minimal_map/main.qml
%%QT_EXAMPLEDIR%%/location/minimal_map/minimal_map.pro
%%QT_EXAMPLEDIR%%/location/minimal_map/qml.qrc
%%QT_EXAMPLEDIR%%/location/places/doc/images/places.png
%%QT_EXAMPLEDIR%%/location/places/doc/src/places.qdoc
%%QT_EXAMPLEDIR%%/location/places/forms/Message.qml
%%QT_EXAMPLEDIR%%/location/places/forms/MessageForm.ui.qml
%%QT_EXAMPLEDIR%%/location/places/forms/PlaceDetails.qml
%%QT_EXAMPLEDIR%%/location/places/forms/PlaceDetailsForm.ui.qml
%%QT_EXAMPLEDIR%%/location/places/forms/SearchBoundingBox.qml
%%QT_EXAMPLEDIR%%/location/places/forms/SearchBoundingBoxForm.ui.qml
%%QT_EXAMPLEDIR%%/location/places/forms/SearchBoundingCircle.qml
%%QT_EXAMPLEDIR%%/location/places/forms/SearchBoundingCircleForm.ui.qml
%%QT_EXAMPLEDIR%%/location/places/forms/SearchCenter.qml
%%QT_EXAMPLEDIR%%/location/places/forms/SearchCenterForm.ui.qml
%%QT_EXAMPLEDIR%%/location/places/forms/SearchOptions.qml
%%QT_EXAMPLEDIR%%/location/places/forms/SearchOptionsForm.ui.qml
%%QT_EXAMPLEDIR%%/location/places/helper.js
%%QT_EXAMPLEDIR%%/location/places/items/MainMenu.qml
%%QT_EXAMPLEDIR%%/location/places/items/MapComponent.qml
%%QT_EXAMPLEDIR%%/location/places/items/SearchBar.qml
%%QT_EXAMPLEDIR%%/location/places/main.cpp
%%QT_EXAMPLEDIR%%/location/places/places.pro
%%QT_EXAMPLEDIR%%/location/places/places.qml
%%QT_EXAMPLEDIR%%/location/places/places.qrc
%%QT_EXAMPLEDIR%%/location/places/resources/categories.png
%%QT_EXAMPLEDIR%%/location/places/resources/left.png
%%QT_EXAMPLEDIR%%/location/places/resources/marker.png
%%QT_EXAMPLEDIR%%/location/places/resources/right.png
%%QT_EXAMPLEDIR%%/location/places/resources/scale.png
%%QT_EXAMPLEDIR%%/location/places/resources/scale_end.png
%%QT_EXAMPLEDIR%%/location/places/resources/search.png
%%QT_EXAMPLEDIR%%/location/places/resources/star.png
%%QT_EXAMPLEDIR%%/location/places/views/CategoryDelegate.qml
%%QT_EXAMPLEDIR%%/location/places/views/CategoryView.qml
%%QT_EXAMPLEDIR%%/location/places/views/EditorialDelegate.qml
%%QT_EXAMPLEDIR%%/location/places/views/EditorialPage.qml
%%QT_EXAMPLEDIR%%/location/places/views/EditorialView.qml
%%QT_EXAMPLEDIR%%/location/places/views/ImageView.qml
%%QT_EXAMPLEDIR%%/location/places/views/RatingView.qml
%%QT_EXAMPLEDIR%%/location/places/views/ReviewDelegate.qml
%%QT_EXAMPLEDIR%%/location/places/views/ReviewPage.qml
%%QT_EXAMPLEDIR%%/location/places/views/ReviewView.qml
%%QT_EXAMPLEDIR%%/location/places/views/SearchResultDelegate.qml
%%QT_EXAMPLEDIR%%/location/places/views/SearchResultView.qml
%%QT_EXAMPLEDIR%%/location/places/views/SuggestionView.qml
%%QT_EXAMPLEDIR%%/location/places_list/Marker.qml
%%QT_EXAMPLEDIR%%/location/places_list/doc/images/places_list.png
%%QT_EXAMPLEDIR%%/location/places_list/doc/src/places_list.qdoc
%%QT_EXAMPLEDIR%%/location/places_list/main.cpp
%%QT_EXAMPLEDIR%%/location/places_list/marker.png
%%QT_EXAMPLEDIR%%/location/places_list/places_list.pro
%%QT_EXAMPLEDIR%%/location/places_list/places_list.qml
%%QT_EXAMPLEDIR%%/location/places_list/places_list.qrc
%%QT_EXAMPLEDIR%%/location/places_map/doc/images/places_map.png
%%QT_EXAMPLEDIR%%/location/places_map/doc/src/places_map.qdoc
%%QT_EXAMPLEDIR%%/location/places_map/main.cpp
%%QT_EXAMPLEDIR%%/location/places_map/marker.png
%%QT_EXAMPLEDIR%%/location/places_map/places_map.pro
%%QT_EXAMPLEDIR%%/location/places_map/places_map.qml
%%QT_EXAMPLEDIR%%/location/places_map/places_map.qrc
%%QT_EXAMPLEDIR%%/location/planespotter/Plane.qml
%%QT_EXAMPLEDIR%%/location/planespotter/airplane.png
%%QT_EXAMPLEDIR%%/location/planespotter/doc/images/planespotter.png
%%QT_EXAMPLEDIR%%/location/planespotter/doc/src/planespotter.qdoc
%%QT_EXAMPLEDIR%%/location/planespotter/main.cpp
%%QT_EXAMPLEDIR%%/location/planespotter/planespotter.pro
%%QT_EXAMPLEDIR%%/location/planespotter/planespotter.qml
%%QT_EXAMPLEDIR%%/location/planespotter/qml.qrc
%%QT_EXAMPLEDIR%%/multimedia/audiodecoder/audiodecoder.cpp
%%QT_EXAMPLEDIR%%/multimedia/audiodecoder/audiodecoder.h
%%QT_EXAMPLEDIR%%/multimedia/audiodecoder/audiodecoder.pro
%%QT_EXAMPLEDIR%%/multimedia/audiodecoder/main.cpp
%%QT_EXAMPLEDIR%%/multimedia/audiodecoder/wavefilewriter.cpp
%%QT_EXAMPLEDIR%%/multimedia/audiodecoder/wavefilewriter.h
%%QT_EXAMPLEDIR%%/multimedia/audiodevices/audiodevices.cpp
%%QT_EXAMPLEDIR%%/multimedia/audiodevices/audiodevices.h
%%QT_EXAMPLEDIR%%/multimedia/audiodevices/audiodevices.pro
%%QT_EXAMPLEDIR%%/multimedia/audiodevices/audiodevicesbase.ui
%%QT_EXAMPLEDIR%%/multimedia/audiodevices/doc/images/audiodevices.png
%%QT_EXAMPLEDIR%%/multimedia/audiodevices/doc/src/audiodevices.qdoc
%%QT_EXAMPLEDIR%%/multimedia/audiodevices/main.cpp
%%QT_EXAMPLEDIR%%/multimedia/audioengine/audioengine.pro
%%QT_EXAMPLEDIR%%/multimedia/audioengine/doc/src/audioengine.qdoc
%%QT_EXAMPLEDIR%%/multimedia/audioengine/qml/audioengine.qml
%%QT_EXAMPLEDIR%%/multimedia/audioengine/qml/audioengine.qmlproject
%%QT_EXAMPLEDIR%%/multimedia/audioengine/qml/content/MyAudioEngine.qml
%%QT_EXAMPLEDIR%%/multimedia/audioengine/qml/content/engine-loop.wav
%%QT_EXAMPLEDIR%%/multimedia/audioengine/qml/content/horn.wav
%%QT_EXAMPLEDIR%%/multimedia/audioengine/qml/content/whistle.wav
%%QT_EXAMPLEDIR%%/multimedia/audioinput/audioinput.cpp
%%QT_EXAMPLEDIR%%/multimedia/audioinput/audioinput.h
%%QT_EXAMPLEDIR%%/multimedia/audioinput/audioinput.pro
%%QT_EXAMPLEDIR%%/multimedia/audioinput/doc/images/audioinput-example.png
%%QT_EXAMPLEDIR%%/multimedia/audioinput/doc/src/audioinput.qdoc
%%QT_EXAMPLEDIR%%/multimedia/audioinput/main.cpp
%%QT_EXAMPLEDIR%%/multimedia/audiooutput/audiooutput.cpp
%%QT_EXAMPLEDIR%%/multimedia/audiooutput/audiooutput.h
%%QT_EXAMPLEDIR%%/multimedia/audiooutput/audiooutput.pro
%%QT_EXAMPLEDIR%%/multimedia/audiooutput/doc/images/audiooutput-example.png
%%QT_EXAMPLEDIR%%/multimedia/audiooutput/doc/src/audiooutput.qdoc
%%QT_EXAMPLEDIR%%/multimedia/audiooutput/main.cpp
%%QT_EXAMPLEDIR%%/multimedia/audiorecorder/audiorecorder.cpp
%%QT_EXAMPLEDIR%%/multimedia/audiorecorder/audiorecorder.h
%%QT_EXAMPLEDIR%%/multimedia/audiorecorder/audiorecorder.pro
%%QT_EXAMPLEDIR%%/multimedia/audiorecorder/audiorecorder.ui
%%QT_EXAMPLEDIR%%/multimedia/audiorecorder/doc/images/audiorecorder.png
%%QT_EXAMPLEDIR%%/multimedia/audiorecorder/doc/src/audiorecorder.qdoc
%%QT_EXAMPLEDIR%%/multimedia/audiorecorder/main.cpp
%%QT_EXAMPLEDIR%%/multimedia/audiorecorder/qaudiolevel.cpp
%%QT_EXAMPLEDIR%%/multimedia/audiorecorder/qaudiolevel.h
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/CameraButton.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/CameraListButton.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/CameraListPopup.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/CameraPropertyButton.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/CameraPropertyPopup.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/FocusButton.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/PhotoCaptureControls.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/PhotoPreview.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/Popup.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/VideoCaptureControls.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/VideoPreview.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/ZoomControl.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/declarative-camera.pro
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/declarative-camera.qml
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/declarative-camera.qmlproject
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/declarative-camera.qrc
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/doc/images/qml-camera.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/doc/src/declarative-camera.qdoc
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_auto_mode.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_camera_setting.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_flash_auto.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_flash_fill.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_flash_off.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_flash_redeye.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_white_balance_cloudy.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_white_balance_flourescent.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_white_balance_incandescent.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_white_balance_sunny.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/toolbutton.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/toolbutton.sci
%%QT_EXAMPLEDIR%%/multimedia/declarative-camera/qmlcamera.cpp
%%QT_EXAMPLEDIR%%/multimedia/declarative-radio/declarative-radio.pro
%%QT_EXAMPLEDIR%%/multimedia/declarative-radio/declarative-radio.qrc
%%QT_EXAMPLEDIR%%/multimedia/declarative-radio/doc/images/declarative-radio-example.png
%%QT_EXAMPLEDIR%%/multimedia/declarative-radio/doc/src/declarative-radio.qdoc
%%QT_EXAMPLEDIR%%/multimedia/declarative-radio/main.cpp
%%QT_EXAMPLEDIR%%/multimedia/declarative-radio/view.qml
%%QT_EXAMPLEDIR%%/multimedia/multimedia.pro
%%QT_EXAMPLEDIR%%/multimedia/radio/main.cpp
%%QT_EXAMPLEDIR%%/multimedia/radio/radio.cpp
%%QT_EXAMPLEDIR%%/multimedia/radio/radio.h
%%QT_EXAMPLEDIR%%/multimedia/radio/radio.pro
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/Array.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/Array.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/DynArray.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/DynArray.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTReal.dsp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTReal.dsw
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTReal.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTReal.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealFixLen.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealFixLen.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealFixLenParam.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealPassDirect.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealPassDirect.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealPassInverse.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealPassInverse.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealSelect.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealSelect.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealUseTrigo.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealUseTrigo.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/OscSinCos.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/OscSinCos.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestAccuracy.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestAccuracy.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestHelperFixLen.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestHelperFixLen.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestHelperNormal.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestHelperNormal.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestSpeed.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestSpeed.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestWhiteNoiseGen.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestWhiteNoiseGen.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/bwins/fftrealu.def
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/def.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/eabi/fftrealu.def
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/fftreal.pas
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/fftreal.pro
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/fftreal_wrapper.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/fftreal_wrapper.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/license.txt
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/readme.txt
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/ClockCycleCounter.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/ClockCycleCounter.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/ClockCycleCounter.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/Int64.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/StopWatch.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/StopWatch.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/StopWatch.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/def.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/fnc.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/fnc.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/test.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/test_fnc.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/test_fnc.hpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/test_settings.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/testapp.dpr
%%QT_EXAMPLEDIR%%/multimedia/spectrum/README.txt
%%QT_EXAMPLEDIR%%/multimedia/spectrum/TODO.txt
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/app.pro
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/engine.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/engine.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/frequencyspectrum.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/frequencyspectrum.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/images/record.png
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/images/settings.png
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/levelmeter.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/levelmeter.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/main.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/mainwidget.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/mainwidget.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/progressbar.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/progressbar.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/settingsdialog.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/settingsdialog.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/spectrograph.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/spectrograph.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/spectrum.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/spectrum.qrc
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/spectrumanalyser.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/spectrumanalyser.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/tonegenerator.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/tonegenerator.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/tonegeneratordialog.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/tonegeneratordialog.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/utils.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/utils.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/waveform.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/waveform.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/wavfile.cpp
%%QT_EXAMPLEDIR%%/multimedia/spectrum/app/wavfile.h
%%QT_EXAMPLEDIR%%/multimedia/spectrum/doc/images/spectrum-demo.png
%%QT_EXAMPLEDIR%%/multimedia/spectrum/doc/src/spectrum.qdoc
%%QT_EXAMPLEDIR%%/multimedia/spectrum/spectrum.pri
%%QT_EXAMPLEDIR%%/multimedia/spectrum/spectrum.pro
%%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideo-menu.jpg
%%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideo-overlay.jpg
%%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideofx-camera-glow.jpg
%%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideofx-camera-wobble.jpg
%%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideofx-effects-menu.jpg
%%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideofx-video-edgedetection.jpg
%%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideofx-video-pagecurl.jpg
%%QT_EXAMPLEDIR%%/multimedia/video/doc/src/qmlvideo.qdoc
%%QT_EXAMPLEDIR%%/multimedia/video/doc/src/qmlvideofx.qdoc
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/images/folder.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/images/leaves.jpg
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/images/up.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/main.cpp
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/Button.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraBasic.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraDrag.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraDummy.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraFullScreen.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraFullScreenInverted.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraItem.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraMove.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraOverlay.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraResize.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraRotate.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraSpin.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/Content.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/ErrorDialog.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/FileBrowser.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/Scene.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneBasic.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneDrag.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneFullScreen.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneFullScreenInverted.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneMove.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneMulti.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneOverlay.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneResize.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneRotate.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneSelectionPanel.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneSpin.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SeekControl.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoBasic.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoDrag.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoDummy.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoFillMode.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoFullScreen.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoFullScreenInverted.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoItem.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoMetadata.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoMove.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoOverlay.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoPlaybackRate.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoResize.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoRotate.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoSeek.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoSpin.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/main.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qmlvideo.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qmlvideo.pro
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qmlvideo.qrc
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qmlvideo.svg
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/trace.h
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofilter_opencl/README
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofilter_opencl/main.cpp
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofilter_opencl/main.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofilter_opencl/qmlvideofilter_opencl.pro
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofilter_opencl/qmlvideofilter_opencl.qrc
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofilter_opencl/rgbframehelper.h
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/Info.plist
-%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/android/AndroidManifest.xml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/filereader.cpp
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/filereader.h
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/Dropdown_arrows.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/Slider_bar.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/Slider_handle.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/Triangle_Top.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/Triangle_bottom.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/icon_BackArrow.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/icon_Folder.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/icon_Menu.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/qt-logo.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/main.cpp
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Button.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Content.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/ContentCamera.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/ContentImage.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/ContentVideo.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Curtain.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Divider.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Effect.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectBillboard.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectBlackAndWhite.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectEmboss.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectGaussianBlur.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectGlow.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectIsolate.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectMagnify.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectPageCurl.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectPassThrough.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectPixelate.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectPosterize.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectRipple.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectSelectionList.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectSepia.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectSharpen.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectShockwave.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectSobelEdgeDetection1.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectTiltShift.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectToon.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectVignette.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectWarhol.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectWobble.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/FileBrowser.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/FileOpen.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/HintedMouseArea.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Main.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/ParameterPanel.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Slider.qml
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlapplicationviewer/qmlapplicationviewer.cpp
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlapplicationviewer/qmlapplicationviewer.h
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlapplicationviewer/qmlapplicationviewer.pri
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlvideofx.png
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlvideofx.pro
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlvideofx.qrc
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlvideofx.svg
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/billboard.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/blackandwhite.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/emboss.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/gaussianblur_h.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/gaussianblur_v.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/glow.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/isolate.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/magnify.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/pagecurl.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/pixelate.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/posterize.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/ripple.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/selectionpanel.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/sepia.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/sharpen.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/shockwave.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/sobeledgedetection1.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/tiltshift.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/toon.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/vignette.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/warhol.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/wobble.fsh
%%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/trace.h
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/frequencymonitor.cpp
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/frequencymonitor.h
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/frequencymonitor.pri
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/frequencymonitordeclarative.cpp
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/frequencymonitordeclarative.pri
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/frequencymonitordeclarative.qrc
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/qml/frequencymonitor/FrequencyItem.qml
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitor.cpp
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitor.h
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitor.pri
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitordeclarative.cpp
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitordeclarative.h
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitordeclarative.pri
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitordeclarative.qrc
%%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/qml/performancemonitor/PerformanceItem.qml
%%QT_EXAMPLEDIR%%/multimedia/video/video.pro
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/camera.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/camera.h
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/camera.pro
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/camera.ui
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/doc/images/camera-example.png
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/doc/src/camera.qdoc
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/imagesettings.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/imagesettings.h
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/imagesettings.ui
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/main.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/videosettings.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/videosettings.h
%%QT_EXAMPLEDIR%%/multimediawidgets/camera/videosettings.ui
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideoitem/customvideoitem.pro
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideoitem/main.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideoitem/videoitem.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideoitem/videoitem.h
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideoitem/videoplayer.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideoitem/videoplayer.h
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideosurface.pro
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/customvideowidget.pro
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/main.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/videoplayer.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/videoplayer.h
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/videowidget.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/videowidget.h
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/videowidgetsurface.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/videowidgetsurface.h
%%QT_EXAMPLEDIR%%/multimediawidgets/multimediawidgets.pro
%%QT_EXAMPLEDIR%%/multimediawidgets/player/doc/images/mediaplayerex.jpg
%%QT_EXAMPLEDIR%%/multimediawidgets/player/doc/src/player.qdoc
%%QT_EXAMPLEDIR%%/multimediawidgets/player/histogramwidget.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/player/histogramwidget.h
%%QT_EXAMPLEDIR%%/multimediawidgets/player/main.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/player/player.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/player/player.h
%%QT_EXAMPLEDIR%%/multimediawidgets/player/player.pro
%%QT_EXAMPLEDIR%%/multimediawidgets/player/playercontrols.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/player/playercontrols.h
%%QT_EXAMPLEDIR%%/multimediawidgets/player/playlistmodel.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/player/playlistmodel.h
%%QT_EXAMPLEDIR%%/multimediawidgets/player/videowidget.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/player/videowidget.h
%%QT_EXAMPLEDIR%%/multimediawidgets/videographicsitem/doc/images/video-videographicsitem.png
%%QT_EXAMPLEDIR%%/multimediawidgets/videographicsitem/doc/src/videographicsitem.qdoc
%%QT_EXAMPLEDIR%%/multimediawidgets/videographicsitem/main.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/videographicsitem/videographicsitem.pro
%%QT_EXAMPLEDIR%%/multimediawidgets/videographicsitem/videoplayer.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/videographicsitem/videoplayer.h
%%QT_EXAMPLEDIR%%/multimediawidgets/videowidget/doc/images/video-videowidget.png
%%QT_EXAMPLEDIR%%/multimediawidgets/videowidget/doc/src/videowidget.qdoc
%%QT_EXAMPLEDIR%%/multimediawidgets/videowidget/main.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/videowidget/videoplayer.cpp
%%QT_EXAMPLEDIR%%/multimediawidgets/videowidget/videoplayer.h
%%QT_EXAMPLEDIR%%/multimediawidgets/videowidget/videowidget.pro
%%QT_EXAMPLEDIR%%/network/README
%%QT_EXAMPLEDIR%%/network/bearermonitor/bearermonitor.cpp
%%QT_EXAMPLEDIR%%/network/bearermonitor/bearermonitor.h
%%QT_EXAMPLEDIR%%/network/bearermonitor/bearermonitor.pro
%%QT_EXAMPLEDIR%%/network/bearermonitor/bearermonitor_240_320.ui
%%QT_EXAMPLEDIR%%/network/bearermonitor/bearermonitor_640_480.ui
%%QT_EXAMPLEDIR%%/network/bearermonitor/main.cpp
%%QT_EXAMPLEDIR%%/network/bearermonitor/sessionwidget.cpp
%%QT_EXAMPLEDIR%%/network/bearermonitor/sessionwidget.h
%%QT_EXAMPLEDIR%%/network/bearermonitor/sessionwidget.ui
%%QT_EXAMPLEDIR%%/network/blockingfortuneclient/blockingclient.cpp
%%QT_EXAMPLEDIR%%/network/blockingfortuneclient/blockingclient.h
%%QT_EXAMPLEDIR%%/network/blockingfortuneclient/blockingfortuneclient.pro
%%QT_EXAMPLEDIR%%/network/blockingfortuneclient/fortunethread.cpp
%%QT_EXAMPLEDIR%%/network/blockingfortuneclient/fortunethread.h
%%QT_EXAMPLEDIR%%/network/blockingfortuneclient/main.cpp
%%QT_EXAMPLEDIR%%/network/broadcastreceiver/broadcastreceiver.pro
%%QT_EXAMPLEDIR%%/network/broadcastreceiver/main.cpp
%%QT_EXAMPLEDIR%%/network/broadcastreceiver/receiver.cpp
%%QT_EXAMPLEDIR%%/network/broadcastreceiver/receiver.h
%%QT_EXAMPLEDIR%%/network/broadcastsender/broadcastsender.pro
%%QT_EXAMPLEDIR%%/network/broadcastsender/main.cpp
%%QT_EXAMPLEDIR%%/network/broadcastsender/sender.cpp
%%QT_EXAMPLEDIR%%/network/broadcastsender/sender.h
%%QT_EXAMPLEDIR%%/network/dnslookup/dnslookup.cpp
%%QT_EXAMPLEDIR%%/network/dnslookup/dnslookup.h
%%QT_EXAMPLEDIR%%/network/dnslookup/dnslookup.pro
%%QT_EXAMPLEDIR%%/network/doc/images/blockingfortuneclient-example.png
%%QT_EXAMPLEDIR%%/network/doc/images/broadcastreceiver-example.png
%%QT_EXAMPLEDIR%%/network/doc/images/broadcastsender-example.png
%%QT_EXAMPLEDIR%%/network/doc/images/fortuneclient-example.png
%%QT_EXAMPLEDIR%%/network/doc/images/fortuneserver-example.png
%%QT_EXAMPLEDIR%%/network/doc/images/googlesuggest-example.png
%%QT_EXAMPLEDIR%%/network/doc/images/http-example.png
%%QT_EXAMPLEDIR%%/network/doc/images/loopback-example.png
%%QT_EXAMPLEDIR%%/network/doc/images/multicastreceiver-example.png
%%QT_EXAMPLEDIR%%/network/doc/images/multicastsender-example.png
%%QT_EXAMPLEDIR%%/network/doc/images/network-chat-example.png
%%QT_EXAMPLEDIR%%/network/doc/images/securesocketclient.png
%%QT_EXAMPLEDIR%%/network/doc/images/securesocketclient2.png
%%QT_EXAMPLEDIR%%/network/doc/images/threadedfortuneserver-example.png
%%QT_EXAMPLEDIR%%/network/doc/images/torrent-example.png
%%QT_EXAMPLEDIR%%/network/doc/src/blockingfortuneclient.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/broadcastreceiver.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/broadcastsender.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/fortuneclient.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/fortuneserver.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/googlesuggest.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/http.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/loopback.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/multicastreceiver.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/multicastsender.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/network-chat.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/network-download.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/network-downloadmanager.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/securesocketclient.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/threadedfortuneserver.qdoc
%%QT_EXAMPLEDIR%%/network/doc/src/torrent.qdoc
%%QT_EXAMPLEDIR%%/network/download/download.pro
%%QT_EXAMPLEDIR%%/network/download/main.cpp
%%QT_EXAMPLEDIR%%/network/downloadmanager/downloadmanager.cpp
%%QT_EXAMPLEDIR%%/network/downloadmanager/downloadmanager.h
%%QT_EXAMPLEDIR%%/network/downloadmanager/downloadmanager.pro
%%QT_EXAMPLEDIR%%/network/downloadmanager/main.cpp
%%QT_EXAMPLEDIR%%/network/downloadmanager/textprogressbar.cpp
%%QT_EXAMPLEDIR%%/network/downloadmanager/textprogressbar.h
%%QT_EXAMPLEDIR%%/network/fortuneclient/client.cpp
%%QT_EXAMPLEDIR%%/network/fortuneclient/client.h
%%QT_EXAMPLEDIR%%/network/fortuneclient/fortuneclient.pro
%%QT_EXAMPLEDIR%%/network/fortuneclient/main.cpp
%%QT_EXAMPLEDIR%%/network/fortuneserver/fortuneserver.pro
%%QT_EXAMPLEDIR%%/network/fortuneserver/main.cpp
%%QT_EXAMPLEDIR%%/network/fortuneserver/server.cpp
%%QT_EXAMPLEDIR%%/network/fortuneserver/server.h
%%QT_EXAMPLEDIR%%/network/googlesuggest/googlesuggest.cpp
%%QT_EXAMPLEDIR%%/network/googlesuggest/googlesuggest.h
%%QT_EXAMPLEDIR%%/network/googlesuggest/googlesuggest.pro
%%QT_EXAMPLEDIR%%/network/googlesuggest/main.cpp
%%QT_EXAMPLEDIR%%/network/googlesuggest/searchbox.cpp
%%QT_EXAMPLEDIR%%/network/googlesuggest/searchbox.h
%%QT_EXAMPLEDIR%%/network/http/authenticationdialog.ui
%%QT_EXAMPLEDIR%%/network/http/http.pro
%%QT_EXAMPLEDIR%%/network/http/httpwindow.cpp
%%QT_EXAMPLEDIR%%/network/http/httpwindow.h
%%QT_EXAMPLEDIR%%/network/http/main.cpp
%%QT_EXAMPLEDIR%%/network/loopback/dialog.cpp
%%QT_EXAMPLEDIR%%/network/loopback/dialog.h
%%QT_EXAMPLEDIR%%/network/loopback/loopback.pro
%%QT_EXAMPLEDIR%%/network/loopback/main.cpp
%%QT_EXAMPLEDIR%%/network/multicastreceiver/main.cpp
%%QT_EXAMPLEDIR%%/network/multicastreceiver/multicastreceiver.pro
%%QT_EXAMPLEDIR%%/network/multicastreceiver/receiver.cpp
%%QT_EXAMPLEDIR%%/network/multicastreceiver/receiver.h
%%QT_EXAMPLEDIR%%/network/multicastsender/main.cpp
%%QT_EXAMPLEDIR%%/network/multicastsender/multicastsender.pro
%%QT_EXAMPLEDIR%%/network/multicastsender/sender.cpp
%%QT_EXAMPLEDIR%%/network/multicastsender/sender.h
%%QT_EXAMPLEDIR%%/network/network-chat/chatdialog.cpp
%%QT_EXAMPLEDIR%%/network/network-chat/chatdialog.h
%%QT_EXAMPLEDIR%%/network/network-chat/chatdialog.ui
%%QT_EXAMPLEDIR%%/network/network-chat/client.cpp
%%QT_EXAMPLEDIR%%/network/network-chat/client.h
%%QT_EXAMPLEDIR%%/network/network-chat/connection.cpp
%%QT_EXAMPLEDIR%%/network/network-chat/connection.h
%%QT_EXAMPLEDIR%%/network/network-chat/main.cpp
%%QT_EXAMPLEDIR%%/network/network-chat/network-chat.pro
%%QT_EXAMPLEDIR%%/network/network-chat/peermanager.cpp
%%QT_EXAMPLEDIR%%/network/network-chat/peermanager.h
%%QT_EXAMPLEDIR%%/network/network-chat/server.cpp
%%QT_EXAMPLEDIR%%/network/network-chat/server.h
%%QT_EXAMPLEDIR%%/network/network.pro
%%QT_EXAMPLEDIR%%/network/securesocketclient/certificateinfo.cpp
%%QT_EXAMPLEDIR%%/network/securesocketclient/certificateinfo.h
%%QT_EXAMPLEDIR%%/network/securesocketclient/certificateinfo.ui
%%QT_EXAMPLEDIR%%/network/securesocketclient/encrypted.png
%%QT_EXAMPLEDIR%%/network/securesocketclient/main.cpp
%%QT_EXAMPLEDIR%%/network/securesocketclient/securesocketclient.pro
%%QT_EXAMPLEDIR%%/network/securesocketclient/securesocketclient.qrc
%%QT_EXAMPLEDIR%%/network/securesocketclient/sslclient.cpp
%%QT_EXAMPLEDIR%%/network/securesocketclient/sslclient.h
%%QT_EXAMPLEDIR%%/network/securesocketclient/sslclient.ui
%%QT_EXAMPLEDIR%%/network/securesocketclient/sslerrors.ui
%%QT_EXAMPLEDIR%%/network/threadedfortuneserver/dialog.cpp
%%QT_EXAMPLEDIR%%/network/threadedfortuneserver/dialog.h
%%QT_EXAMPLEDIR%%/network/threadedfortuneserver/fortuneserver.cpp
%%QT_EXAMPLEDIR%%/network/threadedfortuneserver/fortuneserver.h
%%QT_EXAMPLEDIR%%/network/threadedfortuneserver/fortunethread.cpp
%%QT_EXAMPLEDIR%%/network/threadedfortuneserver/fortunethread.h
%%QT_EXAMPLEDIR%%/network/threadedfortuneserver/main.cpp
%%QT_EXAMPLEDIR%%/network/threadedfortuneserver/threadedfortuneserver.pro
%%QT_EXAMPLEDIR%%/network/torrent/addtorrentdialog.cpp
%%QT_EXAMPLEDIR%%/network/torrent/addtorrentdialog.h
%%QT_EXAMPLEDIR%%/network/torrent/bencodeparser.cpp
%%QT_EXAMPLEDIR%%/network/torrent/bencodeparser.h
%%QT_EXAMPLEDIR%%/network/torrent/connectionmanager.cpp
%%QT_EXAMPLEDIR%%/network/torrent/connectionmanager.h
%%QT_EXAMPLEDIR%%/network/torrent/filemanager.cpp
%%QT_EXAMPLEDIR%%/network/torrent/filemanager.h
%%QT_EXAMPLEDIR%%/network/torrent/forms/addtorrentform.ui
%%QT_EXAMPLEDIR%%/network/torrent/icons.qrc
%%QT_EXAMPLEDIR%%/network/torrent/icons/1downarrow.png
%%QT_EXAMPLEDIR%%/network/torrent/icons/1uparrow.png
%%QT_EXAMPLEDIR%%/network/torrent/icons/bottom.png
%%QT_EXAMPLEDIR%%/network/torrent/icons/edit_add.png
%%QT_EXAMPLEDIR%%/network/torrent/icons/edit_remove.png
%%QT_EXAMPLEDIR%%/network/torrent/icons/exit.png
%%QT_EXAMPLEDIR%%/network/torrent/icons/peertopeer.png
%%QT_EXAMPLEDIR%%/network/torrent/icons/player_pause.png
%%QT_EXAMPLEDIR%%/network/torrent/icons/player_play.png
%%QT_EXAMPLEDIR%%/network/torrent/icons/player_stop.png
%%QT_EXAMPLEDIR%%/network/torrent/icons/stop.png
%%QT_EXAMPLEDIR%%/network/torrent/main.cpp
%%QT_EXAMPLEDIR%%/network/torrent/mainwindow.cpp
%%QT_EXAMPLEDIR%%/network/torrent/mainwindow.h
%%QT_EXAMPLEDIR%%/network/torrent/metainfo.cpp
%%QT_EXAMPLEDIR%%/network/torrent/metainfo.h
%%QT_EXAMPLEDIR%%/network/torrent/peerwireclient.cpp
%%QT_EXAMPLEDIR%%/network/torrent/peerwireclient.h
%%QT_EXAMPLEDIR%%/network/torrent/ratecontroller.cpp
%%QT_EXAMPLEDIR%%/network/torrent/ratecontroller.h
%%QT_EXAMPLEDIR%%/network/torrent/torrent.pro
%%QT_EXAMPLEDIR%%/network/torrent/torrentclient.cpp
%%QT_EXAMPLEDIR%%/network/torrent/torrentclient.h
%%QT_EXAMPLEDIR%%/network/torrent/torrentserver.cpp
%%QT_EXAMPLEDIR%%/network/torrent/torrentserver.h
%%QT_EXAMPLEDIR%%/network/torrent/trackerclient.cpp
%%QT_EXAMPLEDIR%%/network/torrent/trackerclient.h
%%QT_EXAMPLEDIR%%/nfc/annotatedurl/annotatedurl.cpp
%%QT_EXAMPLEDIR%%/nfc/annotatedurl/annotatedurl.h
%%QT_EXAMPLEDIR%%/nfc/annotatedurl/annotatedurl.pro
%%QT_EXAMPLEDIR%%/nfc/annotatedurl/doc/images/annotatedurl.png
%%QT_EXAMPLEDIR%%/nfc/annotatedurl/doc/src/annotatedurl.qdoc
%%QT_EXAMPLEDIR%%/nfc/annotatedurl/main.cpp
%%QT_EXAMPLEDIR%%/nfc/annotatedurl/mainwindow.cpp
%%QT_EXAMPLEDIR%%/nfc/annotatedurl/mainwindow.h
%%QT_EXAMPLEDIR%%/nfc/annotatedurl/mainwindow.ui
%%QT_EXAMPLEDIR%%/nfc/corkboard/Mode.qml
%%QT_EXAMPLEDIR%%/nfc/corkboard/NfcFlag.png
%%QT_EXAMPLEDIR%%/nfc/corkboard/android/AndroidManifest.xml
%%QT_EXAMPLEDIR%%/nfc/corkboard/cork.jpg
%%QT_EXAMPLEDIR%%/nfc/corkboard/corkboard.pro
%%QT_EXAMPLEDIR%%/nfc/corkboard/corkboard.qrc
%%QT_EXAMPLEDIR%%/nfc/corkboard/corkboards.qml
%%QT_EXAMPLEDIR%%/nfc/corkboard/doc/images/corkboard.png
%%QT_EXAMPLEDIR%%/nfc/corkboard/doc/src/corkboard.qdoc
%%QT_EXAMPLEDIR%%/nfc/corkboard/icon.png
%%QT_EXAMPLEDIR%%/nfc/corkboard/main.cpp
%%QT_EXAMPLEDIR%%/nfc/corkboard/note-yellow.png
%%QT_EXAMPLEDIR%%/nfc/corkboard/tack.png
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/doc/images/ndefeditor.png
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/doc/src/ndefeditor.qdoc
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/main.cpp
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/mainwindow.cpp
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/mainwindow.h
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/mainwindow.ui
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/mimeimagerecordeditor.cpp
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/mimeimagerecordeditor.h
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/mimeimagerecordeditor.ui
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/ndefeditor.pro
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/textrecordeditor.cpp
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/textrecordeditor.h
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/textrecordeditor.ui
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/urirecordeditor.cpp
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/urirecordeditor.h
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/urirecordeditor.ui
%%QT_EXAMPLEDIR%%/nfc/nfc.pro
%%QT_EXAMPLEDIR%%/nfc/poster/doc/images/qml-poster-example.png
%%QT_EXAMPLEDIR%%/nfc/poster/doc/src/poster.qdoc
%%QT_EXAMPLEDIR%%/nfc/poster/poster.pro
%%QT_EXAMPLEDIR%%/nfc/poster/poster.qml
%%QT_EXAMPLEDIR%%/nfc/poster/poster.qrc
%%QT_EXAMPLEDIR%%/nfc/poster/qmlposter.cpp
%%QT_EXAMPLEDIR%%/opengl/2dpainting/2dpainting.pro
%%QT_EXAMPLEDIR%%/opengl/2dpainting/glwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/2dpainting/glwidget.h
%%QT_EXAMPLEDIR%%/opengl/2dpainting/helper.cpp
%%QT_EXAMPLEDIR%%/opengl/2dpainting/helper.h
%%QT_EXAMPLEDIR%%/opengl/2dpainting/main.cpp
%%QT_EXAMPLEDIR%%/opengl/2dpainting/widget.cpp
%%QT_EXAMPLEDIR%%/opengl/2dpainting/widget.h
%%QT_EXAMPLEDIR%%/opengl/2dpainting/window.cpp
%%QT_EXAMPLEDIR%%/opengl/2dpainting/window.h
%%QT_EXAMPLEDIR%%/opengl/README
%%QT_EXAMPLEDIR%%/opengl/contextinfo/contextinfo.pro
%%QT_EXAMPLEDIR%%/opengl/contextinfo/main.cpp
%%QT_EXAMPLEDIR%%/opengl/contextinfo/renderwindow.cpp
%%QT_EXAMPLEDIR%%/opengl/contextinfo/renderwindow.h
%%QT_EXAMPLEDIR%%/opengl/contextinfo/widget.cpp
%%QT_EXAMPLEDIR%%/opengl/contextinfo/widget.h
%%QT_EXAMPLEDIR%%/opengl/cube/cube.png
%%QT_EXAMPLEDIR%%/opengl/cube/cube.pro
%%QT_EXAMPLEDIR%%/opengl/cube/fshader.glsl
%%QT_EXAMPLEDIR%%/opengl/cube/geometryengine.cpp
%%QT_EXAMPLEDIR%%/opengl/cube/geometryengine.h
%%QT_EXAMPLEDIR%%/opengl/cube/main.cpp
%%QT_EXAMPLEDIR%%/opengl/cube/mainwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/cube/mainwidget.h
%%QT_EXAMPLEDIR%%/opengl/cube/shaders.qrc
%%QT_EXAMPLEDIR%%/opengl/cube/textures.qrc
%%QT_EXAMPLEDIR%%/opengl/cube/vshader.glsl
%%QT_EXAMPLEDIR%%/opengl/doc/images/2dpainting-example.png
%%QT_EXAMPLEDIR%%/opengl/doc/images/cube.png
%%QT_EXAMPLEDIR%%/opengl/doc/images/cube_faces.png
%%QT_EXAMPLEDIR%%/opengl/doc/images/hellogl2-example.png
%%QT_EXAMPLEDIR%%/opengl/doc/images/textures-example.png
%%QT_EXAMPLEDIR%%/opengl/doc/src/2dpainting.qdoc
%%QT_EXAMPLEDIR%%/opengl/doc/src/cube.qdoc
%%QT_EXAMPLEDIR%%/opengl/doc/src/hellogl2.qdoc
%%QT_EXAMPLEDIR%%/opengl/doc/src/textures.qdoc
%%QT_EXAMPLEDIR%%/opengl/hellogl2/glwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/hellogl2/glwidget.h
%%QT_EXAMPLEDIR%%/opengl/hellogl2/hellogl2.pro
%%QT_EXAMPLEDIR%%/opengl/hellogl2/logo.cpp
%%QT_EXAMPLEDIR%%/opengl/hellogl2/logo.h
%%QT_EXAMPLEDIR%%/opengl/hellogl2/main.cpp
%%QT_EXAMPLEDIR%%/opengl/hellogl2/mainwindow.cpp
%%QT_EXAMPLEDIR%%/opengl/hellogl2/mainwindow.h
%%QT_EXAMPLEDIR%%/opengl/hellogl2/window.cpp
%%QT_EXAMPLEDIR%%/opengl/hellogl2/window.h
%%QT_EXAMPLEDIR%%/opengl/hellogles3/glwindow.cpp
%%QT_EXAMPLEDIR%%/opengl/hellogles3/glwindow.h
%%QT_EXAMPLEDIR%%/opengl/hellogles3/hellogles3.pro
%%QT_EXAMPLEDIR%%/opengl/hellogles3/hellogles3.qrc
%%QT_EXAMPLEDIR%%/opengl/hellogles3/main.cpp
%%QT_EXAMPLEDIR%%/opengl/hellogles3/qtlogo.png
%%QT_EXAMPLEDIR%%/opengl/hellowindow/hellowindow.cpp
%%QT_EXAMPLEDIR%%/opengl/hellowindow/hellowindow.h
%%QT_EXAMPLEDIR%%/opengl/hellowindow/hellowindow.pro
%%QT_EXAMPLEDIR%%/opengl/hellowindow/main.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/README
%%QT_EXAMPLEDIR%%/opengl/legacy/framebufferobject2/cubelogo.png
%%QT_EXAMPLEDIR%%/opengl/legacy/framebufferobject2/framebufferobject2.pro
%%QT_EXAMPLEDIR%%/opengl/legacy/framebufferobject2/framebufferobject2.qrc
%%QT_EXAMPLEDIR%%/opengl/legacy/framebufferobject2/glwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/framebufferobject2/glwidget.h
%%QT_EXAMPLEDIR%%/opengl/legacy/framebufferobject2/main.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/grabber/glwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/grabber/glwidget.h
%%QT_EXAMPLEDIR%%/opengl/legacy/grabber/grabber.pro
%%QT_EXAMPLEDIR%%/opengl/legacy/grabber/main.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/grabber/mainwindow.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/grabber/mainwindow.h
%%QT_EXAMPLEDIR%%/opengl/legacy/hellogl/glwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/hellogl/glwidget.h
%%QT_EXAMPLEDIR%%/opengl/legacy/hellogl/hellogl.pro
%%QT_EXAMPLEDIR%%/opengl/legacy/hellogl/main.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/hellogl/window.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/hellogl/window.h
%%QT_EXAMPLEDIR%%/opengl/legacy/legacy.pro
%%QT_EXAMPLEDIR%%/opengl/legacy/overpainting/bubble.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/overpainting/bubble.h
%%QT_EXAMPLEDIR%%/opengl/legacy/overpainting/glwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/overpainting/glwidget.h
%%QT_EXAMPLEDIR%%/opengl/legacy/overpainting/main.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/overpainting/overpainting.pro
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/cube.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/cube.h
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/cubelogo.png
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/glwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/glwidget.h
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/main.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/pbuffers.pro
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/pbuffers.qrc
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/bubbles.svg
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/designer.png
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/glwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/glwidget.h
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/main.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/pbuffers2.pro
%%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/pbuffers2.qrc
%%QT_EXAMPLEDIR%%/opengl/legacy/samplebuffers/glwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/samplebuffers/glwidget.h
%%QT_EXAMPLEDIR%%/opengl/legacy/samplebuffers/main.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/samplebuffers/samplebuffers.pro
%%QT_EXAMPLEDIR%%/opengl/legacy/shared/qtlogo.cpp
%%QT_EXAMPLEDIR%%/opengl/legacy/shared/qtlogo.h
%%QT_EXAMPLEDIR%%/opengl/opengl.pro
%%QT_EXAMPLEDIR%%/opengl/paintedwindow/main.cpp
%%QT_EXAMPLEDIR%%/opengl/paintedwindow/paintedwindow.cpp
%%QT_EXAMPLEDIR%%/opengl/paintedwindow/paintedwindow.h
%%QT_EXAMPLEDIR%%/opengl/paintedwindow/paintedwindow.pro
%%QT_EXAMPLEDIR%%/opengl/qopenglwidget/bubble.cpp
%%QT_EXAMPLEDIR%%/opengl/qopenglwidget/bubble.h
%%QT_EXAMPLEDIR%%/opengl/qopenglwidget/glwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/qopenglwidget/glwidget.h
%%QT_EXAMPLEDIR%%/opengl/qopenglwidget/main.cpp
%%QT_EXAMPLEDIR%%/opengl/qopenglwidget/mainwindow.cpp
%%QT_EXAMPLEDIR%%/opengl/qopenglwidget/mainwindow.h
%%QT_EXAMPLEDIR%%/opengl/qopenglwidget/qopenglwidget.pro
%%QT_EXAMPLEDIR%%/opengl/qopenglwidget/qt.png
%%QT_EXAMPLEDIR%%/opengl/qopenglwidget/texture.qrc
%%QT_EXAMPLEDIR%%/opengl/qopenglwindow/background.frag
%%QT_EXAMPLEDIR%%/opengl/qopenglwindow/background_renderer.cpp
%%QT_EXAMPLEDIR%%/opengl/qopenglwindow/background_renderer.h
%%QT_EXAMPLEDIR%%/opengl/qopenglwindow/main.cpp
%%QT_EXAMPLEDIR%%/opengl/qopenglwindow/qopenglwindow.pro
%%QT_EXAMPLEDIR%%/opengl/qopenglwindow/shaders.qrc
%%QT_EXAMPLEDIR%%/opengl/textures/glwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/textures/glwidget.h
%%QT_EXAMPLEDIR%%/opengl/textures/images/side1.png
%%QT_EXAMPLEDIR%%/opengl/textures/images/side2.png
%%QT_EXAMPLEDIR%%/opengl/textures/images/side3.png
%%QT_EXAMPLEDIR%%/opengl/textures/images/side4.png
%%QT_EXAMPLEDIR%%/opengl/textures/images/side5.png
%%QT_EXAMPLEDIR%%/opengl/textures/images/side6.png
%%QT_EXAMPLEDIR%%/opengl/textures/main.cpp
%%QT_EXAMPLEDIR%%/opengl/textures/textures.pro
%%QT_EXAMPLEDIR%%/opengl/textures/textures.qrc
%%QT_EXAMPLEDIR%%/opengl/textures/window.cpp
%%QT_EXAMPLEDIR%%/opengl/textures/window.h
%%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/glwidget.cpp
%%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/glwidget.h
%%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/main.cpp
%%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/mainwindow.cpp
%%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/mainwindow.h
%%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/threadedqopenglwidget.pro
%%QT_EXAMPLEDIR%%/positioning/geoflickr/doc/images/qml-flickr-1.jpg
%%QT_EXAMPLEDIR%%/positioning/geoflickr/doc/src/geoflickr.qdoc
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickr-90.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickr.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickr.qrc
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrcommon/Progress.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrcommon/RestModel.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrcommon/ScrollBar.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrcommon/Slider.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/Button.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/GeoTab.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/GridDelegate.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/ImageDetails.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/ListDelegate.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/TitleBar.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/ToolBar.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/gloss.png
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/lineedit.png
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/lineedit.sci
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/moon.png
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/quit.png
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/star.png
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/stripes.png
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/sun.png
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/titlebar.png
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/titlebar.sci
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/toolbutton.png
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/toolbutton.sci
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/nmealog.txt
%%QT_EXAMPLEDIR%%/positioning/geoflickr/geoflickr.pro
%%QT_EXAMPLEDIR%%/positioning/geoflickr/geoflickr.qmlproject
%%QT_EXAMPLEDIR%%/positioning/geoflickr/qmllocationflickr.cpp
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/clientapplication.cpp
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/clientapplication.h
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/doc/src/logfilepositionsource.qdoc
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/logfile.qrc
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/logfilepositionsource.cpp
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/logfilepositionsource.h
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/logfilepositionsource.pro
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/main.cpp
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/simplelog.txt
%%QT_EXAMPLEDIR%%/positioning/positioning.pro
%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/doc/images/example-satelliteinfo.png
%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/doc/src/satelliteinfo.qdoc
%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/main.cpp
%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/satelliteinfo.pro
%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/satelliteinfo.qml
%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/satelliteinfo.qrc
%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/satellitemodel.cpp
%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/satellitemodel.h
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/appmodel.cpp
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/appmodel.h
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/components/BigForecastIcon.qml
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/components/ForecastIcon.qml
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/components/WeatherIcon.qml
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/doc/images/example-weatherinfo.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/doc/src/weatherinfo.qdoc
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/README.txt
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-few-clouds.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-fog.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-haze.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-icy.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-overcast.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-showers.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-sleet.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-snow.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-storm.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-sunny-very-few-clouds.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-sunny.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-thundershower.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/main.cpp
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/weatherinfo.pro
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/weatherinfo.qml
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/weatherinfo.qrc
+%%QT_EXAMPLEDIR%%/purchasing/purchasing.pro
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/doc/images/qthangman-example.png
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/doc/images/qthangman-store-example.png
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/doc/src/qthangman.qdoc
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/enable2.txt
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/hangmangame.cpp
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/hangmangame.h
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/main.cpp
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/GameView.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/GuessWordView.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/Hangman.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/HowToView.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/Key.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/Letter.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/LetterSelector.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/MainView.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/PageHeader.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/ScoreItem.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/SimpleButton.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/SplashScreen.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/StoreItem.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/StoreView.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/Word.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/main.qml
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/qthangman.pro
+%%QT_EXAMPLEDIR%%/purchasing/qthangman/resources.qrc
%%QT_EXAMPLEDIR%%/qmake/precompile/main.cpp
%%QT_EXAMPLEDIR%%/qmake/precompile/mydialog.cpp
%%QT_EXAMPLEDIR%%/qmake/precompile/mydialog.h
%%QT_EXAMPLEDIR%%/qmake/precompile/mydialog.ui
%%QT_EXAMPLEDIR%%/qmake/precompile/myobject.cpp
%%QT_EXAMPLEDIR%%/qmake/precompile/myobject.h
%%QT_EXAMPLEDIR%%/qmake/precompile/precompile.pro
%%QT_EXAMPLEDIR%%/qmake/precompile/stable.h
%%QT_EXAMPLEDIR%%/qmake/precompile/util.cpp
%%QT_EXAMPLEDIR%%/qmake/tutorial/hello.cpp
%%QT_EXAMPLEDIR%%/qmake/tutorial/hello.h
%%QT_EXAMPLEDIR%%/qmake/tutorial/hellounix.cpp
%%QT_EXAMPLEDIR%%/qmake/tutorial/hellowin.cpp
%%QT_EXAMPLEDIR%%/qmake/tutorial/main.cpp
%%QT_EXAMPLEDIR%%/qml/doc/src/qml-extending.qdoc
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/Button.qml
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/GenericSceneItem.qml
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/PaletteItem.qml
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/PerspectiveItem.qml
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/Sun.qml
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/NOTE
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/face-smile.png
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/moon.png
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/rabbit_brown.png
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/rabbit_bw.png
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/star.png
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/sun.png
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/tree_s.png
%%QT_EXAMPLEDIR%%/qml/dynamicscene/content/itemCreation.js
%%QT_EXAMPLEDIR%%/qml/dynamicscene/doc/images/qml-dynamicscene-example.png
%%QT_EXAMPLEDIR%%/qml/dynamicscene/doc/src/dynamicscene.qdoc
%%QT_EXAMPLEDIR%%/qml/dynamicscene/dynamicscene.qml
%%QT_EXAMPLEDIR%%/qml/dynamicscene/dynamicscene.qmlproject
%%QT_EXAMPLEDIR%%/qml/locale/locale.qml
%%QT_EXAMPLEDIR%%/qml/networkaccessmanagerfactory/doc/src/networkaccessmanagerfactory.qdoc
%%QT_EXAMPLEDIR%%/qml/networkaccessmanagerfactory/main.cpp
%%QT_EXAMPLEDIR%%/qml/networkaccessmanagerfactory/networkaccessmanagerfactory.pro
%%QT_EXAMPLEDIR%%/qml/networkaccessmanagerfactory/networkaccessmanagerfactory.qmlproject
%%QT_EXAMPLEDIR%%/qml/networkaccessmanagerfactory/networkaccessmanagerfactory.qrc
%%QT_EXAMPLEDIR%%/qml/networkaccessmanagerfactory/view.qml
%%QT_EXAMPLEDIR%%/qml/qml-i18n/doc/images/qml-i18n-example.png
%%QT_EXAMPLEDIR%%/qml/qml-i18n/doc/src/i18n.qdoc
%%QT_EXAMPLEDIR%%/qml/qml-i18n/i18n/base.ts
%%QT_EXAMPLEDIR%%/qml/qml-i18n/i18n/qml_en_AU.ts
%%QT_EXAMPLEDIR%%/qml/qml-i18n/i18n/qml_fr.ts
%%QT_EXAMPLEDIR%%/qml/qml-i18n/qml-i18n.qml
%%QT_EXAMPLEDIR%%/qml/qml-i18n/qml-i18n.qmlproject
%%QT_EXAMPLEDIR%%/qml/qml.pro
%%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/doc/images/qml-plugins-example.png
%%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/doc/src/qmlpluginex.qdoc
%%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/imports/TimeExample/Clock.qml
%%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/imports/TimeExample/center.png
%%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/imports/TimeExample/clock.png
%%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/imports/TimeExample/hour.png
%%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/imports/TimeExample/minute.png
%%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/imports/TimeExample/qmldir
%%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/plugin.cpp
%%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/plugins.qml
%%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/plugins.qmlproject
%%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/qmlextensionplugins.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/adding/adding.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/adding/adding.qrc
%%QT_EXAMPLEDIR%%/qml/referenceexamples/adding/example.qml
%%QT_EXAMPLEDIR%%/qml/referenceexamples/adding/main.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/adding/person.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/adding/person.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/attached.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/attached.qrc
%%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/birthdayparty.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/birthdayparty.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/example.qml
%%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/main.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/person.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/person.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/binding.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/binding.qrc
%%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/birthdayparty.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/birthdayparty.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/example.qml
%%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/happybirthdaysong.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/happybirthdaysong.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/main.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/person.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/person.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/birthdayparty.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/birthdayparty.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/coercion.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/coercion.qrc
%%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/example.qml
%%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/main.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/person.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/person.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/default/birthdayparty.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/default/birthdayparty.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/default/default.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/default/default.qrc
%%QT_EXAMPLEDIR%%/qml/referenceexamples/default/example.qml
%%QT_EXAMPLEDIR%%/qml/referenceexamples/default/main.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/default/person.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/default/person.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/extended/example.qml
%%QT_EXAMPLEDIR%%/qml/referenceexamples/extended/extended.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/extended/extended.qrc
%%QT_EXAMPLEDIR%%/qml/referenceexamples/extended/lineedit.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/extended/lineedit.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/extended/main.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/birthdayparty.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/birthdayparty.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/example.qml
%%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/grouped.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/grouped.qrc
%%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/main.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/person.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/person.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/birthdayparty.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/birthdayparty.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/example.qml
%%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/main.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/methods.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/methods.qrc
%%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/person.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/person.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/birthdayparty.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/birthdayparty.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/example.qml
%%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/main.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/person.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/person.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/properties.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/properties.qrc
%%QT_EXAMPLEDIR%%/qml/referenceexamples/referenceexamples.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/referenceexamples.qmlproject
%%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/birthdayparty.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/birthdayparty.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/example.qml
%%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/main.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/person.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/person.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/signal.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/signal.qrc
%%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/birthdayparty.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/birthdayparty.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/example.qml
%%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/happybirthdaysong.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/happybirthdaysong.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/main.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/person.cpp
%%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/person.h
%%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/valuesource.pro
%%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/valuesource.qrc
%%QT_EXAMPLEDIR%%/qml/shell/main.cpp
%%QT_EXAMPLEDIR%%/qml/shell/shell.pro
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter1-basics/app.qml
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics.pro
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics.qrc
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter1-basics/main.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter1-basics/piechart.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter1-basics/piechart.h
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter2-methods/app.qml
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter2-methods/chapter2-methods.pro
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter2-methods/chapter2-methods.qrc
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter2-methods/main.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter2-methods/piechart.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter2-methods/piechart.h
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/app.qml
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/chapter3-bindings.pro
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/chapter3-bindings.qrc
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/main.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/piechart.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/piechart.h
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/app.qml
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/chapter4-customPropertyTypes.pro
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/chapter4-customPropertyTypes.qrc
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/main.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/piechart.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/piechart.h
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/pieslice.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/pieslice.h
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/app.qml
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/chapter5-listproperties.pro
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/chapter5-listproperties.qrc
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/main.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/piechart.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/piechart.h
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/pieslice.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/pieslice.h
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/app.pro
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/app.qml
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/app.qrc
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/chapter6-plugins.pro
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/chartsplugin.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/chartsplugin.h
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/import.pro
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/piechart.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/piechart.h
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/pieslice.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/pieslice.h
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/qmldir
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/main.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/extending-qml.pro
%%QT_EXAMPLEDIR%%/qml/tutorials/tutorials.pro
%%QT_EXAMPLEDIR%%/qml/xmlhttprequest/data.xml
%%QT_EXAMPLEDIR%%/qml/xmlhttprequest/doc/images/qml-xmlhttprequest-example.png
%%QT_EXAMPLEDIR%%/qml/xmlhttprequest/doc/src/xmlhttprequest.qdoc
%%QT_EXAMPLEDIR%%/qml/xmlhttprequest/get.qml
%%QT_EXAMPLEDIR%%/qml/xmlhttprequest/main.cpp
%%QT_EXAMPLEDIR%%/qml/xmlhttprequest/xmlhttprequest.pro
%%QT_EXAMPLEDIR%%/qml/xmlhttprequest/xmlhttprequest.qml
%%QT_EXAMPLEDIR%%/qml/xmlhttprequest/xmlhttprequest.qmlproject
%%QT_EXAMPLEDIR%%/qml/xmlhttprequest/xmlhttprequest.qrc
%%QT_EXAMPLEDIR%%/qmltest/qmltest.pro
%%QT_EXAMPLEDIR%%/qmltest/qmltest/qmltest.pro
%%QT_EXAMPLEDIR%%/qmltest/qmltest/tst_basic.qml
%%QT_EXAMPLEDIR%%/qmltest/qmltest/tst_item.qml
%%QT_EXAMPLEDIR%%/qmltest/qmltest/tst_qmltest.cpp
%%QT_EXAMPLEDIR%%/qpa/qpa.pro
%%QT_EXAMPLEDIR%%/qpa/qrasterwindow/main.cpp
%%QT_EXAMPLEDIR%%/qpa/qrasterwindow/qrasterwindow.pro
%%QT_EXAMPLEDIR%%/qpa/windows/main.cpp
%%QT_EXAMPLEDIR%%/qpa/windows/window.cpp
%%QT_EXAMPLEDIR%%/qpa/windows/window.h
%%QT_EXAMPLEDIR%%/qpa/windows/windows.pro
%%QT_EXAMPLEDIR%%/qt3d/anaglyph-rendering/StereoCamera.qml
%%QT_EXAMPLEDIR%%/qt3d/anaglyph-rendering/StereoFrameGraph.qml
%%QT_EXAMPLEDIR%%/qt3d/anaglyph-rendering/anaglyph-rendering.pro
%%QT_EXAMPLEDIR%%/qt3d/anaglyph-rendering/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/anaglyph-rendering/main.qml
%%QT_EXAMPLEDIR%%/qt3d/anaglyph-rendering/resources.qrc
-%%QT_EXAMPLEDIR%%/qt3d/assimp-cpp/assimp-cpp.pro
-%%QT_EXAMPLEDIR%%/qt3d/assimp-cpp/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/assimp/assimp.pro
-%%QT_EXAMPLEDIR%%/qt3d/assimp/assimp.qrc
-%%QT_EXAMPLEDIR%%/qt3d/assimp/doc/src/assimp.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/assimp/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/assimp/main.qml
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/BarEntity.qml
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/Visualizer.qml
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/audio-visualizer-qml.pro
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/audio-visualizer-qml.qrc
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/doc/images/audio-visualizer-qml-example.png
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/doc/src/audio-visualizer-qml.qdoc
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/albumcover.png
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/demotitle.png
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/normalmap.png
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/pausehoverpressed.png
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/pausenormal.png
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/playhoverpressed.png
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/playnormal.png
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/songtitle.png
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/stopdisabled.png
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/stophoverpressed.png
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/stopnormal.png
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/meshes/circle.obj
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/meshes/progressbar.obj
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/music/tiltshifted_lost_neon_sun.mp3
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/music/visualization.raw
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/touchsettings.cpp
%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/touchsettings.h
%%QT_EXAMPLEDIR%%/qt3d/basicshapes-cpp/basicshapes-cpp.pro
%%QT_EXAMPLEDIR%%/qt3d/basicshapes-cpp/doc/images/basicshapes-cpp-example.jpg
%%QT_EXAMPLEDIR%%/qt3d/basicshapes-cpp/doc/src/basicshapes.qdoc
%%QT_EXAMPLEDIR%%/qt3d/basicshapes-cpp/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/basicshapes-cpp/scenemodifier.cpp
%%QT_EXAMPLEDIR%%/qt3d/basicshapes-cpp/scenemodifier.h
-%%QT_EXAMPLEDIR%%/qt3d/bigmodel-qml/MyEntity.qml
-%%QT_EXAMPLEDIR%%/qt3d/bigmodel-qml/bigmodel-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/bigmodel-qml/bigmodel-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/bigmodel-qml/doc/src/bigmodel-qml.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/bigmodel-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/bigmodel-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/bigscene-cpp/bigscene-cpp.pro
-%%QT_EXAMPLEDIR%%/qt3d/bigscene-cpp/doc/src/bigscene-cpp.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/bigscene-cpp/entity.cpp
-%%QT_EXAMPLEDIR%%/qt3d/bigscene-cpp/entity.h
-%%QT_EXAMPLEDIR%%/qt3d/bigscene-cpp/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/bigscene-instanced-qml/bigscene-instanced-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/bigscene-instanced-qml/bigscene-instanced-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/bigscene-instanced-qml/instanced.frag
-%%QT_EXAMPLEDIR%%/qt3d/bigscene-instanced-qml/instanced.vert
-%%QT_EXAMPLEDIR%%/qt3d/bigscene-instanced-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/bigscene-instanced-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/CappingMaterialEffect.qml
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/ClipCappingFrameGraph.qml
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/ClipMaterialEffect.qml
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/ClipPlaneEntity.qml
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/ClippingPlanes.qml
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/PlaneVisualizationMaterial.qml
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/capping.frag
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/capping.geom
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/capping.vert
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/clip-planes-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/clip-planes-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/passthrough.frag
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/phong-clip.frag
-%%QT_EXAMPLEDIR%%/qt3d/clip-planes-qml/phong-clip.vert
-%%QT_EXAMPLEDIR%%/qt3d/common/window.cpp
-%%QT_EXAMPLEDIR%%/qt3d/common/window.h
+%%QT_EXAMPLEDIR%%/qt3d/compute-particles/ComputeFrameGraph.qml
+%%QT_EXAMPLEDIR%%/qt3d/compute-particles/ComputeMaterial.qml
+%%QT_EXAMPLEDIR%%/qt3d/compute-particles/ParticlesScene.qml
+%%QT_EXAMPLEDIR%%/qt3d/compute-particles/compute-particles.pro
+%%QT_EXAMPLEDIR%%/qt3d/compute-particles/compute-particles.qrc
+%%QT_EXAMPLEDIR%%/qt3d/compute-particles/main.cpp
+%%QT_EXAMPLEDIR%%/qt3d/compute-particles/main.qml
+%%QT_EXAMPLEDIR%%/qt3d/compute-particles/particles.comp
+%%QT_EXAMPLEDIR%%/qt3d/compute-particles/particles.frag
+%%QT_EXAMPLEDIR%%/qt3d/compute-particles/particles.vert
%%QT_EXAMPLEDIR%%/qt3d/controls/Logo.qml
%%QT_EXAMPLEDIR%%/qt3d/controls/Qt_logo.obj
%%QT_EXAMPLEDIR%%/qt3d/controls/controls.pro
%%QT_EXAMPLEDIR%%/qt3d/controls/controls.qrc
%%QT_EXAMPLEDIR%%/qt3d/controls/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/controls/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/cpp_example/cpp_example.pro
-%%QT_EXAMPLEDIR%%/qt3d/cpp_example/doc/src/cpp_example.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/cpp_example/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/custom-mesh-cpp/custom-mesh-cpp.pro
-%%QT_EXAMPLEDIR%%/qt3d/custom-mesh-cpp/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/custom-mesh-qml/custom-mesh-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/custom-mesh-qml/custom-mesh-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/custom-mesh-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/custom-mesh-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/cylinder-cpp/cylinder-cpp.pro
-%%QT_EXAMPLEDIR%%/qt3d/cylinder-cpp/doc/src/cylinder-cpp.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/cylinder-cpp/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/cylinder-qml/cylinder-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/cylinder-qml/cylinder-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/cylinder-qml/doc/src/cylinder-qml.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/cylinder-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/cylinder-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/deferred-renderer-cpp.pro
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/deferred-renderer-cpp.qrc
-%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/deferredrenderer.cpp
-%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/deferredrenderer.h
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/doc/src/deferred-renderer-cpp.qdoc
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/final_gl2.frag
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/final_gl2.vert
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/final_gl3.frag
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/final_gl3.vert
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/finaleffect.cpp
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/finaleffect.h
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/gbuffer.cpp
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/gbuffer.h
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/geometry_gl2.frag
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/geometry_gl2.vert
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/geometry_gl3.frag
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/geometry_gl3.vert
-%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/pointlightblock.cpp
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/pointlightblock.h
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/sceneeffect.cpp
%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-cpp/sceneeffect.h
-%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-qml/DeferredRenderer.qml
-%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-qml/FinalEffect.qml
-%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-qml/GBuffer.qml
-%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-qml/SceneEffect.qml
-%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-qml/deferred-renderer-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-qml/deferred-renderer-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-qml/doc/src/deferred-renderer-qml.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/deferred-renderer-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/dynamicscene-cpp/boxentity.cpp
-%%QT_EXAMPLEDIR%%/qt3d/dynamicscene-cpp/boxentity.h
-%%QT_EXAMPLEDIR%%/qt3d/dynamicscene-cpp/doc/src/dynamicscene-cpp.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/dynamicscene-cpp/dynamicscene-cpp.pro
-%%QT_EXAMPLEDIR%%/qt3d/dynamicscene-cpp/examplescene.cpp
-%%QT_EXAMPLEDIR%%/qt3d/dynamicscene-cpp/examplescene.h
-%%QT_EXAMPLEDIR%%/qt3d/dynamicscene-cpp/forwardrenderer.cpp
-%%QT_EXAMPLEDIR%%/qt3d/dynamicscene-cpp/forwardrenderer.h
-%%QT_EXAMPLEDIR%%/qt3d/dynamicscene-cpp/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/enabled-qml/doc/src/enabled-qml.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/enabled-qml/enabled-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/enabled-qml/enabled-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/enabled-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/enabled-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/LICENSE
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/chest/Chest.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/chest/diffuse.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/README.TXT
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/miramar_negx.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/miramar_negy.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/miramar_negz.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/miramar_posx.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/miramar_posy.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/miramar_posz.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/night/night_negx.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/night/night_negy.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/night/night_negz.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/night/night_posx.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/night/night_posy.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/night/night_posz.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/LICENSE.md
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/Wood_Cherry_Original_.jpg
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/_2004_old_vine_zinfandel_btl_xlg.jpg
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/artezin_bottle.jpg
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine.bin
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine.dae
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine.gltf
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine0FS.glsl
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine0VS.glsl
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine1FS.glsl
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine1VS.glsl
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine2FS.glsl
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine2VS.glsl
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine3FS.glsl
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine3VS.glsl
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/bamboo.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/bamboo_normal.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cover.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cover_normal.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-bamboo.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-palm.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-pine.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-pot-cover.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-pot.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-shrub.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-spikes.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-bamboo.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-palm.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-pine.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-pot-cover.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-pot.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-shrub.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-spikes.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/palm.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/palm_normal.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/pine.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/pine_normal.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/pot.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/pot_normal.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/shrub.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/shrub_normal.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-bamboo.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-palm.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-pine.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-pot-cover.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-pot.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-shrub.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-spikes.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/spikes.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/spikes_normal.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-bamboo.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-palm.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-pine.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-pot-cover.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-pot.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-shrub.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-spikes.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-bamboo.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-palm.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-pine.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-pot-cover.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-pot.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-shrub.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-spikes.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_black.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_blue.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_green.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_red.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_rust.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_stainless_steel.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_yellow.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/metal_barrel.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/normal_hard_bumps.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/normal_middle_bumps.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/normal_no_bumps.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/normal_soft_bumps.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/specular.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/specular_rust.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/specular_stainless_steel.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/obj/ball.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/obj/toyplane.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/obj/trefoil.obj
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/test_scene.dae
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/pattern_09/diffuse.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/pattern_09/normal.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/pattern_09/readme.txt
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/pattern_09/specular.webp
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/chest.qrc
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/cubemaps.qrc
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/gltf.qrc
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/houseplants.qrc
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/metalbarrel.qrc
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/obj.qrc
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/test_scene.qrc
%%QT_EXAMPLEDIR%%/qt3d/exampleresources/textures.qrc
%%QT_EXAMPLEDIR%%/qt3d/examples.pri
-%%QT_EXAMPLEDIR%%/qt3d/gltf/Wine.qml
-%%QT_EXAMPLEDIR%%/qt3d/gltf/doc/src/gltf.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/gltf/gltf.pro
-%%QT_EXAMPLEDIR%%/qt3d/gltf/gltf_example.qrc
-%%QT_EXAMPLEDIR%%/qt3d/gltf/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/gltf/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/gooch-qml/MyEntity.qml
-%%QT_EXAMPLEDIR%%/qt3d/gooch-qml/gooch-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/gooch-qml/gooch-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/gooch-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/gooch-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/instancebuffer.cpp
%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/instancebuffer.h
%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/instanced-arrays-qml.pro
%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/instanced-arrays-qml.qrc
%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/instanced.frag
%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/instanced.vert
%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/keyboardinput-qml/SphereEntity.qml
-%%QT_EXAMPLEDIR%%/qt3d/keyboardinput-qml/doc/src/keyboardinput-qml.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/keyboardinput-qml/keyboardinput-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/keyboardinput-qml/keyboardinput-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/keyboardinput-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/keyboardinput-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/lights/PlaneEntity.qml
%%QT_EXAMPLEDIR%%/qt3d/lights/lights.pro
%%QT_EXAMPLEDIR%%/qt3d/lights/lights.qrc
%%QT_EXAMPLEDIR%%/qt3d/lights/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/lights/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/loader-qml/CuboidEntity.qml
-%%QT_EXAMPLEDIR%%/qt3d/loader-qml/SphereEntity.qml
-%%QT_EXAMPLEDIR%%/qt3d/loader-qml/doc/src/loader-qml.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/loader-qml/loader-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/loader-qml/loader-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/loader-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/loader-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/barrel.cpp
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/barrel.h
+%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/doc/images/materials-cpp.png
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/doc/src/materials-cpp.qdoc
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/houseplant.cpp
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/houseplant.h
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/materials-cpp.pro
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/planeentity.cpp
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/planeentity.h
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/renderableentity.cpp
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/renderableentity.h
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/rotatingtrefoilknot.cpp
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/rotatingtrefoilknot.h
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/trefoilknot.cpp
%%QT_EXAMPLEDIR%%/qt3d/materials-cpp/trefoilknot.h
%%QT_EXAMPLEDIR%%/qt3d/materials/Barrel.qml
%%QT_EXAMPLEDIR%%/qt3d/materials/BasicCamera.qml
%%QT_EXAMPLEDIR%%/qt3d/materials/Chest.qml
%%QT_EXAMPLEDIR%%/qt3d/materials/HousePlant.qml
%%QT_EXAMPLEDIR%%/qt3d/materials/PlaneEntity.qml
%%QT_EXAMPLEDIR%%/qt3d/materials/RenderableEntity.qml
%%QT_EXAMPLEDIR%%/qt3d/materials/SortedForwardRenderer.qml
%%QT_EXAMPLEDIR%%/qt3d/materials/TrefoilKnot.qml
+%%QT_EXAMPLEDIR%%/qt3d/materials/doc/images/materials.png
%%QT_EXAMPLEDIR%%/qt3d/materials/doc/src/materials.qdoc
%%QT_EXAMPLEDIR%%/qt3d/materials/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/materials/main.qml
%%QT_EXAMPLEDIR%%/qt3d/materials/materials.pro
%%QT_EXAMPLEDIR%%/qt3d/materials/materials.qrc
-%%QT_EXAMPLEDIR%%/qt3d/mouseinput-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/mouseinput-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/mouseinput-qml/mouseinput-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/mouseinput-qml/mouseinput-qml.qrc
%%QT_EXAMPLEDIR%%/qt3d/multiviewport/QuadViewportFrameGraph.qml
%%QT_EXAMPLEDIR%%/qt3d/multiviewport/SimpleCamera.qml
+%%QT_EXAMPLEDIR%%/qt3d/multiviewport/doc/images/multiviewport-qml-example.png
%%QT_EXAMPLEDIR%%/qt3d/multiviewport/doc/src/multiviewport.qdoc
%%QT_EXAMPLEDIR%%/qt3d/multiviewport/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/multiviewport/main.qml
%%QT_EXAMPLEDIR%%/qt3d/multiviewport/multiviewport.pro
%%QT_EXAMPLEDIR%%/qt3d/multiviewport/multiviewport.qrc
-%%QT_EXAMPLEDIR%%/qt3d/picking-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/picking-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/picking-qml/picking-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/picking-qml/picking-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/planets-qml/CloudEffectDS.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/FpsDisplay.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/InfoSheet.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/Planet.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetButton.qml
-%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetEffectD.qml
-%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetEffectDB.qml
-%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetEffectDSB.qml
+%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetEffect.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetFrameGraph.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetMaterial.qml
-%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetShadowEffectD.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetsLight.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetsMain.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/Ring.qml
+%%QT_EXAMPLEDIR%%/qt3d/planets-qml/ShadowEffect.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/SolarSystem.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/StyledSlider.qml
+%%QT_EXAMPLEDIR%%/qt3d/planets-qml/SunEffect.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/android/AndroidManifest.xml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/android/res/drawable-hdpi/icon.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/android/res/drawable-ldpi/icon.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/android/res/drawable-mdpi/icon.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/doc/images/planets-qml-example.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/doc/src/planets-qml.qdoc
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/earth.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/earthcloudmapcolortrans.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/earthcloudmapspec.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/earthmap1k.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/earthnormal1k.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/earthspec1k.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/galaxy_starfield.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/jupiter.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/jupitermap.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/mars.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/marsmap1k.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/marsnormal1k.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/mercury.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/mercurymap.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/mercurynormal.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/moonmap1k.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/moonnormal1k.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/neptune.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/neptunemap.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/saturn.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/saturnmap.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/saturnringcolortrans.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/sun.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/sunmap.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/uranus.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/uranusmap.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/uranusringcolortrans.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/venus.png
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/venusmap.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/venusnormal.jpg
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/meshes/ring.obj
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/meshes/starfield.obj
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-qml-images.qrc
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-qml.pro
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-qml.qrc
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets.js
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/planetD.frag
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/planetD.vert
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/planetDB.frag
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/planetDB.vert
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/planetDS.frag
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/planetDSB.frag
+%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/sun.frag
+%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/sun.vert
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetD.frag
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetD.vert
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetDB.frag
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetDB.vert
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetDS.frag
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetDSB.frag
+%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetDShadow.frag
+%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetDShadow.vert
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/shadowmap.frag
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/shadowmap.vert
-%%QT_EXAMPLEDIR%%/qt3d/plasma/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/plasma/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/plasma/plasma.frag
-%%QT_EXAMPLEDIR%%/qt3d/plasma/plasma.pro
-%%QT_EXAMPLEDIR%%/qt3d/plasma/plasma.qrc
-%%QT_EXAMPLEDIR%%/qt3d/plasma/plasma.vert
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/AdsEffect.qml
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/AnimatedDiffuseMaterial.qml
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/ComplexTechnique.qml
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/DetailView.qml
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/MainView.qml
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/MyForwardRenderer.qml
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/RenderableEntity.qml
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/assets/ball.obj
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/assets/cube.obj
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/assets/test_scene.dae
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/doc/src/playground-qml.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/playground-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/playground-qml/playground-qml.qrc
+%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/sun.frag
+%%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/sun.vert
%%QT_EXAMPLEDIR%%/qt3d/qgltf/Scene.qml
%%QT_EXAMPLEDIR%%/qt3d/qgltf/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/qgltf/main.qml
%%QT_EXAMPLEDIR%%/qt3d/qgltf/qgltf.pro
%%QT_EXAMPLEDIR%%/qt3d/qgltf/qgltf_example.qrc
%%QT_EXAMPLEDIR%%/qt3d/qt3d.pro
-%%QT_EXAMPLEDIR%%/qt3d/scene3d-loader/AnimatedEntity.qml
-%%QT_EXAMPLEDIR%%/qt3d/scene3d-loader/Scene.qml
-%%QT_EXAMPLEDIR%%/qt3d/scene3d-loader/Scene2.qml
-%%QT_EXAMPLEDIR%%/qt3d/scene3d-loader/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/scene3d-loader/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/scene3d-loader/scene3d-loader.pro
-%%QT_EXAMPLEDIR%%/qt3d/scene3d-loader/scene3d-loader.qrc
%%QT_EXAMPLEDIR%%/qt3d/scene3d/AnimatedEntity.qml
+%%QT_EXAMPLEDIR%%/qt3d/scene3d/doc/images/scene3d.png
%%QT_EXAMPLEDIR%%/qt3d/scene3d/doc/src/scene3d.qdoc
%%QT_EXAMPLEDIR%%/qt3d/scene3d/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/scene3d/main.qml
%%QT_EXAMPLEDIR%%/qt3d/scene3d/scene3d.pro
%%QT_EXAMPLEDIR%%/qt3d/scene3d/scene3d.qrc
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/AdsEffect.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/AdsMaterial.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/GroundPlane.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/ShadowMapFrameGraph.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/ShadowMapLight.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/Toyplane.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/Trefoil.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/doc/images/shadowmapping-depth.png
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/doc/images/shadowmapping-qt3d.png
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/doc/src/shadow-map-qml.qdoc
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/ads.frag
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/ads.vert
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/es3/ads.frag
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/es3/ads.vert
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/es3/shadowmap.frag
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/es3/shadowmap.vert
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/shadowmap.frag
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/shadowmap.vert
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shadow-map-qml.pro
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shadow-map-qml.qrc
+%%QT_EXAMPLEDIR%%/qt3d/simple-cpp/doc/images/simple-cpp.png
%%QT_EXAMPLEDIR%%/qt3d/simple-cpp/doc/src/simple-cpp.qdoc
%%QT_EXAMPLEDIR%%/qt3d/simple-cpp/main.cpp
+%%QT_EXAMPLEDIR%%/qt3d/simple-cpp/orbittransformcontroller.cpp
+%%QT_EXAMPLEDIR%%/qt3d/simple-cpp/orbittransformcontroller.h
%%QT_EXAMPLEDIR%%/qt3d/simple-cpp/simple-cpp.pro
%%QT_EXAMPLEDIR%%/qt3d/simple-qml/CameraController.qml
+%%QT_EXAMPLEDIR%%/qt3d/simple-qml/doc/images/simple-qml.png
%%QT_EXAMPLEDIR%%/qt3d/simple-qml/doc/src/simple-qml.qdoc
%%QT_EXAMPLEDIR%%/qt3d/simple-qml/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/simple-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/simple-qml/simple-qml.pro
%%QT_EXAMPLEDIR%%/qt3d/simple-qml/simple-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/simple-shaders-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/simple-shaders-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/simple-shaders-qml/simple-shader.frag
-%%QT_EXAMPLEDIR%%/qt3d/simple-shaders-qml/simple-shader.vert
-%%QT_EXAMPLEDIR%%/qt3d/simple-shaders-qml/simple-shaders-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/simple-shaders-qml/simple-shaders-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/skybox/Skybox.qml
-%%QT_EXAMPLEDIR%%/qt3d/skybox/doc/src/skybox.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/skybox/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/skybox/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/skybox/skybox.pro
-%%QT_EXAMPLEDIR%%/qt3d/skybox/skybox.qrc
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/BasicCamera.qml
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/TessellatedQuad.qml
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/TessellatedWireframeEffect.qml
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/TessellatedWireframeMaterial.qml
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/doc/src/tessellation-modes.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/shaders/flat.frag
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/shaders/isolines.tcs
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/shaders/isolines.tes
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/shaders/passthru.vert
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/shaders/phongwireframe.frag
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/shaders/quads.tcs
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/shaders/quads.tes
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/shaders/robustwireframe.geom
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/shaders/triangles.tcs
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/shaders/triangles.tes
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/tessellatedquadmesh.cpp
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/tessellatedquadmesh.h
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/tessellation-modes.pro
-%%QT_EXAMPLEDIR%%/qt3d/tessellation-modes/tessellation-modes.qrc
-%%QT_EXAMPLEDIR%%/qt3d/torus-qml/doc/src/torus-qml.qdoc
-%%QT_EXAMPLEDIR%%/qt3d/torus-qml/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/torus-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/torus-qml/torus-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/torus-qml/torus-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/RenderableEntity.qml
-%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/TemporaryCamera.qml
-%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/TrefoilKnot.qml
-%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/transforms-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/transforms-qml.qrc
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml-scene3d/Scene.qml
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml-scene3d/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml-scene3d/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml-scene3d/phongalpha.frag
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml-scene3d/phongalpha.vert
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml-scene3d/transparency-qml-scene3d.pro
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml-scene3d/transparency-qml-scene3d.qrc
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml/main.cpp
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml/main.qml
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml/phongalpha.frag
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml/phongalpha.vert
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml/transparency-qml.pro
-%%QT_EXAMPLEDIR%%/qt3d/transparency-qml/transparency-qml.qrc
%%QT_EXAMPLEDIR%%/qt3d/wave/Background.qml
%%QT_EXAMPLEDIR%%/qt3d/wave/BackgroundEffect.qml
%%QT_EXAMPLEDIR%%/qt3d/wave/BasicCamera.qml
%%QT_EXAMPLEDIR%%/qt3d/wave/Wave.qml
%%QT_EXAMPLEDIR%%/qt3d/wave/WaveEffect.qml
%%QT_EXAMPLEDIR%%/qt3d/wave/WaveForwardRenderer.qml
%%QT_EXAMPLEDIR%%/qt3d/wave/WaveMaterial.qml
+%%QT_EXAMPLEDIR%%/qt3d/wave/doc/images/wave.png
%%QT_EXAMPLEDIR%%/qt3d/wave/doc/src/wave.qdoc
%%QT_EXAMPLEDIR%%/qt3d/wave/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/wave/main.qml
%%QT_EXAMPLEDIR%%/qt3d/wave/shaders/background.frag
%%QT_EXAMPLEDIR%%/qt3d/wave/shaders/background.vert
%%QT_EXAMPLEDIR%%/qt3d/wave/shaders/ribbon.frag
%%QT_EXAMPLEDIR%%/qt3d/wave/shaders/ribbon.vert
%%QT_EXAMPLEDIR%%/qt3d/wave/shaders/ribbonwireframe.frag
%%QT_EXAMPLEDIR%%/qt3d/wave/shaders/robustwireframe.geom
%%QT_EXAMPLEDIR%%/qt3d/wave/wave.pro
%%QT_EXAMPLEDIR%%/qt3d/wave/wave.qrc
%%QT_EXAMPLEDIR%%/qt3d/wireframe/BasicCamera.qml
%%QT_EXAMPLEDIR%%/qt3d/wireframe/TrefoilKnot.qml
%%QT_EXAMPLEDIR%%/qt3d/wireframe/WireframeEffect.qml
%%QT_EXAMPLEDIR%%/qt3d/wireframe/WireframeMaterial.qml
%%QT_EXAMPLEDIR%%/qt3d/wireframe/doc/images/qt3d-wireframe-rendering.png
%%QT_EXAMPLEDIR%%/qt3d/wireframe/doc/src/wireframe.qdoc
%%QT_EXAMPLEDIR%%/qt3d/wireframe/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/wireframe/main.qml
%%QT_EXAMPLEDIR%%/qt3d/wireframe/shaders/robustwireframe.frag
%%QT_EXAMPLEDIR%%/qt3d/wireframe/shaders/robustwireframe.geom
%%QT_EXAMPLEDIR%%/qt3d/wireframe/shaders/robustwireframe.vert
%%QT_EXAMPLEDIR%%/qt3d/wireframe/wireframe.pro
%%QT_EXAMPLEDIR%%/qt3d/wireframe/wireframe.qrc
%%QT_EXAMPLEDIR%%/qtconcurrent/README
%%QT_EXAMPLEDIR%%/qtconcurrent/imagescaling/doc/images/imagescaling_example.png
%%QT_EXAMPLEDIR%%/qtconcurrent/imagescaling/doc/src/qtconcurrent-imagescaling.qdoc
%%QT_EXAMPLEDIR%%/qtconcurrent/imagescaling/imagescaling.cpp
%%QT_EXAMPLEDIR%%/qtconcurrent/imagescaling/imagescaling.h
%%QT_EXAMPLEDIR%%/qtconcurrent/imagescaling/imagescaling.pro
%%QT_EXAMPLEDIR%%/qtconcurrent/imagescaling/main.cpp
%%QT_EXAMPLEDIR%%/qtconcurrent/map/doc/src/qtconcurrent-map.qdoc
%%QT_EXAMPLEDIR%%/qtconcurrent/map/main.cpp
%%QT_EXAMPLEDIR%%/qtconcurrent/map/map.pro
%%QT_EXAMPLEDIR%%/qtconcurrent/progressdialog/doc/images/qtconcurrent-progressdialog.png
%%QT_EXAMPLEDIR%%/qtconcurrent/progressdialog/doc/src/qtconcurrent-progressdialog.qdoc
%%QT_EXAMPLEDIR%%/qtconcurrent/progressdialog/main.cpp
%%QT_EXAMPLEDIR%%/qtconcurrent/progressdialog/progressdialog.pro
%%QT_EXAMPLEDIR%%/qtconcurrent/qtconcurrent.pro
%%QT_EXAMPLEDIR%%/qtconcurrent/runfunction/doc/src/qtconcurrent-runfunction.qdoc
%%QT_EXAMPLEDIR%%/qtconcurrent/runfunction/main.cpp
%%QT_EXAMPLEDIR%%/qtconcurrent/runfunction/runfunction.pro
%%QT_EXAMPLEDIR%%/qtconcurrent/wordcount/doc/src/qtconcurrent-wordcount.qdoc
%%QT_EXAMPLEDIR%%/qtconcurrent/wordcount/main.cpp
%%QT_EXAMPLEDIR%%/qtconcurrent/wordcount/wordcount.pro
%%QT_EXAMPLEDIR%%/qtestlib/README
%%QT_EXAMPLEDIR%%/qtestlib/qtestlib.pro
%%QT_EXAMPLEDIR%%/qtestlib/tutorial1/testqstring.cpp
%%QT_EXAMPLEDIR%%/qtestlib/tutorial1/tutorial1.pro
%%QT_EXAMPLEDIR%%/qtestlib/tutorial2/testqstring.cpp
%%QT_EXAMPLEDIR%%/qtestlib/tutorial2/tutorial2.pro
%%QT_EXAMPLEDIR%%/qtestlib/tutorial3/testgui.cpp
%%QT_EXAMPLEDIR%%/qtestlib/tutorial3/tutorial3.pro
%%QT_EXAMPLEDIR%%/qtestlib/tutorial4/testgui.cpp
%%QT_EXAMPLEDIR%%/qtestlib/tutorial4/tutorial4.pro
%%QT_EXAMPLEDIR%%/qtestlib/tutorial5/benchmarking.cpp
%%QT_EXAMPLEDIR%%/qtestlib/tutorial5/tutorial5.pro
%%QT_EXAMPLEDIR%%/quick/animation/animation.pro
%%QT_EXAMPLEDIR%%/quick/animation/animation.qml
%%QT_EXAMPLEDIR%%/quick/animation/animation.qmlproject
%%QT_EXAMPLEDIR%%/quick/animation/animation.qrc
%%QT_EXAMPLEDIR%%/quick/animation/basics/animators.qml
%%QT_EXAMPLEDIR%%/quick/animation/basics/color-animation.qml
%%QT_EXAMPLEDIR%%/quick/animation/basics/images/face-smile.png
%%QT_EXAMPLEDIR%%/quick/animation/basics/images/moon.png
%%QT_EXAMPLEDIR%%/quick/animation/basics/images/shadow.png
%%QT_EXAMPLEDIR%%/quick/animation/basics/images/star.png
%%QT_EXAMPLEDIR%%/quick/animation/basics/images/sun.png
%%QT_EXAMPLEDIR%%/quick/animation/basics/property-animation.qml
%%QT_EXAMPLEDIR%%/quick/animation/behaviors/SideRect.qml
%%QT_EXAMPLEDIR%%/quick/animation/behaviors/behavior-example.qml
%%QT_EXAMPLEDIR%%/quick/animation/behaviors/tvtennis.qml
%%QT_EXAMPLEDIR%%/quick/animation/behaviors/wigglytext.qml
%%QT_EXAMPLEDIR%%/quick/animation/doc/images/qml-animations-example.png
%%QT_EXAMPLEDIR%%/quick/animation/doc/src/animation.qdoc
%%QT_EXAMPLEDIR%%/quick/animation/easing/easing.qml
%%QT_EXAMPLEDIR%%/quick/animation/main.cpp
%%QT_EXAMPLEDIR%%/quick/animation/pathanimation/pathanimation.qml
%%QT_EXAMPLEDIR%%/quick/animation/pathinterpolator/pathinterpolator.qml
%%QT_EXAMPLEDIR%%/quick/animation/states/qt-logo.png
%%QT_EXAMPLEDIR%%/quick/animation/states/states.qml
%%QT_EXAMPLEDIR%%/quick/animation/states/transitions.qml
%%QT_EXAMPLEDIR%%/quick/canvas/bezierCurve/bezierCurve.qml
%%QT_EXAMPLEDIR%%/quick/canvas/canvas.pro
%%QT_EXAMPLEDIR%%/quick/canvas/canvas.qml
%%QT_EXAMPLEDIR%%/quick/canvas/canvas.qrc
%%QT_EXAMPLEDIR%%/quick/canvas/clip/clip.qml
%%QT_EXAMPLEDIR%%/quick/canvas/contents/qt-logo.png
%%QT_EXAMPLEDIR%%/quick/canvas/doc/images/qml-canvas-example.png
%%QT_EXAMPLEDIR%%/quick/canvas/doc/src/canvas.qdoc
%%QT_EXAMPLEDIR%%/quick/canvas/main.cpp
%%QT_EXAMPLEDIR%%/quick/canvas/quadraticCurveTo/quadraticCurveTo.qml
%%QT_EXAMPLEDIR%%/quick/canvas/roundedrect/roundedrect.qml
%%QT_EXAMPLEDIR%%/quick/canvas/smile/smile.qml
%%QT_EXAMPLEDIR%%/quick/canvas/squircle/squircle.png
%%QT_EXAMPLEDIR%%/quick/canvas/squircle/squircle.qml
%%QT_EXAMPLEDIR%%/quick/canvas/tiger/tiger.js
%%QT_EXAMPLEDIR%%/quick/canvas/tiger/tiger.qml
%%QT_EXAMPLEDIR%%/quick/customitems/customitems.pro
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/Dial.qml
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/QuitButton.qml
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/background.png
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/needle.png
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/needle_shadow.png
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/overlay.png
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/quit.png
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/dialcontrol.pro
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/dialcontrol.qml
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/dialcontrol.qmlproject
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/dialcontrol.qrc
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/doc/images/qml-dialcontrol-example.png
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/doc/src/dialcontrol.qdoc
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/main.cpp
%%QT_EXAMPLEDIR%%/quick/customitems/flipable/content/5_heart.png
%%QT_EXAMPLEDIR%%/quick/customitems/flipable/content/9_club.png
%%QT_EXAMPLEDIR%%/quick/customitems/flipable/content/Card.qml
%%QT_EXAMPLEDIR%%/quick/customitems/flipable/content/back.png
%%QT_EXAMPLEDIR%%/quick/customitems/flipable/doc/images/qml-flipable-example.png
%%QT_EXAMPLEDIR%%/quick/customitems/flipable/doc/src/flipable.qdoc
%%QT_EXAMPLEDIR%%/quick/customitems/flipable/flipable.qml
%%QT_EXAMPLEDIR%%/quick/customitems/flipable/flipable.qmlproject
%%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/images/cloud_1.png
%%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/images/cloud_2.png
%%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/images/moon.png
%%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/main.cpp
%%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/maskedmousearea.cpp
%%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/maskedmousearea.h
%%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/maskedmousearea.pro
%%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/maskedmousearea.qml
%%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/maskedmousearea.qmlproject
%%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/maskedmousearea.qrc
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/TextBalloonPlugin/plugin.h
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/TextBalloonPlugin/qmldir
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/doc/images/declarative-textballoons_example.png
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/doc/src/textballoons.qdoc
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/painteditem.pro
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/painteditem.qrc
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/textballoon.cpp
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/textballoon.h
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/textballoons.qml
%%QT_EXAMPLEDIR%%/quick/customitems/progressbar/content/ProgressBar.qml
%%QT_EXAMPLEDIR%%/quick/customitems/progressbar/content/background.png
%%QT_EXAMPLEDIR%%/quick/customitems/progressbar/main.qml
%%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/ScrollBar.qml
%%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/doc/images/qml-scrollbar-example.png
%%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/doc/src/scrollbar.qdoc
%%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/main.qml
%%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/pics/niagara_falls.jpg
%%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/scrollbar.qmlproject
%%QT_EXAMPLEDIR%%/quick/customitems/searchbox/SearchBox.qml
%%QT_EXAMPLEDIR%%/quick/customitems/searchbox/images/clear.png
%%QT_EXAMPLEDIR%%/quick/customitems/searchbox/images/lineedit-bg-focus.png
%%QT_EXAMPLEDIR%%/quick/customitems/searchbox/images/lineedit-bg.png
%%QT_EXAMPLEDIR%%/quick/customitems/searchbox/main.qml
%%QT_EXAMPLEDIR%%/quick/customitems/searchbox/searchbox.qmlproject
%%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/content/Switch.qml
%%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/content/background.png
%%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/content/background.svg
%%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/content/knob.png
%%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/content/knob.svg
%%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/doc/src/example-slideswitch.qdoc
%%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/slideswitch.qml
%%QT_EXAMPLEDIR%%/quick/customitems/spinner/content/Spinner.qml
%%QT_EXAMPLEDIR%%/quick/customitems/spinner/content/spinner-bg.png
%%QT_EXAMPLEDIR%%/quick/customitems/spinner/content/spinner-select.png
%%QT_EXAMPLEDIR%%/quick/customitems/spinner/main.qml
%%QT_EXAMPLEDIR%%/quick/customitems/spinner/spinner.qmlproject
%%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/TabWidget.qml
%%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/doc/images/qml-tabwidget-example.png
%%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/doc/images/tab.png
%%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/doc/src/tabwidget.qdoc
%%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/main.qml
%%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/tabwidget.qmlproject
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/calqlatr.pro
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/calqlatr.qml
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/calqlatr.qmlproject
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/calqlatr.qrc
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/content/Button.qml
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/content/Display.qml
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/content/NumberPad.qml
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/content/calculator.js
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/content/images/paper-edge-left.png
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/content/images/paper-edge-right.png
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/content/images/paper-grip.png
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/doc/images/qtquick-demo-calqlatr.png
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/doc/src/calqlatr.qdoc
%%QT_EXAMPLEDIR%%/quick/demos/calqlatr/main.cpp
%%QT_EXAMPLEDIR%%/quick/demos/clocks/clocks.pro
%%QT_EXAMPLEDIR%%/quick/demos/clocks/clocks.qml
%%QT_EXAMPLEDIR%%/quick/demos/clocks/clocks.qmlproject
%%QT_EXAMPLEDIR%%/quick/demos/clocks/clocks.qrc
%%QT_EXAMPLEDIR%%/quick/demos/clocks/content/Clock.qml
%%QT_EXAMPLEDIR%%/quick/demos/clocks/content/arrow.png
%%QT_EXAMPLEDIR%%/quick/demos/clocks/content/background.png
%%QT_EXAMPLEDIR%%/quick/demos/clocks/content/center.png
%%QT_EXAMPLEDIR%%/quick/demos/clocks/content/clock-night.png
%%QT_EXAMPLEDIR%%/quick/demos/clocks/content/clock.png
%%QT_EXAMPLEDIR%%/quick/demos/clocks/content/hour.png
%%QT_EXAMPLEDIR%%/quick/demos/clocks/content/minute.png
%%QT_EXAMPLEDIR%%/quick/demos/clocks/content/quit.png
%%QT_EXAMPLEDIR%%/quick/demos/clocks/content/second.png
%%QT_EXAMPLEDIR%%/quick/demos/clocks/doc/images/qtquick-demo-clocks-small.png
%%QT_EXAMPLEDIR%%/quick/demos/clocks/doc/src/clocks.qdoc
%%QT_EXAMPLEDIR%%/quick/demos/clocks/main.cpp
%%QT_EXAMPLEDIR%%/quick/demos/demos.pro
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/BuildButton.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/GameCanvas.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/GameOverScreen.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/InfoBar.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/NewGameScreen.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/SoundEffect.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/audio/bomb-action.wav
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/audio/catch-action.wav
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/audio/catch.wav
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/audio/currency.wav
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/audio/factory-action.wav
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/audio/melee-action.wav
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/audio/projectile-action.wav
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/audio/shooter-action.wav
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/background.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/bomb-action.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/bomb-idle.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/bomb.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/button-help.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/button-play.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/catch-action.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/catch.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/cloud.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/currency.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/dialog-bomb.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/dialog-factory.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/dialog-melee.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/dialog-pointer.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/dialog-shooter.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/dialog.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/factory-action.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/factory-idle.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/factory.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/grid.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/help.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/lifes.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/logo-bubble.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/logo-fish.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/logo.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/melee-action.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/melee-idle.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/melee.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/mob-idle.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/mob.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/points.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/projectile-action.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/projectile.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/scores.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/shooter-action.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/shooter-idle.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/shooter.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/sunlight.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/text-1.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/text-2.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/text-3.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/text-blank.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/text-gameover.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/text-go.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/gfx/wave.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/logic.js
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/mobs/MobBase.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/towers/Bomb.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/towers/Factory.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/towers/Melee.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/towers/Ranged.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/content/towers/TowerBase.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/doc/images/qtquick-demo-maroon-med-1.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/doc/images/qtquick-demo-maroon-med-2.png
%%QT_EXAMPLEDIR%%/quick/demos/maroon/doc/images/qtquick-demo-maroon-med-3.jpg
%%QT_EXAMPLEDIR%%/quick/demos/maroon/doc/images/qtquick-demo-maroon-med-4.jpg
%%QT_EXAMPLEDIR%%/quick/demos/maroon/doc/images/qtquick-demo-maroon-med-5.jpg
%%QT_EXAMPLEDIR%%/quick/demos/maroon/doc/images/qtquick-demo-maroon-med-6.jpg
%%QT_EXAMPLEDIR%%/quick/demos/maroon/doc/src/maroon.qdoc
%%QT_EXAMPLEDIR%%/quick/demos/maroon/main.cpp
%%QT_EXAMPLEDIR%%/quick/demos/maroon/maroon.pro
%%QT_EXAMPLEDIR%%/quick/demos/maroon/maroon.qml
%%QT_EXAMPLEDIR%%/quick/demos/maroon/maroon.qmlproject
%%QT_EXAMPLEDIR%%/quick/demos/maroon/maroon.qrc
%%QT_EXAMPLEDIR%%/quick/demos/photosurface/doc/images/qtquick-demo-photosurface-small.png
%%QT_EXAMPLEDIR%%/quick/demos/photosurface/doc/src/photosurface.qdoc
%%QT_EXAMPLEDIR%%/quick/demos/photosurface/main.cpp
%%QT_EXAMPLEDIR%%/quick/demos/photosurface/photosurface.pro
%%QT_EXAMPLEDIR%%/quick/demos/photosurface/photosurface.qml
%%QT_EXAMPLEDIR%%/quick/demos/photosurface/photosurface.qmlproject
%%QT_EXAMPLEDIR%%/quick/demos/photosurface/photosurface.qrc
%%QT_EXAMPLEDIR%%/quick/demos/photosurface/resources/folder.png
%%QT_EXAMPLEDIR%%/quick/demos/photosurface/resources/icon.png
%%QT_EXAMPLEDIR%%/quick/demos/photosurface/resources/photosurface.icns
%%QT_EXAMPLEDIR%%/quick/demos/photosurface/resources/photosurface.ico
%%QT_EXAMPLEDIR%%/quick/demos/photosurface/resources/photosurface.rc
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/PhotoViewerCore/AlbumDelegate.qml
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/PhotoViewerCore/BusyIndicator.qml
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/PhotoViewerCore/Button.qml
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/PhotoViewerCore/EditableButton.qml
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/PhotoViewerCore/PhotoDelegate.qml
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/PhotoViewerCore/ProgressBar.qml
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/PhotoViewerCore/RssModel.qml
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/PhotoViewerCore/Tag.qml
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/PhotoViewerCore/images/box-shadow.png
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/PhotoViewerCore/images/busy.png
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/PhotoViewerCore/images/cardboard.png
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/PhotoViewerCore/script/script.js
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/doc/images/qtquick-demo-photoviewer-small.png
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/doc/src/photoviewer.qdoc
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/i18n/qml_de.qm
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/i18n/qml_de.ts
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/i18n/qml_fr.qm
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/i18n/qml_fr.ts
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/main.cpp
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/main.qml
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/photoviewer.pro
%%QT_EXAMPLEDIR%%/quick/demos/photoviewer/qml.qrc
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/BusyIndicator.qml
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/CategoryDelegate.qml
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/NewsDelegate.qml
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/RssFeeds.qml
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/ScrollBar.qml
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/Asia.jpg
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/Business.jpg
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/Entertainment.jpg
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/Europe.jpg
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/Health.jpg
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/Politics.jpg
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/Science.jpg
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/Sports.jpg
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/Technology.jpg
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/TopStories.jpg
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/USNational.jpg
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/World.jpg
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/btn_close.png
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/busy.png
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/content/images/scrollbar.png
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/doc/images/qtquick-demo-rssnews-small.png
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/doc/src/rssnews.qdoc
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/main.cpp
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/rssnews.pro
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/rssnews.qml
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/rssnews.qmlproject
%%QT_EXAMPLEDIR%%/quick/demos/rssnews/rssnews.qrc
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/+blackberry/Settings.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/BBSettings.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/Block.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/BlockEmitter.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/Button.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/GameArea.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/LogoAnimation.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/MenuEmitter.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/PaintEmitter.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/PrimaryPack.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/PuzzleBlock.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/SamegameText.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/Settings.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/SimpleBlock.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/SmokeText.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/background-puzzle.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/background.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/bar.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/blue-puzzle.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/blue.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/bubble-highscore.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/bubble-puzzle.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/but-game-1.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/but-game-2.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/but-game-3.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/but-game-4.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/but-game-new.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/but-menu.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/but-puzzle-next.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/but-quit.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/green-puzzle.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/green.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/icon-fail.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/icon-ok.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/icon-time.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/logo-a.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/logo-e.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/logo-g.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/logo-m.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/logo-s.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/logo.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/particle-brick.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/particle-paint.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/particle-smoke.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/red-puzzle.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/red.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/text-highscore-new.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/text-highscore.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/text-no-winner.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/text-p1-go.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/text-p1-won.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/text-p1.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/text-p2-go.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/text-p2-won.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/text-p2.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/yellow-puzzle.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/gfx/yellow.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/levels/TemplateBase.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/levels/level0.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/levels/level1.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/levels/level2.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/levels/level3.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/levels/level4.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/levels/level5.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/levels/level6.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/levels/level7.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/levels/level8.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/levels/level9.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/qmldir
%%QT_EXAMPLEDIR%%/quick/demos/samegame/content/samegame.js
%%QT_EXAMPLEDIR%%/quick/demos/samegame/doc/images/qtquick-demo-samegame-med-1.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/doc/images/qtquick-demo-samegame-med-2.png
%%QT_EXAMPLEDIR%%/quick/demos/samegame/doc/src/samegame.qdoc
%%QT_EXAMPLEDIR%%/quick/demos/samegame/main.cpp
%%QT_EXAMPLEDIR%%/quick/demos/samegame/samegame.pro
%%QT_EXAMPLEDIR%%/quick/demos/samegame/samegame.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/samegame.qmlproject
%%QT_EXAMPLEDIR%%/quick/demos/samegame/samegame.qrc
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/+windows/Settings.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/Button.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/CheckBox.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/Settings.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/StockChart.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/StockInfo.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/StockListModel.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/StockListView.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/StockModel.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/StockSettingsPanel.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/StockView.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/images/icon-left-arrow.png
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/images/wheel-touch.png
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/images/wheel.png
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/qmldir
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/doc/images/qtquick-demo-stocqt.png
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/doc/src/stocqt.qdoc
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/main.cpp
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/stocqt.pro
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/stocqt.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/stocqt.qmlproject
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/stocqt.qrc
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/FlipBar.qml
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/LineInput.qml
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/ListFooter.qml
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/ListHeader.qml
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/SearchDelegate.qml
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/TweetDelegate.qml
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/TweetsModel.qml
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/resources/anonymous.png
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/resources/bird-anim-sprites.png
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/resources/icon-clear.png
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/resources/icon-loading.png
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/resources/icon-refresh.png
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/resources/icon-search.png
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/content/tweetsearch.js
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/doc/images/qtquick-demo-tweetsearch-med-1.png
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/doc/images/qtquick-demo-tweetsearch-med-2.png
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/doc/src/tweetsearch.qdoc
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/main.cpp
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/tweetsearch.pro
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/tweetsearch.qml
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/tweetsearch.qmlproject
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/tweetsearch.qrc
%%QT_EXAMPLEDIR%%/quick/draganddrop/doc/images/qml-draganddrop-example.png
%%QT_EXAMPLEDIR%%/quick/draganddrop/doc/src/draganddrop.qdoc
%%QT_EXAMPLEDIR%%/quick/draganddrop/draganddrop.pro
%%QT_EXAMPLEDIR%%/quick/draganddrop/draganddrop.qml
%%QT_EXAMPLEDIR%%/quick/draganddrop/draganddrop.qmlproject
%%QT_EXAMPLEDIR%%/quick/draganddrop/draganddrop.qrc
%%QT_EXAMPLEDIR%%/quick/draganddrop/main.cpp
%%QT_EXAMPLEDIR%%/quick/draganddrop/tiles/DragTile.qml
%%QT_EXAMPLEDIR%%/quick/draganddrop/tiles/DropTile.qml
%%QT_EXAMPLEDIR%%/quick/draganddrop/tiles/tiles.qml
%%QT_EXAMPLEDIR%%/quick/draganddrop/views/gridview.qml
%%QT_EXAMPLEDIR%%/quick/embeddedinwidgets/TextBox.qml
%%QT_EXAMPLEDIR%%/quick/embeddedinwidgets/embeddedinwidgets.pro
%%QT_EXAMPLEDIR%%/quick/embeddedinwidgets/embeddedinwidgets.qrc
%%QT_EXAMPLEDIR%%/quick/embeddedinwidgets/main.cpp
%%QT_EXAMPLEDIR%%/quick/embeddedinwidgets/main.qml
%%QT_EXAMPLEDIR%%/quick/externaldraganddrop/DragAndDropTextItem.qml
%%QT_EXAMPLEDIR%%/quick/externaldraganddrop/doc/images/qml-dnd2-example.png
%%QT_EXAMPLEDIR%%/quick/externaldraganddrop/doc/src/externaldraganddrop.qdoc
%%QT_EXAMPLEDIR%%/quick/externaldraganddrop/externaldraganddrop.pro
%%QT_EXAMPLEDIR%%/quick/externaldraganddrop/externaldraganddrop.qml
%%QT_EXAMPLEDIR%%/quick/externaldraganddrop/externaldraganddrop.qmlproject
%%QT_EXAMPLEDIR%%/quick/externaldraganddrop/externaldraganddrop.qrc
%%QT_EXAMPLEDIR%%/quick/externaldraganddrop/main.cpp
%%QT_EXAMPLEDIR%%/quick/imageelements/animatedsprite.qml
%%QT_EXAMPLEDIR%%/quick/imageelements/borderimage.qml
%%QT_EXAMPLEDIR%%/quick/imageelements/content/BearSheet.png
%%QT_EXAMPLEDIR%%/quick/imageelements/content/BorderImageSelector.qml
%%QT_EXAMPLEDIR%%/quick/imageelements/content/ImageCell.qml
%%QT_EXAMPLEDIR%%/quick/imageelements/content/MyBorderImage.qml
%%QT_EXAMPLEDIR%%/quick/imageelements/content/ShadowRectangle.qml
%%QT_EXAMPLEDIR%%/quick/imageelements/content/arrow.png
%%QT_EXAMPLEDIR%%/quick/imageelements/content/bw.png
%%QT_EXAMPLEDIR%%/quick/imageelements/content/colors-round.sci
%%QT_EXAMPLEDIR%%/quick/imageelements/content/colors-stretch.sci
%%QT_EXAMPLEDIR%%/quick/imageelements/content/colors.png
%%QT_EXAMPLEDIR%%/quick/imageelements/content/qt-logo.png
%%QT_EXAMPLEDIR%%/quick/imageelements/content/shadow.png
%%QT_EXAMPLEDIR%%/quick/imageelements/content/speaker.png
%%QT_EXAMPLEDIR%%/quick/imageelements/doc/images/qml-imageelements-example.png
%%QT_EXAMPLEDIR%%/quick/imageelements/doc/src/imageelements.qdoc
%%QT_EXAMPLEDIR%%/quick/imageelements/image.qml
%%QT_EXAMPLEDIR%%/quick/imageelements/imageelements.pro
%%QT_EXAMPLEDIR%%/quick/imageelements/imageelements.qml
%%QT_EXAMPLEDIR%%/quick/imageelements/imageelements.qmlproject
%%QT_EXAMPLEDIR%%/quick/imageelements/imageelements.qrc
%%QT_EXAMPLEDIR%%/quick/imageelements/main.cpp
%%QT_EXAMPLEDIR%%/quick/imageelements/shadows.qml
%%QT_EXAMPLEDIR%%/quick/imageelements/spritesequence.qml
%%QT_EXAMPLEDIR%%/quick/imageprovider/ImageProviderCore/qmldir
%%QT_EXAMPLEDIR%%/quick/imageprovider/doc/images/qml-imageprovider-example.png
%%QT_EXAMPLEDIR%%/quick/imageprovider/doc/src/imageprovider.qdoc
%%QT_EXAMPLEDIR%%/quick/imageprovider/imageprovider-example.qml
%%QT_EXAMPLEDIR%%/quick/imageprovider/imageprovider.cpp
%%QT_EXAMPLEDIR%%/quick/imageprovider/imageprovider.pro
%%QT_EXAMPLEDIR%%/quick/imageprovider/imageprovider.qmlproject
%%QT_EXAMPLEDIR%%/quick/imageresponseprovider/ImageResponseProviderCore/qmldir
%%QT_EXAMPLEDIR%%/quick/imageresponseprovider/doc/src/imageresponseprovider.qdoc
%%QT_EXAMPLEDIR%%/quick/imageresponseprovider/imageresponseprovider-example.qml
%%QT_EXAMPLEDIR%%/quick/imageresponseprovider/imageresponseprovider.cpp
%%QT_EXAMPLEDIR%%/quick/imageresponseprovider/imageresponseprovider.pro
%%QT_EXAMPLEDIR%%/quick/imageresponseprovider/imageresponseprovider.qmlproject
%%QT_EXAMPLEDIR%%/quick/keyinteraction/doc/images/qml-keyinteraction-example.png
%%QT_EXAMPLEDIR%%/quick/keyinteraction/doc/src/keyinteraction.qdoc
%%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/ContextMenu.qml
%%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/GridMenu.qml
%%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/ListMenu.qml
%%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/ListViewDelegate.qml
%%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/TabMenu.qml
%%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/images/arrow.png
%%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/images/qt-logo.png
%%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/focus.qml
%%QT_EXAMPLEDIR%%/quick/keyinteraction/keyinteraction.pro
%%QT_EXAMPLEDIR%%/quick/keyinteraction/keyinteraction.qml
%%QT_EXAMPLEDIR%%/quick/keyinteraction/keyinteraction.qmlproject
%%QT_EXAMPLEDIR%%/quick/keyinteraction/keyinteraction.qrc
%%QT_EXAMPLEDIR%%/quick/keyinteraction/main.cpp
+%%QT_EXAMPLEDIR%%/quick/layouts/doc/src/qtquicklayouts-examples.qdoc
+%%QT_EXAMPLEDIR%%/quick/layouts/layouts.pro
+%%QT_EXAMPLEDIR%%/quick/layouts/layouts.qml
+%%QT_EXAMPLEDIR%%/quick/layouts/layouts.qmlproject
+%%QT_EXAMPLEDIR%%/quick/layouts/layouts.qrc
+%%QT_EXAMPLEDIR%%/quick/layouts/main.cpp
%%QT_EXAMPLEDIR%%/quick/localstorage/doc/src/localstorage.qdoc
%%QT_EXAMPLEDIR%%/quick/localstorage/localstorage.pro
%%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/hello.qml
%%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/localstorage.pro
%%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/localstorage.qml
%%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/localstorage.qmlproject
%%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/localstorage.qrc
%%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/main.cpp
%%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/abstractitemmodel.pro
%%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/abstractitemmodel.qrc
%%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/doc/images/qml-abstractitemmodel-example.png
%%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/doc/src/abstractitemmodel-example.qdoc
%%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/main.cpp
%%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/model.cpp
%%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/model.h
%%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/view.qml
%%QT_EXAMPLEDIR%%/quick/models/models.pro
%%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/dataobject.cpp
%%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/dataobject.h
%%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/doc/images/qml-objectlistmodel-example.png
%%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/doc/src/objectlistmodel-example.qdoc
%%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/main.cpp
%%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/objectlistmodel.pro
%%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/objectlistmodel.qrc
%%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/view.qml
%%QT_EXAMPLEDIR%%/quick/models/stringlistmodel/doc/images/qml-stringlistmodel-example.png
%%QT_EXAMPLEDIR%%/quick/models/stringlistmodel/doc/src/stringlistmodel-example.qdoc
%%QT_EXAMPLEDIR%%/quick/models/stringlistmodel/main.cpp
%%QT_EXAMPLEDIR%%/quick/models/stringlistmodel/stringlistmodel.pro
%%QT_EXAMPLEDIR%%/quick/models/stringlistmodel/stringlistmodel.qrc
%%QT_EXAMPLEDIR%%/quick/models/stringlistmodel/view.qml
%%QT_EXAMPLEDIR%%/quick/mousearea/doc/images/qml-mousearea-example.png
%%QT_EXAMPLEDIR%%/quick/mousearea/doc/src/mousearea.qdoc
%%QT_EXAMPLEDIR%%/quick/mousearea/main.cpp
%%QT_EXAMPLEDIR%%/quick/mousearea/mousearea-wheel-example.qml
%%QT_EXAMPLEDIR%%/quick/mousearea/mousearea.pro
%%QT_EXAMPLEDIR%%/quick/mousearea/mousearea.qml
%%QT_EXAMPLEDIR%%/quick/mousearea/mousearea.qmlproject
%%QT_EXAMPLEDIR%%/quick/mousearea/mousearea.qrc
%%QT_EXAMPLEDIR%%/quick/particles/affectors/affectors.pro
%%QT_EXAMPLEDIR%%/quick/particles/affectors/affectors.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/affectors.qmlproject
%%QT_EXAMPLEDIR%%/quick/particles/affectors/affectors.qrc
%%QT_EXAMPLEDIR%%/quick/particles/affectors/content/GreyButton.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/content/age.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/content/attractor.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/content/customaffector.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/content/friction.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/content/gravity.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/content/groupgoal.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/content/move.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/content/spritegoal.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/content/turbulence.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/content/wander.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/doc/images/qml-affectors-example.png
%%QT_EXAMPLEDIR%%/quick/particles/affectors/doc/src/affectors.qdoc
%%QT_EXAMPLEDIR%%/quick/particles/affectors/main.cpp
%%QT_EXAMPLEDIR%%/quick/particles/customparticle/content/blurparticles.qml
%%QT_EXAMPLEDIR%%/quick/particles/customparticle/content/fragmentshader.qml
%%QT_EXAMPLEDIR%%/quick/particles/customparticle/content/imagecolors.qml
%%QT_EXAMPLEDIR%%/quick/particles/customparticle/customparticle.pro
%%QT_EXAMPLEDIR%%/quick/particles/customparticle/customparticle.qml
%%QT_EXAMPLEDIR%%/quick/particles/customparticle/customparticle.qmlproject
%%QT_EXAMPLEDIR%%/quick/particles/customparticle/customparticle.qrc
%%QT_EXAMPLEDIR%%/quick/particles/customparticle/doc/images/qml-customparticle-example.png
%%QT_EXAMPLEDIR%%/quick/particles/customparticle/doc/src/customparticle.qdoc
%%QT_EXAMPLEDIR%%/quick/particles/customparticle/main.cpp
%%QT_EXAMPLEDIR%%/quick/particles/emitters/content/burstandpulse.qml
%%QT_EXAMPLEDIR%%/quick/particles/emitters/content/customemitter.qml
%%QT_EXAMPLEDIR%%/quick/particles/emitters/content/emitmask.qml
%%QT_EXAMPLEDIR%%/quick/particles/emitters/content/maximumemitted.qml
%%QT_EXAMPLEDIR%%/quick/particles/emitters/content/shapeanddirection.qml
%%QT_EXAMPLEDIR%%/quick/particles/emitters/content/trailemitter.qml
%%QT_EXAMPLEDIR%%/quick/particles/emitters/content/velocityfrommotion.qml
%%QT_EXAMPLEDIR%%/quick/particles/emitters/doc/images/qml-emitters-example.png
%%QT_EXAMPLEDIR%%/quick/particles/emitters/doc/src/emitters.qdoc
%%QT_EXAMPLEDIR%%/quick/particles/emitters/emitters.pro
%%QT_EXAMPLEDIR%%/quick/particles/emitters/emitters.qml
%%QT_EXAMPLEDIR%%/quick/particles/emitters/emitters.qmlproject
%%QT_EXAMPLEDIR%%/quick/particles/emitters/emitters.qrc
%%QT_EXAMPLEDIR%%/quick/particles/emitters/main.cpp
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/allatonce.qml
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/colored.qml
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/colortable.qml
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/deformation.qml
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/rotation.qml
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/sharing.qml
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/sprites.qml
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/doc/images/qml-imageparticle-example.png
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/doc/src/imageparticle.qdoc
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/imageparticle.pro
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/imageparticle.qml
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/imageparticle.qmlproject
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/imageparticle.qrc
%%QT_EXAMPLEDIR%%/quick/particles/imageparticle/main.cpp
%%QT_EXAMPLEDIR%%/quick/particles/images.qrc
%%QT_EXAMPLEDIR%%/quick/particles/images/_explo.png
%%QT_EXAMPLEDIR%%/quick/particles/images/backgroundLeaves.jpg
%%QT_EXAMPLEDIR%%/quick/particles/images/bear_tiles.png
%%QT_EXAMPLEDIR%%/quick/particles/images/candle.png
%%QT_EXAMPLEDIR%%/quick/particles/images/colortable.png
%%QT_EXAMPLEDIR%%/quick/particles/images/finalfrontier.png
%%QT_EXAMPLEDIR%%/quick/particles/images/flower.png
%%QT_EXAMPLEDIR%%/quick/particles/images/matchmask.png
%%QT_EXAMPLEDIR%%/quick/particles/images/meteor.png
%%QT_EXAMPLEDIR%%/quick/particles/images/meteor_explo.png
%%QT_EXAMPLEDIR%%/quick/particles/images/meteors.png
%%QT_EXAMPLEDIR%%/quick/particles/images/nullRock.png
%%QT_EXAMPLEDIR%%/quick/particles/images/particle2.png
%%QT_EXAMPLEDIR%%/quick/particles/images/particle3.png
%%QT_EXAMPLEDIR%%/quick/particles/images/particleA.png
%%QT_EXAMPLEDIR%%/quick/particles/images/portal_bg.png
%%QT_EXAMPLEDIR%%/quick/particles/images/realLeaf1.png
%%QT_EXAMPLEDIR%%/quick/particles/images/realLeaf2.png
%%QT_EXAMPLEDIR%%/quick/particles/images/realLeaf3.png
%%QT_EXAMPLEDIR%%/quick/particles/images/realLeaf4.png
%%QT_EXAMPLEDIR%%/quick/particles/images/rocket.png
%%QT_EXAMPLEDIR%%/quick/particles/images/rocket2.png
%%QT_EXAMPLEDIR%%/quick/particles/images/sizeInOut.png
%%QT_EXAMPLEDIR%%/quick/particles/images/snowflake.png
%%QT_EXAMPLEDIR%%/quick/particles/images/sparkleSize.png
%%QT_EXAMPLEDIR%%/quick/particles/images/starfish_0.png
%%QT_EXAMPLEDIR%%/quick/particles/images/starfish_1.png
%%QT_EXAMPLEDIR%%/quick/particles/images/starfish_2.png
%%QT_EXAMPLEDIR%%/quick/particles/images/starfish_3.png
%%QT_EXAMPLEDIR%%/quick/particles/images/starfish_4.png
%%QT_EXAMPLEDIR%%/quick/particles/images/starfish_mask.png
%%QT_EXAMPLEDIR%%/quick/particles/itemparticle/content/Delegate.qml
%%QT_EXAMPLEDIR%%/quick/particles/itemparticle/content/Delegate2.qml
%%QT_EXAMPLEDIR%%/quick/particles/itemparticle/content/ExpandingDelegate.qml
%%QT_EXAMPLEDIR%%/quick/particles/itemparticle/content/RssModel.qml
%%QT_EXAMPLEDIR%%/quick/particles/itemparticle/content/bubble.png
%%QT_EXAMPLEDIR%%/quick/particles/itemparticle/content/script.js
%%QT_EXAMPLEDIR%%/quick/particles/itemparticle/delegates.qml
%%QT_EXAMPLEDIR%%/quick/particles/itemparticle/particleview.qml
%%QT_EXAMPLEDIR%%/quick/particles/particles.pro
%%QT_EXAMPLEDIR%%/quick/particles/system/content/dynamiccomparison.qml
%%QT_EXAMPLEDIR%%/quick/particles/system/content/dynamicemitters.qml
%%QT_EXAMPLEDIR%%/quick/particles/system/content/multiplepainters.qml
%%QT_EXAMPLEDIR%%/quick/particles/system/content/startstop.qml
%%QT_EXAMPLEDIR%%/quick/particles/system/content/timedgroupchanges.qml
%%QT_EXAMPLEDIR%%/quick/particles/system/doc/images/qml-system-example.png
%%QT_EXAMPLEDIR%%/quick/particles/system/doc/src/system.qdoc
%%QT_EXAMPLEDIR%%/quick/particles/system/main.cpp
%%QT_EXAMPLEDIR%%/quick/particles/system/system.pro
%%QT_EXAMPLEDIR%%/quick/particles/system/system.qml
%%QT_EXAMPLEDIR%%/quick/particles/system/system.qmlproject
%%QT_EXAMPLEDIR%%/quick/particles/system/system.qrc
%%QT_EXAMPLEDIR%%/quick/positioners/doc/images/qml-positioners-example.png
%%QT_EXAMPLEDIR%%/quick/positioners/doc/src/positioners.qdoc
%%QT_EXAMPLEDIR%%/quick/positioners/main.cpp
%%QT_EXAMPLEDIR%%/quick/positioners/positioners-attachedproperties.qml
%%QT_EXAMPLEDIR%%/quick/positioners/positioners-transitions.qml
%%QT_EXAMPLEDIR%%/quick/positioners/positioners.pro
%%QT_EXAMPLEDIR%%/quick/positioners/positioners.qml
%%QT_EXAMPLEDIR%%/quick/positioners/positioners.qmlproject
%%QT_EXAMPLEDIR%%/quick/positioners/positioners.qrc
%%QT_EXAMPLEDIR%%/quick/quick-accessibility/accessibility.qml
%%QT_EXAMPLEDIR%%/quick/quick-accessibility/accessibility.qmlproject
%%QT_EXAMPLEDIR%%/quick/quick-accessibility/accessibility.qrc
%%QT_EXAMPLEDIR%%/quick/quick-accessibility/content/Button.qml
%%QT_EXAMPLEDIR%%/quick/quick-accessibility/content/Checkbox.qml
%%QT_EXAMPLEDIR%%/quick/quick-accessibility/content/Slider.qml
%%QT_EXAMPLEDIR%%/quick/quick-accessibility/doc/src/accessibility.qdoc
%%QT_EXAMPLEDIR%%/quick/quick-accessibility/main.cpp
%%QT_EXAMPLEDIR%%/quick/quick-accessibility/quick-accessibility.pro
%%QT_EXAMPLEDIR%%/quick/quick.pro
%%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/fbitem.cpp
%%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/fbitem.h
%%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/logo.cpp
%%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/logo.h
%%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/main.cpp
%%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/mainwindow.cpp
%%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/mainwindow.h
%%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/qquickviewcomparison.pro
%%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/qquickviewcomparison.qrc
%%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/test.qml
%%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/doc/images/qtquickwidgets-example.png
%%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/doc/src/quickwidget.qdoc
%%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/main.cpp
%%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/quickwidget.pro
%%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/quickwidget.qrc
%%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/rotatingsquare.qml
%%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidgets.pro
%%QT_EXAMPLEDIR%%/quick/rendercontrol/cuberenderer.cpp
%%QT_EXAMPLEDIR%%/quick/rendercontrol/cuberenderer.h
%%QT_EXAMPLEDIR%%/quick/rendercontrol/demo.qml
%%QT_EXAMPLEDIR%%/quick/rendercontrol/doc/images/rendercontrol-example.jpg
%%QT_EXAMPLEDIR%%/quick/rendercontrol/doc/src/rendercontrol.qdoc
%%QT_EXAMPLEDIR%%/quick/rendercontrol/main.cpp
%%QT_EXAMPLEDIR%%/quick/rendercontrol/rendercontrol.pro
%%QT_EXAMPLEDIR%%/quick/rendercontrol/rendercontrol.qrc
%%QT_EXAMPLEDIR%%/quick/rendercontrol/window_multithreaded.cpp
%%QT_EXAMPLEDIR%%/quick/rendercontrol/window_multithreaded.h
%%QT_EXAMPLEDIR%%/quick/rendercontrol/window_singlethreaded.cpp
%%QT_EXAMPLEDIR%%/quick/rendercontrol/window_singlethreaded.h
%%QT_EXAMPLEDIR%%/quick/righttoleft/doc/images/qml-righttoleft-example.png
%%QT_EXAMPLEDIR%%/quick/righttoleft/doc/src/righttoleft.qdoc
%%QT_EXAMPLEDIR%%/quick/righttoleft/layoutdirection/layoutdirection.qml
%%QT_EXAMPLEDIR%%/quick/righttoleft/layoutdirection/layoutdirection.qmlproject
%%QT_EXAMPLEDIR%%/quick/righttoleft/layoutmirroring/layoutmirroring.qml
%%QT_EXAMPLEDIR%%/quick/righttoleft/layoutmirroring/layoutmirroring.qmlproject
%%QT_EXAMPLEDIR%%/quick/righttoleft/main.cpp
%%QT_EXAMPLEDIR%%/quick/righttoleft/righttoleft.pro
%%QT_EXAMPLEDIR%%/quick/righttoleft/righttoleft.qml
%%QT_EXAMPLEDIR%%/quick/righttoleft/righttoleft.qmlproject
%%QT_EXAMPLEDIR%%/quick/righttoleft/righttoleft.qrc
%%QT_EXAMPLEDIR%%/quick/righttoleft/textalignment/textalignment.qml
%%QT_EXAMPLEDIR%%/quick/righttoleft/textalignment/textalignment.qmlproject
%%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/beziercurve.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/beziercurve.h
%%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/customgeometry.pro
%%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/customgeometry.qrc
%%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/doc/images/custom-geometry-example.png
%%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/doc/src/customgeometry.qdoc
%%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/main.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/main.qml
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/doc/images/graph-example.jpg
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/doc/src/graph.qdoc
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/graph.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/graph.h
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/graph.pro
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/graph.qrc
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/gridnode.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/gridnode.h
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/linenode.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/linenode.h
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/main.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/main.qml
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/noisynode.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/noisynode.h
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/shaders/line.fsh
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/shaders/line.vsh
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/shaders/noisy.fsh
%%QT_EXAMPLEDIR%%/quick/scenegraph/graph/shaders/noisy.vsh
%%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/doc/images/openglunderqml-example.jpg
%%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/doc/src/openglunderqml.qdoc
%%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/main.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/main.qml
%%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/openglunderqml.pro
%%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/openglunderqml.qrc
%%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/squircle.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/squircle.h
%%QT_EXAMPLEDIR%%/quick/scenegraph/scenegraph.pro
%%QT_EXAMPLEDIR%%/quick/scenegraph/sgengine/face-smile.png
%%QT_EXAMPLEDIR%%/quick/scenegraph/sgengine/main.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/sgengine/sgengine.pro
%%QT_EXAMPLEDIR%%/quick/scenegraph/sgengine/sgengine.qrc
%%QT_EXAMPLEDIR%%/quick/scenegraph/sgengine/window.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/sgengine/window.h
%%QT_EXAMPLEDIR%%/quick/scenegraph/shared/logorenderer.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/shared/logorenderer.h
%%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/doc/images/simplematerial-example.jpg
%%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/doc/src/simplematerial.qdoc
%%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/main.qml
%%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/simplematerial.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/simplematerial.pro
%%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/simplematerial.qrc
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/doc/images/textureinsgnode-example.jpg
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/doc/src/textureinsgnode.qdoc
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/fboinsgrenderer.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/fboinsgrenderer.h
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/main.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/main.qml
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/textureinsgnode.pro
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/textureinsgnode.qrc
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/doc/images/textureinthread-example.jpg
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/doc/src/textureinthread.qdoc
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/error.qml
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/main.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/main.qml
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/textureinthread.pro
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/textureinthread.qrc
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/threadrenderer.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/threadrenderer.h
%%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/main.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/main.qml
%%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/spinner.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/spinner.h
%%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/spinner.png
%%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/threadedanimation.pro
%%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/threadedanimation.qrc
%%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/doc/images/twotextureproviders-example.jpg
%%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/doc/src/twotextureproviders.qdoc
%%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/main.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/main.qml
%%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/twotextureproviders.pro
%%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/twotextureproviders.qrc
%%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/xorblender.cpp
%%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/xorblender.h
%%QT_EXAMPLEDIR%%/quick/shadereffects/content/Slider.qml
%%QT_EXAMPLEDIR%%/quick/shadereffects/content/face-smile.png
%%QT_EXAMPLEDIR%%/quick/shadereffects/content/qt-logo.png
%%QT_EXAMPLEDIR%%/quick/shadereffects/doc/images/qml-shadereffects-example.png
%%QT_EXAMPLEDIR%%/quick/shadereffects/doc/src/shadereffects.qdoc
%%QT_EXAMPLEDIR%%/quick/shadereffects/main.cpp
%%QT_EXAMPLEDIR%%/quick/shadereffects/shadereffects.pro
%%QT_EXAMPLEDIR%%/quick/shadereffects/shadereffects.qml
%%QT_EXAMPLEDIR%%/quick/shadereffects/shadereffects.qmlproject
%%QT_EXAMPLEDIR%%/quick/shadereffects/shadereffects.qrc
%%QT_EXAMPLEDIR%%/quick/shared/Button.qml
%%QT_EXAMPLEDIR%%/quick/shared/CheckBox.qml
%%QT_EXAMPLEDIR%%/quick/shared/LauncherList.qml
%%QT_EXAMPLEDIR%%/quick/shared/README
%%QT_EXAMPLEDIR%%/quick/shared/SimpleLauncherDelegate.qml
%%QT_EXAMPLEDIR%%/quick/shared/Slider.qml
%%QT_EXAMPLEDIR%%/quick/shared/TabSet.qml
%%QT_EXAMPLEDIR%%/quick/shared/TextField.qml
%%QT_EXAMPLEDIR%%/quick/shared/images/back.png
%%QT_EXAMPLEDIR%%/quick/shared/images/checkmark.png
%%QT_EXAMPLEDIR%%/quick/shared/images/next.png
%%QT_EXAMPLEDIR%%/quick/shared/images/qt-logo.png
%%QT_EXAMPLEDIR%%/quick/shared/images/slider_handle.png
%%QT_EXAMPLEDIR%%/quick/shared/images/tab.png
%%QT_EXAMPLEDIR%%/quick/shared/qmldir
%%QT_EXAMPLEDIR%%/quick/shared/quick_shared.qrc
%%QT_EXAMPLEDIR%%/quick/shared/shared.h
%%QT_EXAMPLEDIR%%/quick/shared/shared.qrc
%%QT_EXAMPLEDIR%%/quick/text/doc/images/qml-text-example.png
%%QT_EXAMPLEDIR%%/quick/text/doc/src/text.qdoc
%%QT_EXAMPLEDIR%%/quick/text/fonts/availableFonts.qml
%%QT_EXAMPLEDIR%%/quick/text/fonts/banner.qml
%%QT_EXAMPLEDIR%%/quick/text/fonts/content/fonts/tarzeau_ocr_a.ttf
%%QT_EXAMPLEDIR%%/quick/text/fonts/fonts.qml
%%QT_EXAMPLEDIR%%/quick/text/fonts/hello.qml
%%QT_EXAMPLEDIR%%/quick/text/imgtag/TextWithImage.qml
%%QT_EXAMPLEDIR%%/quick/text/imgtag/images/face-sad.png
%%QT_EXAMPLEDIR%%/quick/text/imgtag/images/face-smile-big.png
%%QT_EXAMPLEDIR%%/quick/text/imgtag/images/face-smile.png
%%QT_EXAMPLEDIR%%/quick/text/imgtag/images/heart200.png
%%QT_EXAMPLEDIR%%/quick/text/imgtag/images/qtlogo.png
%%QT_EXAMPLEDIR%%/quick/text/imgtag/images/starfish_2.png
%%QT_EXAMPLEDIR%%/quick/text/imgtag/imgtag.qml
%%QT_EXAMPLEDIR%%/quick/text/main.cpp
%%QT_EXAMPLEDIR%%/quick/text/styledtext-layout.qml
%%QT_EXAMPLEDIR%%/quick/text/text.pro
%%QT_EXAMPLEDIR%%/quick/text/text.qml
%%QT_EXAMPLEDIR%%/quick/text/text.qmlproject
%%QT_EXAMPLEDIR%%/quick/text/text.qrc
%%QT_EXAMPLEDIR%%/quick/text/textselection/pics/endHandle.png
%%QT_EXAMPLEDIR%%/quick/text/textselection/pics/endHandle.sci
%%QT_EXAMPLEDIR%%/quick/text/textselection/pics/startHandle.png
%%QT_EXAMPLEDIR%%/quick/text/textselection/pics/startHandle.sci
%%QT_EXAMPLEDIR%%/quick/text/textselection/textselection.qml
%%QT_EXAMPLEDIR%%/quick/textureprovider/Label.qml
%%QT_EXAMPLEDIR%%/quick/textureprovider/etcprovider.cpp
%%QT_EXAMPLEDIR%%/quick/textureprovider/etcprovider.h
%%QT_EXAMPLEDIR%%/quick/textureprovider/images/qt-logo.jpg
%%QT_EXAMPLEDIR%%/quick/textureprovider/images/qt-logo.pkm
%%QT_EXAMPLEDIR%%/quick/textureprovider/main.cpp
%%QT_EXAMPLEDIR%%/quick/textureprovider/textureprovider.pro
%%QT_EXAMPLEDIR%%/quick/textureprovider/textureprovider.qml
%%QT_EXAMPLEDIR%%/quick/textureprovider/textureprovider.qrc
%%QT_EXAMPLEDIR%%/quick/threading/doc/images/qml-threading-example.png
%%QT_EXAMPLEDIR%%/quick/threading/doc/src/threading.qdoc
%%QT_EXAMPLEDIR%%/quick/threading/main.cpp
%%QT_EXAMPLEDIR%%/quick/threading/threadedlistmodel/dataloader.js
%%QT_EXAMPLEDIR%%/quick/threading/threadedlistmodel/doc/src/threadedlistmodel.qdoc
%%QT_EXAMPLEDIR%%/quick/threading/threadedlistmodel/threadedlistmodel.qmlproject
%%QT_EXAMPLEDIR%%/quick/threading/threadedlistmodel/timedisplay.qml
%%QT_EXAMPLEDIR%%/quick/threading/threading.pro
%%QT_EXAMPLEDIR%%/quick/threading/threading.qml
%%QT_EXAMPLEDIR%%/quick/threading/threading.qmlproject
%%QT_EXAMPLEDIR%%/quick/threading/threading.qrc
%%QT_EXAMPLEDIR%%/quick/threading/workerscript/Spinner.qml
%%QT_EXAMPLEDIR%%/quick/threading/workerscript/workerscript.js
%%QT_EXAMPLEDIR%%/quick/threading/workerscript/workerscript.qml
%%QT_EXAMPLEDIR%%/quick/threading/workerscript/workerscript.qmlproject
%%QT_EXAMPLEDIR%%/quick/touchinteraction/doc/images/qml-touchinteraction-example.png
%%QT_EXAMPLEDIR%%/quick/touchinteraction/doc/src/touchinteraction.qdoc
%%QT_EXAMPLEDIR%%/quick/touchinteraction/flickable/basic-flickable.qml
%%QT_EXAMPLEDIR%%/quick/touchinteraction/flickable/content/Panel.qml
%%QT_EXAMPLEDIR%%/quick/touchinteraction/flickable/content/cork.jpg
%%QT_EXAMPLEDIR%%/quick/touchinteraction/flickable/content/note-yellow.png
%%QT_EXAMPLEDIR%%/quick/touchinteraction/flickable/content/tack.png
%%QT_EXAMPLEDIR%%/quick/touchinteraction/flickable/corkboards.qml
%%QT_EXAMPLEDIR%%/quick/touchinteraction/main.cpp
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/bearwhack.qml
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/AugmentedTouchPoint.qml
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/Bear0.png
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/Bear1.png
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/Bear2.png
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/Bear3.png
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/BearB.png
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/BearWhackParticleSystem.qml
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/ParticleFlame.qml
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/blur-circle.png
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/blur-circle3.png
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/heart-blur.png
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/title.png
%%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/multiflame.qml
%%QT_EXAMPLEDIR%%/quick/touchinteraction/pincharea/flickresize.qml
%%QT_EXAMPLEDIR%%/quick/touchinteraction/pincharea/qt-logo.jpg
%%QT_EXAMPLEDIR%%/quick/touchinteraction/touchinteraction.pro
%%QT_EXAMPLEDIR%%/quick/touchinteraction/touchinteraction.qml
%%QT_EXAMPLEDIR%%/quick/touchinteraction/touchinteraction.qmlproject
%%QT_EXAMPLEDIR%%/quick/touchinteraction/touchinteraction.qrc
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview1/PetsModel.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview1/dynamicview.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview1/dynamicview1.qmlproject
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview2/PetsModel.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview2/dynamicview.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview2/dynamicview2.qmlproject
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview3/PetsModel.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview3/dynamicview.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview3/dynamicview3.qmlproject
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview4/ListSelector.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview4/PetsModel.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview4/dynamicview.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview4/dynamicview4.qmlproject
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/core/Button.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/core/EditMenu.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/core/FileDialog.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/core/FileMenu.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/core/MenuBar.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/core/TextArea.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/filedialog/dialogPlugin.cpp
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/filedialog/dialogPlugin.h
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/filedialog/directory.cpp
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/filedialog/directory.h
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/filedialog/file.cpp
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/filedialog/file.h
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/filedialog/qmldir
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/gettingStartedQml.pro
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/images/arrow.png
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/pics/qml-texteditor5_editmenu.png
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/pics/qml-texteditor5_filemenu.png
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/pics/qml-texteditor5_newfile.png
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/texteditor.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/gettingStartedQml/texteditor.qmlproject
%%QT_EXAMPLEDIR%%/quick/tutorials/helloworld/Cell.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/helloworld/tutorial1.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/helloworld/tutorial2.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/helloworld/tutorial3.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame1/Block.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame1/Button.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame1/samegame.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame1/samegame1.qmlproject
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/Block.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/Button.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/samegame.js
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/samegame.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/samegame2.qmlproject
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/Block.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/Button.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/Dialog.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/samegame.js
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/samegame.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/samegame3.qmlproject
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/content/BoomBlock.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/content/Button.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/content/Dialog.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/content/samegame.js
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/highscores/README
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/highscores/score_data.xml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/highscores/score_style.xsl
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/highscores/scores.php
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/samegame.qml
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/samegame4.qmlproject
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/background.jpg
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/blueStar.png
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/blueStone.png
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/greenStar.png
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/greenStone.png
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/redStar.png
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/redStone.png
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/star.png
%%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/yellowStone.png
%%QT_EXAMPLEDIR%%/quick/tutorials/tutorials.pro
%%QT_EXAMPLEDIR%%/quick/views/doc/images/qml-modelviews-example.png
%%QT_EXAMPLEDIR%%/quick/views/doc/src/views.qdoc
%%QT_EXAMPLEDIR%%/quick/views/gridview/gridview-example.qml
%%QT_EXAMPLEDIR%%/quick/views/gridview/pics/AddressBook_48.png
%%QT_EXAMPLEDIR%%/quick/views/gridview/pics/AudioPlayer_48.png
%%QT_EXAMPLEDIR%%/quick/views/gridview/pics/Camera_48.png
%%QT_EXAMPLEDIR%%/quick/views/gridview/pics/DateBook_48.png
%%QT_EXAMPLEDIR%%/quick/views/gridview/pics/EMail_48.png
%%QT_EXAMPLEDIR%%/quick/views/gridview/pics/TodoList_48.png
%%QT_EXAMPLEDIR%%/quick/views/gridview/pics/VideoPlayer_48.png
%%QT_EXAMPLEDIR%%/quick/views/listview/content/PetsModel.qml
%%QT_EXAMPLEDIR%%/quick/views/listview/content/PressAndHoldButton.qml
%%QT_EXAMPLEDIR%%/quick/views/listview/content/RecipesModel.qml
%%QT_EXAMPLEDIR%%/quick/views/listview/content/SmallText.qml
%%QT_EXAMPLEDIR%%/quick/views/listview/content/TextButton.qml
%%QT_EXAMPLEDIR%%/quick/views/listview/content/ToggleButton.qml
%%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/arrow-down.png
%%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/arrow-up.png
%%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/fruit-salad.jpg
%%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/hamburger.jpg
%%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/lemonade.jpg
%%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/list-delete.png
%%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/minus-sign.png
%%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/moreDown.png
%%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/moreUp.png
%%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/pancakes.jpg
%%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/plus-sign.png
%%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/vegetable-soup.jpg
%%QT_EXAMPLEDIR%%/quick/views/listview/displaymargin.qml
%%QT_EXAMPLEDIR%%/quick/views/listview/dynamiclist.qml
%%QT_EXAMPLEDIR%%/quick/views/listview/expandingdelegates.qml
%%QT_EXAMPLEDIR%%/quick/views/listview/highlight.qml
%%QT_EXAMPLEDIR%%/quick/views/listview/highlightranges.qml
%%QT_EXAMPLEDIR%%/quick/views/listview/sections.qml
%%QT_EXAMPLEDIR%%/quick/views/main.cpp
%%QT_EXAMPLEDIR%%/quick/views/objectmodel/objectmodel.qml
%%QT_EXAMPLEDIR%%/quick/views/package/Delegate.qml
%%QT_EXAMPLEDIR%%/quick/views/package/view.qml
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/Clock.qml
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/ParallaxView.qml
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/QuitButton.qml
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/Smiley.qml
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/background.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/center.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/clock-night.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/clock.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/hour.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/minute.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/pics/background.jpg
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/pics/face-smile.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/pics/home-page.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/pics/home-page.svg
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/pics/shadow.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/pics/yast-joystick.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/pics/yast-wol.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/quit.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/content/second.png
%%QT_EXAMPLEDIR%%/quick/views/parallax/parallax.qml
%%QT_EXAMPLEDIR%%/quick/views/pathview/pathview-example.qml
%%QT_EXAMPLEDIR%%/quick/views/pathview/pics/AddressBook_48.png
%%QT_EXAMPLEDIR%%/quick/views/pathview/pics/AudioPlayer_48.png
%%QT_EXAMPLEDIR%%/quick/views/pathview/pics/Camera_48.png
%%QT_EXAMPLEDIR%%/quick/views/pathview/pics/DateBook_48.png
%%QT_EXAMPLEDIR%%/quick/views/pathview/pics/EMail_48.png
%%QT_EXAMPLEDIR%%/quick/views/pathview/pics/TodoList_48.png
%%QT_EXAMPLEDIR%%/quick/views/pathview/pics/VideoPlayer_48.png
%%QT_EXAMPLEDIR%%/quick/views/views.pro
%%QT_EXAMPLEDIR%%/quick/views/views.qml
%%QT_EXAMPLEDIR%%/quick/views/views.qmlproject
%%QT_EXAMPLEDIR%%/quick/views/views.qrc
%%QT_EXAMPLEDIR%%/quick/views/visualdatamodel/dragselection.qml
%%QT_EXAMPLEDIR%%/quick/views/visualdatamodel/slideshow.qml
%%QT_EXAMPLEDIR%%/quick/views/visualdatamodel/visualdatamodel.qmlproject
%%QT_EXAMPLEDIR%%/quick/window/ScreenInfo.qml
%%QT_EXAMPLEDIR%%/quick/window/Splash.qml
%%QT_EXAMPLEDIR%%/quick/window/doc/images/qml-window-example.png
%%QT_EXAMPLEDIR%%/quick/window/doc/src/window.qdoc
%%QT_EXAMPLEDIR%%/quick/window/main.cpp
%%QT_EXAMPLEDIR%%/quick/window/resources/icon.icns
%%QT_EXAMPLEDIR%%/quick/window/resources/icon.ico
%%QT_EXAMPLEDIR%%/quick/window/resources/icon.svg
%%QT_EXAMPLEDIR%%/quick/window/resources/icon64.png
%%QT_EXAMPLEDIR%%/quick/window/resources/window.rc
%%QT_EXAMPLEDIR%%/quick/window/window.pro
%%QT_EXAMPLEDIR%%/quick/window/window.qml
%%QT_EXAMPLEDIR%%/quick/window/window.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/controls/basiclayouts/basiclayouts.pro
%%QT_EXAMPLEDIR%%/quickcontrols/controls/basiclayouts/basiclayouts.qmlproject
%%QT_EXAMPLEDIR%%/quickcontrols/controls/basiclayouts/main.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/basiclayouts/resources.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/controls/basiclayouts/src/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/basiclayouts/src/src.pri
%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/calendar.pro
%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/images/eventindicator.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/qml/main.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/resources.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/src/event.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/src/event.h
%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/src/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/src/sqleventmodel.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/src/sqleventmodel.h
%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/src/src.pri
%%QT_EXAMPLEDIR%%/quickcontrols/controls/controls.pro
%%QT_EXAMPLEDIR%%/quickcontrols/controls/filesystembrowser/filesystembrowser.pro
%%QT_EXAMPLEDIR%%/quickcontrols/controls/filesystembrowser/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/filesystembrowser/main.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/filesystembrowser/qml.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/gallery.pro
%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/gallery.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/main.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/+android/UI.js
%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/+ios/UI.js
%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/+osx/UI.js
%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/ButtonPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/InputPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/ProgressPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/UI.js
%%QT_EXAMPLEDIR%%/quickcontrols/controls/shared/qtquickcontrolsapplication.h
%%QT_EXAMPLEDIR%%/quickcontrols/controls/shared/shared.pri
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/bubble.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/button-pressed.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/button.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/progress-background.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/progress-fill.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/slider-handle.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/tab.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/tab_selected.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/textfield.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/main.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/styles.pro
%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/styles.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/main.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/src/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/src/sortfilterproxymodel.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/src/sortfilterproxymodel.h
%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/src/src.pri
%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/tableview.pro
%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/tableview.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/example.html
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/ToolBarSeparator.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/editcopy.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/editcut.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/editpaste.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/editredo.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/editundo.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/exportpdf.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/filenew.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/fileopen.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/fileprint.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/filesave.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/qt-logo.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textbold.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textcenter.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textitalic.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textjustify.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textleft.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textright.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textunder.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/zoomin.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/zoomout.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/main.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/resources.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/src/documenthandler.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/src/documenthandler.h
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/src/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/src/src.pri
%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/texteditor.pro
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/AndroidDelegate.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/ButtonPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/ListPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/ProgressBarPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/SliderPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/TabBarPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/TextInputPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/NOTICE.txt
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/button_default.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/button_pressed.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/navigation_next_item.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/navigation_previous_item.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/tab_selected.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/tabs_standard.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/textinput.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/toolbar.png
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/main.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/resources.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/src/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/src/src.pri
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/touch.pro
%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/touch.qmlproject
%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/MainForm.ui.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/main.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/CustomerModel.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/History.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/HistoryForm.ui.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/Notes.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/NotesForm.ui.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/Settings.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/SettingsForm.ui.qml
%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/uiforms.pro
%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/uiforms.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/dialogs.pro
%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/ColorDialogs.qml
%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/CustomDialogs.qml
%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/FileDialogs.qml
%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/FontDialogs.qml
%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/MessageDialogs.qml
%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/doc/images/systemdialogs-example.jpg
%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/doc/src/systemdialogs.qdoc
%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/systemdialogs.pro
%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/systemdialogs.qml
%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/systemdialogs.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/dashboard.pro
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/dashboard.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/fonts/DejaVuSans.ttf
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/fonts/LICENSE
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/images/fuel-icon.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/images/temperature-icon.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/qml/DashboardGaugeStyle.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/qml/IconGaugeStyle.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/qml/TachometerStyle.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/qml/TurnIndicator.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/qml/ValueSource.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/qml/dashboard.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/extras.pro
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/Content.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/SettingsIcon.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/flat.pro
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/flat.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-bw-normal.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-bw-pressed.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-image-bw.jpg
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-image-rgb.jpg
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-image-sepia.jpg
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-rgb-normal.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-rgb-pressed.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-sepia-normal.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-sepia-pressed.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/main.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/fonts/LICENSE.txt
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/fonts/OpenSans-Regular.ttf
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/gallery.pro
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/gallery.qrc
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/background-light.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/background.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/center-light.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/center.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/icon-back.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/icon-go.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/icon-settings.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/info.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/needle-light.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/needle.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/qt-logo.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/zoom_in.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/zoom_out.png
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/main.cpp
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/BlackButtonBackground.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/BlackButtonStyle.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CircularGaugeDarkStyle.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CircularGaugeDefaultStyle.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CircularGaugeLightStyle.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CircularGaugeView.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/ControlLabel.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/ControlView.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/ControlViewToolbar.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CustomizerLabel.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CustomizerSlider.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CustomizerSwitch.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/FlickableMoreIndicator.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/PieMenuControlView.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/PieMenuDarkStyle.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/PieMenuDefaultStyle.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/StylePicker.qml
%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/gallery.qml
%%QT_EXAMPLEDIR%%/quickcontrols/quickcontrols.pro
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter1-settingup/chapter1-settingup.pro
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter1-settingup/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter1-settingup/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter1-settingup/qml.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter2-lists/chapter2-lists.pro
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter2-lists/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter2-lists/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter2-lists/qml.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter3-navigation/ContactPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter3-navigation/ConversationPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter3-navigation/chapter3-navigation.pro
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter3-navigation/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter3-navigation/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter3-navigation/qml.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/ContactPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/ConversationPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/chapter4-models.pro
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/qml.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/sqlcontactmodel.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/sqlcontactmodel.h
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/sqlconversationmodel.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/sqlconversationmodel.h
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/+material/ChatToolBar.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/ChatToolBar.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/ContactPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/ConversationPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/chapter5-styling.pro
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/qml.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/qtquickcontrols2.conf
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/sqlcontactmodel.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/sqlcontactmodel.h
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/sqlconversationmodel.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/sqlconversationmodel.h
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chattutorial.pro
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter1.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter2-listview-header.gif
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter2.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter3-listview-header.gif
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter3-view-margins.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter3.gif
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter4-long-message.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter4-message-timestamp.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter4.gif
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-contacts-material-dark.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-contacts-material-test.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-contacts-material.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-contacts-universal-dark.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-contacts-universal.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-conversations-material-dark.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-conversations-material-test.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-conversations-material.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-conversations-universal-dark.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-conversations-universal.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/src/qtquickcontrols2-chattutorial.qdoc
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Albert Einstein.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Albert Einstein@2x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Albert Einstein@3x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Albert Einstein@4x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Ernest Hemingway.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Ernest Hemingway@2x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Ernest Hemingway@3x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Ernest Hemingway@4x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Hans Gude.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Hans Gude@2x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Hans Gude@3x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Hans Gude@4x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/shared.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/doc/images/qtquickcontrols2-gallery-drawer.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/doc/images/qtquickcontrols2-gallery-menu.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/doc/images/qtquickcontrols2-gallery-welcome.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/doc/src/qtquickcontrols2-gallery.qdoc
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/gallery.cpp
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/gallery.pro
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/gallery.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/gallery.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/+material/drawer.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/+material/drawer@2x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/+material/drawer@3x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/+material/drawer@4x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/+material/menu.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/+material/menu@2x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/+material/menu@3x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/+material/menu@4x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrow.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrow@2x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrow@3x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrow@4x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrows.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrows@2x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrows@3x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrows@4x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/drawer.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/drawer@2x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/drawer@3x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/drawer@4x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/menu.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/menu@2x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/menu@3x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/menu@4x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/qt-logo.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/qt-logo@2x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/qt-logo@3x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/qt-logo@4x.png
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/BusyIndicatorPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/ButtonPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/CheckBoxPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/ComboBoxPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/DelegatePage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/DialPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/DrawerPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/FramePage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/GroupBoxPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/MenuPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/PageIndicatorPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/PopupPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/ProgressBarPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/RadioButtonPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/RangeSliderPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/ScrollBarPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/ScrollIndicatorPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/SliderPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/SpinBoxPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/StackViewPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/SwipeViewPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/SwitchPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/TabBarPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/TextAreaPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/TextFieldPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/ToolTipPage.qml
%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/TumblerPage.qml
-%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/qtlabscontrols.conf
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/qtquickcontrols2.conf
%%QT_EXAMPLEDIR%%/quickcontrols2/quickcontrols2.pro
%%QT_EXAMPLEDIR%%/script/README
%%QT_EXAMPLEDIR%%/script/calculator/calculator.js
%%QT_EXAMPLEDIR%%/script/calculator/calculator.pro
%%QT_EXAMPLEDIR%%/script/calculator/calculator.qrc
%%QT_EXAMPLEDIR%%/script/calculator/calculator.ui
%%QT_EXAMPLEDIR%%/script/calculator/main.cpp
%%QT_EXAMPLEDIR%%/script/context2d/context2d.cpp
%%QT_EXAMPLEDIR%%/script/context2d/context2d.h
%%QT_EXAMPLEDIR%%/script/context2d/context2d.pro
%%QT_EXAMPLEDIR%%/script/context2d/context2d.qrc
%%QT_EXAMPLEDIR%%/script/context2d/doc/images/context2d-example-smileysmile.png
%%QT_EXAMPLEDIR%%/script/context2d/doc/images/context2d-example.png
%%QT_EXAMPLEDIR%%/script/context2d/doc/src/context2d.qdoc
%%QT_EXAMPLEDIR%%/script/context2d/domimage.cpp
%%QT_EXAMPLEDIR%%/script/context2d/domimage.h
%%QT_EXAMPLEDIR%%/script/context2d/environment.cpp
%%QT_EXAMPLEDIR%%/script/context2d/environment.h
%%QT_EXAMPLEDIR%%/script/context2d/main.cpp
%%QT_EXAMPLEDIR%%/script/context2d/qcontext2dcanvas.cpp
%%QT_EXAMPLEDIR%%/script/context2d/qcontext2dcanvas.h
%%QT_EXAMPLEDIR%%/script/context2d/scripts/alpha.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/arc.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/bezier.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/clock.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/fill1.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/grad.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/linecap.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/linestye.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/moveto.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/moveto2.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/pacman.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/plasma.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/pong.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/quad.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/rgba.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/rotate.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/scale.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/stroke1.js
%%QT_EXAMPLEDIR%%/script/context2d/scripts/translate.js
%%QT_EXAMPLEDIR%%/script/context2d/window.cpp
%%QT_EXAMPLEDIR%%/script/context2d/window.h
%%QT_EXAMPLEDIR%%/script/customclass/bytearrayclass.cpp
%%QT_EXAMPLEDIR%%/script/customclass/bytearrayclass.h
%%QT_EXAMPLEDIR%%/script/customclass/bytearrayclass.pri
%%QT_EXAMPLEDIR%%/script/customclass/bytearrayprototype.cpp
%%QT_EXAMPLEDIR%%/script/customclass/bytearrayprototype.h
%%QT_EXAMPLEDIR%%/script/customclass/customclass.pro
%%QT_EXAMPLEDIR%%/script/customclass/main.cpp
%%QT_EXAMPLEDIR%%/script/defaultprototypes/code.js
%%QT_EXAMPLEDIR%%/script/defaultprototypes/defaultprototypes.pro
%%QT_EXAMPLEDIR%%/script/defaultprototypes/defaultprototypes.qrc
%%QT_EXAMPLEDIR%%/script/defaultprototypes/doc/images/defaultprototypes-example.png
%%QT_EXAMPLEDIR%%/script/defaultprototypes/doc/src/defaultprototypes.qdoc
%%QT_EXAMPLEDIR%%/script/defaultprototypes/main.cpp
%%QT_EXAMPLEDIR%%/script/defaultprototypes/prototypes.cpp
%%QT_EXAMPLEDIR%%/script/defaultprototypes/prototypes.h
%%QT_EXAMPLEDIR%%/script/helloscript/doc/src/helloscript.qdoc
%%QT_EXAMPLEDIR%%/script/helloscript/helloscript.js
%%QT_EXAMPLEDIR%%/script/helloscript/helloscript.pro
%%QT_EXAMPLEDIR%%/script/helloscript/helloscript.qrc
%%QT_EXAMPLEDIR%%/script/helloscript/main.cpp
%%QT_EXAMPLEDIR%%/script/marshal/main.cpp
%%QT_EXAMPLEDIR%%/script/marshal/marshal.pro
%%QT_EXAMPLEDIR%%/script/qscript/main.cpp
%%QT_EXAMPLEDIR%%/script/qscript/qscript.pro
%%QT_EXAMPLEDIR%%/script/qsdbg/example.js
%%QT_EXAMPLEDIR%%/script/qsdbg/main.cpp
%%QT_EXAMPLEDIR%%/script/qsdbg/qsdbg.pri
%%QT_EXAMPLEDIR%%/script/qsdbg/qsdbg.pro
%%QT_EXAMPLEDIR%%/script/qsdbg/scriptbreakpointmanager.cpp
%%QT_EXAMPLEDIR%%/script/qsdbg/scriptbreakpointmanager.h
%%QT_EXAMPLEDIR%%/script/qsdbg/scriptdebugger.cpp
%%QT_EXAMPLEDIR%%/script/qsdbg/scriptdebugger.h
%%QT_EXAMPLEDIR%%/script/qstetrix/main.cpp
%%QT_EXAMPLEDIR%%/script/qstetrix/qstetrix.pro
%%QT_EXAMPLEDIR%%/script/qstetrix/tetrix.qrc
%%QT_EXAMPLEDIR%%/script/qstetrix/tetrixboard.cpp
%%QT_EXAMPLEDIR%%/script/qstetrix/tetrixboard.h
%%QT_EXAMPLEDIR%%/script/qstetrix/tetrixboard.js
%%QT_EXAMPLEDIR%%/script/qstetrix/tetrixpiece.js
%%QT_EXAMPLEDIR%%/script/qstetrix/tetrixwindow.js
%%QT_EXAMPLEDIR%%/script/qstetrix/tetrixwindow.ui
%%QT_EXAMPLEDIR%%/script/script.pro
+%%QT_EXAMPLEDIR%%/scxml/calculator-common/doc/src/calculator-compiling.qdocinc
+%%QT_EXAMPLEDIR%%/scxml/calculator-common/statemachine.scxml
+%%QT_EXAMPLEDIR%%/scxml/calculator-qml/Button.qml
+%%QT_EXAMPLEDIR%%/scxml/calculator-qml/calculator-qml.cpp
+%%QT_EXAMPLEDIR%%/scxml/calculator-qml/calculator-qml.pro
+%%QT_EXAMPLEDIR%%/scxml/calculator-qml/calculator-qml.qml
+%%QT_EXAMPLEDIR%%/scxml/calculator-qml/calculator-qml.qrc
+%%QT_EXAMPLEDIR%%/scxml/calculator-qml/doc/images/calculator-qml.png
+%%QT_EXAMPLEDIR%%/scxml/calculator-qml/doc/src/calculator-qml.qdoc
+%%QT_EXAMPLEDIR%%/scxml/calculator-widgets/calculator-widgets.cpp
+%%QT_EXAMPLEDIR%%/scxml/calculator-widgets/calculator-widgets.pro
+%%QT_EXAMPLEDIR%%/scxml/calculator-widgets/doc/images/calculator.png
+%%QT_EXAMPLEDIR%%/scxml/calculator-widgets/doc/src/calculator.qdoc
+%%QT_EXAMPLEDIR%%/scxml/calculator-widgets/mainwindow.cpp
+%%QT_EXAMPLEDIR%%/scxml/calculator-widgets/mainwindow.h
+%%QT_EXAMPLEDIR%%/scxml/calculator-widgets/mainwindow.ui
+%%QT_EXAMPLEDIR%%/scxml/invoke-common/Button.qml
+%%QT_EXAMPLEDIR%%/scxml/invoke-common/MainView.qml
+%%QT_EXAMPLEDIR%%/scxml/invoke-common/SubView.qml
+%%QT_EXAMPLEDIR%%/scxml/invoke-common/statemachine.scxml
+%%QT_EXAMPLEDIR%%/scxml/invoke-dynamic/doc/images/invoke-dynamic.png
+%%QT_EXAMPLEDIR%%/scxml/invoke-dynamic/doc/src/invoke-dynamic.qdoc
+%%QT_EXAMPLEDIR%%/scxml/invoke-dynamic/invoke-dynamic.cpp
+%%QT_EXAMPLEDIR%%/scxml/invoke-dynamic/invoke-dynamic.pro
+%%QT_EXAMPLEDIR%%/scxml/invoke-dynamic/invoke-dynamic.qml
+%%QT_EXAMPLEDIR%%/scxml/invoke-dynamic/invoke-dynamic.qrc
+%%QT_EXAMPLEDIR%%/scxml/invoke-static/doc/images/invoke-static.png
+%%QT_EXAMPLEDIR%%/scxml/invoke-static/doc/src/invoke-static.qdoc
+%%QT_EXAMPLEDIR%%/scxml/invoke-static/invoke-static.cpp
+%%QT_EXAMPLEDIR%%/scxml/invoke-static/invoke-static.pro
+%%QT_EXAMPLEDIR%%/scxml/invoke-static/invoke-static.qml
+%%QT_EXAMPLEDIR%%/scxml/invoke-static/invoke-static.qrc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/Mediaplayer.qml
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/doc/images/mediaplayer.png
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/doc/src/mediaplayer-compiling.qdocinc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/doc/src/mediaplayer-dynamic.qdocinc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/doc/src/mediaplayer-ecmascript-data-model.qdocinc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/mainwindow.cpp
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/mainwindow.h
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/mainwindow.ui
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/mediaplayer.scxml
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/doc/src/mediaplayer-qml-cppdatamodel.qdoc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/mediaplayer-cppdatamodel.scxml
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/mediaplayer-qml-cppdatamodel.cpp
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/mediaplayer-qml-cppdatamodel.pro
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/mediaplayer-qml-cppdatamodel.qml
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/mediaplayer-qml-cppdatamodel.qrc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/thedatamodel.cpp
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/thedatamodel.h
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-dynamic/doc/src/mediaplayer-qml-dynamic.qdoc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-dynamic/mediaplayer-qml-dynamic.cpp
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-dynamic/mediaplayer-qml-dynamic.pro
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-dynamic/mediaplayer-qml-dynamic.qml
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-dynamic/mediaplayer-qml-dynamic.qrc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-static/doc/src/mediaplayer-qml-static.qdoc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-static/mediaplayer-qml-static.cpp
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-static/mediaplayer-qml-static.pro
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-static/mediaplayer-qml-static.qml
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-static/mediaplayer-qml-static.qrc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-dynamic/doc/src/mediaplayer-widgets-dynamic.qdoc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-dynamic/mediaplayer-widgets-dynamic.cpp
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-dynamic/mediaplayer-widgets-dynamic.pro
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-dynamic/mediaplayer.qrc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-static/doc/src/mediaplayer-widgets-static.qdoc
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-static/mediaplayer-widgets-static.cpp
+%%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-static/mediaplayer-widgets-static.pro
+%%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-global.png
+%%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-guicontrol.png
+%%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-internalstate.png
+%%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-logicalstate.png
+%%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-modestate.png
+%%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-onstate.png
+%%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-workflow.png
+%%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball.png
+%%QT_EXAMPLEDIR%%/scxml/pinball/doc/src/pinball.qdoc
+%%QT_EXAMPLEDIR%%/scxml/pinball/main.cpp
+%%QT_EXAMPLEDIR%%/scxml/pinball/mainwindow.cpp
+%%QT_EXAMPLEDIR%%/scxml/pinball/mainwindow.h
+%%QT_EXAMPLEDIR%%/scxml/pinball/mainwindow.ui
+%%QT_EXAMPLEDIR%%/scxml/pinball/pinball.pro
+%%QT_EXAMPLEDIR%%/scxml/pinball/pinball.scxml
+%%QT_EXAMPLEDIR%%/scxml/scxml.pro
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/Button.qml
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/TrafficLight.qml
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/background.png
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/doc/images/trafficlight.png
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/doc/src/trafficlight-compiling.qdocinc
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/doc/src/trafficlight-state-machine.qdocinc
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/green.png
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/pause.png
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/play.png
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/red.png
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/statemachine.scxml
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/trafficlight.cpp
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/trafficlight.h
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-common/yellow.png
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-dynamic/doc/src/trafficlight-qml-dynamic.qdoc
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-dynamic/trafficlight-qml-dynamic.cpp
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-dynamic/trafficlight-qml-dynamic.pro
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-dynamic/trafficlight-qml-dynamic.qml
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-dynamic/trafficlight-qml-dynamic.qrc
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-static/doc/src/trafficlight-qml-static.qdoc
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-static/trafficlight-qml-static.cpp
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-static/trafficlight-qml-static.pro
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-static/trafficlight-qml-static.qml
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-static/trafficlight-qml-static.qrc
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-dynamic/doc/src/trafficlight-widgets-dynamic.qdoc
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-dynamic/trafficlight-widgets-dynamic.cpp
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-dynamic/trafficlight-widgets-dynamic.pro
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-dynamic/trafficlight-widgets-dynamic.qrc
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-static/doc/src/trafficlight-widgets-static.qdoc
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-static/trafficlight-widgets-static.cpp
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-static/trafficlight-widgets-static.pro
+%%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-static/trafficlight-widgets-static.qrc
%%QT_EXAMPLEDIR%%/sensors/accelbubble/Info.plist
%%QT_EXAMPLEDIR%%/sensors/accelbubble/accelbubble.pro
%%QT_EXAMPLEDIR%%/sensors/accelbubble/accelbubble.qml
%%QT_EXAMPLEDIR%%/sensors/accelbubble/accelbubble.qrc
%%QT_EXAMPLEDIR%%/sensors/accelbubble/android/AndroidManifest.xml
%%QT_EXAMPLEDIR%%/sensors/accelbubble/content/Bluebubble.svg
%%QT_EXAMPLEDIR%%/sensors/accelbubble/doc/images/accelbubble.png
%%QT_EXAMPLEDIR%%/sensors/accelbubble/doc/src/accelbubble.qdoc
%%QT_EXAMPLEDIR%%/sensors/accelbubble/main.cpp
%%QT_EXAMPLEDIR%%/sensors/grue/console_app/console_app.pro
%%QT_EXAMPLEDIR%%/sensors/grue/console_app/main.cpp
%%QT_EXAMPLEDIR%%/sensors/grue/doc/images/qtsensors-examples-grue.png
%%QT_EXAMPLEDIR%%/sensors/grue/doc/src/grue.qdoc
%%QT_EXAMPLEDIR%%/sensors/grue/grue.png
%%QT_EXAMPLEDIR%%/sensors/grue/grue.pro
%%QT_EXAMPLEDIR%%/sensors/grue/grue.qml
%%QT_EXAMPLEDIR%%/sensors/grue/grue.xcf
%%QT_EXAMPLEDIR%%/sensors/grue/icon.xcf
%%QT_EXAMPLEDIR%%/sensors/grue/import/import.json
%%QT_EXAMPLEDIR%%/sensors/grue/import/import.pro
%%QT_EXAMPLEDIR%%/sensors/grue/import/main.cpp
%%QT_EXAMPLEDIR%%/sensors/grue/import/qmldir
%%QT_EXAMPLEDIR%%/sensors/grue/lib/gruesensor.cpp
%%QT_EXAMPLEDIR%%/sensors/grue/lib/gruesensor.h
%%QT_EXAMPLEDIR%%/sensors/grue/lib/gruesensor_p.h
%%QT_EXAMPLEDIR%%/sensors/grue/lib/lib.pro
%%QT_EXAMPLEDIR%%/sensors/grue/main.cpp
%%QT_EXAMPLEDIR%%/sensors/grue/plugin/gruesensorimpl.cpp
%%QT_EXAMPLEDIR%%/sensors/grue/plugin/gruesensorimpl.h
%%QT_EXAMPLEDIR%%/sensors/grue/plugin/main.cpp
%%QT_EXAMPLEDIR%%/sensors/grue/plugin/plugin.json
%%QT_EXAMPLEDIR%%/sensors/grue/plugin/plugin.pro
%%QT_EXAMPLEDIR%%/sensors/grue/qml.pro
%%QT_EXAMPLEDIR%%/sensors/grue/qml.qrc
%%QT_EXAMPLEDIR%%/sensors/maze/Congratulation.qml
%%QT_EXAMPLEDIR%%/sensors/maze/LabyrinthSquare.qml
%%QT_EXAMPLEDIR%%/sensors/maze/Mouse.qml
%%QT_EXAMPLEDIR%%/sensors/maze/android/AndroidManifest.xml
%%QT_EXAMPLEDIR%%/sensors/maze/components/ApplicationWindow.qml
%%QT_EXAMPLEDIR%%/sensors/maze/components/Button.qml
%%QT_EXAMPLEDIR%%/sensors/maze/components/images/button_background_disabled.png
%%QT_EXAMPLEDIR%%/sensors/maze/components/images/button_background_normal.png
%%QT_EXAMPLEDIR%%/sensors/maze/components/images/button_background_pressed.png
%%QT_EXAMPLEDIR%%/sensors/maze/content/00.png
%%QT_EXAMPLEDIR%%/sensors/maze/content/01.png
%%QT_EXAMPLEDIR%%/sensors/maze/content/cheese.png
%%QT_EXAMPLEDIR%%/sensors/maze/content/cheeseeating.gif
%%QT_EXAMPLEDIR%%/sensors/maze/content/congratulations.gif
%%QT_EXAMPLEDIR%%/sensors/maze/content/mouse_down.gif
%%QT_EXAMPLEDIR%%/sensors/maze/content/start.png
%%QT_EXAMPLEDIR%%/sensors/maze/doc/src/maze.qdoc
%%QT_EXAMPLEDIR%%/sensors/maze/lib.js
%%QT_EXAMPLEDIR%%/sensors/maze/main.cpp
%%QT_EXAMPLEDIR%%/sensors/maze/maze.pro
%%QT_EXAMPLEDIR%%/sensors/maze/maze.qml
%%QT_EXAMPLEDIR%%/sensors/maze/maze.qrc
%%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/components/ApplicationWindow.qml
%%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/components/Button.qml
%%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/components/Divider.qml
%%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/components/images/button_background_disabled.png
%%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/components/images/button_background_normal.png
%%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/components/images/button_background_pressed.png
%%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/doc/src/qmlqtsensors.qdoc
%%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/main.cpp
%%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/qmlqtsensors.pro
%%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/qmlqtsensors.qml
%%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/qmlqtsensors.qrc
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/Button.qml
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/GestureList.qml
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/GestureView.qml
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/GesturesView.qml
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/doc/src/qmlsensorgestures.qdoc
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/main.cpp
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/plugin/plugin.pro
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/plugin/qcountergestureplugin.cpp
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/plugin/qcountergestureplugin.h
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/plugin/qcounterrecognizer.cpp
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/plugin/qcounterrecognizer.h
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/qml.pro
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/qml.qrc
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/qmlsensorgestures.pro
%%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/qmlsensorgestures.qml
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/doc/images/qtsensors-examples-explorer.png
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/doc/src/sensor_explorer.qdoc
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/explorer.cpp
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/explorer.h
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/import.json
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/import.pro
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/main.cpp
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/propertyinfo.cpp
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/propertyinfo.h
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/qmldir
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/sensoritem.cpp
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/sensoritem.h
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/main.cpp
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/qml.pro
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/qml.qrc
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/sensor_explorer.pro
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/sensor_explorer.qml
%%QT_EXAMPLEDIR%%/sensors/sensorgestures/doc/images/sensorgesturecpp.png
%%QT_EXAMPLEDIR%%/sensors/sensorgestures/doc/src/sensorgestures.qdoc
%%QT_EXAMPLEDIR%%/sensors/sensorgestures/main.cpp
%%QT_EXAMPLEDIR%%/sensors/sensorgestures/mainwindow.cpp
%%QT_EXAMPLEDIR%%/sensors/sensorgestures/mainwindow.h
%%QT_EXAMPLEDIR%%/sensors/sensorgestures/mainwindow.ui
%%QT_EXAMPLEDIR%%/sensors/sensorgestures/sensorgestures.pro
%%QT_EXAMPLEDIR%%/sensors/sensors.pro
%%QT_EXAMPLEDIR%%/sensors/shakeit/audio/loopy2a_mono.wav
%%QT_EXAMPLEDIR%%/sensors/shakeit/audio/phone.wav
%%QT_EXAMPLEDIR%%/sensors/shakeit/content/triangle.png
%%QT_EXAMPLEDIR%%/sensors/shakeit/content/triangle2.png
%%QT_EXAMPLEDIR%%/sensors/shakeit/content/triangle3.png
%%QT_EXAMPLEDIR%%/sensors/shakeit/doc/images/shakeit.png
%%QT_EXAMPLEDIR%%/sensors/shakeit/doc/src/shakeit.qdoc
%%QT_EXAMPLEDIR%%/sensors/shakeit/main.cpp
%%QT_EXAMPLEDIR%%/sensors/shakeit/shakeit.pro
%%QT_EXAMPLEDIR%%/sensors/shakeit/shakeit.qml
%%QT_EXAMPLEDIR%%/sensors/shakeit/shakeit.qrc
%%QT_EXAMPLEDIR%%/sensors/stub.h
%%QT_EXAMPLEDIR%%/serialbus/can/can.pro
%%QT_EXAMPLEDIR%%/serialbus/can/can.qrc
%%QT_EXAMPLEDIR%%/serialbus/can/connectdialog.cpp
%%QT_EXAMPLEDIR%%/serialbus/can/connectdialog.h
%%QT_EXAMPLEDIR%%/serialbus/can/connectdialog.ui
%%QT_EXAMPLEDIR%%/serialbus/can/images/application-exit.png
%%QT_EXAMPLEDIR%%/serialbus/can/images/clear.png
%%QT_EXAMPLEDIR%%/serialbus/can/images/connect.png
%%QT_EXAMPLEDIR%%/serialbus/can/images/disconnect.png
%%QT_EXAMPLEDIR%%/serialbus/can/main.cpp
%%QT_EXAMPLEDIR%%/serialbus/can/mainwindow.cpp
%%QT_EXAMPLEDIR%%/serialbus/can/mainwindow.h
%%QT_EXAMPLEDIR%%/serialbus/can/mainwindow.ui
%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/adueditor.pro
%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/interface.ui
%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/main.cpp
%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/mainwindow.cpp
%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/mainwindow.h
%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/modbustcpclient.cpp
%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/modbustcpclient.h
%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/modbustcpclient_p.h
%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/plaintextedit.h
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/doc/images/modbusmaster.png
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/doc/src/modbusmaster.qdoc
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/images/application-exit.png
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/images/connect.png
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/images/disconnect.png
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/images/settings.png
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/main.cpp
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/mainwindow.cpp
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/mainwindow.h
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/mainwindow.ui
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/master.pro
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/master.qrc
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/settingsdialog.cpp
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/settingsdialog.h
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/settingsdialog.ui
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/writeregistermodel.cpp
%%QT_EXAMPLEDIR%%/serialbus/modbus/master/writeregistermodel.h
%%QT_EXAMPLEDIR%%/serialbus/modbus/modbus.pro
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/doc/images/modbusserver.png
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/doc/src/modbusslave.qdoc
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/images/application-exit.png
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/images/connect.png
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/images/disconnect.png
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/images/settings.png
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/main.cpp
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/mainwindow.cpp
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/mainwindow.h
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/mainwindow.ui
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/settingsdialog.cpp
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/settingsdialog.h
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/settingsdialog.ui
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/slave.pro
%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/slave.qrc
%%QT_EXAMPLEDIR%%/serialbus/serialbus.pro
%%QT_EXAMPLEDIR%%/serialport/blockingmaster/blockingmaster.pro
%%QT_EXAMPLEDIR%%/serialport/blockingmaster/dialog.cpp
%%QT_EXAMPLEDIR%%/serialport/blockingmaster/dialog.h
%%QT_EXAMPLEDIR%%/serialport/blockingmaster/main.cpp
%%QT_EXAMPLEDIR%%/serialport/blockingmaster/masterthread.cpp
%%QT_EXAMPLEDIR%%/serialport/blockingmaster/masterthread.h
%%QT_EXAMPLEDIR%%/serialport/blockingslave/blockingslave.pro
%%QT_EXAMPLEDIR%%/serialport/blockingslave/dialog.cpp
%%QT_EXAMPLEDIR%%/serialport/blockingslave/dialog.h
%%QT_EXAMPLEDIR%%/serialport/blockingslave/main.cpp
%%QT_EXAMPLEDIR%%/serialport/blockingslave/slavethread.cpp
%%QT_EXAMPLEDIR%%/serialport/blockingslave/slavethread.h
%%QT_EXAMPLEDIR%%/serialport/cenumerator/cenumerator.pro
%%QT_EXAMPLEDIR%%/serialport/cenumerator/main.cpp
%%QT_EXAMPLEDIR%%/serialport/creaderasync/creaderasync.pro
%%QT_EXAMPLEDIR%%/serialport/creaderasync/main.cpp
%%QT_EXAMPLEDIR%%/serialport/creaderasync/serialportreader.cpp
%%QT_EXAMPLEDIR%%/serialport/creaderasync/serialportreader.h
%%QT_EXAMPLEDIR%%/serialport/creadersync/creadersync.pro
%%QT_EXAMPLEDIR%%/serialport/creadersync/main.cpp
%%QT_EXAMPLEDIR%%/serialport/cwriterasync/cwriterasync.pro
%%QT_EXAMPLEDIR%%/serialport/cwriterasync/main.cpp
%%QT_EXAMPLEDIR%%/serialport/cwriterasync/serialportwriter.cpp
%%QT_EXAMPLEDIR%%/serialport/cwriterasync/serialportwriter.h
%%QT_EXAMPLEDIR%%/serialport/cwritersync/cwritersync.pro
%%QT_EXAMPLEDIR%%/serialport/cwritersync/main.cpp
%%QT_EXAMPLEDIR%%/serialport/doc/blockingmaster.qdoc
%%QT_EXAMPLEDIR%%/serialport/doc/blockingslave.qdoc
%%QT_EXAMPLEDIR%%/serialport/doc/cenumerator.qdoc
%%QT_EXAMPLEDIR%%/serialport/doc/creaderasync.qdoc
%%QT_EXAMPLEDIR%%/serialport/doc/creadersync.qdoc
%%QT_EXAMPLEDIR%%/serialport/doc/cwriterasync.qdoc
%%QT_EXAMPLEDIR%%/serialport/doc/cwritersync.qdoc
%%QT_EXAMPLEDIR%%/serialport/doc/enumerator.qdoc
%%QT_EXAMPLEDIR%%/serialport/doc/terminal.qdoc
%%QT_EXAMPLEDIR%%/serialport/enumerator/enumerator.pro
%%QT_EXAMPLEDIR%%/serialport/enumerator/main.cpp
%%QT_EXAMPLEDIR%%/serialport/master/dialog.cpp
%%QT_EXAMPLEDIR%%/serialport/master/dialog.h
%%QT_EXAMPLEDIR%%/serialport/master/main.cpp
%%QT_EXAMPLEDIR%%/serialport/master/master.pro
%%QT_EXAMPLEDIR%%/serialport/serialport.pro
%%QT_EXAMPLEDIR%%/serialport/slave/dialog.cpp
%%QT_EXAMPLEDIR%%/serialport/slave/dialog.h
%%QT_EXAMPLEDIR%%/serialport/slave/main.cpp
%%QT_EXAMPLEDIR%%/serialport/slave/slave.pro
%%QT_EXAMPLEDIR%%/serialport/slave/slavethread.cpp
%%QT_EXAMPLEDIR%%/serialport/slave/slavethread.h
%%QT_EXAMPLEDIR%%/serialport/terminal/console.cpp
%%QT_EXAMPLEDIR%%/serialport/terminal/console.h
%%QT_EXAMPLEDIR%%/serialport/terminal/images/application-exit.png
%%QT_EXAMPLEDIR%%/serialport/terminal/images/clear.png
%%QT_EXAMPLEDIR%%/serialport/terminal/images/connect.png
%%QT_EXAMPLEDIR%%/serialport/terminal/images/disconnect.png
%%QT_EXAMPLEDIR%%/serialport/terminal/images/settings.png
%%QT_EXAMPLEDIR%%/serialport/terminal/main.cpp
%%QT_EXAMPLEDIR%%/serialport/terminal/mainwindow.cpp
%%QT_EXAMPLEDIR%%/serialport/terminal/mainwindow.h
%%QT_EXAMPLEDIR%%/serialport/terminal/mainwindow.ui
%%QT_EXAMPLEDIR%%/serialport/terminal/settingsdialog.cpp
%%QT_EXAMPLEDIR%%/serialport/terminal/settingsdialog.h
%%QT_EXAMPLEDIR%%/serialport/terminal/settingsdialog.ui
%%QT_EXAMPLEDIR%%/serialport/terminal/terminal.pro
%%QT_EXAMPLEDIR%%/serialport/terminal/terminal.qrc
%%QT_EXAMPLEDIR%%/sql/README
%%QT_EXAMPLEDIR%%/sql/books/bookdelegate.cpp
%%QT_EXAMPLEDIR%%/sql/books/bookdelegate.h
%%QT_EXAMPLEDIR%%/sql/books/books.pro
%%QT_EXAMPLEDIR%%/sql/books/books.qrc
%%QT_EXAMPLEDIR%%/sql/books/bookwindow.cpp
%%QT_EXAMPLEDIR%%/sql/books/bookwindow.h
%%QT_EXAMPLEDIR%%/sql/books/bookwindow.ui
%%QT_EXAMPLEDIR%%/sql/books/images/star.png
%%QT_EXAMPLEDIR%%/sql/books/initdb.h
%%QT_EXAMPLEDIR%%/sql/books/main.cpp
%%QT_EXAMPLEDIR%%/sql/cachedtable/cachedtable.pro
%%QT_EXAMPLEDIR%%/sql/cachedtable/main.cpp
%%QT_EXAMPLEDIR%%/sql/cachedtable/tableeditor.cpp
%%QT_EXAMPLEDIR%%/sql/cachedtable/tableeditor.h
%%QT_EXAMPLEDIR%%/sql/connection.h
%%QT_EXAMPLEDIR%%/sql/doc/images/books-demo.png
%%QT_EXAMPLEDIR%%/sql/doc/images/cachedtable-example.png
%%QT_EXAMPLEDIR%%/sql/doc/images/drilldown-example.png
%%QT_EXAMPLEDIR%%/sql/doc/images/masterdetail-example.png
%%QT_EXAMPLEDIR%%/sql/doc/images/querymodel-example.png
%%QT_EXAMPLEDIR%%/sql/doc/images/relationaltablemodel-example.png
%%QT_EXAMPLEDIR%%/sql/doc/images/sql-widget-mapper.png
%%QT_EXAMPLEDIR%%/sql/doc/images/sqlbrowser-demo.png
%%QT_EXAMPLEDIR%%/sql/doc/images/tablemodel-example.png
%%QT_EXAMPLEDIR%%/sql/doc/images/widgetmapper-sql-mapping-table.png
%%QT_EXAMPLEDIR%%/sql/doc/images/widgetmapper-sql-mapping.png
%%QT_EXAMPLEDIR%%/sql/doc/src/books.qdoc
%%QT_EXAMPLEDIR%%/sql/doc/src/cachedtable.qdoc
%%QT_EXAMPLEDIR%%/sql/doc/src/drilldown.qdoc
%%QT_EXAMPLEDIR%%/sql/doc/src/masterdetail.qdoc
%%QT_EXAMPLEDIR%%/sql/doc/src/querymodel.qdoc
%%QT_EXAMPLEDIR%%/sql/doc/src/relationaltablemodel.qdoc
%%QT_EXAMPLEDIR%%/sql/doc/src/sqlbrowser.qdoc
%%QT_EXAMPLEDIR%%/sql/doc/src/sqlwidgetmapper.qdoc
%%QT_EXAMPLEDIR%%/sql/doc/src/tablemodel.qdoc
%%QT_EXAMPLEDIR%%/sql/drilldown/drilldown.pro
%%QT_EXAMPLEDIR%%/sql/drilldown/drilldown.qrc
%%QT_EXAMPLEDIR%%/sql/drilldown/imageitem.cpp
%%QT_EXAMPLEDIR%%/sql/drilldown/imageitem.h
%%QT_EXAMPLEDIR%%/sql/drilldown/images/qt-creator.png
%%QT_EXAMPLEDIR%%/sql/drilldown/images/qt-logo.png
%%QT_EXAMPLEDIR%%/sql/drilldown/images/qt-project.png
%%QT_EXAMPLEDIR%%/sql/drilldown/images/qt-quick.png
%%QT_EXAMPLEDIR%%/sql/drilldown/informationwindow.cpp
%%QT_EXAMPLEDIR%%/sql/drilldown/informationwindow.h
%%QT_EXAMPLEDIR%%/sql/drilldown/main.cpp
%%QT_EXAMPLEDIR%%/sql/drilldown/view.cpp
%%QT_EXAMPLEDIR%%/sql/drilldown/view.h
%%QT_EXAMPLEDIR%%/sql/masterdetail/albumdetails.xml
%%QT_EXAMPLEDIR%%/sql/masterdetail/database.h
%%QT_EXAMPLEDIR%%/sql/masterdetail/dialog.cpp
%%QT_EXAMPLEDIR%%/sql/masterdetail/dialog.h
%%QT_EXAMPLEDIR%%/sql/masterdetail/images/icon.png
%%QT_EXAMPLEDIR%%/sql/masterdetail/images/image.png
%%QT_EXAMPLEDIR%%/sql/masterdetail/main.cpp
%%QT_EXAMPLEDIR%%/sql/masterdetail/mainwindow.cpp
%%QT_EXAMPLEDIR%%/sql/masterdetail/mainwindow.h
%%QT_EXAMPLEDIR%%/sql/masterdetail/masterdetail.pro
%%QT_EXAMPLEDIR%%/sql/masterdetail/masterdetail.qrc
%%QT_EXAMPLEDIR%%/sql/querymodel/customsqlmodel.cpp
%%QT_EXAMPLEDIR%%/sql/querymodel/customsqlmodel.h
%%QT_EXAMPLEDIR%%/sql/querymodel/editablesqlmodel.cpp
%%QT_EXAMPLEDIR%%/sql/querymodel/editablesqlmodel.h
%%QT_EXAMPLEDIR%%/sql/querymodel/main.cpp
%%QT_EXAMPLEDIR%%/sql/querymodel/querymodel.pro
%%QT_EXAMPLEDIR%%/sql/relationaltablemodel/relationaltablemodel.cpp
%%QT_EXAMPLEDIR%%/sql/relationaltablemodel/relationaltablemodel.pro
%%QT_EXAMPLEDIR%%/sql/sql.pro
%%QT_EXAMPLEDIR%%/sql/sqlbrowser/browser.cpp
%%QT_EXAMPLEDIR%%/sql/sqlbrowser/browser.h
%%QT_EXAMPLEDIR%%/sql/sqlbrowser/browserwidget.ui
%%QT_EXAMPLEDIR%%/sql/sqlbrowser/connectionwidget.cpp
%%QT_EXAMPLEDIR%%/sql/sqlbrowser/connectionwidget.h
%%QT_EXAMPLEDIR%%/sql/sqlbrowser/main.cpp
%%QT_EXAMPLEDIR%%/sql/sqlbrowser/qsqlconnectiondialog.cpp
%%QT_EXAMPLEDIR%%/sql/sqlbrowser/qsqlconnectiondialog.h
%%QT_EXAMPLEDIR%%/sql/sqlbrowser/qsqlconnectiondialog.ui
%%QT_EXAMPLEDIR%%/sql/sqlbrowser/sqlbrowser.pro
%%QT_EXAMPLEDIR%%/sql/sqlwidgetmapper/main.cpp
%%QT_EXAMPLEDIR%%/sql/sqlwidgetmapper/sqlwidgetmapper.pro
%%QT_EXAMPLEDIR%%/sql/sqlwidgetmapper/window.cpp
%%QT_EXAMPLEDIR%%/sql/sqlwidgetmapper/window.h
%%QT_EXAMPLEDIR%%/sql/tablemodel/tablemodel.cpp
%%QT_EXAMPLEDIR%%/sql/tablemodel/tablemodel.pro
%%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/delayedencoding.pro
%%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/delayedencoding.qrc
%%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/images/drag.png
%%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/images/example.svg
%%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/main.cpp
%%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/mimedata.cpp
%%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/mimedata.h
%%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/sourcewidget.cpp
%%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/sourcewidget.h
%%QT_EXAMPLEDIR%%/svg/draganddrop/draganddrop.pro
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/contenttab.cpp
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/contenttab.h
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/data/Explosion.wav
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/data/designer.png
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/data/monkey_on_64x64.png
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/data/sax.mp3
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/desktopservices.pro
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/desktopservices.qrc
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/desktopwidget.cpp
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/desktopwidget.h
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/linktab.cpp
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/linktab.h
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/main.cpp
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/resources/browser.png
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/resources/heart.svg
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/resources/message.png
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/resources/music.png
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/resources/photo.png
%%QT_EXAMPLEDIR%%/svg/embedded/embedded.pro
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/config.xml
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/config_wince/config.xml
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/demoapplication.cpp
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/demoapplication.h
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/fluidlauncher.cpp
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/fluidlauncher.h
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/fluidlauncher.pro
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/fluidlauncher.qrc
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/main.cpp
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/pictureflow.cpp
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/pictureflow.h
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/anomaly_s60.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/concentriccircles.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/context2d_s60.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/deform.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/desktopservices_s60.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/digiflip.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/elasticnodes.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/embeddedsvgviewer.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/embeddedsvgviewer_s60.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/flickable.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/flightinfo_s60.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/fridgemagnets_s60.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/ftp_s60.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/lightmaps.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/mediaplayer.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/pathstroke.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmlcalculator.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmlclocks.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmldialcontrol.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmleasing.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmlflickr.jpg
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmlphotoviewer.jpg
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmltwitter.jpg
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/raycasting.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/saxbookmarks_s60.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/softkeys_s60.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/spectrum.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/styledemo.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/styledemo_s60.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/weatherinfo.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/wiggly.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/wiggly_s60.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slides/demo_1.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slides/demo_2.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slides/demo_3.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slides/demo_4.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slides/demo_5.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slides/demo_6.png
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slideshow.cpp
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slideshow.h
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/README.txt
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-few-clouds.svg
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-fog.svg
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-haze.svg
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-icy.svg
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-overcast.svg
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-showers.svg
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-sleet.svg
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-snow.svg
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-storm.svg
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-sunny-very-few-clouds.svg
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-sunny.svg
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-thundershower.svg
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/weatherinfo.cpp
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/weatherinfo.pro
%%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/weatherinfo.qrc
%%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/embeddedsvgviewer.cpp
%%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/embeddedsvgviewer.h
%%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/embeddedsvgviewer.pro
%%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/embeddedsvgviewer.qrc
%%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/files/default.svg
%%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/files/v-slider-handle.svg
%%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/main.cpp
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/bearercloud.cpp
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/bearercloud.h
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/bearercloud.pro
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/bluetooth.svg
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/cell.svg
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/cloud.cpp
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/cloud.h
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/gprs.svg
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/icons.qrc
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/lan.svg
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/main.cpp
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/umts.svg
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/unknown.svg
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/wlan.svg
%%QT_EXAMPLEDIR%%/svg/network/network.pro
%%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/bubbles.svg
%%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/designer.png
%%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/framebufferobject.pro
%%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/framebufferobject.qrc
%%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/glwidget.cpp
%%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/glwidget.h
%%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/main.cpp
%%QT_EXAMPLEDIR%%/svg/opengl/opengl.pro
%%QT_EXAMPLEDIR%%/svg/richtext/richtext.pro
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/doc/images/textobject-example.png
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/doc/src/textobject.qdoc
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/files/heart.svg
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/main.cpp
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/resources.qrc
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/svgtextobject.cpp
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/svgtextobject.h
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/textobject.pro
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/window.cpp
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/window.h
%%QT_EXAMPLEDIR%%/svg/svg.pro
%%QT_EXAMPLEDIR%%/svg/svggenerator/displaywidget.cpp
%%QT_EXAMPLEDIR%%/svg/svggenerator/displaywidget.h
%%QT_EXAMPLEDIR%%/svg/svggenerator/doc/images/svggenerator-example.png
%%QT_EXAMPLEDIR%%/svg/svggenerator/doc/src/svggenerator.qdoc
%%QT_EXAMPLEDIR%%/svg/svggenerator/forms/window.ui
%%QT_EXAMPLEDIR%%/svg/svggenerator/main.cpp
%%QT_EXAMPLEDIR%%/svg/svggenerator/resources/shapes.dat
%%QT_EXAMPLEDIR%%/svg/svggenerator/svggenerator.pro
%%QT_EXAMPLEDIR%%/svg/svggenerator/svggenerator.qrc
%%QT_EXAMPLEDIR%%/svg/svggenerator/window.cpp
%%QT_EXAMPLEDIR%%/svg/svggenerator/window.h
%%QT_EXAMPLEDIR%%/svg/svgviewer/doc/images/svgviewer-example.png
%%QT_EXAMPLEDIR%%/svg/svgviewer/doc/src/svgviewer.qdoc
+%%QT_EXAMPLEDIR%%/svg/svgviewer/exportdialog.cpp
+%%QT_EXAMPLEDIR%%/svg/svgviewer/exportdialog.h
%%QT_EXAMPLEDIR%%/svg/svgviewer/files/bubbles.svg
%%QT_EXAMPLEDIR%%/svg/svgviewer/files/cubic.svg
%%QT_EXAMPLEDIR%%/svg/svgviewer/files/spheres.svg
%%QT_EXAMPLEDIR%%/svg/svgviewer/main.cpp
%%QT_EXAMPLEDIR%%/svg/svgviewer/mainwindow.cpp
%%QT_EXAMPLEDIR%%/svg/svgviewer/mainwindow.h
%%QT_EXAMPLEDIR%%/svg/svgviewer/svgview.cpp
%%QT_EXAMPLEDIR%%/svg/svgviewer/svgview.h
%%QT_EXAMPLEDIR%%/svg/svgviewer/svgviewer.pro
%%QT_EXAMPLEDIR%%/svg/svgviewer/svgviewer.qrc
%%QT_EXAMPLEDIR%%/touch/dials/dials.pro
%%QT_EXAMPLEDIR%%/touch/dials/dials.ui
%%QT_EXAMPLEDIR%%/touch/dials/doc/images/touch-dials-example.png
%%QT_EXAMPLEDIR%%/touch/dials/doc/src/touch-dials.qdoc
%%QT_EXAMPLEDIR%%/touch/dials/main.cpp
%%QT_EXAMPLEDIR%%/touch/fingerpaint/fingerpaint.pro
%%QT_EXAMPLEDIR%%/touch/fingerpaint/main.cpp
%%QT_EXAMPLEDIR%%/touch/fingerpaint/mainwindow.cpp
%%QT_EXAMPLEDIR%%/touch/fingerpaint/mainwindow.h
%%QT_EXAMPLEDIR%%/touch/fingerpaint/scribblearea.cpp
%%QT_EXAMPLEDIR%%/touch/fingerpaint/scribblearea.h
%%QT_EXAMPLEDIR%%/touch/knobs/doc/images/touch-knobs-example.png
%%QT_EXAMPLEDIR%%/touch/knobs/doc/src/touch-knobs.qdoc
%%QT_EXAMPLEDIR%%/touch/knobs/knob.cpp
%%QT_EXAMPLEDIR%%/touch/knobs/knob.h
%%QT_EXAMPLEDIR%%/touch/knobs/knobs.pro
%%QT_EXAMPLEDIR%%/touch/knobs/main.cpp
%%QT_EXAMPLEDIR%%/touch/pinchzoom/graphicsview.cpp
%%QT_EXAMPLEDIR%%/touch/pinchzoom/graphicsview.h
%%QT_EXAMPLEDIR%%/touch/pinchzoom/images/cheese.jpg
%%QT_EXAMPLEDIR%%/touch/pinchzoom/main.cpp
%%QT_EXAMPLEDIR%%/touch/pinchzoom/mice.qrc
%%QT_EXAMPLEDIR%%/touch/pinchzoom/mouse.cpp
%%QT_EXAMPLEDIR%%/touch/pinchzoom/mouse.h
%%QT_EXAMPLEDIR%%/touch/pinchzoom/pinchzoom.pro
%%QT_EXAMPLEDIR%%/touch/touch.pro
%%QT_EXAMPLEDIR%%/uitools/doc/images/multipleinheritance-example.png
%%QT_EXAMPLEDIR%%/uitools/doc/images/textfinder-example-userinterface.png
%%QT_EXAMPLEDIR%%/uitools/doc/src/multipleinheritance.qdoc
%%QT_EXAMPLEDIR%%/uitools/doc/src/textfinder.qdoc
%%QT_EXAMPLEDIR%%/uitools/multipleinheritance/calculatorform.cpp
%%QT_EXAMPLEDIR%%/uitools/multipleinheritance/calculatorform.h
%%QT_EXAMPLEDIR%%/uitools/multipleinheritance/calculatorform.ui
%%QT_EXAMPLEDIR%%/uitools/multipleinheritance/main.cpp
%%QT_EXAMPLEDIR%%/uitools/multipleinheritance/multipleinheritance.pro
%%QT_EXAMPLEDIR%%/uitools/textfinder/forms/input.txt
%%QT_EXAMPLEDIR%%/uitools/textfinder/forms/textfinder.ui
%%QT_EXAMPLEDIR%%/uitools/textfinder/main.cpp
%%QT_EXAMPLEDIR%%/uitools/textfinder/textfinder.cpp
%%QT_EXAMPLEDIR%%/uitools/textfinder/textfinder.h
%%QT_EXAMPLEDIR%%/uitools/textfinder/textfinder.pro
%%QT_EXAMPLEDIR%%/uitools/textfinder/textfinder.qrc
%%QT_EXAMPLEDIR%%/uitools/uitools.pro
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/Basic.qml
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/basic-b2qt.qml
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/basic.pro
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/AutoScroller.qml
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/FloatingButton_Active.svg
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/FloatingButton_Available.svg
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/FloatingButton_Unavailable.svg
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/HandwritingModeButton.qml
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/ScrollBar.qml
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/TextArea.qml
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/TextBase.qml
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/TextField.qml
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/demo.qrc
+%%QT_EXAMPLEDIR%%/virtualkeyboard/basic/main.cpp
+%%QT_EXAMPLEDIR%%/virtualkeyboard/virtualkeyboard.pro
%%QT_EXAMPLEDIR%%/webchannel/chatclient-html/chatclient-html.pro
%%QT_EXAMPLEDIR%%/webchannel/chatclient-html/chatclient.html
%%QT_EXAMPLEDIR%%/webchannel/chatclient-html/doc/images/chatclient-html.png
%%QT_EXAMPLEDIR%%/webchannel/chatclient-html/doc/src/chatclient-html.qdoc
%%QT_EXAMPLEDIR%%/webchannel/chatclient-qml/chatclient-qml.pro
%%QT_EXAMPLEDIR%%/webchannel/chatclient-qml/doc/images/chatclient-qml.png
%%QT_EXAMPLEDIR%%/webchannel/chatclient-qml/doc/src/chatclient-qml.qdoc
%%QT_EXAMPLEDIR%%/webchannel/chatclient-qml/qmlchatclient.qml
%%QT_EXAMPLEDIR%%/webchannel/chatserver-cpp/chatserver-cpp.pro
%%QT_EXAMPLEDIR%%/webchannel/chatserver-cpp/chatserver.cpp
%%QT_EXAMPLEDIR%%/webchannel/chatserver-cpp/chatserver.h
%%QT_EXAMPLEDIR%%/webchannel/chatserver-cpp/doc/images/chatserver-cpp.png
%%QT_EXAMPLEDIR%%/webchannel/chatserver-cpp/doc/src/chatserver-cpp.qdoc
%%QT_EXAMPLEDIR%%/webchannel/chatserver-cpp/main.cpp
%%QT_EXAMPLEDIR%%/webchannel/exampleassets.pri
%%QT_EXAMPLEDIR%%/webchannel/nodejs/README
%%QT_EXAMPLEDIR%%/webchannel/nodejs/chatclient.js
%%QT_EXAMPLEDIR%%/webchannel/nodejs/nodejs.pro
%%QT_EXAMPLEDIR%%/webchannel/nodejs/package.json
%%QT_EXAMPLEDIR%%/webchannel/qwclient/README
%%QT_EXAMPLEDIR%%/webchannel/qwclient/package.json
%%QT_EXAMPLEDIR%%/webchannel/qwclient/qwclient.js
%%QT_EXAMPLEDIR%%/webchannel/qwclient/qwclient.pro
%%QT_EXAMPLEDIR%%/webchannel/shared/websocketclientwrapper.cpp
%%QT_EXAMPLEDIR%%/webchannel/shared/websocketclientwrapper.h
%%QT_EXAMPLEDIR%%/webchannel/shared/websockettransport.cpp
%%QT_EXAMPLEDIR%%/webchannel/shared/websockettransport.h
%%QT_EXAMPLEDIR%%/webchannel/standalone/dialog.ui
%%QT_EXAMPLEDIR%%/webchannel/standalone/doc/images/standalone-screenshot.png
%%QT_EXAMPLEDIR%%/webchannel/standalone/doc/src/standalone.qdoc
%%QT_EXAMPLEDIR%%/webchannel/standalone/index.html
%%QT_EXAMPLEDIR%%/webchannel/standalone/main.cpp
%%QT_EXAMPLEDIR%%/webchannel/standalone/standalone.pro
%%QT_EXAMPLEDIR%%/webchannel/webchannel.pro
%%QT_EXAMPLEDIR%%/websockets/doc/echoclient.qdoc
%%QT_EXAMPLEDIR%%/websockets/doc/echoserver.qdoc
%%QT_EXAMPLEDIR%%/websockets/doc/examples.qdoc
%%QT_EXAMPLEDIR%%/websockets/doc/images/echoclient-html-example.png
%%QT_EXAMPLEDIR%%/websockets/doc/qmlwebsocketclient.qdoc
%%QT_EXAMPLEDIR%%/websockets/doc/qmlwebsocketserver.qdoc
%%QT_EXAMPLEDIR%%/websockets/doc/simplechat.qdoc
%%QT_EXAMPLEDIR%%/websockets/doc/sslechoclient.qdoc
%%QT_EXAMPLEDIR%%/websockets/doc/sslechoserver.qdoc
%%QT_EXAMPLEDIR%%/websockets/echoclient/echoclient.cpp
%%QT_EXAMPLEDIR%%/websockets/echoclient/echoclient.h
%%QT_EXAMPLEDIR%%/websockets/echoclient/echoclient.pro
%%QT_EXAMPLEDIR%%/websockets/echoclient/main.cpp
%%QT_EXAMPLEDIR%%/websockets/echoserver/echoclient.html
%%QT_EXAMPLEDIR%%/websockets/echoserver/echoserver.cpp
%%QT_EXAMPLEDIR%%/websockets/echoserver/echoserver.h
%%QT_EXAMPLEDIR%%/websockets/echoserver/echoserver.pro
%%QT_EXAMPLEDIR%%/websockets/echoserver/main.cpp
%%QT_EXAMPLEDIR%%/websockets/qmlwebsocketclient/data.qrc
%%QT_EXAMPLEDIR%%/websockets/qmlwebsocketclient/main.cpp
%%QT_EXAMPLEDIR%%/websockets/qmlwebsocketclient/qml/qmlwebsocketclient/main.qml
%%QT_EXAMPLEDIR%%/websockets/qmlwebsocketclient/qmlwebsocketclient.pro
%%QT_EXAMPLEDIR%%/websockets/qmlwebsocketserver/data.qrc
%%QT_EXAMPLEDIR%%/websockets/qmlwebsocketserver/main.cpp
%%QT_EXAMPLEDIR%%/websockets/qmlwebsocketserver/qml/qmlwebsocketserver/main.qml
%%QT_EXAMPLEDIR%%/websockets/qmlwebsocketserver/qmlwebsocketserver.pro
%%QT_EXAMPLEDIR%%/websockets/simplechat/chatclient.html
%%QT_EXAMPLEDIR%%/websockets/simplechat/chatserver.cpp
%%QT_EXAMPLEDIR%%/websockets/simplechat/chatserver.h
%%QT_EXAMPLEDIR%%/websockets/simplechat/main.cpp
%%QT_EXAMPLEDIR%%/websockets/simplechat/simplechat.pro
%%QT_EXAMPLEDIR%%/websockets/sslechoclient/main.cpp
%%QT_EXAMPLEDIR%%/websockets/sslechoclient/sslechoclient.cpp
%%QT_EXAMPLEDIR%%/websockets/sslechoclient/sslechoclient.h
%%QT_EXAMPLEDIR%%/websockets/sslechoclient/sslechoclient.pro
%%QT_EXAMPLEDIR%%/websockets/sslechoserver/localhost.cert
%%QT_EXAMPLEDIR%%/websockets/sslechoserver/localhost.key
%%QT_EXAMPLEDIR%%/websockets/sslechoserver/main.cpp
%%QT_EXAMPLEDIR%%/websockets/sslechoserver/securesocketclient.qrc
%%QT_EXAMPLEDIR%%/websockets/sslechoserver/sslechoclient.html
%%QT_EXAMPLEDIR%%/websockets/sslechoserver/sslechoserver.cpp
%%QT_EXAMPLEDIR%%/websockets/sslechoserver/sslechoserver.h
%%QT_EXAMPLEDIR%%/websockets/sslechoserver/sslechoserver.pro
%%QT_EXAMPLEDIR%%/websockets/websockets.pro
%%QT_EXAMPLEDIR%%/widgets/animation/README
%%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/animatedtiles.pro
%%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/animatedtiles.qrc
%%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/Time-For-Lunch-2.jpg
%%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/centered.png
%%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/ellipse.png
%%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/figure8.png
%%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/kinetic.png
%%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/random.png
%%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/tile.png
%%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/main.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/animation.pro
%%QT_EXAMPLEDIR%%/widgets/animation/appchooser/accessories-dictionary.png
%%QT_EXAMPLEDIR%%/widgets/animation/appchooser/akregator.png
%%QT_EXAMPLEDIR%%/widgets/animation/appchooser/appchooser.pro
%%QT_EXAMPLEDIR%%/widgets/animation/appchooser/appchooser.qrc
%%QT_EXAMPLEDIR%%/widgets/animation/appchooser/digikam.png
%%QT_EXAMPLEDIR%%/widgets/animation/appchooser/k3b.png
%%QT_EXAMPLEDIR%%/widgets/animation/appchooser/main.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/easing/animation.h
%%QT_EXAMPLEDIR%%/widgets/animation/easing/easing.pro
%%QT_EXAMPLEDIR%%/widgets/animation/easing/easing.qrc
%%QT_EXAMPLEDIR%%/widgets/animation/easing/form.ui
%%QT_EXAMPLEDIR%%/widgets/animation/easing/images/qt-logo.png
%%QT_EXAMPLEDIR%%/widgets/animation/easing/main.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/easing/window.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/easing/window.h
%%QT_EXAMPLEDIR%%/widgets/animation/moveblocks/main.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/moveblocks/moveblocks.pro
%%QT_EXAMPLEDIR%%/widgets/animation/states/accessories-dictionary.png
%%QT_EXAMPLEDIR%%/widgets/animation/states/akregator.png
%%QT_EXAMPLEDIR%%/widgets/animation/states/digikam.png
%%QT_EXAMPLEDIR%%/widgets/animation/states/help-browser.png
%%QT_EXAMPLEDIR%%/widgets/animation/states/k3b.png
%%QT_EXAMPLEDIR%%/widgets/animation/states/kchart.png
%%QT_EXAMPLEDIR%%/widgets/animation/states/main.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/states/states.pro
%%QT_EXAMPLEDIR%%/widgets/animation/states/states.qrc
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/animation.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/animation.h
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/animations/chilling.bin
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/animations/dancing.bin
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/animations/dead.bin
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/animations/jumping.bin
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/graphicsview.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/graphicsview.h
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/lifecycle.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/lifecycle.h
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/main.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/node.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/node.h
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/rectbutton.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/rectbutton.h
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/stickman.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/stickman.h
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/stickman.pro
%%QT_EXAMPLEDIR%%/widgets/animation/stickman/stickman.qrc
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/animationmanager.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/animationmanager.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/boat.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/boat.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/boat_p.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/bomb.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/bomb.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/data.xml
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/graphicsscene.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/graphicsscene.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/main.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/background.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/boat.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/bomb.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/boat/step1.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/boat/step2.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/boat/step3.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/boat/step4.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/submarine/step1.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/submarine/step2.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/submarine/step3.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/submarine/step4.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/submarine.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/surface.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/torpedo.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/background-n810.svg
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/background.svg
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/boat.svg
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/bomb.svg
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/sand.svg
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/see.svg
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/sky.svg
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/sub-attaq.svg
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/submarine.svg
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/surface.svg
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/torpedo.svg
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/small/background.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/small/boat.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/small/bomb.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/small/submarine.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/small/surface.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/small/torpedo.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-a.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-a2.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-b.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-dash.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-excl.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-q.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-s.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-t.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-t2.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-u.png
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pixmapitem.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pixmapitem.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/progressitem.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/progressitem.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/qanimationstate.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/qanimationstate.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/states.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/states.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/sub-attaq.pro
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/subattaq.qrc
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/submarine.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/submarine.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/submarine_p.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/textinformationitem.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/textinformationitem.h
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/torpedo.cpp
%%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/torpedo.h
%%QT_EXAMPLEDIR%%/widgets/desktop/README
%%QT_EXAMPLEDIR%%/widgets/desktop/desktop.pro
%%QT_EXAMPLEDIR%%/widgets/desktop/screenshot/main.cpp
%%QT_EXAMPLEDIR%%/widgets/desktop/screenshot/screenshot.cpp
%%QT_EXAMPLEDIR%%/widgets/desktop/screenshot/screenshot.h
%%QT_EXAMPLEDIR%%/widgets/desktop/screenshot/screenshot.pro
%%QT_EXAMPLEDIR%%/widgets/desktop/systray/doc/images/systemtray-editor.png
%%QT_EXAMPLEDIR%%/widgets/desktop/systray/doc/images/systemtray-example.png
%%QT_EXAMPLEDIR%%/widgets/desktop/systray/doc/src/systray.qdoc
%%QT_EXAMPLEDIR%%/widgets/desktop/systray/images/bad.png
%%QT_EXAMPLEDIR%%/widgets/desktop/systray/images/heart.png
%%QT_EXAMPLEDIR%%/widgets/desktop/systray/images/trash.png
%%QT_EXAMPLEDIR%%/widgets/desktop/systray/main.cpp
%%QT_EXAMPLEDIR%%/widgets/desktop/systray/systray.pro
%%QT_EXAMPLEDIR%%/widgets/desktop/systray/systray.qrc
%%QT_EXAMPLEDIR%%/widgets/desktop/systray/window.cpp
%%QT_EXAMPLEDIR%%/widgets/desktop/systray/window.h
%%QT_EXAMPLEDIR%%/widgets/dialogs/README
%%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/classwizard.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/classwizard.h
%%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/classwizard.pro
%%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/classwizard.qrc
%%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/background.png
%%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/banner.png
%%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/logo1.png
%%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/logo2.png
%%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/logo3.png
%%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/watermark1.png
%%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/watermark2.png
%%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/main.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/configdialog/configdialog.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/configdialog/configdialog.h
%%QT_EXAMPLEDIR%%/widgets/dialogs/configdialog/configdialog.pro
%%QT_EXAMPLEDIR%%/widgets/dialogs/configdialog/configdialog.qrc
%%QT_EXAMPLEDIR%%/widgets/dialogs/configdialog/images/config.png
%%QT_EXAMPLEDIR%%/widgets/dialogs/configdialog/images/query.png
%%QT_EXAMPLEDIR%%/widgets/dialogs/configdialog/images/update.png
%%QT_EXAMPLEDIR%%/widgets/dialogs/configdialog/main.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/configdialog/pages.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/configdialog/pages.h
%%QT_EXAMPLEDIR%%/widgets/dialogs/dialogs.pro
%%QT_EXAMPLEDIR%%/widgets/dialogs/extension/extension.pro
%%QT_EXAMPLEDIR%%/widgets/dialogs/extension/finddialog.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/extension/finddialog.h
%%QT_EXAMPLEDIR%%/widgets/dialogs/extension/main.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/findfiles/findfiles.pro
%%QT_EXAMPLEDIR%%/widgets/dialogs/findfiles/main.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/findfiles/window.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/findfiles/window.h
%%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/images/logo.png
%%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/images/watermark.png
%%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/licensewizard.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/licensewizard.h
%%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/licensewizard.pro
%%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/licensewizard.qrc
%%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/main.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/sipdialog/dialog.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/sipdialog/dialog.h
%%QT_EXAMPLEDIR%%/widgets/dialogs/sipdialog/main.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/sipdialog/sipdialog.pro
%%QT_EXAMPLEDIR%%/widgets/dialogs/standarddialogs/dialog.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/standarddialogs/dialog.h
%%QT_EXAMPLEDIR%%/widgets/dialogs/standarddialogs/main.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/standarddialogs/standarddialogs.pro
%%QT_EXAMPLEDIR%%/widgets/dialogs/tabdialog/main.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/tabdialog/tabdialog.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/tabdialog/tabdialog.h
%%QT_EXAMPLEDIR%%/widgets/dialogs/tabdialog/tabdialog.pro
%%QT_EXAMPLEDIR%%/widgets/dialogs/trivialwizard/trivialwizard.cpp
%%QT_EXAMPLEDIR%%/widgets/dialogs/trivialwizard/trivialwizard.pro
%%QT_EXAMPLEDIR%%/widgets/doc/dropsite.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-adddialog.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-classes.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-editdialog.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-filemenu.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-newaddresstab.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-signals.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-toolsmenu.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/analogclock-viewport.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/basicgraphicslayouts-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/basiclayouts-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/calendar-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/collidingmice-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/completer-example-country.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/completer-example-dirmodel.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/completer-example-qdirmodel.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/completer-example-word.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/completer-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/draganddroppuzzle-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/dropsite-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/echopluginexample.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/factorial-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/fademessageeffect-example-faded.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/fademessageeffect-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/fridgemagnets-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/geometry.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/graphicsanchorlayout-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/graphicsflowlayout-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/graphicssimpleanchorlayout-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/icons_monkey.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/icons_monkey_mess.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_16x16.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_17x17.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_32x32.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_33x33.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_48x48.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_64x64.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_8x8.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/imagegestures-example.jpg
%%QT_EXAMPLEDIR%%/widgets/doc/images/imageviewer-fit_to_window_1.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/imageviewer-fit_to_window_2.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/imageviewer-original_size.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/imageviewer-zoom_in_1.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/imageviewer-zoom_in_2.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/itemviews-editabletreemodel-indexes.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/itemviews-editabletreemodel-items.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/itemviews-editabletreemodel-model.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/itemviews-editabletreemodel-values.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/itemviews-editabletreemodel.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/itemviewspuzzle-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/layout1.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/layout2.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/mainwindow-demo.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/mousebutton-buttontester.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/orderform-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/pingpong-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/plugandpaint-plugindialog.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/plugandpaint.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/regexp-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/regularexpression-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/settingseditor-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/sipdialog-closed.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/sipdialog-opened.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/stylepluginexample.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/stylesheet-pagefold.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/systemtray-editor.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/systemtray-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/textedit-demo.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/trafficlight-example1.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/trafficlight-example2.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/treemodel-structure.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/treemodelcompleter-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/undodemo.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/undoframeworkexample.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/weatheranchorlayout-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/mousebuttons.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/addressbook-tutorial.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/addressbook.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/affine.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/analogclock.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/animatedtiles.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/appchooser.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/application.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/basicdrawing.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/basicgraphicslayouts.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/basiclayouts.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/basicsortfiltermodel.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/blurpicker.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/borderlayout.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/boxes.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/calculator.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/calendar.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/calendarwidget.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/charactermap.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/chart.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/chip.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/classwizard.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/codeeditor.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/collidingmice-example.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/coloreditorfactory.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/combowidgetmapper.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/completer.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/composition.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/concentriccircles.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/configdialog.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/customsortfiltermodel.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/deform.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/diagramscene.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/digitalclock.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/dirview.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/dockwidgets.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/draganddroppuzzle.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/dragdroprobot.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/draggableicons.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/draggabletext.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/dynamiclayouts.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/easing.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/echoplugin.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/editabletreemodel.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/elasticnodes.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/elidedlabel.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/embeddeddialogs.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/eventtransitions.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/extension.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/factorial.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/fademessage.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/fetchmore.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/findfiles.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/flowlayout.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/fontsampler.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/fridgemagnets.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/frozencolumn.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/gradients.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/graphicsview-anchorlayout.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/graphicsview-flowlayout.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/graphicsview-simpleanchorlayout.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/graphicsview-weatheranchorlayout.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/groupbox.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/i18n.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/icons.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/imagecomposition.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/imageviewer.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/interview.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/itemviewspuzzle.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/licensewizard.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/lighting.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/lineedits.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/mainwindow.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/mdi.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/menus.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/moveblocks.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/movie.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/orderform.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/padnavigator.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/painterpaths.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/pathstroke.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/pingpong.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/pixelator.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/plugandpaint.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/regexp.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/regularexpression.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/rogue.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/screenshot.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/scribble.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/sdi.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/settingseditor.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/shapedclock.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/simpledommodel.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/simpletreemodel.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/simplewidgetmapper.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/sipdialog.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/sliders.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/spinboxdelegate.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/spinboxes.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/spreadsheet.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/standarddialogs.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/stardelegate.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/states.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/stickman.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/styleplugin.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/styles.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/stylesheet.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/sub-attaq.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/syntaxhighlighter.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/tabdialog.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/tablet.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/tetrix.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/textedit.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/tooltips.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/trafficlight.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/transformations.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/treemodelcompleter.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/trivialwizard.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/twowaybutton.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/undo.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/undoframework.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/validators.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/wiggly.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/windowflags.qdoc
%%QT_EXAMPLEDIR%%/widgets/draganddrop/README
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draganddrop.pro
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/draggableicons.pro
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/draggableicons.qrc
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/dragwidget.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/dragwidget.h
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/images/boat.png
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/images/car.png
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/images/house.png
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/main.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/draggabletext.pro
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/draggabletext.qrc
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/dragwidget.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/dragwidget.h
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/main.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/words.txt
%%QT_EXAMPLEDIR%%/widgets/draganddrop/dropsite/droparea.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/dropsite/droparea.h
%%QT_EXAMPLEDIR%%/widgets/draganddrop/dropsite/dropsite.pro
%%QT_EXAMPLEDIR%%/widgets/draganddrop/dropsite/dropsitewindow.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/dropsite/dropsitewindow.h
%%QT_EXAMPLEDIR%%/widgets/draganddrop/dropsite/main.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/draglabel.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/draglabel.h
%%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/dragwidget.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/dragwidget.h
%%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/fridgemagnets.pro
%%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/fridgemagnets.qrc
%%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/main.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/words.txt
%%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/example.jpg
%%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/main.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/pieceslist.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/pieceslist.h
%%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/puzzle.pro
%%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/puzzle.qrc
%%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/puzzlewidget.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/puzzlewidget.h
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/blureffect.cpp
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/blureffect.h
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/blurpicker.cpp
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/blurpicker.h
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/blurpicker.pro
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/blurpicker.qrc
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/README.txt
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/accessories-calculator.png
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/accessories-text-editor.png
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/background.jpg
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/help-browser.png
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/internet-group-chat.png
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/internet-mail.png
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/internet-web-browser.png
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/office-calendar.png
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/system-users.png
%%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/main.cpp
%%QT_EXAMPLEDIR%%/widgets/effects/effects.pro
%%QT_EXAMPLEDIR%%/widgets/effects/fademessage/README
%%QT_EXAMPLEDIR%%/widgets/effects/fademessage/background.jpg
%%QT_EXAMPLEDIR%%/widgets/effects/fademessage/fademessage.cpp
%%QT_EXAMPLEDIR%%/widgets/effects/fademessage/fademessage.h
%%QT_EXAMPLEDIR%%/widgets/effects/fademessage/fademessage.pro
%%QT_EXAMPLEDIR%%/widgets/effects/fademessage/fademessage.qrc
%%QT_EXAMPLEDIR%%/widgets/effects/fademessage/main.cpp
%%QT_EXAMPLEDIR%%/widgets/effects/lighting/lighting.cpp
%%QT_EXAMPLEDIR%%/widgets/effects/lighting/lighting.h
%%QT_EXAMPLEDIR%%/widgets/effects/lighting/lighting.pro
%%QT_EXAMPLEDIR%%/widgets/effects/lighting/main.cpp
%%QT_EXAMPLEDIR%%/widgets/gestures/gestures.pro
%%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/doc/src/imagegestures.qdoc
%%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/imagegestures.pro
%%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/imagewidget.cpp
%%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/imagewidget.h
%%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/main.cpp
%%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/mainwidget.cpp
%%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/mainwidget.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/README
%%QT_EXAMPLEDIR%%/widgets/graphicsview/anchorlayout/anchorlayout.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/anchorlayout/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/basicgraphicslayouts.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/basicgraphicslayouts.qrc
%%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/images/block.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/layoutitem.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/layoutitem.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/window.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/window.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/3rdparty/fbm.c
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/3rdparty/fbm.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/basic.fsh
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/basic.vsh
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/boxes.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/boxes.qrc
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/cubemap_negx.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/cubemap_negy.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/cubemap_negz.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/cubemap_posx.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/cubemap_posy.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/cubemap_posz.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/dotted.fsh
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/fresnel.fsh
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/glass.fsh
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/glbuffers.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/glbuffers.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/glextensions.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/glextensions.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/gltrianglemesh.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/granite.fsh
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/marble.fsh
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/parameters.par
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/qt-logo.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/qt-logo.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/qtbox.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/qtbox.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/reflection.fsh
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/refraction.fsh
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/roundedbox.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/roundedbox.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/scene.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/scene.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/smiley.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/square.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/trackball.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/trackball.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/wood.fsh
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/chip.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/chip.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/chip.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/fileprint.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/images.qrc
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/qt4logo.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/rotateleft.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/rotateright.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/view.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/view.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/zoomin.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/zoomout.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/collidingmice/collidingmice.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/collidingmice/images/cheese.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/collidingmice/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/collidingmice/mice.qrc
%%QT_EXAMPLEDIR%%/widgets/graphicsview/collidingmice/mouse.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/collidingmice/mouse.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/arrow.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/arrow.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramitem.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramitem.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramscene.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramscene.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramscene.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramscene.qrc
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramtextitem.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramtextitem.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/background1.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/background2.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/background3.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/background4.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/bold.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/bringtofront.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/delete.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/floodfill.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/italic.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/linecolor.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/linepointer.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/pointer.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/sendtoback.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/textpointer.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/underline.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/coloritem.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/coloritem.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/dragdroprobot.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/images/head.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/robot.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/robot.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/robot.qrc
%%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/edge.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/edge.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/elasticnodes.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/graphwidget.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/graphwidget.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/node.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/node.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/No-Ones-Laughing-3.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/customproxy.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/customproxy.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/embeddeddialog.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/embeddeddialog.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/embeddeddialog.ui
%%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/embeddeddialogs.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/embeddeddialogs.qrc
%%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/flowlayout/flowlayout.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/flowlayout/flowlayout.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/flowlayout/flowlayout.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/flowlayout/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/flowlayout/window.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/flowlayout/window.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/graphicsview.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/flippablepad.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/flippablepad.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/form.ui
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/artsfftscope.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/blue_angle_swirl.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/kontact_contacts.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/kontact_journal.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/kontact_mail.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/kontact_notes.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/kopeteavailable.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/metacontact_online.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/minitools.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/padnavigator.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/padnavigator.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/padnavigator.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/padnavigator.qrc
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/roundrectitem.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/roundrectitem.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/splashitem.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/splashitem.h
%%QT_EXAMPLEDIR%%/widgets/graphicsview/simpleanchorlayout/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/simpleanchorlayout/simpleanchorlayout.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/images/5days.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/images/details.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/images/place.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/images/tabbar.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/images/title.jpg
%%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/images/weather-few-clouds.png
%%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/main.cpp
%%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/weatheranchorlayout.pro
%%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/weatheranchorlayout.qrc
%%QT_EXAMPLEDIR%%/widgets/itemviews/README
%%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/adddialog.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/adddialog.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/addressbook.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/addresswidget.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/addresswidget.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/newaddresstab.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/newaddresstab.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/tablemodel.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/tablemodel.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/basicsortfiltermodel/basicsortfiltermodel.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/basicsortfiltermodel/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/basicsortfiltermodel/window.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/basicsortfiltermodel/window.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/chart/chart.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/chart/chart.qrc
%%QT_EXAMPLEDIR%%/widgets/itemviews/chart/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/chart/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/chart/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/chart/pieview.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/chart/pieview.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/chart/qtdata.cht
%%QT_EXAMPLEDIR%%/widgets/itemviews/coloreditorfactory/coloreditorfactory.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/coloreditorfactory/colorlisteditor.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/coloreditorfactory/colorlisteditor.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/coloreditorfactory/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/coloreditorfactory/window.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/coloreditorfactory/window.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/combowidgetmapper/combowidgetmapper.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/combowidgetmapper/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/combowidgetmapper/window.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/combowidgetmapper/window.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/customsortfiltermodel.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/customsortfiltermodel.qrc
%%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/filterwidget.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/filterwidget.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/images/find.png
%%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/mysortfilterproxymodel.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/window.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/window.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/dirview/dirview.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/dirview/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/default.txt
%%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/editabletreemodel.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/editabletreemodel.qrc
%%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/mainwindow.ui
%%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/treeitem.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/treeitem.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/treemodel.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/treemodel.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/fetchmore/fetchmore.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/fetchmore/filelistmodel.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/fetchmore/filelistmodel.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/fetchmore/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/fetchmore/window.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/fetchmore/window.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/frozencolumn/freezetablewidget.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/frozencolumn/freezetablewidget.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/frozencolumn/frozencolumn.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/frozencolumn/grades.qrc
%%QT_EXAMPLEDIR%%/widgets/itemviews/frozencolumn/grades.txt
%%QT_EXAMPLEDIR%%/widgets/itemviews/frozencolumn/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/interview/README
%%QT_EXAMPLEDIR%%/widgets/itemviews/interview/images/folder.png
%%QT_EXAMPLEDIR%%/widgets/itemviews/interview/images/interview.png
%%QT_EXAMPLEDIR%%/widgets/itemviews/interview/images/services.png
%%QT_EXAMPLEDIR%%/widgets/itemviews/interview/interview.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/interview/interview.qrc
%%QT_EXAMPLEDIR%%/widgets/itemviews/interview/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/interview/model.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/interview/model.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/itemviews.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/imagemodel.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/imagemodel.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/images.qrc
%%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/images/qt.png
%%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/pixelator.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/pixeldelegate.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/pixeldelegate.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/example.jpg
%%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/piecesmodel.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/piecesmodel.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/puzzle.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/puzzle.qrc
%%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/puzzlewidget.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/puzzlewidget.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/domitem.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/domitem.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/dommodel.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/dommodel.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/simpledommodel.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/default.txt
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/simpletreemodel.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/simpletreemodel.qrc
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/treeitem.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/treeitem.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/treemodel.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/treemodel.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/simplewidgetmapper/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/simplewidgetmapper/simplewidgetmapper.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/simplewidgetmapper/window.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/simplewidgetmapper/window.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/spinboxdelegate/delegate.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/spinboxdelegate/delegate.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/spinboxdelegate/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/spinboxdelegate/spinboxdelegate.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/images/interview.png
%%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/printview.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/printview.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheet.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheet.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheet.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheet.qrc
%%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheetdelegate.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheetdelegate.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheetitem.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheetitem.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/stardelegate.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/stardelegate.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/stardelegate.pro
%%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/stareditor.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/stareditor.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/starrating.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/starrating.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/storageview/main.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/storageview/storagemodel.cpp
%%QT_EXAMPLEDIR%%/widgets/itemviews/storageview/storagemodel.h
%%QT_EXAMPLEDIR%%/widgets/itemviews/storageview/storageview.pro
%%QT_EXAMPLEDIR%%/widgets/layouts/README
%%QT_EXAMPLEDIR%%/widgets/layouts/basiclayouts/basiclayouts.pro
%%QT_EXAMPLEDIR%%/widgets/layouts/basiclayouts/dialog.cpp
%%QT_EXAMPLEDIR%%/widgets/layouts/basiclayouts/dialog.h
%%QT_EXAMPLEDIR%%/widgets/layouts/basiclayouts/main.cpp
%%QT_EXAMPLEDIR%%/widgets/layouts/borderlayout/borderlayout.cpp
%%QT_EXAMPLEDIR%%/widgets/layouts/borderlayout/borderlayout.h
%%QT_EXAMPLEDIR%%/widgets/layouts/borderlayout/borderlayout.pro
%%QT_EXAMPLEDIR%%/widgets/layouts/borderlayout/main.cpp
%%QT_EXAMPLEDIR%%/widgets/layouts/borderlayout/window.cpp
%%QT_EXAMPLEDIR%%/widgets/layouts/borderlayout/window.h
%%QT_EXAMPLEDIR%%/widgets/layouts/dynamiclayouts/dialog.cpp
%%QT_EXAMPLEDIR%%/widgets/layouts/dynamiclayouts/dialog.h
%%QT_EXAMPLEDIR%%/widgets/layouts/dynamiclayouts/dynamiclayouts.pro
%%QT_EXAMPLEDIR%%/widgets/layouts/dynamiclayouts/main.cpp
%%QT_EXAMPLEDIR%%/widgets/layouts/flowlayout/flowlayout.cpp
%%QT_EXAMPLEDIR%%/widgets/layouts/flowlayout/flowlayout.h
%%QT_EXAMPLEDIR%%/widgets/layouts/flowlayout/flowlayout.pro
%%QT_EXAMPLEDIR%%/widgets/layouts/flowlayout/main.cpp
%%QT_EXAMPLEDIR%%/widgets/layouts/flowlayout/window.cpp
%%QT_EXAMPLEDIR%%/widgets/layouts/flowlayout/window.h
%%QT_EXAMPLEDIR%%/widgets/layouts/layouts.pro
%%QT_EXAMPLEDIR%%/widgets/mac/mac.pro
%%QT_EXAMPLEDIR%%/widgets/mac/qmaccocoaviewcontainer/main.mm
%%QT_EXAMPLEDIR%%/widgets/mac/qmaccocoaviewcontainer/qmaccocoaviewcontainer.pro
%%QT_EXAMPLEDIR%%/widgets/mac/qmacnativewidget/main.mm
%%QT_EXAMPLEDIR%%/widgets/mac/qmacnativewidget/qmacnativewidget.pro
%%QT_EXAMPLEDIR%%/widgets/mainwindows/README
%%QT_EXAMPLEDIR%%/widgets/mainwindows/application/application.pro
%%QT_EXAMPLEDIR%%/widgets/mainwindows/application/application.qrc
%%QT_EXAMPLEDIR%%/widgets/mainwindows/application/images/copy.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/application/images/cut.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/application/images/new.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/application/images/open.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/application/images/paste.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/application/images/save.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/application/main.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/application/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/application/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/dockwidgets.pro
%%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/dockwidgets.qrc
%%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/images/new.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/images/print.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/images/save.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/images/undo.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/main.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/colorswatch.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/colorswatch.h
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/main.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/mainwindow.pro
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/mainwindow.qrc
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/qt.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/titlebarCenter.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/titlebarLeft.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/titlebarRight.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/toolbar.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/toolbar.h
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindows.pro
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/images/copy.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/images/cut.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/images/new.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/images/open.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/images/paste.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/images/save.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/main.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/mdi.pro
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/mdi.qrc
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/mdichild.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/mdichild.h
%%QT_EXAMPLEDIR%%/widgets/mainwindows/menus/main.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/menus/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/menus/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/mainwindows/menus/menus.pro
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/copy.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/cut.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/new.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/open.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/paste.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/save.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/main.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/sdi.pro
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/sdi.qrc
%%QT_EXAMPLEDIR%%/widgets/painting/README
%%QT_EXAMPLEDIR%%/widgets/painting/affine/affine.pro
%%QT_EXAMPLEDIR%%/widgets/painting/affine/affine.qrc
%%QT_EXAMPLEDIR%%/widgets/painting/affine/bg1.jpg
%%QT_EXAMPLEDIR%%/widgets/painting/affine/main.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/affine/xform.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/affine/xform.h
%%QT_EXAMPLEDIR%%/widgets/painting/affine/xform.html
%%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/basicdrawing.pro
%%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/basicdrawing.qrc
%%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/images/brick.png
%%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/images/qt-logo.png
%%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/main.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/renderarea.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/renderarea.h
%%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/window.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/window.h
%%QT_EXAMPLEDIR%%/widgets/painting/composition/composition.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/composition/composition.h
%%QT_EXAMPLEDIR%%/widgets/painting/composition/composition.html
%%QT_EXAMPLEDIR%%/widgets/painting/composition/composition.pro
%%QT_EXAMPLEDIR%%/widgets/painting/composition/composition.qrc
%%QT_EXAMPLEDIR%%/widgets/painting/composition/flower.jpg
%%QT_EXAMPLEDIR%%/widgets/painting/composition/flower_alpha.jpg
%%QT_EXAMPLEDIR%%/widgets/painting/composition/main.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/concentriccircles/circlewidget.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/concentriccircles/circlewidget.h
%%QT_EXAMPLEDIR%%/widgets/painting/concentriccircles/concentriccircles.pro
%%QT_EXAMPLEDIR%%/widgets/painting/concentriccircles/main.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/concentriccircles/window.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/concentriccircles/window.h
%%QT_EXAMPLEDIR%%/widgets/painting/deform/deform.pro
%%QT_EXAMPLEDIR%%/widgets/painting/deform/deform.qrc
%%QT_EXAMPLEDIR%%/widgets/painting/deform/main.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/deform/pathdeform.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/deform/pathdeform.h
%%QT_EXAMPLEDIR%%/widgets/painting/deform/pathdeform.html
%%QT_EXAMPLEDIR%%/widgets/painting/fontsampler/fontsampler.pro
%%QT_EXAMPLEDIR%%/widgets/painting/fontsampler/main.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/fontsampler/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/fontsampler/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/painting/fontsampler/mainwindowbase.ui
%%QT_EXAMPLEDIR%%/widgets/painting/gradients/gradients.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/gradients/gradients.h
%%QT_EXAMPLEDIR%%/widgets/painting/gradients/gradients.html
%%QT_EXAMPLEDIR%%/widgets/painting/gradients/gradients.pro
%%QT_EXAMPLEDIR%%/widgets/painting/gradients/gradients.qrc
%%QT_EXAMPLEDIR%%/widgets/painting/gradients/main.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/imagecomposer.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/imagecomposer.h
%%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/imagecomposition.pro
%%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/imagecomposition.qrc
%%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/images/background.png
%%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/images/blackrectangle.png
%%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/images/butterfly.png
%%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/images/checker.png
%%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/main.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/painterpaths/main.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/painterpaths/painterpaths.pro
%%QT_EXAMPLEDIR%%/widgets/painting/painterpaths/renderarea.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/painterpaths/renderarea.h
%%QT_EXAMPLEDIR%%/widgets/painting/painterpaths/window.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/painterpaths/window.h
%%QT_EXAMPLEDIR%%/widgets/painting/painting.pro
%%QT_EXAMPLEDIR%%/widgets/painting/pathstroke/main.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/pathstroke/pathstroke.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/pathstroke/pathstroke.h
%%QT_EXAMPLEDIR%%/widgets/painting/pathstroke/pathstroke.html
%%QT_EXAMPLEDIR%%/widgets/painting/pathstroke/pathstroke.pro
%%QT_EXAMPLEDIR%%/widgets/painting/pathstroke/pathstroke.qrc
%%QT_EXAMPLEDIR%%/widgets/painting/shared/arthurstyle.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/shared/arthurstyle.h
%%QT_EXAMPLEDIR%%/widgets/painting/shared/arthurwidgets.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/shared/arthurwidgets.h
%%QT_EXAMPLEDIR%%/widgets/painting/shared/hoverpoints.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/shared/hoverpoints.h
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/bg_pattern.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/button_normal_cap_left.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/button_normal_cap_right.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/button_normal_stretch.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/button_pressed_cap_left.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/button_pressed_cap_right.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/button_pressed_stretch.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/curve_thing_edit-6.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_bottom.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_bottomleft.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_bottomright.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_left.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_right.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_top.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_topleft.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_topright.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_bottom_left.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_bottom_right.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_bottom_stretch.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_left_stretch.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_right_stretch.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_top_stretch.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_topleft.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_topright.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/line_dash_dot.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/line_dash_dot_dot.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/line_dashed.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/line_dotted.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/line_solid.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/radiobutton-off.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/radiobutton-on.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/radiobutton_off.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/radiobutton_on.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/slider_bar.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/slider_thumb_off.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/slider_thumb_on.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/title_cap_left.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/title_cap_right.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/images/title_stretch.png
%%QT_EXAMPLEDIR%%/widgets/painting/shared/shared.pri
%%QT_EXAMPLEDIR%%/widgets/painting/shared/shared.qrc
%%QT_EXAMPLEDIR%%/widgets/painting/transformations/main.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/transformations/renderarea.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/transformations/renderarea.h
%%QT_EXAMPLEDIR%%/widgets/painting/transformations/transformations.pro
%%QT_EXAMPLEDIR%%/widgets/painting/transformations/window.cpp
%%QT_EXAMPLEDIR%%/widgets/painting/transformations/window.h
+%%QT_EXAMPLEDIR%%/qt3d/materials/Lights.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/+material/back.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/+material/back@2x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/+material/back@3x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/+material/back@4x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/back.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/back@2x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/back@3x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/back@4x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/ScrollablePage.qml
%%QT_EXAMPLEDIR%%/widgets/richtext/README
%%QT_EXAMPLEDIR%%/widgets/richtext/calendar/calendar.pro
%%QT_EXAMPLEDIR%%/widgets/richtext/calendar/main.cpp
%%QT_EXAMPLEDIR%%/widgets/richtext/calendar/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/richtext/calendar/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/richtext/orderform/detailsdialog.cpp
%%QT_EXAMPLEDIR%%/widgets/richtext/orderform/detailsdialog.h
%%QT_EXAMPLEDIR%%/widgets/richtext/orderform/main.cpp
%%QT_EXAMPLEDIR%%/widgets/richtext/orderform/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/richtext/orderform/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/richtext/orderform/orderform.pro
%%QT_EXAMPLEDIR%%/widgets/richtext/richtext.pro
%%QT_EXAMPLEDIR%%/widgets/richtext/syntaxhighlighter/highlighter.cpp
%%QT_EXAMPLEDIR%%/widgets/richtext/syntaxhighlighter/highlighter.h
%%QT_EXAMPLEDIR%%/widgets/richtext/syntaxhighlighter/main.cpp
%%QT_EXAMPLEDIR%%/widgets/richtext/syntaxhighlighter/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/richtext/syntaxhighlighter/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/richtext/syntaxhighlighter/syntaxhighlighter.pro
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/example.html
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/logo32.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/editcopy.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/editcut.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/editpaste.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/editredo.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/editundo.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/exportpdf.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/filenew.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/fileopen.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/fileprint.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/filesave.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textbold.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textcenter.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textitalic.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textjustify.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textleft.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textright.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textunder.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/zoomin.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/zoomout.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/editcopy.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/editcut.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/editpaste.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/editredo.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/editundo.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/exportpdf.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/filenew.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/fileopen.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/fileprint.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/filesave.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textbold.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textcenter.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textitalic.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textjustify.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textleft.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textright.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textunder.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/zoomin.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/zoomout.png
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/main.cpp
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/textedit.cpp
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/textedit.h
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/textedit.pro
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/textedit.qdoc
%%QT_EXAMPLEDIR%%/widgets/richtext/textedit/textedit.qrc
%%QT_EXAMPLEDIR%%/widgets/scroller/graphicsview/graphicsview.pro
%%QT_EXAMPLEDIR%%/widgets/scroller/graphicsview/main.cpp
%%QT_EXAMPLEDIR%%/widgets/scroller/scroller.pro
%%QT_EXAMPLEDIR%%/widgets/statemachine/README
%%QT_EXAMPLEDIR%%/widgets/statemachine/eventtransitions/eventtransitions.pro
%%QT_EXAMPLEDIR%%/widgets/statemachine/eventtransitions/main.cpp
%%QT_EXAMPLEDIR%%/widgets/statemachine/factorial/factorial.pro
%%QT_EXAMPLEDIR%%/widgets/statemachine/factorial/main.cpp
%%QT_EXAMPLEDIR%%/widgets/statemachine/pingpong/main.cpp
%%QT_EXAMPLEDIR%%/widgets/statemachine/pingpong/pingpong.pro
%%QT_EXAMPLEDIR%%/widgets/statemachine/rogue/main.cpp
%%QT_EXAMPLEDIR%%/widgets/statemachine/rogue/movementtransition.h
%%QT_EXAMPLEDIR%%/widgets/statemachine/rogue/rogue.pro
%%QT_EXAMPLEDIR%%/widgets/statemachine/rogue/window.cpp
%%QT_EXAMPLEDIR%%/widgets/statemachine/rogue/window.h
%%QT_EXAMPLEDIR%%/widgets/statemachine/statemachine.pro
%%QT_EXAMPLEDIR%%/widgets/statemachine/trafficlight/main.cpp
%%QT_EXAMPLEDIR%%/widgets/statemachine/trafficlight/trafficlight.pro
%%QT_EXAMPLEDIR%%/widgets/statemachine/twowaybutton/main.cpp
%%QT_EXAMPLEDIR%%/widgets/statemachine/twowaybutton/twowaybutton.pro
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/codecs.pro
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/doc/images/codecs-example.png
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/doc/src/codecs.qdoc
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodedfiles/iso-8859-1.txt
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodedfiles/iso-8859-15.txt
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodedfiles/utf-16.txt
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodedfiles/utf-16be.txt
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodedfiles/utf-16le.txt
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodedfiles/utf-8.txt
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/previewform.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/codecs/previewform.h
%%QT_EXAMPLEDIR%%/widgets/tools/completer/completer.pro
%%QT_EXAMPLEDIR%%/widgets/tools/completer/completer.qrc
%%QT_EXAMPLEDIR%%/widgets/tools/completer/fsmodel.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/completer/fsmodel.h
%%QT_EXAMPLEDIR%%/widgets/tools/completer/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/completer/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/completer/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/tools/completer/resources/countries.txt
%%QT_EXAMPLEDIR%%/widgets/tools/completer/resources/wordlist.txt
%%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/customcompleter.pro
%%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/customcompleter.qrc
%%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/doc/src/customcompleter.qdoc
%%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/resources/wordlist.txt
%%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/textedit.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/textedit.h
%%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/echoplugin.pro
%%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/echowindow/echointerface.h
%%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/echowindow/echowindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/echowindow/echowindow.h
%%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/echowindow/echowindow.pro
%%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/echowindow/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/plugin/echoplugin.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/plugin/echoplugin.h
%%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/plugin/echoplugin.json
%%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/plugin/plugin.pro
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/i18n.pro
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/i18n.qrc
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/languagechooser.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/languagechooser.h
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_ar.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_ar.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_cs.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_cs.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_de.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_de.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_el.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_el.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_en.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_en.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_eo.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_eo.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_fr.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_fr.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_it.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_it.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_jp.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_jp.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_ko.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_ko.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_no.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_no.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_ru.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_ru.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_sv.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_sv.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_zh.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_zh.ts
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/app.pro
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/interfaces.h
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/paintarea.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/paintarea.h
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/plugindialog.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/plugindialog.h
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugandpaint.pro
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/basictools/basictools.json
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/basictools/basictools.pro
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/basictools/basictoolsplugin.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/basictools/basictoolsplugin.h
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/extrafilters/extrafilters.json
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/extrafilters/extrafilters.pro
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/extrafilters/extrafiltersplugin.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/extrafilters/extrafiltersplugin.h
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/plugins.pro
%%QT_EXAMPLEDIR%%/widgets/tools/regexp/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/regexp/regexp.pro
%%QT_EXAMPLEDIR%%/widgets/tools/regexp/regexpdialog.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/regexp/regexpdialog.h
%%QT_EXAMPLEDIR%%/widgets/tools/regularexpression/images/copy.png
%%QT_EXAMPLEDIR%%/widgets/tools/regularexpression/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/regularexpression/regularexpression.pro
%%QT_EXAMPLEDIR%%/widgets/tools/regularexpression/regularexpression.qrc
%%QT_EXAMPLEDIR%%/widgets/tools/regularexpression/regularexpressiondialog.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/regularexpression/regularexpressiondialog.h
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/inifiles/licensepage.ini
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/inifiles/qsa.ini
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/locationdialog.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/locationdialog.h
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/settingseditor.pro
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/settingstree.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/settingstree.h
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/variantdelegate.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/variantdelegate.h
%%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/plugin/plugin.pro
%%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/plugin/simplestyle.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/plugin/simplestyle.h
%%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/plugin/simplestyle.json
%%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/plugin/simplestyleplugin.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/plugin/simplestyleplugin.h
%%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/styleplugin.pro
%%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/stylewindow/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/stylewindow/stylewindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/stylewindow/stylewindow.h
%%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/stylewindow/stylewindow.pro
%%QT_EXAMPLEDIR%%/widgets/tools/tools.pro
%%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/resources/treemodel.txt
%%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/treemodelcompleter.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/treemodelcompleter.h
%%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/treemodelcompleter.pro
%%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/treemodelcompleter.qrc
%%QT_EXAMPLEDIR%%/widgets/tools/undo/commands.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/undo/commands.h
%%QT_EXAMPLEDIR%%/widgets/tools/undo/document.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/undo/document.h
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/background.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/blue.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/circle.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/exit.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/fileclose.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/filenew.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/fileopen.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/filesave.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/green.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/ok.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/rectangle.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/red.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/redo.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/remove.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/triangle.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/undo.png
%%QT_EXAMPLEDIR%%/widgets/tools/undo/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/undo/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/undo/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/tools/undo/mainwindow.ui
%%QT_EXAMPLEDIR%%/widgets/tools/undo/undo.pro
%%QT_EXAMPLEDIR%%/widgets/tools/undo/undo.qrc
%%QT_EXAMPLEDIR%%/widgets/tools/undoframework/commands.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/undoframework/commands.h
%%QT_EXAMPLEDIR%%/widgets/tools/undoframework/diagramitem.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/undoframework/diagramitem.h
%%QT_EXAMPLEDIR%%/widgets/tools/undoframework/diagramscene.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/undoframework/diagramscene.h
%%QT_EXAMPLEDIR%%/widgets/tools/undoframework/images/cross.png
%%QT_EXAMPLEDIR%%/widgets/tools/undoframework/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/undoframework/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/undoframework/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/tools/undoframework/undoframework.pro
%%QT_EXAMPLEDIR%%/widgets/tools/undoframework/undoframework.qrc
%%QT_EXAMPLEDIR%%/widgets/tutorials/README
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/README
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/addressbook.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part1/addressbook.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part1/addressbook.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part1/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part1/part1.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part2/addressbook.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part2/addressbook.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part2/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part2/part2.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part3/addressbook.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part3/addressbook.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part3/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part3/part3.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part4/addressbook.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part4/addressbook.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part4/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part4/part4.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part5/addressbook.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part5/addressbook.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part5/finddialog.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part5/finddialog.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part5/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part5/part5.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part6/addressbook.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part6/addressbook.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part6/finddialog.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part6/finddialog.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part6/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part6/part6.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part7/addressbook.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part7/addressbook.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part7/finddialog.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part7/finddialog.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part7/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part7/part7.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gettingStarted.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/gsqt.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part1/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part1/part1.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part2/part2.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part3/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part3/part3.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part4/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part4/part4.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part5/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part5/part5.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/1_readonly/1_readonly.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/1_readonly/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/1_readonly/mymodel.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/1_readonly/mymodel.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/2_formatting/2_formatting.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/2_formatting/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/2_formatting/mymodel.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/2_formatting/mymodel.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/3_changingmodel/3_changingmodel.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/3_changingmodel/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/3_changingmodel/mymodel.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/3_changingmodel/mymodel.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/4_headers/4_headers.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/4_headers/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/4_headers/mymodel.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/4_headers/mymodel.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/5_edit/5_edit.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/5_edit/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/5_edit/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/5_edit/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/5_edit/mymodel.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/5_edit/mymodel.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/6_treeview/6_treeview.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/6_treeview/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/6_treeview/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/6_treeview/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/7_selections/7_selections.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/7_selections/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/7_selections/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/7_selections/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/modelview.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/tutorials.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/childwidget/childwidget.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/childwidget/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/nestedlayouts/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/nestedlayouts/nestedlayouts.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/toplevel/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/toplevel/toplevel.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/widgets.pro
%%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/windowlayout/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/windowlayout/windowlayout.pro
%%QT_EXAMPLEDIR%%/widgets/widgets.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/README
%%QT_EXAMPLEDIR%%/widgets/widgets/analogclock/analogclock.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/analogclock/analogclock.h
%%QT_EXAMPLEDIR%%/widgets/widgets/analogclock/analogclock.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/analogclock/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/calculator/button.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/calculator/button.h
%%QT_EXAMPLEDIR%%/widgets/widgets/calculator/calculator.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/calculator/calculator.h
%%QT_EXAMPLEDIR%%/widgets/widgets/calculator/calculator.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/calculator/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/calendarwidget/calendarwidget.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/calendarwidget/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/calendarwidget/window.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/calendarwidget/window.h
%%QT_EXAMPLEDIR%%/widgets/widgets/charactermap/charactermap.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/charactermap/characterwidget.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/charactermap/characterwidget.h
%%QT_EXAMPLEDIR%%/widgets/widgets/charactermap/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/charactermap/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/charactermap/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/widgets/codeeditor/codeeditor.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/codeeditor/codeeditor.h
%%QT_EXAMPLEDIR%%/widgets/widgets/codeeditor/codeeditor.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/codeeditor/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/digitalclock/digitalclock.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/digitalclock/digitalclock.h
%%QT_EXAMPLEDIR%%/widgets/widgets/digitalclock/digitalclock.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/digitalclock/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/elidedlabel/elidedlabel.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/elidedlabel/elidedlabel.h
%%QT_EXAMPLEDIR%%/widgets/widgets/elidedlabel/elidedlabel.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/elidedlabel/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/elidedlabel/testwidget.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/elidedlabel/testwidget.h
%%QT_EXAMPLEDIR%%/widgets/widgets/groupbox/groupbox.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/groupbox/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/groupbox/window.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/groupbox/window.h
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/iconpreviewarea.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/iconpreviewarea.h
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/icons.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/iconsizespinbox.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/iconsizespinbox.h
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/imagedelegate.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/imagedelegate.h
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/designer.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/find_disabled.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/find_normal.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_off_128x128.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_off_16x16.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_off_32x32.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_off_64x64.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_on_128x128.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_on_16x16.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_on_32x32.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_on_64x64.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/qt_extended_16x16.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/qt_extended_32x32.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/qt_extended_48x48.png
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/icons/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/widgets/imageviewer/imageviewer.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/imageviewer/imageviewer.h
%%QT_EXAMPLEDIR%%/widgets/widgets/imageviewer/imageviewer.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/imageviewer/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/lineedits/lineedits.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/lineedits/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/lineedits/window.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/lineedits/window.h
%%QT_EXAMPLEDIR%%/widgets/widgets/mousebuttons/buttontester.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/mousebuttons/buttontester.h
%%QT_EXAMPLEDIR%%/widgets/widgets/mousebuttons/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/mousebuttons/mousebuttons.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/movie/animation.gif
%%QT_EXAMPLEDIR%%/widgets/widgets/movie/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/movie/movie.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/movie/movieplayer.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/movie/movieplayer.h
%%QT_EXAMPLEDIR%%/widgets/widgets/scribble/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/scribble/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/scribble/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/widgets/scribble/scribble.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/scribble/scribblearea.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/scribble/scribblearea.h
%%QT_EXAMPLEDIR%%/widgets/widgets/shapedclock/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/shapedclock/shapedclock.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/shapedclock/shapedclock.h
%%QT_EXAMPLEDIR%%/widgets/widgets/shapedclock/shapedclock.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/sliders/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/sliders/sliders.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/sliders/slidersgroup.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/sliders/slidersgroup.h
%%QT_EXAMPLEDIR%%/widgets/widgets/sliders/window.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/sliders/window.h
%%QT_EXAMPLEDIR%%/widgets/widgets/spinboxes/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/spinboxes/spinboxes.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/spinboxes/window.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/spinboxes/window.h
%%QT_EXAMPLEDIR%%/widgets/widgets/styles/images/woodbackground.png
%%QT_EXAMPLEDIR%%/widgets/widgets/styles/images/woodbutton.png
%%QT_EXAMPLEDIR%%/widgets/widgets/styles/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/styles/norwegianwoodstyle.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/styles/norwegianwoodstyle.h
%%QT_EXAMPLEDIR%%/widgets/widgets/styles/styles.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/styles/styles.qrc
%%QT_EXAMPLEDIR%%/widgets/widgets/styles/widgetgallery.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/styles/widgetgallery.h
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/checkbox_checked.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/checkbox_checked_hover.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/checkbox_checked_pressed.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/checkbox_unchecked.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/checkbox_unchecked_hover.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/checkbox_unchecked_pressed.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/down_arrow.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/down_arrow_disabled.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/frame.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/pagefold.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/pushbutton.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/pushbutton_hover.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/pushbutton_pressed.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/radiobutton_checked.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/radiobutton_checked_hover.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/radiobutton_checked_pressed.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/radiobutton_unchecked.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/radiobutton_unchecked_hover.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/radiobutton_unchecked_pressed.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/sizegrip.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spindown.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spindown_hover.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spindown_off.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spindown_pressed.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spinup.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spinup_hover.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spinup_off.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spinup_pressed.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/up_arrow.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/up_arrow_disabled.png
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/layouts/default.ui
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/layouts/pagefold.ui
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/mainwindow.ui
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/qss/coffee.qss
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/qss/default.qss
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/qss/pagefold.qss
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/stylesheet.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/stylesheet.qrc
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/stylesheeteditor.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/stylesheeteditor.h
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/stylesheeteditor.ui
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/images.qrc
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/images/cursor-airbrush.png
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/images/cursor-eraser.png
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/images/cursor-felt-marker.png
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/images/cursor-pencil.png
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/tablet.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/tabletapplication.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/tabletapplication.h
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/tabletcanvas.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/tabletcanvas.h
%%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrix.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrixboard.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrixboard.h
%%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrixpiece.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrixpiece.h
%%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrixwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrixwindow.h
%%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/images/circle.png
%%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/images/square.png
%%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/images/triangle.png
%%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/shapeitem.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/shapeitem.h
%%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/sortingbox.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/sortingbox.h
%%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/tooltips.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/tooltips.qrc
%%QT_EXAMPLEDIR%%/widgets/widgets/validators/ledoff.png
%%QT_EXAMPLEDIR%%/widgets/widgets/validators/ledon.png
%%QT_EXAMPLEDIR%%/widgets/widgets/validators/ledwidget.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/validators/ledwidget.h
%%QT_EXAMPLEDIR%%/widgets/widgets/validators/localeselector.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/validators/localeselector.h
%%QT_EXAMPLEDIR%%/widgets/widgets/validators/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/validators/validators.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/validators/validators.qrc
%%QT_EXAMPLEDIR%%/widgets/widgets/validators/validators.ui
%%QT_EXAMPLEDIR%%/widgets/widgets/widgets.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/wiggly/dialog.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/wiggly/dialog.h
%%QT_EXAMPLEDIR%%/widgets/widgets/wiggly/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/wiggly/wiggly.pro
%%QT_EXAMPLEDIR%%/widgets/widgets/wiggly/wigglywidget.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/wiggly/wigglywidget.h
%%QT_EXAMPLEDIR%%/widgets/widgets/windowflags/controllerwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/windowflags/controllerwindow.h
%%QT_EXAMPLEDIR%%/widgets/widgets/windowflags/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/windowflags/previewwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/windowflags/previewwindow.h
%%QT_EXAMPLEDIR%%/widgets/widgets/windowflags/windowflags.pro
%%QT_EXAMPLEDIR%%/widgets/windowcontainer/windowcontainer.cpp
%%QT_EXAMPLEDIR%%/widgets/windowcontainer/windowcontainer.pro
%%QT_EXAMPLEDIR%%/xml/README
%%QT_EXAMPLEDIR%%/xml/dombookmarks/doc/images/dombookmarks-example.png
%%QT_EXAMPLEDIR%%/xml/dombookmarks/doc/src/dombookmarks.qdoc
%%QT_EXAMPLEDIR%%/xml/dombookmarks/dombookmarks.pro
%%QT_EXAMPLEDIR%%/xml/dombookmarks/frank.xbel
%%QT_EXAMPLEDIR%%/xml/dombookmarks/jennifer.xbel
%%QT_EXAMPLEDIR%%/xml/dombookmarks/main.cpp
%%QT_EXAMPLEDIR%%/xml/dombookmarks/mainwindow.cpp
%%QT_EXAMPLEDIR%%/xml/dombookmarks/mainwindow.h
%%QT_EXAMPLEDIR%%/xml/dombookmarks/xbeltree.cpp
%%QT_EXAMPLEDIR%%/xml/dombookmarks/xbeltree.h
%%QT_EXAMPLEDIR%%/xml/htmlinfo/apache_org.html
%%QT_EXAMPLEDIR%%/xml/htmlinfo/htmlinfo.pro
%%QT_EXAMPLEDIR%%/xml/htmlinfo/main.cpp
%%QT_EXAMPLEDIR%%/xml/htmlinfo/resources.qrc
%%QT_EXAMPLEDIR%%/xml/htmlinfo/simpleexample.html
%%QT_EXAMPLEDIR%%/xml/htmlinfo/trolltech_com.html
%%QT_EXAMPLEDIR%%/xml/htmlinfo/w3c_org.html
%%QT_EXAMPLEDIR%%/xml/htmlinfo/youtube_com.html
%%QT_EXAMPLEDIR%%/xml/rsslisting/main.cpp
%%QT_EXAMPLEDIR%%/xml/rsslisting/rsslisting.cpp
%%QT_EXAMPLEDIR%%/xml/rsslisting/rsslisting.h
%%QT_EXAMPLEDIR%%/xml/rsslisting/rsslisting.pro
%%QT_EXAMPLEDIR%%/xml/saxbookmarks/doc/images/saxbookmarks-example.png
%%QT_EXAMPLEDIR%%/xml/saxbookmarks/doc/src/saxbookmarks.qdoc
%%QT_EXAMPLEDIR%%/xml/saxbookmarks/frank.xbel
%%QT_EXAMPLEDIR%%/xml/saxbookmarks/jennifer.xbel
%%QT_EXAMPLEDIR%%/xml/saxbookmarks/main.cpp
%%QT_EXAMPLEDIR%%/xml/saxbookmarks/mainwindow.cpp
%%QT_EXAMPLEDIR%%/xml/saxbookmarks/mainwindow.h
%%QT_EXAMPLEDIR%%/xml/saxbookmarks/saxbookmarks.pro
%%QT_EXAMPLEDIR%%/xml/saxbookmarks/xbelgenerator.cpp
%%QT_EXAMPLEDIR%%/xml/saxbookmarks/xbelgenerator.h
%%QT_EXAMPLEDIR%%/xml/saxbookmarks/xbelhandler.cpp
%%QT_EXAMPLEDIR%%/xml/saxbookmarks/xbelhandler.h
%%QT_EXAMPLEDIR%%/xml/streambookmarks/doc/images/xmlstreamexample-filemenu.png
%%QT_EXAMPLEDIR%%/xml/streambookmarks/doc/images/xmlstreamexample-helpmenu.png
%%QT_EXAMPLEDIR%%/xml/streambookmarks/doc/images/xmlstreamexample-screenshot.png
%%QT_EXAMPLEDIR%%/xml/streambookmarks/doc/src/qxmlstreambookmarks.qdoc
%%QT_EXAMPLEDIR%%/xml/streambookmarks/frank.xbel
%%QT_EXAMPLEDIR%%/xml/streambookmarks/jennifer.xbel
%%QT_EXAMPLEDIR%%/xml/streambookmarks/main.cpp
%%QT_EXAMPLEDIR%%/xml/streambookmarks/mainwindow.cpp
%%QT_EXAMPLEDIR%%/xml/streambookmarks/mainwindow.h
%%QT_EXAMPLEDIR%%/xml/streambookmarks/streambookmarks.pro
%%QT_EXAMPLEDIR%%/xml/streambookmarks/xbelreader.cpp
%%QT_EXAMPLEDIR%%/xml/streambookmarks/xbelreader.h
%%QT_EXAMPLEDIR%%/xml/streambookmarks/xbelwriter.cpp
%%QT_EXAMPLEDIR%%/xml/streambookmarks/xbelwriter.h
%%QT_EXAMPLEDIR%%/xml/xml.pro
%%QT_EXAMPLEDIR%%/xml/xmlstreamlint/doc/src/xmlstreamlint.qdoc
%%QT_EXAMPLEDIR%%/xml/xmlstreamlint/main.cpp
%%QT_EXAMPLEDIR%%/xml/xmlstreamlint/xmlstreamlint.pro
%%QT_EXAMPLEDIR%%/xmlpatterns/README
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/doc/src/filetree.qdoc
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/filetree.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/filetree.h
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/filetree.pro
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/forms/mainwindow.ui
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/main.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/mainwindow.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/mainwindow.h
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/queries.qrc
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/queries/listCPPFiles.xq
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/queries/wholeTree.xq
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/doc/src/recipes.qdoc
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/files/allRecipes.xq
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/files/cookbook.xml
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/files/liquidIngredientsInSoup.xq
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/files/mushroomSoup.xq
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/files/preparationLessThan30.xq
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/files/preparationTimes.xq
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/forms/querywidget.ui
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/forms/querywidget_mobiles.ui
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/main.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/querymainwindow.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/querymainwindow.h
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/recipes.pro
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/recipes.qrc
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/doc/src/schema.qdoc
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/contact.xsd
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/invalid_contact.xml
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/invalid_order.xml
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/invalid_recipe.xml
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/order.xsd
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/recipe.xsd
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/valid_contact.xml
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/valid_order.xml
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/valid_recipe.xml
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/main.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/mainwindow.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/mainwindow.h
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/schema.pro
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/schema.qrc
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/schema.ui
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/schema_mobiles.ui
%%QT_EXAMPLEDIR%%/xmlpatterns/shared/xmlsyntaxhighlighter.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/shared/xmlsyntaxhighlighter.h
%%QT_EXAMPLEDIR%%/xmlpatterns/xmlpatterns.pro
%%QT_EXAMPLEDIR%%/xmlpatterns/xquery/doc/src/globalVariables.qdoc
%%QT_EXAMPLEDIR%%/xmlpatterns/xquery/globalVariables/globals.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/xquery/globalVariables/globals.gccxml
%%QT_EXAMPLEDIR%%/xmlpatterns/xquery/globalVariables/globals.html
%%QT_EXAMPLEDIR%%/xmlpatterns/xquery/globalVariables/reportGlobals.xq
%%QT_EXAMPLEDIR%%/xmlpatterns/xquery/xquery.pro
Index: head/misc/qt5-l10n/pkg-plist
===================================================================
--- head/misc/qt5-l10n/pkg-plist (revision 434379)
+++ head/misc/qt5-l10n/pkg-plist (revision 434380)
@@ -1,228 +1,233 @@
%%QT_L10NDIR%%/assistant_cs.qm
%%QT_L10NDIR%%/assistant_da.qm
%%QT_L10NDIR%%/assistant_de.qm
%%QT_L10NDIR%%/assistant_en.qm
%%QT_L10NDIR%%/assistant_fr.qm
%%QT_L10NDIR%%/assistant_hu.qm
%%QT_L10NDIR%%/assistant_ja.qm
%%QT_L10NDIR%%/assistant_ko.qm
%%QT_L10NDIR%%/assistant_pl.qm
%%QT_L10NDIR%%/assistant_ru.qm
%%QT_L10NDIR%%/assistant_sk.qm
%%QT_L10NDIR%%/assistant_sl.qm
%%QT_L10NDIR%%/assistant_uk.qm
%%QT_L10NDIR%%/assistant_zh_CN.qm
%%QT_L10NDIR%%/assistant_zh_TW.qm
%%QT_L10NDIR%%/designer_cs.qm
%%QT_L10NDIR%%/designer_de.qm
%%QT_L10NDIR%%/designer_en.qm
%%QT_L10NDIR%%/designer_fr.qm
%%QT_L10NDIR%%/designer_hu.qm
%%QT_L10NDIR%%/designer_ja.qm
%%QT_L10NDIR%%/designer_ko.qm
%%QT_L10NDIR%%/designer_pl.qm
%%QT_L10NDIR%%/designer_ru.qm
%%QT_L10NDIR%%/designer_sk.qm
%%QT_L10NDIR%%/designer_sl.qm
%%QT_L10NDIR%%/designer_uk.qm
%%QT_L10NDIR%%/designer_zh_CN.qm
%%QT_L10NDIR%%/designer_zh_TW.qm
%%QT_L10NDIR%%/linguist_cs.qm
%%QT_L10NDIR%%/linguist_de.qm
%%QT_L10NDIR%%/linguist_en.qm
%%QT_L10NDIR%%/linguist_fr.qm
%%QT_L10NDIR%%/linguist_hu.qm
%%QT_L10NDIR%%/linguist_ja.qm
%%QT_L10NDIR%%/linguist_ko.qm
%%QT_L10NDIR%%/linguist_pl.qm
%%QT_L10NDIR%%/linguist_ru.qm
%%QT_L10NDIR%%/linguist_sk.qm
%%QT_L10NDIR%%/linguist_sl.qm
%%QT_L10NDIR%%/linguist_uk.qm
%%QT_L10NDIR%%/linguist_zh_CN.qm
%%QT_L10NDIR%%/linguist_zh_TW.qm
%%QT_L10NDIR%%/qmlviewer_cs.qm
%%QT_L10NDIR%%/qmlviewer_en.qm
%%QT_L10NDIR%%/qmlviewer_fi.qm
%%QT_L10NDIR%%/qmlviewer_fr.qm
%%QT_L10NDIR%%/qmlviewer_he.qm
%%QT_L10NDIR%%/qmlviewer_hu.qm
%%QT_L10NDIR%%/qmlviewer_ja.qm
%%QT_L10NDIR%%/qmlviewer_ko.qm
%%QT_L10NDIR%%/qmlviewer_pl.qm
%%QT_L10NDIR%%/qmlviewer_ru.qm
%%QT_L10NDIR%%/qmlviewer_sk.qm
%%QT_L10NDIR%%/qmlviewer_uk.qm
%%QT_L10NDIR%%/qt_ar.qm
%%QT_L10NDIR%%/qt_ca.qm
%%QT_L10NDIR%%/qt_cs.qm
%%QT_L10NDIR%%/qt_da.qm
%%QT_L10NDIR%%/qt_de.qm
%%QT_L10NDIR%%/qt_en.qm
%%QT_L10NDIR%%/qt_es.qm
%%QT_L10NDIR%%/qt_fa.qm
%%QT_L10NDIR%%/qt_fi.qm
%%QT_L10NDIR%%/qt_fr.qm
%%QT_L10NDIR%%/qt_gl.qm
%%QT_L10NDIR%%/qt_he.qm
%%QT_L10NDIR%%/qt_help_cs.qm
%%QT_L10NDIR%%/qt_help_da.qm
%%QT_L10NDIR%%/qt_help_de.qm
%%QT_L10NDIR%%/qt_help_en.qm
%%QT_L10NDIR%%/qt_help_fr.qm
%%QT_L10NDIR%%/qt_help_gl.qm
%%QT_L10NDIR%%/qt_help_hu.qm
%%QT_L10NDIR%%/qt_help_it.qm
%%QT_L10NDIR%%/qt_help_ja.qm
%%QT_L10NDIR%%/qt_help_ko.qm
%%QT_L10NDIR%%/qt_help_pl.qm
%%QT_L10NDIR%%/qt_help_ru.qm
%%QT_L10NDIR%%/qt_help_sk.qm
%%QT_L10NDIR%%/qt_help_sl.qm
%%QT_L10NDIR%%/qt_help_uk.qm
%%QT_L10NDIR%%/qt_help_zh_CN.qm
%%QT_L10NDIR%%/qt_help_zh_TW.qm
%%QT_L10NDIR%%/qt_hu.qm
%%QT_L10NDIR%%/qt_it.qm
%%QT_L10NDIR%%/qt_ja.qm
%%QT_L10NDIR%%/qt_ko.qm
%%QT_L10NDIR%%/qt_lt.qm
%%QT_L10NDIR%%/qt_pl.qm
%%QT_L10NDIR%%/qt_pt.qm
%%QT_L10NDIR%%/qt_ru.qm
%%QT_L10NDIR%%/qt_sk.qm
%%QT_L10NDIR%%/qt_sl.qm
%%QT_L10NDIR%%/qt_sv.qm
%%QT_L10NDIR%%/qt_uk.qm
%%QT_L10NDIR%%/qt_zh_CN.qm
%%QT_L10NDIR%%/qt_zh_TW.qm
%%QT_L10NDIR%%/qtbase_ca.qm
%%QT_L10NDIR%%/qtbase_cs.qm
%%QT_L10NDIR%%/qtbase_de.qm
%%QT_L10NDIR%%/qtbase_en.qm
%%QT_L10NDIR%%/qtbase_fi.qm
%%QT_L10NDIR%%/qtbase_fr.qm
%%QT_L10NDIR%%/qtbase_he.qm
%%QT_L10NDIR%%/qtbase_hu.qm
%%QT_L10NDIR%%/qtbase_it.qm
%%QT_L10NDIR%%/qtbase_ja.qm
%%QT_L10NDIR%%/qtbase_ko.qm
%%QT_L10NDIR%%/qtbase_lv.qm
%%QT_L10NDIR%%/qtbase_pl.qm
%%QT_L10NDIR%%/qtbase_ru.qm
%%QT_L10NDIR%%/qtbase_sk.qm
%%QT_L10NDIR%%/qtbase_uk.qm
%%QT_L10NDIR%%/qtconfig_hu.qm
%%QT_L10NDIR%%/qtconfig_ja.qm
%%QT_L10NDIR%%/qtconfig_ko.qm
%%QT_L10NDIR%%/qtconfig_pl.qm
%%QT_L10NDIR%%/qtconfig_ru.qm
%%QT_L10NDIR%%/qtconfig_sk.qm
%%QT_L10NDIR%%/qtconfig_sl.qm
%%QT_L10NDIR%%/qtconfig_uk.qm
%%QT_L10NDIR%%/qtconfig_zh_CN.qm
%%QT_L10NDIR%%/qtconfig_zh_TW.qm
%%QT_L10NDIR%%/qtconnectivity_de.qm
%%QT_L10NDIR%%/qtconnectivity_en.qm
%%QT_L10NDIR%%/qtconnectivity_ko.qm
+%%QT_L10NDIR%%/qtconnectivity_pl.qm
%%QT_L10NDIR%%/qtconnectivity_ru.qm
%%QT_L10NDIR%%/qtconnectivity_uk.qm
%%QT_L10NDIR%%/qtdeclarative_de.qm
%%QT_L10NDIR%%/qtdeclarative_en.qm
%%QT_L10NDIR%%/qtdeclarative_fi.qm
%%QT_L10NDIR%%/qtdeclarative_fr.qm
%%QT_L10NDIR%%/qtdeclarative_ja.qm
%%QT_L10NDIR%%/qtdeclarative_ko.qm
%%QT_L10NDIR%%/qtdeclarative_lv.qm
%%QT_L10NDIR%%/qtdeclarative_pl.qm
%%QT_L10NDIR%%/qtdeclarative_ru.qm
%%QT_L10NDIR%%/qtdeclarative_sk.qm
%%QT_L10NDIR%%/qtdeclarative_uk.qm
%%QT_L10NDIR%%/qtlocation_de.qm
%%QT_L10NDIR%%/qtlocation_en.qm
%%QT_L10NDIR%%/qtlocation_fr.qm
%%QT_L10NDIR%%/qtlocation_ko.qm
+%%QT_L10NDIR%%/qtlocation_pl.qm
%%QT_L10NDIR%%/qtlocation_ru.qm
%%QT_L10NDIR%%/qtlocation_uk.qm
%%QT_L10NDIR%%/qtmultimedia_ca.qm
%%QT_L10NDIR%%/qtmultimedia_cs.qm
%%QT_L10NDIR%%/qtmultimedia_de.qm
%%QT_L10NDIR%%/qtmultimedia_en.qm
%%QT_L10NDIR%%/qtmultimedia_fi.qm
%%QT_L10NDIR%%/qtmultimedia_fr.qm
%%QT_L10NDIR%%/qtmultimedia_hu.qm
%%QT_L10NDIR%%/qtmultimedia_it.qm
%%QT_L10NDIR%%/qtmultimedia_ja.qm
%%QT_L10NDIR%%/qtmultimedia_ko.qm
%%QT_L10NDIR%%/qtmultimedia_pl.qm
%%QT_L10NDIR%%/qtmultimedia_ru.qm
%%QT_L10NDIR%%/qtmultimedia_sk.qm
%%QT_L10NDIR%%/qtmultimedia_uk.qm
%%QT_L10NDIR%%/qtquick1_ca.qm
%%QT_L10NDIR%%/qtquick1_cs.qm
%%QT_L10NDIR%%/qtquick1_de.qm
%%QT_L10NDIR%%/qtquick1_en.qm
%%QT_L10NDIR%%/qtquick1_fi.qm
%%QT_L10NDIR%%/qtquick1_fr.qm
%%QT_L10NDIR%%/qtquick1_he.qm
%%QT_L10NDIR%%/qtquick1_hu.qm
%%QT_L10NDIR%%/qtquick1_it.qm
%%QT_L10NDIR%%/qtquick1_ja.qm
%%QT_L10NDIR%%/qtquick1_ko.qm
%%QT_L10NDIR%%/qtquick1_pl.qm
%%QT_L10NDIR%%/qtquick1_ru.qm
%%QT_L10NDIR%%/qtquick1_sk.qm
%%QT_L10NDIR%%/qtquick1_uk.qm
%%QT_L10NDIR%%/qtquickcontrols2_en.qm
%%QT_L10NDIR%%/qtquickcontrols2_uk.qm
%%QT_L10NDIR%%/qtquickcontrols_de.qm
%%QT_L10NDIR%%/qtquickcontrols_en.qm
%%QT_L10NDIR%%/qtquickcontrols_fi.qm
%%QT_L10NDIR%%/qtquickcontrols_fr.qm
%%QT_L10NDIR%%/qtquickcontrols_ja.qm
%%QT_L10NDIR%%/qtquickcontrols_ru.qm
%%QT_L10NDIR%%/qtquickcontrols_uk.qm
%%QT_L10NDIR%%/qtscript_ca.qm
%%QT_L10NDIR%%/qtscript_cs.qm
%%QT_L10NDIR%%/qtscript_de.qm
%%QT_L10NDIR%%/qtscript_en.qm
%%QT_L10NDIR%%/qtscript_fi.qm
%%QT_L10NDIR%%/qtscript_fr.qm
%%QT_L10NDIR%%/qtscript_he.qm
%%QT_L10NDIR%%/qtscript_hu.qm
%%QT_L10NDIR%%/qtscript_it.qm
%%QT_L10NDIR%%/qtscript_ja.qm
%%QT_L10NDIR%%/qtscript_ko.qm
%%QT_L10NDIR%%/qtscript_lv.qm
%%QT_L10NDIR%%/qtscript_pl.qm
%%QT_L10NDIR%%/qtscript_ru.qm
%%QT_L10NDIR%%/qtscript_sk.qm
%%QT_L10NDIR%%/qtscript_uk.qm
%%QT_L10NDIR%%/qtserialport_de.qm
%%QT_L10NDIR%%/qtserialport_en.qm
%%QT_L10NDIR%%/qtserialport_ja.qm
+%%QT_L10NDIR%%/qtserialport_pl.qm
%%QT_L10NDIR%%/qtserialport_ru.qm
%%QT_L10NDIR%%/qtserialport_uk.qm
%%QT_L10NDIR%%/qtwebengine_de.qm
%%QT_L10NDIR%%/qtwebengine_en.qm
+%%QT_L10NDIR%%/qtwebengine_pl.qm
%%QT_L10NDIR%%/qtwebengine_ru.qm
%%QT_L10NDIR%%/qtwebengine_uk.qm
%%QT_L10NDIR%%/qtwebsockets_de.qm
%%QT_L10NDIR%%/qtwebsockets_en.qm
%%QT_L10NDIR%%/qtwebsockets_fr.qm
%%QT_L10NDIR%%/qtwebsockets_ja.qm
+%%QT_L10NDIR%%/qtwebsockets_pl.qm
%%QT_L10NDIR%%/qtwebsockets_ru.qm
%%QT_L10NDIR%%/qtwebsockets_uk.qm
%%QT_L10NDIR%%/qtxmlpatterns_ca.qm
%%QT_L10NDIR%%/qtxmlpatterns_cs.qm
%%QT_L10NDIR%%/qtxmlpatterns_de.qm
%%QT_L10NDIR%%/qtxmlpatterns_en.qm
%%QT_L10NDIR%%/qtxmlpatterns_fr.qm
%%QT_L10NDIR%%/qtxmlpatterns_hu.qm
%%QT_L10NDIR%%/qtxmlpatterns_it.qm
%%QT_L10NDIR%%/qtxmlpatterns_ja.qm
%%QT_L10NDIR%%/qtxmlpatterns_ko.qm
%%QT_L10NDIR%%/qtxmlpatterns_pl.qm
%%QT_L10NDIR%%/qtxmlpatterns_ru.qm
%%QT_L10NDIR%%/qtxmlpatterns_sk.qm
%%QT_L10NDIR%%/qtxmlpatterns_uk.qm
Index: head/misc/qtchooser/Makefile
===================================================================
--- head/misc/qtchooser/Makefile (nonexistent)
+++ head/misc/qtchooser/Makefile (revision 434380)
@@ -0,0 +1,47 @@
+# $FreeBSD$
+
+PORTNAME= qtchooser
+PORTVERSION= 39
+DISTVERSIONSUFFIX= -g4717841
+CATEGORIES= misc
+MASTER_SITES= QT/official_releases/${PORTNAME}
+DIST_SUBDIR= KDE/Qt/qtchooser
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt tool wrapper
+
+LICENSE= GPLv3 LGPL21
+LICENSE_COMB= dual
+
+USES= gmake
+DESTDIRNAME= INSTALL_ROOT
+MAKE_ARGS= prefix=${PREFIX}
+
+QT_QTCHOOSERDIR=${PREFIX}/etc/xdg/qtchooser
+
+post-patch:
+ @${REINPLACE_CMD} -e 's,/etc/xdg,${LOCALBASE}/etc/xdg,' \
+ ${WRKSRC}/src/${PORTNAME}/main.cpp
+
+post-install:
+# Install qtchooser config file. Note this is not optimal.
+# -> we could install the qtchooser config files via devel/qmake[45].
+# Unfortunately they will be missing for ports that only use say "rcc"
+# without qmake.
+# So it is easier to install the config files in qtchooser.
+# -> As we cannot include bsd.qt.mk at the moment without specifying
+# a version, we also do not have the variables needed to sub the variables
+# properly (this will probably change with qt.mk).
+# Always make sure the following is in sync with bsd.qt.mk for now.
+ ${MKDIR} ${STAGEDIR}${QT_QTCHOOSERDIR}
+.for qt_version in 4 5
+ ${ECHO} ${PREFIX}/lib/qt${qt_version}/bin > ${STAGEDIR}${QT_QTCHOOSERDIR}/qt${qt_version}.conf
+ ${ECHO} ${PREFIX}/lib/qt${qt_version} >> ${STAGEDIR}${QT_QTCHOOSERDIR}/qt${qt_version}.conf
+.endfor
+# Install man page.
+ ${INSTALL_DATA} ${WRKSRC}/doc/qtchooser.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
+# Create the default profile.
+ cd ${STAGEDIR}/${QT_QTCHOOSERDIR} && ${LN} -s qt5.conf default.conf
+
+
+.include <bsd.port.mk>
Property changes on: head/misc/qtchooser/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/misc/qtchooser/distinfo
===================================================================
--- head/misc/qtchooser/distinfo (nonexistent)
+++ head/misc/qtchooser/distinfo (revision 434380)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1466191289
+SHA256 (KDE/Qt/qtchooser/qtchooser-39-g4717841.tar.gz) = 4681d0561bf96599bf9bf5eb25103d07ee8f045f31576dc2e72b8529587a67c6
+SIZE (KDE/Qt/qtchooser/qtchooser-39-g4717841.tar.gz) = 32194
Property changes on: head/misc/qtchooser/distinfo
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/misc/qtchooser/pkg-descr
===================================================================
--- head/misc/qtchooser/pkg-descr (nonexistent)
+++ head/misc/qtchooser/pkg-descr (revision 434380)
@@ -0,0 +1,4 @@
+The Qt tool chooser wraps the execution of all Qt tools, to allow for
+different Qt versions coexistence.
+
+WWW: https://github.com/qt/qtchooser
Property changes on: head/misc/qtchooser/pkg-descr
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/misc/qtchooser/pkg-message
===================================================================
--- head/misc/qtchooser/pkg-message (nonexistent)
+++ head/misc/qtchooser/pkg-message (revision 434380)
@@ -0,0 +1,6 @@
+qtchooser is a wrapper that allows selecting whether Qt4 or Qt5 binaries for
+qmake, moc and other tools will be run when invoking the binaries in $PATH.
+
+By default, the Qt5 versions are run. It is possible to change the behavior by
+setting the QT_SELECT environment variable to "qt4". See qtchooser(1) for more
+information.
Property changes on: head/misc/qtchooser/pkg-message
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/misc/qtchooser/pkg-plist
===================================================================
--- head/misc/qtchooser/pkg-plist (nonexistent)
+++ head/misc/qtchooser/pkg-plist (revision 434380)
@@ -0,0 +1,39 @@
+bin/assistant
+bin/designer
+bin/lconvert
+bin/linguist
+bin/lrelease
+bin/lupdate
+bin/moc
+bin/pixeltool
+bin/qcollectiongenerator
+bin/qdbus
+bin/qdbuscpp2xml
+bin/qdbusviewer
+bin/qdbusxml2cpp
+bin/qdoc
+bin/qdoc3
+bin/qglinfo
+bin/qhelpconverter
+bin/qhelpgenerator
+bin/qmake
+bin/qml
+bin/qml1plugindump
+bin/qmlbundle
+bin/qmlmin
+bin/qmlplugindump
+bin/qmlprofiler
+bin/qmlscene
+bin/qmltestrunner
+bin/qmlviewer
+bin/qtchooser
+bin/qtconfig
+bin/rcc
+bin/uic
+bin/uic3
+bin/xmlpatterns
+bin/xmlpatternsvalidator
+etc/xdg/qtchooser/default.conf
+etc/xdg/qtchooser/qt4.conf
+etc/xdg/qtchooser/qt5.conf
+man/man1/qtchooser.1.gz
Property changes on: head/misc/qtchooser/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/multimedia/avidemux/Makefile.common
===================================================================
--- head/multimedia/avidemux/Makefile.common (revision 434379)
+++ head/multimedia/avidemux/Makefile.common (revision 434380)
@@ -1,289 +1,288 @@
# $FreeBSD$
PORTREVISION?= 2
AVIDEMUX_VERSION= 2.6.11
MASTER_SITES= \
SF/avidemux/avidemux/${PORTVERSION}
DISTNAME= avidemux_${PORTVERSION}
BUILD_DEPENDS+= yasm:devel/yasm \
bash:shells/bash
LIB_DEPENDS+= libmad.so:audio/libmad \
libdca.so:multimedia/libdca \
libpng.so:graphics/png
LICENSE= GPLv2
USE_GNOME= libxml2
USE_QT4= # empty
OPTIONS_FILE= ${PORT_DBDIR}/${OPTIONS_NAME:C/-.*//}/options
USES= cmake:outsource pkgconfig iconv gmake compiler:features sqlite
USES+= dos2unix execinfo
DOS2UNIX_FILES= cmake/admCheckMiscLibs.cmake
CMAKE_ARGS+= -DGNUMAKE_EXECUTABLE=gmake
CMAKE_ARGS+= -DAVIDEMUX_PACKAGER=none
CMAKE_ARGS+= -DQT5:BOOL=OFF
CXXFLAGS+= -I${LOCALBASE}/include
MAKE_JOBS_UNSAFE= yes
NOPRECIOUSMAKEVARS= yes # ARCH
BUILD_DEPENDS+= ${LOCALBASE}/bin/as:devel/binutils
CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin
MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin
OPTIONS_DEFINE= QT4 CLI FREETYPE FONTCONFIG OSS ESOUND JACK \
PULSEAUDIO XVIDEO FAAC FRIBIDI OPUS TWOLAME \
FAAD X264 X265 VPX XVID SDL AMR VORBIS NLS LAME VAAPI VDPAU
OPTIONS_DEFAULT= QT4 FREETYPE FONTCONFIG OSS XVIDEO VPX XVID \
SDL FAAD VDPAU VORBIS
OPTIONS_SUB= yes
CLI_DESC= Build CLI tool
FRIBIDI_CMAKE_OFF= -DFRIDIBI:BOOL=OFF
FRIBIDI_LIB_DEPENDS= libfribidi.so:converters/fribidi
OPUS_CMAKE_OFF= -DOPUS:BOOL=OFF
OPUS_LIB_DEPENDS= libopus.so:audio/opus
TWOLAME_CMAKE_OFF= -DTWOLAME:BOOL=OFF
TWOLAME_LIB_DEPENDS= libtwolame.so:audio/twolame
.if !defined(PACKAGE_BUILDING)
OPTIONS_DEFAULT+= LAME FAAC AMR X264
.endif
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
PLIST_SUB+= NLS=""
. if ${PORT_OPTIONS:MQT4}
PLIST_SUB+= QT_NLS=""
. else
PLIST_SUB+= QT_NLS="@comment "
. endif
.else
CMAKE_ARGS+= -DNO_NLS:BOOL=ON
PLIST_SUB+= NLS="@comment " QT_NLS="@comment "
.endif
# for libexecinfo: (so that __builtin_frame_address() finds the top
# of the stack)
.if ${ARCH} == "amd64"
CFLAGS+= -fno-omit-frame-pointer
#MAKE_ENV+= ARCH=x86_64
#CONFIGURE_ENV+= ARCH=x86_64
.endif
.if !exists(/usr/lib/libexecinfo.so)
CMAKE_ARGS+= -DLIBEXECINFO_INCLUDE_DIR=${LOCALBASE}/include
CMAKE_ARGS+= -DLIBEXECINFO_LIBRARY_DIR=${LOCALBASE}/lib/libexecinfo.so
.else
CMAKE_ARGS+= -DLIBEXECINFO_INCLUDE_DIR=/usr/include
CMAKE_ARGS+= -DLIBEXECINFO_LIBRARY_DIR=-lexecinfo
.endif
# We haven't ALSA(Never) & Aften(Yet) on FreeBSD
CMAKE_ARGS+= -DARTS:BOOL=OFF -DALSA:BOOL=OFF -DAFTEN:BOOL=OFF
.if empty(PORT_OPTIONS:MGTK3) && empty(PORT_OPTIONS:MQT4)
CMAKE_ARGS+= -DX11:BOOL=OFF
.else
USE_GNOME+= libxslt
.endif
.if ${PORT_OPTIONS:MGTK3}
USE_GNOME+= gnomeprefix gtk30
PLIST_SUB+= GTK=""
.else
CMAKE_ARGS+= -DGTK:BOOL=OFF
PLIST_SUB+= GTK="@comment "
.endif
.if ${PORT_OPTIONS:MQT4}
-CMAKE_ARGS+= -DLRELEASE_EXECUTABLE=${LOCALBASE}/bin/lrelease-qt4
USE_QT4= qmake_build moc_build rcc_build uic_build linguist_build gui
PLIST_SUB+= QT4=""
.else
CMAKE_ARGS+= -DQT4:BOOL=OFF
PLIST_SUB+= QT4="@comment "
.endif
.if ${PORT_OPTIONS:MCLI}
PLIST_SUB+= CLI=""
.else
PLIST_SUB+= CLI="@comment "
.endif
.if ${PORT_OPTIONS:MOSS}
CMAKE_ARGS+= -DOSS_SUPPORT:BOOL=ON
.else
CMAKE_ARGS+= -DOSS_SUPPORT:BOOL=OFF
.endif
.if ${PORT_OPTIONS:MESOUND}
USE_GNOME+= esound
PLIST_SUB+= ESD=""
.else
CMAKE_ARGS+= -DESD:BOOL=OFF
PLIST_SUB+= ESD="@comment "
.endif
.if ${PORT_OPTIONS:MJACK}
LIB_DEPENDS+= libjack.so:audio/jack
PLIST_SUB+= JACK=""
.else
CMAKE_ARGS+= -DJACK:BOOL=OFF
PLIST_SUB+= JACK="@comment "
.endif
.if ${PORT_OPTIONS:MPULSEAUDIO}
LIB_DEPENDS+= libpulse.so:audio/pulseaudio
PLIST_SUB+= PULSE=""
.else
CMAKE_ARGS+= -DPULSEAUDIOSIMPLE:BOOL=OFF
PLIST_SUB+= PULSE="@comment "
.endif
.if ${PORT_OPTIONS:MFREETYPE}
LIB_DEPENDS+= libfreetype.so:print/freetype2
PLIST_SUB+= FREETYPE=""
.else
CMAKE_ARGS+= -DFREETYPE2:BOOL=OFF
PLIST_SUB+= FREETYPE="@comment "
.endif
.if ${PORT_OPTIONS:MFONTCONFIG}
LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig
.else
CMAKE_ARGS+= -DFONTCONFIG:BOOL=OFF
.endif
.if ${PORT_OPTIONS:MXVIDEO}
#LIB_DEPENDS+= Xv:x11/libXv
USE_XORG+= xv
.else
CMAKE_ARGS+= -DXVIDEO:BOOL=OFF
.endif
.if ${PORT_OPTIONS:MFAAC}
LIB_DEPENDS+= libfaac.so:audio/faac
PLIST_SUB+= FAAC=""
.else
CMAKE_ARGS+= -DFAAC:BOOL=OFF
PLIST_SUB+= FAAC="@comment "
.endif
.if ${PORT_OPTIONS:MLAME}
LIB_DEPENDS+= libmp3lame.so:audio/lame
PLIST_SUB+= LAME=""
.else
CMAKE_ARGS+= -DLAME:BOOL=OFF
PLIST_SUB+= LAME="@comment "
.endif
.if ${PORT_OPTIONS:MFAAD}
LIB_DEPENDS+= libfaad.so:audio/faad
PLIST_SUB+= FAAD=""
.else
CMAKE_ARGS+= -DFAAD:BOOL=OFF -DNeAAC:BOOL=OFF
PLIST_SUB+= FAAD="@comment "
.endif
.if ${PORT_OPTIONS:MX264}
LIB_DEPENDS+= libx264.so:multimedia/libx264
PLIST_SUB+= X264=""
.else
CMAKE_ARGS+= -DX264:BOOL=OFF
PLIST_SUB+= X264="@comment "
.endif
.if ${PORT_OPTIONS:MX265}
LIB_DEPENDS+= libx265.so:multimedia/x265
PLIST_SUB+= X265=""
.else
CMAKE_ARGS+= -DX265:BOOL=OFF
PLIST_SUB+= X265="@comment "
.endif
.if ${PORT_OPTIONS:MVPX}
LIB_DEPENDS+= libvpx.so:multimedia/libvpx
PLIST_SUB+= VPX=""
.else
CMAKE_ARGS+= -DVPXDEC:BOOL=OFF
PLIST_SUB+= VPX="@comment "
.endif
.if ${PORT_OPTIONS:MXVID}
LIB_DEPENDS+= libxvidcore.so:multimedia/xvid
PLIST_SUB+= XVID=""
.else
CMAKE_ARGS+= -DXVID:BOOL=OFF
PLIST_SUB+= XVID="@comment "
.endif
.if ${PORT_OPTIONS:MSDL}
USE_SDL= sdl
PLIST_SUB+= SDL=""
.else
CMAKE_ARGS+= -DSDL:BOOL=OFF
PLIST_SUB+= SDL="@comment "
.endif
.if ${PORT_OPTIONS:MVAAPI}
LIB_DEPENDS+= libva.so:multimedia/libva
PLIST_SUB+= VAAPI=""
.else
CMAKE_ARGS+= -DVAAPI:BOOL=OFF -DLIBVA:BOOL=OFF
PLIST_SUB+= VAAPI="@comment "
.endif
.if ${PORT_OPTIONS:MVDPAU}
LIB_DEPENDS+= libvdpau.so:multimedia/libvdpau
PLIST_SUB+= VDPAU=""
.else
CMAKE_ARGS+= -DVDPAU:BOOL=OFF
PLIST_SUB+= VDPAU="@comment "
.endif
.if ${PORT_OPTIONS:MVORBIS}
LIB_DEPENDS+= libvorbis.so:audio/libvorbis
PLIST_SUB+= VORBIS=""
.else
CMAKE_ARGS+= -DLIBVORBIS:BOOL=OFF -DVORBIS:BOOL=OFF
PLIST_SUB+= VORBIS="@comment "
.endif
.if ${PORT_OPTIONS:MAMR}
LIB_DEPENDS+= libopencore-amrnb.so:audio/opencore-amr
PLIST_SUB+= AMRNB=""
PLIST_SUB+= AMRWB=""
.else
CMAKE_ARGS+= -DOPENCORE_AMRNB:BOOL=OFF
PLIST_SUB+= AMRNB="@comment "
CMAKE_ARGS+= -DOPENCORE_AMRWB:BOOL=OFF
PLIST_SUB+= AMRWB="@comment "
.endif
.include <bsd.port.pre.mk>
# is this kosher? the result seems to run tho... (see ports/185997)
.if $(COMPILER_FEATURES:Mlibc++)
LDFLAGS+= -lc++
.endif
#.if ${COMPILER_TYPE} == clang
USE_GCC= yes
#.endif
.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
BROKEN= Does not compile on ia64, powerpc, or sparc64
.endif
post-patch:
@${MKDIR} ${CONFIGURE_WRKSRC}/config
@${LN} -s ${LOCALBASE}/include/iconv.h ${CONFIGURE_WRKSRC}/config
@${REINPLACE_CMD} 's|-ldl||' ${WRKSRC}/avidemux_core/CMakeLists.txt
post-configure-common:
@${FIND} ${CONFIGURE_WRKSRC} -name link.txt -print0 | \
${XARGS} -0 ${REINPLACE_CMD} 's|-ldl||g'
Index: head/multimedia/mlt-qt5/Makefile
===================================================================
--- head/multimedia/mlt-qt5/Makefile (revision 434379)
+++ head/multimedia/mlt-qt5/Makefile (revision 434380)
@@ -1,11 +1,12 @@
# $FreeBSD$
PORTREVISION= 0
CONFLICTS_INSTALL= ${PORTNAME}-qt4-*
+USE_CXXSTD= c++11
USE_QT5= core gui svg widgets xml
MASTERDIR= ${.CURDIR:H}/mlt
SLAVEPORT= qt5
.include "${MASTERDIR}/Makefile"
Index: head/multimedia/py-openlp/Makefile
===================================================================
--- head/multimedia/py-openlp/Makefile (revision 434379)
+++ head/multimedia/py-openlp/Makefile (revision 434380)
@@ -1,58 +1,58 @@
# $FreeBSD$
PORTNAME= OpenLP
PORTVERSION= 2.1.6
PORTREVISION= 1
CATEGORIES= multimedia python
MASTER_SITES= SF/${PORTNAME:tl}/${PORTNAME:tl}/${PORTVERSION}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= tabthorpe@FreeBSD.org
COMMENT= Open Source Lyrics Projection
LICENSE= GPLv2
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=0:devel/py-sip \
${PYTHON_PKGNAMEPREFIX}mako>0:textproc/py-mako \
${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=1.0.13:databases/py-sqlalchemy10
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup32>0:www/py-beautifulsoup32 \
${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml \
${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=1.0.13:databases/py-sqlalchemy10 \
${PYTHON_PKGNAMEPREFIX}chardet>=0:textproc/py-chardet \
${PYTHON_PKGNAMEPREFIX}mako>0:textproc/py-mako \
${PYTHON_PKGNAMEPREFIX}enchant>0:textproc/py-enchant \
${PYTHON_PKGNAMEPREFIX}sqlalchemy-migrate>=0.6.1:databases/py-sqlalchemy-migrate \
${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3 \
unoconv:textproc/unoconv
USES= desktop-file-utils pyqt:4 python
USE_PYQT= core gui \
network_run opengl_run phonon_run svg_run test_run webkit_run
USE_PYTHON= distutils autoplist
USE_GSTREAMER= good bad ugly
USE_QT4= linguist phonon-gst
-QT_LRELEASE= ${LOCALBASE}/bin/lrelease-qt4
+QT_LRELEASE= ${LRELEASE}
NO_ARCH= yes
pre-build:
@${RM} ${WRKSRC}/resources/__init__.py
@${MKDIR} ${WRKSRC}/resources/i18n/qm
@set -e; \
for TSFILE in ${WRKSRC}/resources/i18n/*.ts; do \
${QT_LRELEASE} $$TSFILE -qm ${WRKSRC}/resources/i18n/qm/`basename $$TSFILE .ts`.qm; \
done
post-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/share/openlp/i18n
${INSTALL_DATA} ${WRKSRC}/resources/i18n/qm/*.qm ${STAGEDIR}${PREFIX}/share/openlp/i18n
${LN} -sf openlp.pyw ${STAGEDIR}${PREFIX}/bin/openlp
${INSTALL_DATA} ${WRKSRC}/resources/openlp.desktop ${STAGEDIR}${PREFIX}/share/applications
set -e; \
for SIZE in 16x16 32x32 48x48 64x64 128x128 256x256; do \
${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/$$SIZE/apps && \
${INSTALL_DATA} ${WRKSRC}/resources/images/openlp-logo-$$SIZE.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/$$SIZE/apps/openlp.png; \
done
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps
${INSTALL_DATA} ${WRKSRC}/resources/images/openlp-logo.svg ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps/openlp.svg
.include <bsd.port.mk>
Index: head/multimedia/qt4-mobility/Makefile
===================================================================
--- head/multimedia/qt4-mobility/Makefile (revision 434379)
+++ head/multimedia/qt4-mobility/Makefile (revision 434380)
@@ -1,169 +1,169 @@
# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
# $FreeBSD$
PORTNAME= mobility
PORTVERSION= 1.2.2
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= multimedia
MASTER_SITES= http://dev.gentoo.org/~pesa/distfiles/ \
LOCAL/vg
PKGNAMEPREFIX= qt4-
DISTNAME= qt-${PORTNAME}-${PORTVERSION}_p${DATE}
MAINTAINER= vg@FreeBSD.org
COMMENT= Qt APIs for mobile devices and desktop platforms
LICENSE= LGPL21
LIB_DEPENDS= libblkid.so:misc/e2fsprogs-libblkid
DATE= 20130703
USES= pkgconfig qmake shebangfix tar:xz
SHEBANG_FILES= bin/pathhelper bin/syncheaders
USE_QT4=declarative corelib dbus gui linguist_build moc_build
USE_LDCONFIG= yes
MOBILITY_MODS=
OPTIONS_DEFINE= BEARER CONNECTIVITY CONTACTS FEEDBACK GALLERY LOCATION \
MESSAGING MULTIMEDIA ORGANIZER PUBLISHSUBSCRIBE SENSORS \
SERVICEFRAMEWORK SYSTEMINFO VERSIT
OPTIONS_SUB= yes
BEARER_DESC= Bearer module
CONNECTIVITY_DESC= Connectivity module
CONNECTIVITY_USE= qt4=rcc_build
CONTACTS_DESC= Contacts module
FEEDBACK_DESC= Feedback module
GALLERY_DESC= Gallery module
LOCATION_DESC= Location module
LOCATION_USE= qt4=rcc_build,sql
MESSAGING_DESC= Messaging module
MULTIMEDIA_DESC= Multimedia module
MULTIMEDIA_LIB_DEPENDS= libpulse.so:audio/pulseaudio
MULTIMEDIA_BUILD_DEPENDS= v4l_compat>=1.0.20120501:multimedia/v4l_compat
MULTIMEDIA_USE= qt4=opengl gstreamer=bad
ORGANIZER_DESC= Organizer module
PUBLISHSUBSCRIBE_DESC= Publishsubscribe module
SENSORS_DESC= (BROKEN) Sensors module
SERVICEFRAMEWORK_DESC= (BROKEN) ServiceFramework module
SERVICEFRAMEWORK_USE= qt4=sql
SYSTEMINFO_DESC= (BROKEN) Systeminfo module
SYSTEMINFO_USE= qt4=network
VERSIT_DESC= Versit module
VERSIT_USE= qt4=rcc_build
OPTIONS_DEFAULT=BEARER CONNECTIVITY CONTACTS FEEDBACK GALLERY LOCATION \
MESSAGING MULTIMEDIA ORGANIZER PUBLISHSUBSCRIBE VERSIT
pre-configure:
# Dirty hack because configure find paths and define empty if not found
- @${MKDIR} ${STAGE}${PREFIX}/${QT_BINDIR_REL} \
- ${STAGE}${PREFIX}/${QT_INCDIR_REL} \
- ${STAGE}${PREFIX}/${QT_LIBDIR_REL} \
+ @${MKDIR} ${STAGE}${PREFIX}/bin \
+ ${STAGE}${PREFIX}/include \
+ ${STAGE}${PREFIX}/lib \
${STAEG}${PREFIX}/${QT_PLUGINDIR_REL}
cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ./configure \
-release \
-prefix ${STAGE}${PREFIX} \
- -bindir ${STAGE}${PREFIX}/${QT_BINDIR_REL} \
- -headerdir ${STAGE}${PREFIX}/${QT_INCDIR_REL} \
- -libdir ${STAGE}${PREFIX}/${QT_LIBDIR_REL} \
+ -bindir ${STAGE}${PREFIX}/bin \
+ -headerdir ${STAGE}${PREFIX}/include \
+ -libdir ${STAGE}${PREFIX}/lib \
-plugindir ${STAEG}${PREFIX}/${QT_PLUGINDIR_REL} \
-modules "${MOBILITY_MODS}"
post-configure:
${REINPLACE_CMD} -e 's|#include <linux/types.h>||g' \
${WRKSRC}/plugins/multimedia/gstreamer/qgstreamervideoinputdevicecontrol.cpp \
${WRKSRC}/plugins/multimedia/gstreamer/camerabin/camerabincontrol.cpp \
${WRKSRC}/plugins/multimedia/gstreamer/qgstreamerserviceplugin.cpp \
${WRKSRC}/plugins/multimedia/gstreamer/mediacapture/qgstreamerv4l2input.cpp \
${WRKSRC}/plugins/multimedia/v4l/radio/v4lradiocontrol.h
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MBEARER}
MOBILITY_MODS+= bearer
.endif
.if ${PORT_OPTIONS:MCONNECTIVITY}
MOBILITY_MODS+= connectivity
.endif
.if ${PORT_OPTIONS:MCONTACTS}
MOBILITY_MODS+= contacts
.endif
.if ${PORT_OPTIONS:MFEEDBACK}
MOBILITY_MODS+= feedback
.endif
.if ${PORT_OPTIONS:MGALLERY}
MOBILITY_MODS+= gallery
.endif
.if ${PORT_OPTIONS:MLOCATION}
MOBILITY_MODS+= location
.endif
.if ${PORT_OPTIONS:MMESSAGING}
MOBILITY_MODS+= messaging
.endif
.if ${PORT_OPTIONS:MMULTIMEDIA}
MOBILITY_MODS+= multimedia
.endif
.if ${PORT_OPTIONS:MORGANIZER}
MOBILITY_MODS+= organizer
.endif
.if ${PORT_OPTIONS:MPUBLISHSUBSCRIBE}
MOBILITY_MODS+= publishsubscribe
.endif
.if ${PORT_OPTIONS:MSENSORS}
MOBILITY_MODS+= sensors
BROKEN= Sensors has not worked yet
.endif
.if ${PORT_OPTIONS:MSERVICEFRAMEWORK}
MOBILITY_MODS+= serviceframework
BROKEN= Serviceframework has not worked yet
.endif
.if ${PORT_OPTIONS:MSYSTEMINFO}
MOBILITY_MODS+= systeminfo
BROKEN= Systeminfo has not worked yet
.endif
.if ${PORT_OPTIONS:MVERSIT}
MOBILITY_MODS+= versit
.endif
.if ${PORT_OPTIONS:MCONNECTIVITY} || ${PORT_OPTIONS:MFEEDBACK} || \
${PORT_OPTIONS:MGALLERY} || ${PORT_OPTIONS:MLOCATION} || \
${PORT_OPTIONS:MPUBLISHSUBSCRIBE} || ${PORT_OPTIONS:MVERSIT}
PLIST_SUB+= IDIR=""
.else
PLIST_SUB+= IDIR="@comment "
.endif
.if ${PORT_OPTIONS:MFEEDBACK} && ${PORT_OPTIONS:MMULTIMEDIA} && \
${PORT_OPTIONS:MVERSIT}
PLIST_SUB+= VERSITFEEDBACK=""
.else
PLIST_SUB+= VERSITFEEDBACK="@comment "
.endif
.if ${PORT_OPTIONS:MORGANIZER} && ${PORT_OPTIONS:MVERSIT}
PLIST_SUB+= VERSITORGANIZER=""
.else
PLIST_SUB+= VERSITORGANIZER="@comment "
.endif
.include <bsd.port.mk>
Index: head/multimedia/qt4-mobility/pkg-plist
===================================================================
--- head/multimedia/qt4-mobility/pkg-plist (revision 434379)
+++ head/multimedia/qt4-mobility/pkg-plist (revision 434380)
@@ -1,802 +1,802 @@
-%%BEARER%%%%QT_INCDIR%%/QtBearer/QNetworkConfiguration
-%%BEARER%%%%QT_INCDIR%%/QtBearer/QNetworkConfigurationManager
-%%BEARER%%%%QT_INCDIR%%/QtBearer/QNetworkSession
-%%BEARER%%%%QT_INCDIR%%/QtMobility/QLatin1Constant
-%%BEARER%%%%QT_INCDIR%%/QtMobility/qlatin1constant.h
-%%BEARER%%%%QT_INCDIR%%/QtMobility/qmalgorithms.h
-%%BEARER%%%%QT_INCDIR%%/QtMobility/qmobilityglobal.h
-%%BEARER%%lib/qt4/libQtBearer.prl
-%%BEARER%%lib/qt4/libQtBearer.so
-%%BEARER%%lib/qt4/libQtBearer.so.1
-%%BEARER%%lib/qt4/libQtBearer.so.1.2
-%%BEARER%%lib/qt4/libQtBearer.so.1.2.2
+%%BEARER%%include/QtBearer/QNetworkConfiguration
+%%BEARER%%include/QtBearer/QNetworkConfigurationManager
+%%BEARER%%include/QtBearer/QNetworkSession
+%%BEARER%%include/QtMobility/QLatin1Constant
+%%BEARER%%include/QtMobility/qlatin1constant.h
+%%BEARER%%include/QtMobility/qmalgorithms.h
+%%BEARER%%include/QtMobility/qmobilityglobal.h
+%%BEARER%%lib/libQtBearer.prl
+%%BEARER%%lib/libQtBearer.so
+%%BEARER%%lib/libQtBearer.so.1
+%%BEARER%%lib/libQtBearer.so.1.2
+%%BEARER%%lib/libQtBearer.so.1.2.2
%%BEARER%%%%QT_MKSPECDIR%%/features/mobility.prf
%%BEARER%%%%QT_MKSPECDIR%%/features/mobilityconfig.prf
%%CONNECTIVITY%%bin/ndefhandlergen
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QBluetoothAddress
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QBluetoothDeviceDiscoveryAgent
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QBluetoothDeviceInfo
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QBluetoothHostInfo
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QBluetoothLocalDevice
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QBluetoothServiceDiscoveryAgent
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QBluetoothServiceInfo
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QBluetoothSocket
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QBluetoothTransferManager
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QBluetoothTransferReply
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QBluetoothTransferRequest
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QBluetoothUuid
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QDeclarativeNdefRecord
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QL2capServer
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QL2capSocket
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QLlcpServer
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QLlcpSocket
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QNdefFilter
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QNdefMessage
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QNdefNfcTextRecord
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QNdefNfcUriRecord
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QNdefRecord
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QNearFieldManager
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QNearFieldTagType1
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QNearFieldTagType2
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QNearFieldTagType3
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QNearFieldTagType4
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QNearFieldTarget
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QRfcommServer
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/QRfcommSocket
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qbluetooth.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qbluetoothaddress.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qbluetoothdevicediscoveryagent.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qbluetoothdeviceinfo.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qbluetoothlocaldevice.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qbluetoothservicediscoveryagent.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qbluetoothserviceinfo.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qbluetoothsocket.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qbluetoothtransfermanager.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qbluetoothtransferreply.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qbluetoothtransferrequest.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qbluetoothuuid.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qdeclarativendefrecord.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/ql2capserver.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/ql2capsocket.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qllcpserver.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qllcpsocket.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qndeffilter.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qndefmessage.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qndefnfctextrecord.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qndefnfcurirecord.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qndefrecord.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qnearfieldmanager.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qnearfieldtagtype1.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qnearfieldtagtype2.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qnearfieldtagtype3.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qnearfieldtagtype4.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qnearfieldtarget.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qrfcommserver.h
-%%CONNECTIVITY%%%%QT_INCDIR%%/QtConnectivity/qrfcommsocket.h
+%%CONNECTIVITY%%include/QtConnectivity/QBluetoothAddress
+%%CONNECTIVITY%%include/QtConnectivity/QBluetoothDeviceDiscoveryAgent
+%%CONNECTIVITY%%include/QtConnectivity/QBluetoothDeviceInfo
+%%CONNECTIVITY%%include/QtConnectivity/QBluetoothHostInfo
+%%CONNECTIVITY%%include/QtConnectivity/QBluetoothLocalDevice
+%%CONNECTIVITY%%include/QtConnectivity/QBluetoothServiceDiscoveryAgent
+%%CONNECTIVITY%%include/QtConnectivity/QBluetoothServiceInfo
+%%CONNECTIVITY%%include/QtConnectivity/QBluetoothSocket
+%%CONNECTIVITY%%include/QtConnectivity/QBluetoothTransferManager
+%%CONNECTIVITY%%include/QtConnectivity/QBluetoothTransferReply
+%%CONNECTIVITY%%include/QtConnectivity/QBluetoothTransferRequest
+%%CONNECTIVITY%%include/QtConnectivity/QBluetoothUuid
+%%CONNECTIVITY%%include/QtConnectivity/QDeclarativeNdefRecord
+%%CONNECTIVITY%%include/QtConnectivity/QL2capServer
+%%CONNECTIVITY%%include/QtConnectivity/QL2capSocket
+%%CONNECTIVITY%%include/QtConnectivity/QLlcpServer
+%%CONNECTIVITY%%include/QtConnectivity/QLlcpSocket
+%%CONNECTIVITY%%include/QtConnectivity/QNdefFilter
+%%CONNECTIVITY%%include/QtConnectivity/QNdefMessage
+%%CONNECTIVITY%%include/QtConnectivity/QNdefNfcTextRecord
+%%CONNECTIVITY%%include/QtConnectivity/QNdefNfcUriRecord
+%%CONNECTIVITY%%include/QtConnectivity/QNdefRecord
+%%CONNECTIVITY%%include/QtConnectivity/QNearFieldManager
+%%CONNECTIVITY%%include/QtConnectivity/QNearFieldTagType1
+%%CONNECTIVITY%%include/QtConnectivity/QNearFieldTagType2
+%%CONNECTIVITY%%include/QtConnectivity/QNearFieldTagType3
+%%CONNECTIVITY%%include/QtConnectivity/QNearFieldTagType4
+%%CONNECTIVITY%%include/QtConnectivity/QNearFieldTarget
+%%CONNECTIVITY%%include/QtConnectivity/QRfcommServer
+%%CONNECTIVITY%%include/QtConnectivity/QRfcommSocket
+%%CONNECTIVITY%%include/QtConnectivity/qbluetooth.h
+%%CONNECTIVITY%%include/QtConnectivity/qbluetoothaddress.h
+%%CONNECTIVITY%%include/QtConnectivity/qbluetoothdevicediscoveryagent.h
+%%CONNECTIVITY%%include/QtConnectivity/qbluetoothdeviceinfo.h
+%%CONNECTIVITY%%include/QtConnectivity/qbluetoothlocaldevice.h
+%%CONNECTIVITY%%include/QtConnectivity/qbluetoothservicediscoveryagent.h
+%%CONNECTIVITY%%include/QtConnectivity/qbluetoothserviceinfo.h
+%%CONNECTIVITY%%include/QtConnectivity/qbluetoothsocket.h
+%%CONNECTIVITY%%include/QtConnectivity/qbluetoothtransfermanager.h
+%%CONNECTIVITY%%include/QtConnectivity/qbluetoothtransferreply.h
+%%CONNECTIVITY%%include/QtConnectivity/qbluetoothtransferrequest.h
+%%CONNECTIVITY%%include/QtConnectivity/qbluetoothuuid.h
+%%CONNECTIVITY%%include/QtConnectivity/qdeclarativendefrecord.h
+%%CONNECTIVITY%%include/QtConnectivity/ql2capserver.h
+%%CONNECTIVITY%%include/QtConnectivity/ql2capsocket.h
+%%CONNECTIVITY%%include/QtConnectivity/qllcpserver.h
+%%CONNECTIVITY%%include/QtConnectivity/qllcpsocket.h
+%%CONNECTIVITY%%include/QtConnectivity/qndeffilter.h
+%%CONNECTIVITY%%include/QtConnectivity/qndefmessage.h
+%%CONNECTIVITY%%include/QtConnectivity/qndefnfctextrecord.h
+%%CONNECTIVITY%%include/QtConnectivity/qndefnfcurirecord.h
+%%CONNECTIVITY%%include/QtConnectivity/qndefrecord.h
+%%CONNECTIVITY%%include/QtConnectivity/qnearfieldmanager.h
+%%CONNECTIVITY%%include/QtConnectivity/qnearfieldtagtype1.h
+%%CONNECTIVITY%%include/QtConnectivity/qnearfieldtagtype2.h
+%%CONNECTIVITY%%include/QtConnectivity/qnearfieldtagtype3.h
+%%CONNECTIVITY%%include/QtConnectivity/qnearfieldtagtype4.h
+%%CONNECTIVITY%%include/QtConnectivity/qnearfieldtarget.h
+%%CONNECTIVITY%%include/QtConnectivity/qrfcommserver.h
+%%CONNECTIVITY%%include/QtConnectivity/qrfcommsocket.h
%%CONNECTIVITY%%%%QT_IMPORTDIR%%/QtMobility/connectivity/libdeclarative_connectivity.so
%%CONNECTIVITY%%%%QT_IMPORTDIR%%/QtMobility/connectivity/qmldir
-%%CONNECTIVITY%%lib/qt4/libQtConnectivity.prl
-%%CONNECTIVITY%%lib/qt4/libQtConnectivity.so
-%%CONNECTIVITY%%lib/qt4/libQtConnectivity.so.1
-%%CONNECTIVITY%%lib/qt4/libQtConnectivity.so.1.2
-%%CONNECTIVITY%%lib/qt4/libQtConnectivity.so.1.2.2
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContact
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactAbstractRequest
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactAction
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactActionDescriptor
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactActionFactory
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactActionFilter
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactActionTarget
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactAddress
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactAnniversary
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactAvatar
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactBirthday
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactChangeLogFilter
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactChangeSet
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactDetail
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactDetailDefinition
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactDetailDefinitionFetchRequest
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactDetailDefinitionRemoveRequest
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactDetailDefinitionSaveRequest
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactDetailFieldDefinition
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactDetailFilter
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactDetailRangeFilter
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactDisplayLabel
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactEmailAddress
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactFamily
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactFavorite
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactFetchByIdRequest
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactFetchHint
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactFetchRequest
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactFilter
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactGender
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactGeoLocation
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactGlobalPresence
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactGuid
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactHobby
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactId
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactIntersectionFilter
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactInvalidFilter
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactLocalIdFetchRequest
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactLocalIdFilter
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactManager
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactManagerEngine
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactManagerEngineFactory
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactManagerEngineV2
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactName
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactNickname
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactNote
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactObserver
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactOnlineAccount
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactOrganization
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactPhoneNumber
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactPresence
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactRelationship
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactRelationshipFetchRequest
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactRelationshipFilter
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactRelationshipRemoveRequest
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactRelationshipSaveRequest
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactRemoveRequest
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactRingtone
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactSaveRequest
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactSortOrder
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactSyncTarget
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactTag
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactThumbnail
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactTimestamp
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactType
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactUnionFilter
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/QContactUrl
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontact.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactabstractrequest.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactaction.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactactiondescriptor.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactactionfactory.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactactionfilter.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactactiontarget.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactaddress.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactanniversary.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactavatar.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactbirthday.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactchangelogfilter.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactchangeset.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactdetail.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactdetaildefinition.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactdetaildefinitionfetchrequest.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactdetaildefinitionremoverequest.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactdetaildefinitionsaverequest.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactdetailfielddefinition.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactdetailfilter.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactdetailrangefilter.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactdetails.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactdisplaylabel.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactemailaddress.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactfamily.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactfavorite.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactfetchbyidrequest.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactfetchhint.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactfetchrequest.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactfilter.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactfilters.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactgender.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactgeolocation.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactglobalpresence.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactguid.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontacthobby.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactid.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactintersectionfilter.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactinvalidfilter.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactlocalidfetchrequest.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactlocalidfilter.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactmanager.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactmanagerengine.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactmanagerenginefactory.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactname.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactnickname.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactnote.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactobserver.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactonlineaccount.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactorganization.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactphonenumber.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactpresence.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactrelationship.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactrelationshipfetchrequest.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactrelationshipfilter.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactrelationshipremoverequest.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactrelationshipsaverequest.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactremoverequest.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactrequests.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactringtone.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactsaverequest.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactsortorder.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactsynctarget.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontacttag.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactthumbnail.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontacttimestamp.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontacttype.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontactunionfilter.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qcontacturl.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qtcontacts.h
-%%CONTACTS%%%%QT_INCDIR%%/QtContacts/qtcontactsglobal.h
-%%CONTACTS%%lib/qt4/libQtContacts.prl
-%%CONTACTS%%lib/qt4/libQtContacts.so
-%%CONTACTS%%lib/qt4/libQtContacts.so.1
-%%CONTACTS%%lib/qt4/libQtContacts.so.1.2
-%%CONTACTS%%lib/qt4/libQtContacts.so.1.2.2
-%%FEEDBACK%%%%QT_INCDIR%%/QtFeedback/QFeedbackActuator
-%%FEEDBACK%%%%QT_INCDIR%%/QtFeedback/QFeedbackEffect
-%%FEEDBACK%%%%QT_INCDIR%%/QtFeedback/QFeedbackFileEffect
-%%FEEDBACK%%%%QT_INCDIR%%/QtFeedback/QFeedbackFileInterface
-%%FEEDBACK%%%%QT_INCDIR%%/QtFeedback/QFeedbackHapticsEffect
-%%FEEDBACK%%%%QT_INCDIR%%/QtFeedback/QFeedbackHapticsInterface
-%%FEEDBACK%%%%QT_INCDIR%%/QtFeedback/QFeedbackInterface
-%%FEEDBACK%%%%QT_INCDIR%%/QtFeedback/QFeedbackThemeInterface
-%%FEEDBACK%%%%QT_INCDIR%%/QtFeedback/qfeedbackactuator.h
-%%FEEDBACK%%%%QT_INCDIR%%/QtFeedback/qfeedbackeffect.h
-%%FEEDBACK%%%%QT_INCDIR%%/QtFeedback/qfeedbackplugininterfaces.h
+%%CONNECTIVITY%%lib/libQtConnectivity.prl
+%%CONNECTIVITY%%lib/libQtConnectivity.so
+%%CONNECTIVITY%%lib/libQtConnectivity.so.1
+%%CONNECTIVITY%%lib/libQtConnectivity.so.1.2
+%%CONNECTIVITY%%lib/libQtConnectivity.so.1.2.2
+%%CONTACTS%%include/QtContacts/QContact
+%%CONTACTS%%include/QtContacts/QContactAbstractRequest
+%%CONTACTS%%include/QtContacts/QContactAction
+%%CONTACTS%%include/QtContacts/QContactActionDescriptor
+%%CONTACTS%%include/QtContacts/QContactActionFactory
+%%CONTACTS%%include/QtContacts/QContactActionFilter
+%%CONTACTS%%include/QtContacts/QContactActionTarget
+%%CONTACTS%%include/QtContacts/QContactAddress
+%%CONTACTS%%include/QtContacts/QContactAnniversary
+%%CONTACTS%%include/QtContacts/QContactAvatar
+%%CONTACTS%%include/QtContacts/QContactBirthday
+%%CONTACTS%%include/QtContacts/QContactChangeLogFilter
+%%CONTACTS%%include/QtContacts/QContactChangeSet
+%%CONTACTS%%include/QtContacts/QContactDetail
+%%CONTACTS%%include/QtContacts/QContactDetailDefinition
+%%CONTACTS%%include/QtContacts/QContactDetailDefinitionFetchRequest
+%%CONTACTS%%include/QtContacts/QContactDetailDefinitionRemoveRequest
+%%CONTACTS%%include/QtContacts/QContactDetailDefinitionSaveRequest
+%%CONTACTS%%include/QtContacts/QContactDetailFieldDefinition
+%%CONTACTS%%include/QtContacts/QContactDetailFilter
+%%CONTACTS%%include/QtContacts/QContactDetailRangeFilter
+%%CONTACTS%%include/QtContacts/QContactDisplayLabel
+%%CONTACTS%%include/QtContacts/QContactEmailAddress
+%%CONTACTS%%include/QtContacts/QContactFamily
+%%CONTACTS%%include/QtContacts/QContactFavorite
+%%CONTACTS%%include/QtContacts/QContactFetchByIdRequest
+%%CONTACTS%%include/QtContacts/QContactFetchHint
+%%CONTACTS%%include/QtContacts/QContactFetchRequest
+%%CONTACTS%%include/QtContacts/QContactFilter
+%%CONTACTS%%include/QtContacts/QContactGender
+%%CONTACTS%%include/QtContacts/QContactGeoLocation
+%%CONTACTS%%include/QtContacts/QContactGlobalPresence
+%%CONTACTS%%include/QtContacts/QContactGuid
+%%CONTACTS%%include/QtContacts/QContactHobby
+%%CONTACTS%%include/QtContacts/QContactId
+%%CONTACTS%%include/QtContacts/QContactIntersectionFilter
+%%CONTACTS%%include/QtContacts/QContactInvalidFilter
+%%CONTACTS%%include/QtContacts/QContactLocalIdFetchRequest
+%%CONTACTS%%include/QtContacts/QContactLocalIdFilter
+%%CONTACTS%%include/QtContacts/QContactManager
+%%CONTACTS%%include/QtContacts/QContactManagerEngine
+%%CONTACTS%%include/QtContacts/QContactManagerEngineFactory
+%%CONTACTS%%include/QtContacts/QContactManagerEngineV2
+%%CONTACTS%%include/QtContacts/QContactName
+%%CONTACTS%%include/QtContacts/QContactNickname
+%%CONTACTS%%include/QtContacts/QContactNote
+%%CONTACTS%%include/QtContacts/QContactObserver
+%%CONTACTS%%include/QtContacts/QContactOnlineAccount
+%%CONTACTS%%include/QtContacts/QContactOrganization
+%%CONTACTS%%include/QtContacts/QContactPhoneNumber
+%%CONTACTS%%include/QtContacts/QContactPresence
+%%CONTACTS%%include/QtContacts/QContactRelationship
+%%CONTACTS%%include/QtContacts/QContactRelationshipFetchRequest
+%%CONTACTS%%include/QtContacts/QContactRelationshipFilter
+%%CONTACTS%%include/QtContacts/QContactRelationshipRemoveRequest
+%%CONTACTS%%include/QtContacts/QContactRelationshipSaveRequest
+%%CONTACTS%%include/QtContacts/QContactRemoveRequest
+%%CONTACTS%%include/QtContacts/QContactRingtone
+%%CONTACTS%%include/QtContacts/QContactSaveRequest
+%%CONTACTS%%include/QtContacts/QContactSortOrder
+%%CONTACTS%%include/QtContacts/QContactSyncTarget
+%%CONTACTS%%include/QtContacts/QContactTag
+%%CONTACTS%%include/QtContacts/QContactThumbnail
+%%CONTACTS%%include/QtContacts/QContactTimestamp
+%%CONTACTS%%include/QtContacts/QContactType
+%%CONTACTS%%include/QtContacts/QContactUnionFilter
+%%CONTACTS%%include/QtContacts/QContactUrl
+%%CONTACTS%%include/QtContacts/qcontact.h
+%%CONTACTS%%include/QtContacts/qcontactabstractrequest.h
+%%CONTACTS%%include/QtContacts/qcontactaction.h
+%%CONTACTS%%include/QtContacts/qcontactactiondescriptor.h
+%%CONTACTS%%include/QtContacts/qcontactactionfactory.h
+%%CONTACTS%%include/QtContacts/qcontactactionfilter.h
+%%CONTACTS%%include/QtContacts/qcontactactiontarget.h
+%%CONTACTS%%include/QtContacts/qcontactaddress.h
+%%CONTACTS%%include/QtContacts/qcontactanniversary.h
+%%CONTACTS%%include/QtContacts/qcontactavatar.h
+%%CONTACTS%%include/QtContacts/qcontactbirthday.h
+%%CONTACTS%%include/QtContacts/qcontactchangelogfilter.h
+%%CONTACTS%%include/QtContacts/qcontactchangeset.h
+%%CONTACTS%%include/QtContacts/qcontactdetail.h
+%%CONTACTS%%include/QtContacts/qcontactdetaildefinition.h
+%%CONTACTS%%include/QtContacts/qcontactdetaildefinitionfetchrequest.h
+%%CONTACTS%%include/QtContacts/qcontactdetaildefinitionremoverequest.h
+%%CONTACTS%%include/QtContacts/qcontactdetaildefinitionsaverequest.h
+%%CONTACTS%%include/QtContacts/qcontactdetailfielddefinition.h
+%%CONTACTS%%include/QtContacts/qcontactdetailfilter.h
+%%CONTACTS%%include/QtContacts/qcontactdetailrangefilter.h
+%%CONTACTS%%include/QtContacts/qcontactdetails.h
+%%CONTACTS%%include/QtContacts/qcontactdisplaylabel.h
+%%CONTACTS%%include/QtContacts/qcontactemailaddress.h
+%%CONTACTS%%include/QtContacts/qcontactfamily.h
+%%CONTACTS%%include/QtContacts/qcontactfavorite.h
+%%CONTACTS%%include/QtContacts/qcontactfetchbyidrequest.h
+%%CONTACTS%%include/QtContacts/qcontactfetchhint.h
+%%CONTACTS%%include/QtContacts/qcontactfetchrequest.h
+%%CONTACTS%%include/QtContacts/qcontactfilter.h
+%%CONTACTS%%include/QtContacts/qcontactfilters.h
+%%CONTACTS%%include/QtContacts/qcontactgender.h
+%%CONTACTS%%include/QtContacts/qcontactgeolocation.h
+%%CONTACTS%%include/QtContacts/qcontactglobalpresence.h
+%%CONTACTS%%include/QtContacts/qcontactguid.h
+%%CONTACTS%%include/QtContacts/qcontacthobby.h
+%%CONTACTS%%include/QtContacts/qcontactid.h
+%%CONTACTS%%include/QtContacts/qcontactintersectionfilter.h
+%%CONTACTS%%include/QtContacts/qcontactinvalidfilter.h
+%%CONTACTS%%include/QtContacts/qcontactlocalidfetchrequest.h
+%%CONTACTS%%include/QtContacts/qcontactlocalidfilter.h
+%%CONTACTS%%include/QtContacts/qcontactmanager.h
+%%CONTACTS%%include/QtContacts/qcontactmanagerengine.h
+%%CONTACTS%%include/QtContacts/qcontactmanagerenginefactory.h
+%%CONTACTS%%include/QtContacts/qcontactname.h
+%%CONTACTS%%include/QtContacts/qcontactnickname.h
+%%CONTACTS%%include/QtContacts/qcontactnote.h
+%%CONTACTS%%include/QtContacts/qcontactobserver.h
+%%CONTACTS%%include/QtContacts/qcontactonlineaccount.h
+%%CONTACTS%%include/QtContacts/qcontactorganization.h
+%%CONTACTS%%include/QtContacts/qcontactphonenumber.h
+%%CONTACTS%%include/QtContacts/qcontactpresence.h
+%%CONTACTS%%include/QtContacts/qcontactrelationship.h
+%%CONTACTS%%include/QtContacts/qcontactrelationshipfetchrequest.h
+%%CONTACTS%%include/QtContacts/qcontactrelationshipfilter.h
+%%CONTACTS%%include/QtContacts/qcontactrelationshipremoverequest.h
+%%CONTACTS%%include/QtContacts/qcontactrelationshipsaverequest.h
+%%CONTACTS%%include/QtContacts/qcontactremoverequest.h
+%%CONTACTS%%include/QtContacts/qcontactrequests.h
+%%CONTACTS%%include/QtContacts/qcontactringtone.h
+%%CONTACTS%%include/QtContacts/qcontactsaverequest.h
+%%CONTACTS%%include/QtContacts/qcontactsortorder.h
+%%CONTACTS%%include/QtContacts/qcontactsynctarget.h
+%%CONTACTS%%include/QtContacts/qcontacttag.h
+%%CONTACTS%%include/QtContacts/qcontactthumbnail.h
+%%CONTACTS%%include/QtContacts/qcontacttimestamp.h
+%%CONTACTS%%include/QtContacts/qcontacttype.h
+%%CONTACTS%%include/QtContacts/qcontactunionfilter.h
+%%CONTACTS%%include/QtContacts/qcontacturl.h
+%%CONTACTS%%include/QtContacts/qtcontacts.h
+%%CONTACTS%%include/QtContacts/qtcontactsglobal.h
+%%CONTACTS%%lib/libQtContacts.prl
+%%CONTACTS%%lib/libQtContacts.so
+%%CONTACTS%%lib/libQtContacts.so.1
+%%CONTACTS%%lib/libQtContacts.so.1.2
+%%CONTACTS%%lib/libQtContacts.so.1.2.2
+%%FEEDBACK%%include/QtFeedback/QFeedbackActuator
+%%FEEDBACK%%include/QtFeedback/QFeedbackEffect
+%%FEEDBACK%%include/QtFeedback/QFeedbackFileEffect
+%%FEEDBACK%%include/QtFeedback/QFeedbackFileInterface
+%%FEEDBACK%%include/QtFeedback/QFeedbackHapticsEffect
+%%FEEDBACK%%include/QtFeedback/QFeedbackHapticsInterface
+%%FEEDBACK%%include/QtFeedback/QFeedbackInterface
+%%FEEDBACK%%include/QtFeedback/QFeedbackThemeInterface
+%%FEEDBACK%%include/QtFeedback/qfeedbackactuator.h
+%%FEEDBACK%%include/QtFeedback/qfeedbackeffect.h
+%%FEEDBACK%%include/QtFeedback/qfeedbackplugininterfaces.h
%%FEEDBACK%%%%QT_IMPORTDIR%%/QtMobility/feedback/libdeclarative_feedback.so
%%FEEDBACK%%%%QT_IMPORTDIR%%/QtMobility/feedback/qmldir
-%%FEEDBACK%%lib/qt4/libQtFeedback.prl
-%%FEEDBACK%%lib/qt4/libQtFeedback.so
-%%FEEDBACK%%lib/qt4/libQtFeedback.so.1
-%%FEEDBACK%%lib/qt4/libQtFeedback.so.1.2
-%%FEEDBACK%%lib/qt4/libQtFeedback.so.1.2.2
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QAbstractGallery
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QDocumentGallery
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QGalleryAbstractRequest
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QGalleryAbstractResponse
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QGalleryFilter
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QGalleryIntersectionFilter
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QGalleryItemRequest
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QGalleryMetaDataFilter
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QGalleryQueryModel
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QGalleryQueryRequest
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QGalleryResource
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QGalleryResultSet
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QGalleryTypeRequest
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/QGalleryUnionFilter
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qabstractgallery.h
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qdocumentgallery.h
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qgalleryabstractrequest.h
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qgalleryabstractresponse.h
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qgalleryfilter.h
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qgalleryitemrequest.h
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qgalleryproperty.h
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qgalleryquerymodel.h
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qgalleryqueryrequest.h
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qgalleryresource.h
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qgalleryresultset.h
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qgallerytype.h
-%%GALLERY%%%%QT_INCDIR%%/QtGallery/qgallerytyperequest.h
+%%FEEDBACK%%lib/libQtFeedback.prl
+%%FEEDBACK%%lib/libQtFeedback.so
+%%FEEDBACK%%lib/libQtFeedback.so.1
+%%FEEDBACK%%lib/libQtFeedback.so.1.2
+%%FEEDBACK%%lib/libQtFeedback.so.1.2.2
+%%GALLERY%%include/QtGallery/QAbstractGallery
+%%GALLERY%%include/QtGallery/QDocumentGallery
+%%GALLERY%%include/QtGallery/QGalleryAbstractRequest
+%%GALLERY%%include/QtGallery/QGalleryAbstractResponse
+%%GALLERY%%include/QtGallery/QGalleryFilter
+%%GALLERY%%include/QtGallery/QGalleryIntersectionFilter
+%%GALLERY%%include/QtGallery/QGalleryItemRequest
+%%GALLERY%%include/QtGallery/QGalleryMetaDataFilter
+%%GALLERY%%include/QtGallery/QGalleryQueryModel
+%%GALLERY%%include/QtGallery/QGalleryQueryRequest
+%%GALLERY%%include/QtGallery/QGalleryResource
+%%GALLERY%%include/QtGallery/QGalleryResultSet
+%%GALLERY%%include/QtGallery/QGalleryTypeRequest
+%%GALLERY%%include/QtGallery/QGalleryUnionFilter
+%%GALLERY%%include/QtGallery/qabstractgallery.h
+%%GALLERY%%include/QtGallery/qdocumentgallery.h
+%%GALLERY%%include/QtGallery/qgalleryabstractrequest.h
+%%GALLERY%%include/QtGallery/qgalleryabstractresponse.h
+%%GALLERY%%include/QtGallery/qgalleryfilter.h
+%%GALLERY%%include/QtGallery/qgalleryitemrequest.h
+%%GALLERY%%include/QtGallery/qgalleryproperty.h
+%%GALLERY%%include/QtGallery/qgalleryquerymodel.h
+%%GALLERY%%include/QtGallery/qgalleryqueryrequest.h
+%%GALLERY%%include/QtGallery/qgalleryresource.h
+%%GALLERY%%include/QtGallery/qgalleryresultset.h
+%%GALLERY%%include/QtGallery/qgallerytype.h
+%%GALLERY%%include/QtGallery/qgallerytyperequest.h
%%GALLERY%%%%QT_IMPORTDIR%%/QtMobility/gallery/libdeclarative_gallery.so
%%GALLERY%%%%QT_IMPORTDIR%%/QtMobility/gallery/qmldir
-%%GALLERY%%lib/qt4/libQtGallery.prl
-%%GALLERY%%lib/qt4/libQtGallery.so
-%%GALLERY%%lib/qt4/libQtGallery.so.1
-%%GALLERY%%lib/qt4/libQtGallery.so.1.2
-%%GALLERY%%lib/qt4/libQtGallery.so.1.2.2
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoAddress
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoAreaMonitor
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoBoundingArea
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoBoundingBox
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoBoundingCircle
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoCoordinate
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoManeuver
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapCircleObject
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapCustomObject
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapData
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapGroupObject
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapObject
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapObjectInfo
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapOverlay
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapPixmapObject
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapPolygonObject
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapPolylineObject
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapRectangleObject
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapRouteObject
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMapTextObject
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMappingManager
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoMappingManagerEngine
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoPlace
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoPositionInfo
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoPositionInfoSource
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoPositionInfoSourceFactory
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoRoute
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoRouteReply
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoRouteRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoRouteSegment
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoRoutingManager
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoRoutingManagerEngine
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoSatelliteInfo
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoSatelliteInfoSource
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoSearchManager
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoSearchManagerEngine
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoSearchReply
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoServiceProvider
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoServiceProviderFactory
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoTiledMapData
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoTiledMapReply
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoTiledMapRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGeoTiledMappingManagerEngine
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QGraphicsGeoMap
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmark
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkAbstractRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkAttributeFilter
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkBoxFilter
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkCategory
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkCategoryFetchByIdRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkCategoryFetchRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkCategoryFilter
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkCategoryId
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkCategoryIdFetchRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkCategoryRemoveRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkCategorySaveRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkExportRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkFetchByIdRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkFetchRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkFilter
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkId
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkIdFetchRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkIdFilter
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkImportRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkIntersectionFilter
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkManager
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkManagerEngine
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkManagerEngineFactory
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkNameFilter
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkNameSort
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkProximityFilter
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkRemoveRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkSaveRequest
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkSortOrder
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLandmarkUnionFilter
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QLocationNetworkAccessManagerFactory
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/QNmeaPositionInfoSource
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoaddress.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoareamonitor.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoboundingarea.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoboundingbox.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoboundingcircle.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeocoordinate.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomaneuver.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomapcircleobject.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomapcustomobject.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomapdata.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomapgroupobject.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomapobject.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomapobjectinfo.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomapoverlay.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomappingmanager.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomappingmanagerengine.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomappixmapobject.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomappolygonobject.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomappolylineobject.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomaprectangleobject.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomaprouteobject.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeomaptextobject.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoplace.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeopositioninfo.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeopositioninfosource.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeopositioninfosourcefactory.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoroute.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoroutereply.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeorouterequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoroutesegment.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoroutingmanager.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoroutingmanagerengine.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeosatelliteinfo.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeosatelliteinfosource.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeosearchmanager.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeosearchmanagerengine.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeosearchreply.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoserviceprovider.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeoserviceproviderfactory.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeotiledmapdata.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeotiledmappingmanagerengine.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeotiledmapreply.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgeotiledmaprequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qgraphicsgeomap.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmark.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkabstractrequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkattributefilter.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkboxfilter.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkcategory.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkcategoryfetchbyidrequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkcategoryfetchrequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkcategoryfilter.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkcategoryid.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkcategoryidfetchrequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkcategoryremoverequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkcategorysaverequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkexportrequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkfetchbyidrequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkfetchrequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkfilter.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkid.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkidfetchrequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkidfilter.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkimportrequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkintersectionfilter.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkmanager.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkmanagerengine.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkmanagerenginefactory.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarknamefilter.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarknamesort.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkproximityfilter.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkremoverequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarksaverequest.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarksortorder.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qlandmarkunionfilter.h
-%%LOCATION%%%%QT_INCDIR%%/QtLocation/qnmeapositioninfosource.h
+%%GALLERY%%lib/libQtGallery.prl
+%%GALLERY%%lib/libQtGallery.so
+%%GALLERY%%lib/libQtGallery.so.1
+%%GALLERY%%lib/libQtGallery.so.1.2
+%%GALLERY%%lib/libQtGallery.so.1.2.2
+%%LOCATION%%include/QtLocation/QGeoAddress
+%%LOCATION%%include/QtLocation/QGeoAreaMonitor
+%%LOCATION%%include/QtLocation/QGeoBoundingArea
+%%LOCATION%%include/QtLocation/QGeoBoundingBox
+%%LOCATION%%include/QtLocation/QGeoBoundingCircle
+%%LOCATION%%include/QtLocation/QGeoCoordinate
+%%LOCATION%%include/QtLocation/QGeoManeuver
+%%LOCATION%%include/QtLocation/QGeoMapCircleObject
+%%LOCATION%%include/QtLocation/QGeoMapCustomObject
+%%LOCATION%%include/QtLocation/QGeoMapData
+%%LOCATION%%include/QtLocation/QGeoMapGroupObject
+%%LOCATION%%include/QtLocation/QGeoMapObject
+%%LOCATION%%include/QtLocation/QGeoMapObjectInfo
+%%LOCATION%%include/QtLocation/QGeoMapOverlay
+%%LOCATION%%include/QtLocation/QGeoMapPixmapObject
+%%LOCATION%%include/QtLocation/QGeoMapPolygonObject
+%%LOCATION%%include/QtLocation/QGeoMapPolylineObject
+%%LOCATION%%include/QtLocation/QGeoMapRectangleObject
+%%LOCATION%%include/QtLocation/QGeoMapRouteObject
+%%LOCATION%%include/QtLocation/QGeoMapTextObject
+%%LOCATION%%include/QtLocation/QGeoMappingManager
+%%LOCATION%%include/QtLocation/QGeoMappingManagerEngine
+%%LOCATION%%include/QtLocation/QGeoPlace
+%%LOCATION%%include/QtLocation/QGeoPositionInfo
+%%LOCATION%%include/QtLocation/QGeoPositionInfoSource
+%%LOCATION%%include/QtLocation/QGeoPositionInfoSourceFactory
+%%LOCATION%%include/QtLocation/QGeoRoute
+%%LOCATION%%include/QtLocation/QGeoRouteReply
+%%LOCATION%%include/QtLocation/QGeoRouteRequest
+%%LOCATION%%include/QtLocation/QGeoRouteSegment
+%%LOCATION%%include/QtLocation/QGeoRoutingManager
+%%LOCATION%%include/QtLocation/QGeoRoutingManagerEngine
+%%LOCATION%%include/QtLocation/QGeoSatelliteInfo
+%%LOCATION%%include/QtLocation/QGeoSatelliteInfoSource
+%%LOCATION%%include/QtLocation/QGeoSearchManager
+%%LOCATION%%include/QtLocation/QGeoSearchManagerEngine
+%%LOCATION%%include/QtLocation/QGeoSearchReply
+%%LOCATION%%include/QtLocation/QGeoServiceProvider
+%%LOCATION%%include/QtLocation/QGeoServiceProviderFactory
+%%LOCATION%%include/QtLocation/QGeoTiledMapData
+%%LOCATION%%include/QtLocation/QGeoTiledMapReply
+%%LOCATION%%include/QtLocation/QGeoTiledMapRequest
+%%LOCATION%%include/QtLocation/QGeoTiledMappingManagerEngine
+%%LOCATION%%include/QtLocation/QGraphicsGeoMap
+%%LOCATION%%include/QtLocation/QLandmark
+%%LOCATION%%include/QtLocation/QLandmarkAbstractRequest
+%%LOCATION%%include/QtLocation/QLandmarkAttributeFilter
+%%LOCATION%%include/QtLocation/QLandmarkBoxFilter
+%%LOCATION%%include/QtLocation/QLandmarkCategory
+%%LOCATION%%include/QtLocation/QLandmarkCategoryFetchByIdRequest
+%%LOCATION%%include/QtLocation/QLandmarkCategoryFetchRequest
+%%LOCATION%%include/QtLocation/QLandmarkCategoryFilter
+%%LOCATION%%include/QtLocation/QLandmarkCategoryId
+%%LOCATION%%include/QtLocation/QLandmarkCategoryIdFetchRequest
+%%LOCATION%%include/QtLocation/QLandmarkCategoryRemoveRequest
+%%LOCATION%%include/QtLocation/QLandmarkCategorySaveRequest
+%%LOCATION%%include/QtLocation/QLandmarkExportRequest
+%%LOCATION%%include/QtLocation/QLandmarkFetchByIdRequest
+%%LOCATION%%include/QtLocation/QLandmarkFetchRequest
+%%LOCATION%%include/QtLocation/QLandmarkFilter
+%%LOCATION%%include/QtLocation/QLandmarkId
+%%LOCATION%%include/QtLocation/QLandmarkIdFetchRequest
+%%LOCATION%%include/QtLocation/QLandmarkIdFilter
+%%LOCATION%%include/QtLocation/QLandmarkImportRequest
+%%LOCATION%%include/QtLocation/QLandmarkIntersectionFilter
+%%LOCATION%%include/QtLocation/QLandmarkManager
+%%LOCATION%%include/QtLocation/QLandmarkManagerEngine
+%%LOCATION%%include/QtLocation/QLandmarkManagerEngineFactory
+%%LOCATION%%include/QtLocation/QLandmarkNameFilter
+%%LOCATION%%include/QtLocation/QLandmarkNameSort
+%%LOCATION%%include/QtLocation/QLandmarkProximityFilter
+%%LOCATION%%include/QtLocation/QLandmarkRemoveRequest
+%%LOCATION%%include/QtLocation/QLandmarkSaveRequest
+%%LOCATION%%include/QtLocation/QLandmarkSortOrder
+%%LOCATION%%include/QtLocation/QLandmarkUnionFilter
+%%LOCATION%%include/QtLocation/QLocationNetworkAccessManagerFactory
+%%LOCATION%%include/QtLocation/QNmeaPositionInfoSource
+%%LOCATION%%include/QtLocation/qgeoaddress.h
+%%LOCATION%%include/QtLocation/qgeoareamonitor.h
+%%LOCATION%%include/QtLocation/qgeoboundingarea.h
+%%LOCATION%%include/QtLocation/qgeoboundingbox.h
+%%LOCATION%%include/QtLocation/qgeoboundingcircle.h
+%%LOCATION%%include/QtLocation/qgeocoordinate.h
+%%LOCATION%%include/QtLocation/qgeomaneuver.h
+%%LOCATION%%include/QtLocation/qgeomapcircleobject.h
+%%LOCATION%%include/QtLocation/qgeomapcustomobject.h
+%%LOCATION%%include/QtLocation/qgeomapdata.h
+%%LOCATION%%include/QtLocation/qgeomapgroupobject.h
+%%LOCATION%%include/QtLocation/qgeomapobject.h
+%%LOCATION%%include/QtLocation/qgeomapobjectinfo.h
+%%LOCATION%%include/QtLocation/qgeomapoverlay.h
+%%LOCATION%%include/QtLocation/qgeomappingmanager.h
+%%LOCATION%%include/QtLocation/qgeomappingmanagerengine.h
+%%LOCATION%%include/QtLocation/qgeomappixmapobject.h
+%%LOCATION%%include/QtLocation/qgeomappolygonobject.h
+%%LOCATION%%include/QtLocation/qgeomappolylineobject.h
+%%LOCATION%%include/QtLocation/qgeomaprectangleobject.h
+%%LOCATION%%include/QtLocation/qgeomaprouteobject.h
+%%LOCATION%%include/QtLocation/qgeomaptextobject.h
+%%LOCATION%%include/QtLocation/qgeoplace.h
+%%LOCATION%%include/QtLocation/qgeopositioninfo.h
+%%LOCATION%%include/QtLocation/qgeopositioninfosource.h
+%%LOCATION%%include/QtLocation/qgeopositioninfosourcefactory.h
+%%LOCATION%%include/QtLocation/qgeoroute.h
+%%LOCATION%%include/QtLocation/qgeoroutereply.h
+%%LOCATION%%include/QtLocation/qgeorouterequest.h
+%%LOCATION%%include/QtLocation/qgeoroutesegment.h
+%%LOCATION%%include/QtLocation/qgeoroutingmanager.h
+%%LOCATION%%include/QtLocation/qgeoroutingmanagerengine.h
+%%LOCATION%%include/QtLocation/qgeosatelliteinfo.h
+%%LOCATION%%include/QtLocation/qgeosatelliteinfosource.h
+%%LOCATION%%include/QtLocation/qgeosearchmanager.h
+%%LOCATION%%include/QtLocation/qgeosearchmanagerengine.h
+%%LOCATION%%include/QtLocation/qgeosearchreply.h
+%%LOCATION%%include/QtLocation/qgeoserviceprovider.h
+%%LOCATION%%include/QtLocation/qgeoserviceproviderfactory.h
+%%LOCATION%%include/QtLocation/qgeotiledmapdata.h
+%%LOCATION%%include/QtLocation/qgeotiledmappingmanagerengine.h
+%%LOCATION%%include/QtLocation/qgeotiledmapreply.h
+%%LOCATION%%include/QtLocation/qgeotiledmaprequest.h
+%%LOCATION%%include/QtLocation/qgraphicsgeomap.h
+%%LOCATION%%include/QtLocation/qlandmark.h
+%%LOCATION%%include/QtLocation/qlandmarkabstractrequest.h
+%%LOCATION%%include/QtLocation/qlandmarkattributefilter.h
+%%LOCATION%%include/QtLocation/qlandmarkboxfilter.h
+%%LOCATION%%include/QtLocation/qlandmarkcategory.h
+%%LOCATION%%include/QtLocation/qlandmarkcategoryfetchbyidrequest.h
+%%LOCATION%%include/QtLocation/qlandmarkcategoryfetchrequest.h
+%%LOCATION%%include/QtLocation/qlandmarkcategoryfilter.h
+%%LOCATION%%include/QtLocation/qlandmarkcategoryid.h
+%%LOCATION%%include/QtLocation/qlandmarkcategoryidfetchrequest.h
+%%LOCATION%%include/QtLocation/qlandmarkcategoryremoverequest.h
+%%LOCATION%%include/QtLocation/qlandmarkcategorysaverequest.h
+%%LOCATION%%include/QtLocation/qlandmarkexportrequest.h
+%%LOCATION%%include/QtLocation/qlandmarkfetchbyidrequest.h
+%%LOCATION%%include/QtLocation/qlandmarkfetchrequest.h
+%%LOCATION%%include/QtLocation/qlandmarkfilter.h
+%%LOCATION%%include/QtLocation/qlandmarkid.h
+%%LOCATION%%include/QtLocation/qlandmarkidfetchrequest.h
+%%LOCATION%%include/QtLocation/qlandmarkidfilter.h
+%%LOCATION%%include/QtLocation/qlandmarkimportrequest.h
+%%LOCATION%%include/QtLocation/qlandmarkintersectionfilter.h
+%%LOCATION%%include/QtLocation/qlandmarkmanager.h
+%%LOCATION%%include/QtLocation/qlandmarkmanagerengine.h
+%%LOCATION%%include/QtLocation/qlandmarkmanagerenginefactory.h
+%%LOCATION%%include/QtLocation/qlandmarknamefilter.h
+%%LOCATION%%include/QtLocation/qlandmarknamesort.h
+%%LOCATION%%include/QtLocation/qlandmarkproximityfilter.h
+%%LOCATION%%include/QtLocation/qlandmarkremoverequest.h
+%%LOCATION%%include/QtLocation/qlandmarksaverequest.h
+%%LOCATION%%include/QtLocation/qlandmarksortorder.h
+%%LOCATION%%include/QtLocation/qlandmarkunionfilter.h
+%%LOCATION%%include/QtLocation/qnmeapositioninfosource.h
%%LOCATION%%%%QT_IMPORTDIR%%/QtMobility/location/libdeclarative_location.so
%%LOCATION%%%%QT_IMPORTDIR%%/QtMobility/location/qmldir
-%%LOCATION%%lib/qt4/libQtLocation.prl
-%%LOCATION%%lib/qt4/libQtLocation.so
-%%LOCATION%%lib/qt4/libQtLocation.so.1
-%%LOCATION%%lib/qt4/libQtLocation.so.1.2
-%%LOCATION%%lib/qt4/libQtLocation.so.1.2.2
+%%LOCATION%%lib/libQtLocation.prl
+%%LOCATION%%lib/libQtLocation.so
+%%LOCATION%%lib/libQtLocation.so.1
+%%LOCATION%%lib/libQtLocation.so.1.2
+%%LOCATION%%lib/libQtLocation.so.1.2.2
%%LOCATION%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_nokia.so
%%LOCATION%%%%QT_PLUGINDIR%%/landmarks/libqtlandmarks_sqlite.so
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAbstractAudioDeviceInfo
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAbstractAudioInput
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAbstractAudioOutput
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAbstractVideoBuffer
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAbstractVideoSurface
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAudio
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAudioCaptureSource
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAudioDeviceInfo
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAudioEncoderControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAudioEncoderSettings
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAudioEndpointSelector
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAudioFormat
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAudioInput
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAudioOutput
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QAudioSystemPlugin
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCamera
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraCaptureBufferFormatControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraCaptureDestinationControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraExposure
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraExposureControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraFlashControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraFocus
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraFocusControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraFocusZone
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraImageCapture
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraImageCaptureControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraImageProcessing
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraImageProcessingControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraLocksControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QCameraViewfinder
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QGraphicsVideoItem
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QImageEncoderControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QImageEncoderSettings
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QLocalMediaPlaylistProvider
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaBindableInterface
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaContainerControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaContent
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaImageViewer
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaNetworkAccessControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaObject
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaPlayer
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaPlayerControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaPlaylist
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaPlaylistControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaPlaylistIOPlugin
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaPlaylistNavigator
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaPlaylistProvider
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaPlaylistReader
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaPlaylistSourceControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaPlaylistWriter
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaRecorder
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaRecorderControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaResource
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaService
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaServiceProvider
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaServiceProviderHint
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaServiceProviderPlugin
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaStreamsControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaTimeInterval
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMediaTimeRange
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMetaDataReaderControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QMetaDataWriterControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QRadioTuner
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QRadioTunerControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QVideoDeviceControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QVideoEncoderControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QVideoEncoderSettings
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QVideoFrame
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QVideoRendererControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QVideoSurfaceFormat
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QVideoWidget
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QVideoWidgetControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/QVideoWindowControl
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qabstractvideobuffer.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qabstractvideosurface.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qaudio.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qaudiocapturesource.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qaudiodeviceinfo.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qaudioencodercontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qaudioendpointselector.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qaudioformat.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qaudioinput.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qaudiooutput.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qaudiosystem.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qaudiosystemplugin.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcamera.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcameracapturebufferformatcontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcameracapturedestinationcontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcameracontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcameraexposure.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcameraexposurecontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcameraflashcontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcamerafocus.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcamerafocuscontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcameraimagecapture.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcameraimagecapturecontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcameraimageprocessing.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcameraimageprocessingcontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcameralockscontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qcameraviewfinder.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qgraphicsvideoitem.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qimageencodercontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qlocalmediaplaylistprovider.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediabindableinterface.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediacontainercontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediacontent.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediacontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaencodersettings.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaenumdebug.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaimageviewer.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmedianetworkaccesscontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaobject.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaplayer.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaplayercontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaplaylist.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaplaylistcontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaplaylistioplugin.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaplaylistnavigator.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaplaylistprovider.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaplaylistsourcecontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediarecorder.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediarecordercontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaresource.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaservice.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaserviceprovider.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediaserviceproviderplugin.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediastreamscontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmediatimerange.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmetadatareadercontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qmetadatawritercontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qradiotuner.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qradiotunercontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qtmedianamespace.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qvideodevicecontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qvideoencodercontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qvideoframe.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qvideorenderercontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qvideosurfaceformat.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qvideowidget.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qvideowidgetcontrol.h
-%%MULTIMEDIA%%%%QT_INCDIR%%/QtMultimediaKit/qvideowindowcontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/QAbstractAudioDeviceInfo
+%%MULTIMEDIA%%include/QtMultimediaKit/QAbstractAudioInput
+%%MULTIMEDIA%%include/QtMultimediaKit/QAbstractAudioOutput
+%%MULTIMEDIA%%include/QtMultimediaKit/QAbstractVideoBuffer
+%%MULTIMEDIA%%include/QtMultimediaKit/QAbstractVideoSurface
+%%MULTIMEDIA%%include/QtMultimediaKit/QAudio
+%%MULTIMEDIA%%include/QtMultimediaKit/QAudioCaptureSource
+%%MULTIMEDIA%%include/QtMultimediaKit/QAudioDeviceInfo
+%%MULTIMEDIA%%include/QtMultimediaKit/QAudioEncoderControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QAudioEncoderSettings
+%%MULTIMEDIA%%include/QtMultimediaKit/QAudioEndpointSelector
+%%MULTIMEDIA%%include/QtMultimediaKit/QAudioFormat
+%%MULTIMEDIA%%include/QtMultimediaKit/QAudioInput
+%%MULTIMEDIA%%include/QtMultimediaKit/QAudioOutput
+%%MULTIMEDIA%%include/QtMultimediaKit/QAudioSystemPlugin
+%%MULTIMEDIA%%include/QtMultimediaKit/QCamera
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraCaptureBufferFormatControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraCaptureDestinationControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraExposure
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraExposureControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraFlashControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraFocus
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraFocusControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraFocusZone
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraImageCapture
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraImageCaptureControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraImageProcessing
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraImageProcessingControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraLocksControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QCameraViewfinder
+%%MULTIMEDIA%%include/QtMultimediaKit/QGraphicsVideoItem
+%%MULTIMEDIA%%include/QtMultimediaKit/QImageEncoderControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QImageEncoderSettings
+%%MULTIMEDIA%%include/QtMultimediaKit/QLocalMediaPlaylistProvider
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaBindableInterface
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaContainerControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaContent
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaImageViewer
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaNetworkAccessControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaObject
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaPlayer
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaPlayerControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaPlaylist
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaPlaylistControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaPlaylistIOPlugin
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaPlaylistNavigator
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaPlaylistProvider
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaPlaylistReader
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaPlaylistSourceControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaPlaylistWriter
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaRecorder
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaRecorderControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaResource
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaService
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaServiceProvider
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaServiceProviderHint
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaServiceProviderPlugin
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaStreamsControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaTimeInterval
+%%MULTIMEDIA%%include/QtMultimediaKit/QMediaTimeRange
+%%MULTIMEDIA%%include/QtMultimediaKit/QMetaDataReaderControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QMetaDataWriterControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QRadioTuner
+%%MULTIMEDIA%%include/QtMultimediaKit/QRadioTunerControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QVideoDeviceControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QVideoEncoderControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QVideoEncoderSettings
+%%MULTIMEDIA%%include/QtMultimediaKit/QVideoFrame
+%%MULTIMEDIA%%include/QtMultimediaKit/QVideoRendererControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QVideoSurfaceFormat
+%%MULTIMEDIA%%include/QtMultimediaKit/QVideoWidget
+%%MULTIMEDIA%%include/QtMultimediaKit/QVideoWidgetControl
+%%MULTIMEDIA%%include/QtMultimediaKit/QVideoWindowControl
+%%MULTIMEDIA%%include/QtMultimediaKit/qabstractvideobuffer.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qabstractvideosurface.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qaudio.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qaudiocapturesource.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qaudiodeviceinfo.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qaudioencodercontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qaudioendpointselector.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qaudioformat.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qaudioinput.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qaudiooutput.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qaudiosystem.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qaudiosystemplugin.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcamera.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcameracapturebufferformatcontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcameracapturedestinationcontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcameracontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcameraexposure.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcameraexposurecontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcameraflashcontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcamerafocus.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcamerafocuscontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcameraimagecapture.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcameraimagecapturecontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcameraimageprocessing.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcameraimageprocessingcontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcameralockscontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qcameraviewfinder.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qgraphicsvideoitem.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qimageencodercontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qlocalmediaplaylistprovider.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediabindableinterface.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediacontainercontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediacontent.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediacontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaencodersettings.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaenumdebug.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaimageviewer.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmedianetworkaccesscontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaobject.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaplayer.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaplayercontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaplaylist.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaplaylistcontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaplaylistioplugin.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaplaylistnavigator.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaplaylistprovider.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaplaylistsourcecontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediarecorder.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediarecordercontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaresource.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaservice.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaserviceprovider.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediaserviceproviderplugin.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediastreamscontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmediatimerange.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmetadatareadercontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qmetadatawritercontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qradiotuner.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qradiotunercontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qtmedianamespace.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qvideodevicecontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qvideoencodercontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qvideoframe.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qvideorenderercontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qvideosurfaceformat.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qvideowidget.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qvideowidgetcontrol.h
+%%MULTIMEDIA%%include/QtMultimediaKit/qvideowindowcontrol.h
%%MULTIMEDIA%%%%QT_IMPORTDIR%%/QtMultimediaKit/libdeclarative_multimedia.so
%%MULTIMEDIA%%%%QT_IMPORTDIR%%/QtMultimediaKit/qmldir
-%%MULTIMEDIA%%lib/qt4/libQtMultimediaKit.prl
-%%MULTIMEDIA%%lib/qt4/libQtMultimediaKit.so
-%%MULTIMEDIA%%lib/qt4/libQtMultimediaKit.so.1
-%%MULTIMEDIA%%lib/qt4/libQtMultimediaKit.so.1.2
-%%MULTIMEDIA%%lib/qt4/libQtMultimediaKit.so.1.2.2
+%%MULTIMEDIA%%lib/libQtMultimediaKit.prl
+%%MULTIMEDIA%%lib/libQtMultimediaKit.so
+%%MULTIMEDIA%%lib/libQtMultimediaKit.so.1
+%%MULTIMEDIA%%lib/libQtMultimediaKit.so.1.2
+%%MULTIMEDIA%%lib/libQtMultimediaKit.so.1.2.2
%%MULTIMEDIA%%%%QT_PLUGINDIR%%/audio/libqtmedia_pulse.so
%%MULTIMEDIA%%%%QT_PLUGINDIR%%/mediaservice/libqgstengine.so
%%MULTIMEDIA%%%%QT_PLUGINDIR%%/mediaservice/libqtmedia_v4lengine.so
%%MULTIMEDIA%%%%QT_PLUGINDIR%%/playlistformats/libqtmultimediakit_m3u.so
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerAbstractRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerCollection
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerCollectionChangeSet
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerCollectionEngineId
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerCollectionFetchRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerCollectionId
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerCollectionRemoveRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerCollectionSaveRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerEvent
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerEventOccurrence
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerEventTime
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItem
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemAudibleReminder
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemChangeLogFilter
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemChangeSet
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemCollectionFilter
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemComment
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemDescription
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemDetail
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemDetailDefinition
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemDetailDefinitionFetchRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemDetailDefinitionRemoveRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemDetailDefinitionSaveRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemDetailFieldDefinition
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemDetailFilter
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemDetailRangeFilter
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemDisplayLabel
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemEmailReminder
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemEngineId
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemFetchByIdRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemFetchForExportRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemFetchHint
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemFetchRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemFilter
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemGuid
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemId
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemIdFetchRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemIdFilter
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemIntersectionFilter
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemInvalidFilter
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemLocation
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemObserver
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemOccurrenceFetchRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemParent
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemPriority
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemRecurrence
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemReminder
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemRemoveRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemSaveRequest
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemSortOrder
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemTag
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemTimestamp
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemType
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemUnionFilter
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerItemVisualReminder
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerJournal
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerJournalTime
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerManager
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerManagerEngine
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerManagerEngineFactory
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerManagerEngineV2
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerNote
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerRecurrenceRule
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerTodo
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerTodoOccurrence
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerTodoProgress
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/QOrganizerTodoTime
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizerabstractrequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizercollection.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizercollectionchangeset.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizercollectionengineid.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizercollectionfetchrequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizercollectionid.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizercollectionremoverequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizercollectionsaverequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizerevent.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizereventoccurrence.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizereventtime.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritem.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemaudiblereminder.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemchangelogfilter.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemchangeset.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemcollectionfilter.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemcomment.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemdescription.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemdetail.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemdetaildefinition.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemdetaildefinitionfetchrequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemdetaildefinitionremoverequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemdetaildefinitionsaverequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemdetailfielddefinition.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemdetailfilter.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemdetailrangefilter.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemdetails.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemdisplaylabel.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritememailreminder.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemengineid.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemfetchbyidrequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemfetchforexportrequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemfetchhint.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemfetchrequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemfilter.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemfilters.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemguid.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemid.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemidfetchrequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemidfilter.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemintersectionfilter.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeriteminvalidfilter.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemlocation.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemobserver.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemoccurrencefetchrequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemparent.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritempriority.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemrecurrence.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemreminder.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemremoverequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemrequests.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritems.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemsaverequest.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemsortorder.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemtag.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemtimestamp.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemtype.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemunionfilter.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizeritemvisualreminder.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizerjournal.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizerjournaltime.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizermanager.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizermanagerengine.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizermanagerenginefactory.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizernote.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizerrecurrencerule.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizertodo.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizertodooccurrence.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizertodoprogress.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qorganizertodotime.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qtorganizer.h
-%%ORGANIZER%%%%QT_INCDIR%%/QtOrganizer/qtorganizerglobal.h
-%%ORGANIZER%%lib/qt4/libQtOrganizer.prl
-%%ORGANIZER%%lib/qt4/libQtOrganizer.so
-%%ORGANIZER%%lib/qt4/libQtOrganizer.so.1
-%%ORGANIZER%%lib/qt4/libQtOrganizer.so.1.2
-%%ORGANIZER%%lib/qt4/libQtOrganizer.so.1.2.2
+%%ORGANIZER%%include/QtOrganizer/QOrganizerAbstractRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerCollection
+%%ORGANIZER%%include/QtOrganizer/QOrganizerCollectionChangeSet
+%%ORGANIZER%%include/QtOrganizer/QOrganizerCollectionEngineId
+%%ORGANIZER%%include/QtOrganizer/QOrganizerCollectionFetchRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerCollectionId
+%%ORGANIZER%%include/QtOrganizer/QOrganizerCollectionRemoveRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerCollectionSaveRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerEvent
+%%ORGANIZER%%include/QtOrganizer/QOrganizerEventOccurrence
+%%ORGANIZER%%include/QtOrganizer/QOrganizerEventTime
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItem
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemAudibleReminder
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemChangeLogFilter
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemChangeSet
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemCollectionFilter
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemComment
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemDescription
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemDetail
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemDetailDefinition
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemDetailDefinitionFetchRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemDetailDefinitionRemoveRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemDetailDefinitionSaveRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemDetailFieldDefinition
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemDetailFilter
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemDetailRangeFilter
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemDisplayLabel
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemEmailReminder
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemEngineId
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemFetchByIdRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemFetchForExportRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemFetchHint
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemFetchRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemFilter
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemGuid
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemId
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemIdFetchRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemIdFilter
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemIntersectionFilter
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemInvalidFilter
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemLocation
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemObserver
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemOccurrenceFetchRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemParent
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemPriority
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemRecurrence
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemReminder
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemRemoveRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemSaveRequest
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemSortOrder
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemTag
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemTimestamp
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemType
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemUnionFilter
+%%ORGANIZER%%include/QtOrganizer/QOrganizerItemVisualReminder
+%%ORGANIZER%%include/QtOrganizer/QOrganizerJournal
+%%ORGANIZER%%include/QtOrganizer/QOrganizerJournalTime
+%%ORGANIZER%%include/QtOrganizer/QOrganizerManager
+%%ORGANIZER%%include/QtOrganizer/QOrganizerManagerEngine
+%%ORGANIZER%%include/QtOrganizer/QOrganizerManagerEngineFactory
+%%ORGANIZER%%include/QtOrganizer/QOrganizerManagerEngineV2
+%%ORGANIZER%%include/QtOrganizer/QOrganizerNote
+%%ORGANIZER%%include/QtOrganizer/QOrganizerRecurrenceRule
+%%ORGANIZER%%include/QtOrganizer/QOrganizerTodo
+%%ORGANIZER%%include/QtOrganizer/QOrganizerTodoOccurrence
+%%ORGANIZER%%include/QtOrganizer/QOrganizerTodoProgress
+%%ORGANIZER%%include/QtOrganizer/QOrganizerTodoTime
+%%ORGANIZER%%include/QtOrganizer/qorganizerabstractrequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizercollection.h
+%%ORGANIZER%%include/QtOrganizer/qorganizercollectionchangeset.h
+%%ORGANIZER%%include/QtOrganizer/qorganizercollectionengineid.h
+%%ORGANIZER%%include/QtOrganizer/qorganizercollectionfetchrequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizercollectionid.h
+%%ORGANIZER%%include/QtOrganizer/qorganizercollectionremoverequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizercollectionsaverequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizerevent.h
+%%ORGANIZER%%include/QtOrganizer/qorganizereventoccurrence.h
+%%ORGANIZER%%include/QtOrganizer/qorganizereventtime.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritem.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemaudiblereminder.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemchangelogfilter.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemchangeset.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemcollectionfilter.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemcomment.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemdescription.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemdetail.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemdetaildefinition.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemdetaildefinitionfetchrequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemdetaildefinitionremoverequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemdetaildefinitionsaverequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemdetailfielddefinition.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemdetailfilter.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemdetailrangefilter.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemdetails.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemdisplaylabel.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritememailreminder.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemengineid.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemfetchbyidrequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemfetchforexportrequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemfetchhint.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemfetchrequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemfilter.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemfilters.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemguid.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemid.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemidfetchrequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemidfilter.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemintersectionfilter.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeriteminvalidfilter.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemlocation.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemobserver.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemoccurrencefetchrequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemparent.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritempriority.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemrecurrence.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemreminder.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemremoverequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemrequests.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritems.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemsaverequest.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemsortorder.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemtag.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemtimestamp.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemtype.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemunionfilter.h
+%%ORGANIZER%%include/QtOrganizer/qorganizeritemvisualreminder.h
+%%ORGANIZER%%include/QtOrganizer/qorganizerjournal.h
+%%ORGANIZER%%include/QtOrganizer/qorganizerjournaltime.h
+%%ORGANIZER%%include/QtOrganizer/qorganizermanager.h
+%%ORGANIZER%%include/QtOrganizer/qorganizermanagerengine.h
+%%ORGANIZER%%include/QtOrganizer/qorganizermanagerenginefactory.h
+%%ORGANIZER%%include/QtOrganizer/qorganizernote.h
+%%ORGANIZER%%include/QtOrganizer/qorganizerrecurrencerule.h
+%%ORGANIZER%%include/QtOrganizer/qorganizertodo.h
+%%ORGANIZER%%include/QtOrganizer/qorganizertodooccurrence.h
+%%ORGANIZER%%include/QtOrganizer/qorganizertodoprogress.h
+%%ORGANIZER%%include/QtOrganizer/qorganizertodotime.h
+%%ORGANIZER%%include/QtOrganizer/qtorganizer.h
+%%ORGANIZER%%include/QtOrganizer/qtorganizerglobal.h
+%%ORGANIZER%%lib/libQtOrganizer.prl
+%%ORGANIZER%%lib/libQtOrganizer.so
+%%ORGANIZER%%lib/libQtOrganizer.so.1
+%%ORGANIZER%%lib/libQtOrganizer.so.1.2
+%%ORGANIZER%%lib/libQtOrganizer.so.1.2.2
%%PUBLISHSUBSCRIBE%%bin/qcrmlgen
%%PUBLISHSUBSCRIBE%%bin/vsexplorer
-%%PUBLISHSUBSCRIBE%%%%QT_INCDIR%%/QtPublishSubscribe/QValueSpace
-%%PUBLISHSUBSCRIBE%%%%QT_INCDIR%%/QtPublishSubscribe/QValueSpacePublisher
-%%PUBLISHSUBSCRIBE%%%%QT_INCDIR%%/QtPublishSubscribe/QValueSpaceSubscriber
-%%PUBLISHSUBSCRIBE%%%%QT_INCDIR%%/QtPublishSubscribe/qvaluespace.h
-%%PUBLISHSUBSCRIBE%%%%QT_INCDIR%%/QtPublishSubscribe/qvaluespacepublisher.h
-%%PUBLISHSUBSCRIBE%%%%QT_INCDIR%%/QtPublishSubscribe/qvaluespacesubscriber.h
+%%PUBLISHSUBSCRIBE%%include/QtPublishSubscribe/QValueSpace
+%%PUBLISHSUBSCRIBE%%include/QtPublishSubscribe/QValueSpacePublisher
+%%PUBLISHSUBSCRIBE%%include/QtPublishSubscribe/QValueSpaceSubscriber
+%%PUBLISHSUBSCRIBE%%include/QtPublishSubscribe/qvaluespace.h
+%%PUBLISHSUBSCRIBE%%include/QtPublishSubscribe/qvaluespacepublisher.h
+%%PUBLISHSUBSCRIBE%%include/QtPublishSubscribe/qvaluespacesubscriber.h
%%PUBLISHSUBSCRIBE%%%%QT_IMPORTDIR%%/QtMobility/publishsubscribe/libdeclarative_publishsubscribe.so
%%PUBLISHSUBSCRIBE%%%%QT_IMPORTDIR%%/QtMobility/publishsubscribe/qmldir
-%%PUBLISHSUBSCRIBE%%lib/qt4/libQtPublishSubscribe.prl
-%%PUBLISHSUBSCRIBE%%lib/qt4/libQtPublishSubscribe.so
-%%PUBLISHSUBSCRIBE%%lib/qt4/libQtPublishSubscribe.so.1
-%%PUBLISHSUBSCRIBE%%lib/qt4/libQtPublishSubscribe.so.1.2
-%%PUBLISHSUBSCRIBE%%lib/qt4/libQtPublishSubscribe.so.1.2.2
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitContactExporter
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitContactExporterDetailHandler
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitContactExporterDetailHandlerV2
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitContactHandler
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitContactHandlerFactory
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitContactImporter
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitContactImporterPropertyHandler
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitContactImporterPropertyHandlerV2
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitDefaultResourceHandler
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitDocument
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitProperty
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitReader
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitResourceHandler
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/QVersitWriter
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/qversitcontactexporter.h
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/qversitcontacthandler.h
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/qversitcontactimporter.h
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/qversitdocument.h
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/qversitproperty.h
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/qversitreader.h
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/qversitresourcehandler.h
-%%VERSIT%%%%QT_INCDIR%%/QtVersit/qversitwriter.h
+%%PUBLISHSUBSCRIBE%%lib/libQtPublishSubscribe.prl
+%%PUBLISHSUBSCRIBE%%lib/libQtPublishSubscribe.so
+%%PUBLISHSUBSCRIBE%%lib/libQtPublishSubscribe.so.1
+%%PUBLISHSUBSCRIBE%%lib/libQtPublishSubscribe.so.1.2
+%%PUBLISHSUBSCRIBE%%lib/libQtPublishSubscribe.so.1.2.2
+%%VERSIT%%include/QtVersit/QVersitContactExporter
+%%VERSIT%%include/QtVersit/QVersitContactExporterDetailHandler
+%%VERSIT%%include/QtVersit/QVersitContactExporterDetailHandlerV2
+%%VERSIT%%include/QtVersit/QVersitContactHandler
+%%VERSIT%%include/QtVersit/QVersitContactHandlerFactory
+%%VERSIT%%include/QtVersit/QVersitContactImporter
+%%VERSIT%%include/QtVersit/QVersitContactImporterPropertyHandler
+%%VERSIT%%include/QtVersit/QVersitContactImporterPropertyHandlerV2
+%%VERSIT%%include/QtVersit/QVersitDefaultResourceHandler
+%%VERSIT%%include/QtVersit/QVersitDocument
+%%VERSIT%%include/QtVersit/QVersitProperty
+%%VERSIT%%include/QtVersit/QVersitReader
+%%VERSIT%%include/QtVersit/QVersitResourceHandler
+%%VERSIT%%include/QtVersit/QVersitWriter
+%%VERSIT%%include/QtVersit/qversitcontactexporter.h
+%%VERSIT%%include/QtVersit/qversitcontacthandler.h
+%%VERSIT%%include/QtVersit/qversitcontactimporter.h
+%%VERSIT%%include/QtVersit/qversitdocument.h
+%%VERSIT%%include/QtVersit/qversitproperty.h
+%%VERSIT%%include/QtVersit/qversitreader.h
+%%VERSIT%%include/QtVersit/qversitresourcehandler.h
+%%VERSIT%%include/QtVersit/qversitwriter.h
%%VERSIT%%%%QT_IMPORTDIR%%/QtMobility/contacts/libdeclarative_contacts.so
%%VERSIT%%%%QT_IMPORTDIR%%/QtMobility/contacts/qmldir
-%%VERSIT%%lib/qt4/libQtVersit.prl
-%%VERSIT%%lib/qt4/libQtVersit.so
-%%VERSIT%%lib/qt4/libQtVersit.so.1
-%%VERSIT%%lib/qt4/libQtVersit.so.1.2
-%%VERSIT%%lib/qt4/libQtVersit.so.1.2.2
+%%VERSIT%%lib/libQtVersit.prl
+%%VERSIT%%lib/libQtVersit.so
+%%VERSIT%%lib/libQtVersit.so.1
+%%VERSIT%%lib/libQtVersit.so.1.2
+%%VERSIT%%lib/libQtVersit.so.1.2.2
%%VERSIT%%%%QT_PLUGINDIR%%/versit/libqtversit_backuphandler.so
%%VERSIT%%%%QT_PLUGINDIR%%/versit/libqtversit_vcardpreserver.so
-%%VERSITORGANIZER%%%%QT_INCDIR%%/QtVersitOrganizer/QVersitOrganizerExporter
-%%VERSITORGANIZER%%%%QT_INCDIR%%/QtVersitOrganizer/QVersitOrganizerExporterDetailHandler
-%%VERSITORGANIZER%%%%QT_INCDIR%%/QtVersitOrganizer/QVersitOrganizerHandler
-%%VERSITORGANIZER%%%%QT_INCDIR%%/QtVersitOrganizer/QVersitOrganizerHandlerFactory
-%%VERSITORGANIZER%%%%QT_INCDIR%%/QtVersitOrganizer/QVersitOrganizerImporter
-%%VERSITORGANIZER%%%%QT_INCDIR%%/QtVersitOrganizer/QVersitOrganizerImporterPropertyHandler
-%%VERSITORGANIZER%%%%QT_INCDIR%%/QtVersitOrganizer/QVersitTimeZoneHandler
-%%VERSITORGANIZER%%%%QT_INCDIR%%/QtVersitOrganizer/qversitorganizerexporter.h
-%%VERSITORGANIZER%%%%QT_INCDIR%%/QtVersitOrganizer/qversitorganizerhandler.h
-%%VERSITORGANIZER%%%%QT_INCDIR%%/QtVersitOrganizer/qversitorganizerimporter.h
-%%VERSITORGANIZER%%%%QT_INCDIR%%/QtVersitOrganizer/qversittimezonehandler.h
+%%VERSITORGANIZER%%include/QtVersitOrganizer/QVersitOrganizerExporter
+%%VERSITORGANIZER%%include/QtVersitOrganizer/QVersitOrganizerExporterDetailHandler
+%%VERSITORGANIZER%%include/QtVersitOrganizer/QVersitOrganizerHandler
+%%VERSITORGANIZER%%include/QtVersitOrganizer/QVersitOrganizerHandlerFactory
+%%VERSITORGANIZER%%include/QtVersitOrganizer/QVersitOrganizerImporter
+%%VERSITORGANIZER%%include/QtVersitOrganizer/QVersitOrganizerImporterPropertyHandler
+%%VERSITORGANIZER%%include/QtVersitOrganizer/QVersitTimeZoneHandler
+%%VERSITORGANIZER%%include/QtVersitOrganizer/qversitorganizerexporter.h
+%%VERSITORGANIZER%%include/QtVersitOrganizer/qversitorganizerhandler.h
+%%VERSITORGANIZER%%include/QtVersitOrganizer/qversitorganizerimporter.h
+%%VERSITORGANIZER%%include/QtVersitOrganizer/qversittimezonehandler.h
%%VERSITORGANIZER%%%%QT_IMPORTDIR%%/QtMobility/organizer/libdeclarative_organizer.so
%%VERSITORGANIZER%%%%QT_IMPORTDIR%%/QtMobility/organizer/qmldir
-%%VERSITORGANIZER%%lib/qt4/libQtVersitOrganizer.prl
-%%VERSITORGANIZER%%lib/qt4/libQtVersitOrganizer.so
-%%VERSITORGANIZER%%lib/qt4/libQtVersitOrganizer.so.1
-%%VERSITORGANIZER%%lib/qt4/libQtVersitOrganizer.so.1.2
-%%VERSITORGANIZER%%lib/qt4/libQtVersitOrganizer.so.1.2.2
+%%VERSITORGANIZER%%lib/libQtVersitOrganizer.prl
+%%VERSITORGANIZER%%lib/libQtVersitOrganizer.so
+%%VERSITORGANIZER%%lib/libQtVersitOrganizer.so.1
+%%VERSITORGANIZER%%lib/libQtVersitOrganizer.so.1.2
+%%VERSITORGANIZER%%lib/libQtVersitOrganizer.so.1.2.2
%%VERSITFEEDBACK%%%%QT_PLUGINDIR%%/feedback/libqtfeedback_mmk.so
Index: head/multimedia/qt4-multimedia/Makefile
===================================================================
--- head/multimedia/qt4-multimedia/Makefile (revision 434379)
+++ head/multimedia/qt4-multimedia/Makefile (revision 434380)
@@ -1,52 +1,53 @@
# $FreeBSD$
PORTNAME= multimedia
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= multimedia
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt low-level multimedia API
USE_QT4= qmake_build moc_build uic_build corelib gui
QT_DIST= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/opengl src/openvg src/phonon \
src/qt3support src/s60installs src/s60main src/script \
src/scripttools src/sql src/svg src/testlib src/tools \
src/winmain src/xml src/xmlpatterns src/3rdparty/clucene \
src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
src/3rdparty/libpng src/3rdparty/libtiff src/3rdparty/phonon \
src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${UIC} ${WRKSRC}/bin/uic
post-configure:
${REINPLACE_CMD} \
-e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
-E -e 's|(.*location=).*uic|\1${PREFIX}/${QT_BINDIR_REL}/${UIC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtMultimedia.pc
.include <bsd.port.mk>
Index: head/multimedia/qt5-multimedia/pkg-plist
===================================================================
--- head/multimedia/qt5-multimedia/pkg-plist (revision 434379)
+++ head/multimedia/qt5-multimedia/pkg-plist (revision 434380)
@@ -1,335 +1,335 @@
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/gstvideoconnector_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/playlistfileparser_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qabstractvideobuffer_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qaudiobuffer_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qaudiodevicefactory_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qaudiohelpers_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qcamera_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qdeclarativevideooutput_backend_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qdeclarativevideooutput_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstappsrc_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstbufferpoolinterface_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstcodecsinfo_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreameraudioinputselector_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreameraudioprobecontrol_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreamerbufferprobe_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreamerbushelper_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreamergltexturerenderer_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreamermessage_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreamermirtexturerenderer_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreamervideoinputdevicecontrol_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreamervideooverlay_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreamervideoprobecontrol_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreamervideorenderer_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreamervideorendererinterface_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreamervideowidget_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstreamervideowindow_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstutils_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstvideobuffer_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstvideorendererplugin_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qgstvideorenderersink_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qimagevideobuffer_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediacontrol_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmedianetworkplaylistprovider_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaobject_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaopenglhelper_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaplaylist_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaplaylistcontrol_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaplaylistioplugin_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaplaylistnavigator_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaplaylistprovider_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaplaylistsourcecontrol_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediapluginloader_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediarecorder_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaresourcepolicy_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaresourcepolicyplugin_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaresourceset_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaservice_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaserviceprovider_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediastoragelocation_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmemoryvideobuffer_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmultimediautils_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qsamplecache_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qsgvideonode_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qsoundeffect_pulse_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qsoundeffect_qaudio_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qtmultimediaquickdefs_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qvideoframe_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qvideoframeconversionhelper_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qvideooutputorientationhandler_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qvideosurfacegstsink_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qvideosurfaceoutput_p.h
%%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qwavedecoder_p.h
%%QT_INCDIR%%/QtMultimedia/QAbstractAudioDeviceInfo
%%QT_INCDIR%%/QtMultimedia/QAbstractAudioInput
%%QT_INCDIR%%/QtMultimedia/QAbstractAudioOutput
%%QT_INCDIR%%/QtMultimedia/QAbstractPlanarVideoBuffer
%%QT_INCDIR%%/QtMultimedia/QAbstractVideoBuffer
%%QT_INCDIR%%/QtMultimedia/QAbstractVideoFilter
%%QT_INCDIR%%/QtMultimedia/QAbstractVideoSurface
%%QT_INCDIR%%/QtMultimedia/QAudio
%%QT_INCDIR%%/QtMultimedia/QAudioBuffer
%%QT_INCDIR%%/QtMultimedia/QAudioDecoder
%%QT_INCDIR%%/QtMultimedia/QAudioDecoderControl
%%QT_INCDIR%%/QtMultimedia/QAudioDeviceInfo
%%QT_INCDIR%%/QtMultimedia/QAudioEncoderSettings
%%QT_INCDIR%%/QtMultimedia/QAudioEncoderSettingsControl
%%QT_INCDIR%%/QtMultimedia/QAudioFormat
%%QT_INCDIR%%/QtMultimedia/QAudioInput
%%QT_INCDIR%%/QtMultimedia/QAudioInputSelectorControl
%%QT_INCDIR%%/QtMultimedia/QAudioOutput
%%QT_INCDIR%%/QtMultimedia/QAudioOutputSelectorControl
%%QT_INCDIR%%/QtMultimedia/QAudioProbe
%%QT_INCDIR%%/QtMultimedia/QAudioRecorder
%%QT_INCDIR%%/QtMultimedia/QAudioRoleControl
%%QT_INCDIR%%/QtMultimedia/QAudioSystemFactoryInterface
%%QT_INCDIR%%/QtMultimedia/QAudioSystemPlugin
%%QT_INCDIR%%/QtMultimedia/QCamera
%%QT_INCDIR%%/QtMultimedia/QCameraCaptureBufferFormatControl
%%QT_INCDIR%%/QtMultimedia/QCameraCaptureDestinationControl
%%QT_INCDIR%%/QtMultimedia/QCameraControl
%%QT_INCDIR%%/QtMultimedia/QCameraExposure
%%QT_INCDIR%%/QtMultimedia/QCameraExposureControl
%%QT_INCDIR%%/QtMultimedia/QCameraFeedbackControl
%%QT_INCDIR%%/QtMultimedia/QCameraFlashControl
%%QT_INCDIR%%/QtMultimedia/QCameraFocus
%%QT_INCDIR%%/QtMultimedia/QCameraFocusControl
%%QT_INCDIR%%/QtMultimedia/QCameraFocusZone
%%QT_INCDIR%%/QtMultimedia/QCameraFocusZoneList
%%QT_INCDIR%%/QtMultimedia/QCameraImageCapture
%%QT_INCDIR%%/QtMultimedia/QCameraImageCaptureControl
%%QT_INCDIR%%/QtMultimedia/QCameraImageProcessing
%%QT_INCDIR%%/QtMultimedia/QCameraImageProcessingControl
%%QT_INCDIR%%/QtMultimedia/QCameraInfo
%%QT_INCDIR%%/QtMultimedia/QCameraInfoControl
%%QT_INCDIR%%/QtMultimedia/QCameraLocksControl
%%QT_INCDIR%%/QtMultimedia/QCameraViewfinderSettings
%%QT_INCDIR%%/QtMultimedia/QCameraViewfinderSettingsControl
%%QT_INCDIR%%/QtMultimedia/QCameraViewfinderSettingsControl2
%%QT_INCDIR%%/QtMultimedia/QCameraZoomControl
%%QT_INCDIR%%/QtMultimedia/QImageEncoderControl
%%QT_INCDIR%%/QtMultimedia/QImageEncoderSettings
%%QT_INCDIR%%/QtMultimedia/QMediaAudioProbeControl
%%QT_INCDIR%%/QtMultimedia/QMediaAvailabilityControl
%%QT_INCDIR%%/QtMultimedia/QMediaBindableInterface
%%QT_INCDIR%%/QtMultimedia/QMediaContainerControl
%%QT_INCDIR%%/QtMultimedia/QMediaContent
%%QT_INCDIR%%/QtMultimedia/QMediaControl
%%QT_INCDIR%%/QtMultimedia/QMediaGaplessPlaybackControl
%%QT_INCDIR%%/QtMultimedia/QMediaMetaData
%%QT_INCDIR%%/QtMultimedia/QMediaNetworkAccessControl
%%QT_INCDIR%%/QtMultimedia/QMediaObject
%%QT_INCDIR%%/QtMultimedia/QMediaPlayer
%%QT_INCDIR%%/QtMultimedia/QMediaPlayerControl
%%QT_INCDIR%%/QtMultimedia/QMediaPlaylist
%%QT_INCDIR%%/QtMultimedia/QMediaRecorder
%%QT_INCDIR%%/QtMultimedia/QMediaRecorderControl
%%QT_INCDIR%%/QtMultimedia/QMediaResource
%%QT_INCDIR%%/QtMultimedia/QMediaResourceList
%%QT_INCDIR%%/QtMultimedia/QMediaService
%%QT_INCDIR%%/QtMultimedia/QMediaServiceCameraInfoInterface
%%QT_INCDIR%%/QtMultimedia/QMediaServiceDefaultDeviceInterface
%%QT_INCDIR%%/QtMultimedia/QMediaServiceFeaturesInterface
%%QT_INCDIR%%/QtMultimedia/QMediaServiceProviderFactoryInterface
%%QT_INCDIR%%/QtMultimedia/QMediaServiceProviderHint
%%QT_INCDIR%%/QtMultimedia/QMediaServiceProviderPlugin
%%QT_INCDIR%%/QtMultimedia/QMediaServiceSupportedDevicesInterface
%%QT_INCDIR%%/QtMultimedia/QMediaServiceSupportedFormatsInterface
%%QT_INCDIR%%/QtMultimedia/QMediaStreamsControl
%%QT_INCDIR%%/QtMultimedia/QMediaTimeInterval
%%QT_INCDIR%%/QtMultimedia/QMediaTimeRange
%%QT_INCDIR%%/QtMultimedia/QMediaVideoProbeControl
%%QT_INCDIR%%/QtMultimedia/QMetaDataReaderControl
%%QT_INCDIR%%/QtMultimedia/QMetaDataWriterControl
%%QT_INCDIR%%/QtMultimedia/QMultimedia
%%QT_INCDIR%%/QtMultimedia/QRadioData
%%QT_INCDIR%%/QtMultimedia/QRadioDataControl
%%QT_INCDIR%%/QtMultimedia/QRadioTuner
%%QT_INCDIR%%/QtMultimedia/QRadioTunerControl
%%QT_INCDIR%%/QtMultimedia/QSound
%%QT_INCDIR%%/QtMultimedia/QSoundEffect
%%QT_INCDIR%%/QtMultimedia/QVideoDeviceSelectorControl
%%QT_INCDIR%%/QtMultimedia/QVideoEncoderSettings
%%QT_INCDIR%%/QtMultimedia/QVideoEncoderSettingsControl
%%QT_INCDIR%%/QtMultimedia/QVideoFilterRunnable
%%QT_INCDIR%%/QtMultimedia/QVideoFrame
%%QT_INCDIR%%/QtMultimedia/QVideoProbe
%%QT_INCDIR%%/QtMultimedia/QVideoRendererControl
%%QT_INCDIR%%/QtMultimedia/QVideoSurfaceFormat
%%QT_INCDIR%%/QtMultimedia/QVideoWindowControl
%%QT_INCDIR%%/QtMultimedia/QtMultimedia
%%QT_INCDIR%%/QtMultimedia/QtMultimediaDepends
%%QT_INCDIR%%/QtMultimedia/QtMultimediaVersion
%%QT_INCDIR%%/QtMultimedia/qabstractvideobuffer.h
%%QT_INCDIR%%/QtMultimedia/qabstractvideofilter.h
%%QT_INCDIR%%/QtMultimedia/qabstractvideosurface.h
%%QT_INCDIR%%/QtMultimedia/qaudio.h
%%QT_INCDIR%%/QtMultimedia/qaudiobuffer.h
%%QT_INCDIR%%/QtMultimedia/qaudiodecoder.h
%%QT_INCDIR%%/QtMultimedia/qaudiodecodercontrol.h
%%QT_INCDIR%%/QtMultimedia/qaudiodeviceinfo.h
%%QT_INCDIR%%/QtMultimedia/qaudioencodersettingscontrol.h
%%QT_INCDIR%%/QtMultimedia/qaudioformat.h
%%QT_INCDIR%%/QtMultimedia/qaudioinput.h
%%QT_INCDIR%%/QtMultimedia/qaudioinputselectorcontrol.h
%%QT_INCDIR%%/QtMultimedia/qaudiooutput.h
%%QT_INCDIR%%/QtMultimedia/qaudiooutputselectorcontrol.h
%%QT_INCDIR%%/QtMultimedia/qaudioprobe.h
%%QT_INCDIR%%/QtMultimedia/qaudiorecorder.h
%%QT_INCDIR%%/QtMultimedia/qaudiorolecontrol.h
%%QT_INCDIR%%/QtMultimedia/qaudiosystem.h
%%QT_INCDIR%%/QtMultimedia/qaudiosystemplugin.h
%%QT_INCDIR%%/QtMultimedia/qcamera.h
%%QT_INCDIR%%/QtMultimedia/qcameracapturebufferformatcontrol.h
%%QT_INCDIR%%/QtMultimedia/qcameracapturedestinationcontrol.h
%%QT_INCDIR%%/QtMultimedia/qcameracontrol.h
%%QT_INCDIR%%/QtMultimedia/qcameraexposure.h
%%QT_INCDIR%%/QtMultimedia/qcameraexposurecontrol.h
%%QT_INCDIR%%/QtMultimedia/qcamerafeedbackcontrol.h
%%QT_INCDIR%%/QtMultimedia/qcameraflashcontrol.h
%%QT_INCDIR%%/QtMultimedia/qcamerafocus.h
%%QT_INCDIR%%/QtMultimedia/qcamerafocuscontrol.h
%%QT_INCDIR%%/QtMultimedia/qcameraimagecapture.h
%%QT_INCDIR%%/QtMultimedia/qcameraimagecapturecontrol.h
%%QT_INCDIR%%/QtMultimedia/qcameraimageprocessing.h
%%QT_INCDIR%%/QtMultimedia/qcameraimageprocessingcontrol.h
%%QT_INCDIR%%/QtMultimedia/qcamerainfo.h
%%QT_INCDIR%%/QtMultimedia/qcamerainfocontrol.h
%%QT_INCDIR%%/QtMultimedia/qcameralockscontrol.h
%%QT_INCDIR%%/QtMultimedia/qcameraviewfindersettings.h
%%QT_INCDIR%%/QtMultimedia/qcameraviewfindersettingscontrol.h
%%QT_INCDIR%%/QtMultimedia/qcamerazoomcontrol.h
%%QT_INCDIR%%/QtMultimedia/qimageencodercontrol.h
%%QT_INCDIR%%/QtMultimedia/qmediaaudioprobecontrol.h
%%QT_INCDIR%%/QtMultimedia/qmediaavailabilitycontrol.h
%%QT_INCDIR%%/QtMultimedia/qmediabindableinterface.h
%%QT_INCDIR%%/QtMultimedia/qmediacontainercontrol.h
%%QT_INCDIR%%/QtMultimedia/qmediacontent.h
%%QT_INCDIR%%/QtMultimedia/qmediacontrol.h
%%QT_INCDIR%%/QtMultimedia/qmediaencodersettings.h
%%QT_INCDIR%%/QtMultimedia/qmediaenumdebug.h
%%QT_INCDIR%%/QtMultimedia/qmediagaplessplaybackcontrol.h
%%QT_INCDIR%%/QtMultimedia/qmediametadata.h
%%QT_INCDIR%%/QtMultimedia/qmedianetworkaccesscontrol.h
%%QT_INCDIR%%/QtMultimedia/qmediaobject.h
%%QT_INCDIR%%/QtMultimedia/qmediaplayer.h
%%QT_INCDIR%%/QtMultimedia/qmediaplayercontrol.h
%%QT_INCDIR%%/QtMultimedia/qmediaplaylist.h
%%QT_INCDIR%%/QtMultimedia/qmediarecorder.h
%%QT_INCDIR%%/QtMultimedia/qmediarecordercontrol.h
%%QT_INCDIR%%/QtMultimedia/qmediaresource.h
%%QT_INCDIR%%/QtMultimedia/qmediaservice.h
%%QT_INCDIR%%/QtMultimedia/qmediaserviceproviderplugin.h
%%QT_INCDIR%%/QtMultimedia/qmediastreamscontrol.h
%%QT_INCDIR%%/QtMultimedia/qmediatimerange.h
%%QT_INCDIR%%/QtMultimedia/qmediavideoprobecontrol.h
%%QT_INCDIR%%/QtMultimedia/qmetadatareadercontrol.h
%%QT_INCDIR%%/QtMultimedia/qmetadatawritercontrol.h
%%QT_INCDIR%%/QtMultimedia/qmultimedia.h
%%QT_INCDIR%%/QtMultimedia/qradiodata.h
%%QT_INCDIR%%/QtMultimedia/qradiodatacontrol.h
%%QT_INCDIR%%/QtMultimedia/qradiotuner.h
%%QT_INCDIR%%/QtMultimedia/qradiotunercontrol.h
%%QT_INCDIR%%/QtMultimedia/qsound.h
%%QT_INCDIR%%/QtMultimedia/qsoundeffect.h
%%QT_INCDIR%%/QtMultimedia/qtmultimediadefs.h
%%QT_INCDIR%%/QtMultimedia/qtmultimediaversion.h
%%QT_INCDIR%%/QtMultimedia/qvideodeviceselectorcontrol.h
%%QT_INCDIR%%/QtMultimedia/qvideoencodersettingscontrol.h
%%QT_INCDIR%%/QtMultimedia/qvideoframe.h
%%QT_INCDIR%%/QtMultimedia/qvideoprobe.h
%%QT_INCDIR%%/QtMultimedia/qvideorenderercontrol.h
%%QT_INCDIR%%/QtMultimedia/qvideosurfaceformat.h
%%QT_INCDIR%%/QtMultimedia/qvideowindowcontrol.h
%%QT_INCDIR%%/QtMultimediaQuick_p/%%FULLVER%%/QtMultimediaQuick_p/private/qdeclarativevideooutput_render_p.h
%%QT_INCDIR%%/QtMultimediaQuick_p/%%FULLVER%%/QtMultimediaQuick_p/private/qdeclarativevideooutput_window_p.h
%%QT_INCDIR%%/QtMultimediaQuick_p/%%FULLVER%%/QtMultimediaQuick_p/private/qsgvideonode_rgb_p.h
%%QT_INCDIR%%/QtMultimediaQuick_p/%%FULLVER%%/QtMultimediaQuick_p/private/qsgvideonode_texture_p.h
%%QT_INCDIR%%/QtMultimediaQuick_p/%%FULLVER%%/QtMultimediaQuick_p/private/qsgvideonode_yuv_p.h
%%QT_INCDIR%%/QtMultimediaQuick_p/QtMultimediaQuick_p
%%QT_INCDIR%%/QtMultimediaQuick_p/QtMultimediaQuick_pDepends
%%QT_INCDIR%%/QtMultimediaQuick_p/QtMultimediaQuick_pVersion
%%QT_INCDIR%%/QtMultimediaQuick_p/qtmultimediaquick_pversion.h
%%QT_INCDIR%%/QtMultimediaWidgets/%%FULLVER%%/QtMultimediaWidgets/private/qeglimagetexturesurface_p.h
%%QT_INCDIR%%/QtMultimediaWidgets/%%FULLVER%%/QtMultimediaWidgets/private/qpaintervideosurface_p.h
%%QT_INCDIR%%/QtMultimediaWidgets/%%FULLVER%%/QtMultimediaWidgets/private/qvideowidget_p.h
%%QT_INCDIR%%/QtMultimediaWidgets/QCameraViewfinder
%%QT_INCDIR%%/QtMultimediaWidgets/QGraphicsVideoItem
%%QT_INCDIR%%/QtMultimediaWidgets/QVideoWidget
%%QT_INCDIR%%/QtMultimediaWidgets/QVideoWidgetControl
%%QT_INCDIR%%/QtMultimediaWidgets/QtMultimediaWidgets
%%QT_INCDIR%%/QtMultimediaWidgets/QtMultimediaWidgetsDepends
%%QT_INCDIR%%/QtMultimediaWidgets/QtMultimediaWidgetsVersion
%%QT_INCDIR%%/QtMultimediaWidgets/qcameraviewfinder.h
%%QT_INCDIR%%/QtMultimediaWidgets/qgraphicsvideoitem.h
%%QT_INCDIR%%/QtMultimediaWidgets/qtmultimediawidgetdefs.h
%%QT_INCDIR%%/QtMultimediaWidgets/qtmultimediawidgetsversion.h
%%QT_INCDIR%%/QtMultimediaWidgets/qvideowidget.h
%%QT_INCDIR%%/QtMultimediaWidgets/qvideowidgetcontrol.h
-%%QT_LIBDIR%%/cmake/Qt5Multimedia/Qt5MultimediaConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Multimedia/Qt5MultimediaConfigVersion.cmake
-%%ALSA%%%%QT_LIBDIR%%/cmake/Qt5Multimedia/Qt5Multimedia_QAlsaPlugin.cmake
-%%NO_GSTREAMER%%%%QT_LIBDIR%%/cmake/Qt5Multimedia/Qt5Multimedia_AudioCaptureServicePlugin.cmake
-%%GSTREAMER%%%%QT_LIBDIR%%/cmake/Qt5Multimedia/Qt5Multimedia_CameraBinServicePlugin.cmake
-%%GSTREAMER%%%%QT_LIBDIR%%/cmake/Qt5Multimedia/Qt5Multimedia_QGstreamerAudioDecoderServicePlugin.cmake
-%%GSTREAMER%%%%QT_LIBDIR%%/cmake/Qt5Multimedia/Qt5Multimedia_QGstreamerCaptureServicePlugin.cmake
-%%GSTREAMER%%%%QT_LIBDIR%%/cmake/Qt5Multimedia/Qt5Multimedia_QGstreamerPlayerServicePlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Multimedia/Qt5Multimedia_QM3uPlaylistPlugin.cmake
-%%PULSEAUDIO%%%%QT_LIBDIR%%/cmake/Qt5Multimedia/Qt5Multimedia_QPulseAudioPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5MultimediaConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5MultimediaConfigVersion.cmake
+%%ALSA%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_QAlsaPlugin.cmake
+%%NO_GSTREAMER%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_AudioCaptureServicePlugin.cmake
+%%GSTREAMER%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_CameraBinServicePlugin.cmake
+%%GSTREAMER%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_QGstreamerAudioDecoderServicePlugin.cmake
+%%GSTREAMER%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_QGstreamerCaptureServicePlugin.cmake
+%%GSTREAMER%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_QGstreamerPlayerServicePlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_QM3uPlaylistPlugin.cmake
+%%PULSEAUDIO%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_QPulseAudioPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfig.cmake
+%%QT_CMAKEDIR%%/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfigVersion.cmake
%%QT_LIBDIR%%/libQt5Multimedia.prl
%%QT_LIBDIR%%/libQt5Multimedia.so
%%QT_LIBDIR%%/libQt5Multimedia.so.5
%%QT_LIBDIR%%/libQt5Multimedia.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Multimedia.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Multimedia.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt5MultimediaQuick_p.prl
%%QT_LIBDIR%%/libQt5MultimediaQuick_p.so
%%QT_LIBDIR%%/libQt5MultimediaQuick_p.so.5
%%QT_LIBDIR%%/libQt5MultimediaQuick_p.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5MultimediaQuick_p.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5MultimediaQuick_p.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt5MultimediaWidgets.prl
%%QT_LIBDIR%%/libQt5MultimediaWidgets.so
%%QT_LIBDIR%%/libQt5MultimediaWidgets.so.5
%%QT_LIBDIR%%/libQt5MultimediaWidgets.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5MultimediaWidgets.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5MultimediaWidgets.so.%%FULLVER%%.debug
%%GSTREAMER%%%%QT_LIBDIR%%/libqgsttools_p.prl
%%GSTREAMER%%%%QT_LIBDIR%%/libqgsttools_p.so
%%GSTREAMER%%%%QT_LIBDIR%%/libqgsttools_p.so.1
%%GSTREAMER%%%%QT_LIBDIR%%/libqgsttools_p.so.1.0
%%GSTREAMER%%%%QT_LIBDIR%%/libqgsttools_p.so.1.0.0
%%QT_MKSPECDIR%%/modules/qt_lib_multimedia.pri
%%QT_MKSPECDIR%%/modules/qt_lib_multimedia_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_multimediawidgets.pri
%%QT_MKSPECDIR%%/modules/qt_lib_multimediawidgets_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_qtmultimediaquicktools_private.pri
%%ALSA%%%%QT_PLUGINDIR%%/audio/libqtaudio_alsa.so
%%ALSA%%%%DEBUG%%%%QT_PLUGINDIR%%/audio/libqtaudio_alsa.so.debug
%%PULSEAUDIO%%%%QT_PLUGINDIR%%/audio/libqtmedia_pulse.so
%%PULSEAUDIO%%%%DEBUG%%%%QT_PLUGINDIR%%/audio/libqtmedia_pulse.so.debug
%%GSTREAMER%%%%QT_PLUGINDIR%%/mediaservice/libgstaudiodecoder.so
%%GSTREAMER%%%%DEBUG%%%%QT_PLUGINDIR%%/mediaservice/libgstaudiodecoder.so.debug
%%GSTREAMER%%%%QT_PLUGINDIR%%/mediaservice/libgstcamerabin.so
%%GSTREAMER%%%%DEBUG%%%%QT_PLUGINDIR%%/mediaservice/libgstcamerabin.so.debug
%%GSTREAMER%%%%QT_PLUGINDIR%%/mediaservice/libgstmediacapture.so
%%GSTREAMER%%%%DEBUG%%%%QT_PLUGINDIR%%/mediaservice/libgstmediacapture.so.debug
%%GSTREAMER%%%%QT_PLUGINDIR%%/mediaservice/libgstmediaplayer.so
%%GSTREAMER%%%%DEBUG%%%%QT_PLUGINDIR%%/mediaservice/libgstmediaplayer.so.debug
%%NO_GSTREAMER%%%%QT_PLUGINDIR%%/mediaservice/libqtmedia_audioengine.so
%%NO_GSTREAMER%%%%DEBUG%%%%QT_PLUGINDIR%%/mediaservice/libqtmedia_audioengine.so.debug
%%QT_PLUGINDIR%%/playlistformats/libqtmultimedia_m3u.so
%%DEBUG%%%%QT_PLUGINDIR%%/playlistformats/libqtmultimedia_m3u.so.debug
%%OPENAL%%%%QT_QMLDIR%%/QtAudioEngine/libdeclarative_audioengine.so
%%OPENAL%%%%DEBUG%%%%QT_QMLDIR%%/QtAudioEngine/libdeclarative_audioengine.so.debug
%%OPENAL%%%%QT_QMLDIR%%/QtAudioEngine/plugins.qmltypes
%%OPENAL%%%%QT_QMLDIR%%/QtAudioEngine/qmldir
%%QT_QMLDIR%%/QtMultimedia/Video.qml
%%QT_QMLDIR%%/QtMultimedia/libdeclarative_multimedia.so
%%DEBUG%%%%QT_QMLDIR%%/QtMultimedia/libdeclarative_multimedia.so.debug
%%QT_QMLDIR%%/QtMultimedia/plugins.qmltypes
%%QT_QMLDIR%%/QtMultimedia/qmldir
libdata/pkgconfig/Qt5Multimedia.pc
libdata/pkgconfig/Qt5MultimediaWidgets.pc
Index: head/net/qt4-network/Makefile
===================================================================
--- head/net/qt4-network/Makefile (revision 434379)
+++ head/net/qt4-network/Makefile (revision 434380)
@@ -1,60 +1,61 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= network
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= net ipv6
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt network module
LICENSE= GPLv3 LGPL21 LGPL3 GFDL
LICENSE_COMB= dual
RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss
USE_QT4= qmake_build moc_build rcc_build corelib
QT_DIST= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
USE_OPENSSL= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/svg \
src/testlib src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
post-configure:
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
-E -e 's|(.*location=).*uic|\1${PREFIX}/${QT_BINDIR_REL}/${UIC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtNetwork.pc
${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
${WRKSRC}/src/network/ssl/qsslsocket_openssl.cpp \
${WRKSRC}/src/network/ssl/qsslsocket_openssl_symbols.cpp
.include <bsd.port.mk>
Index: head/net/qt5-network/pkg-plist
===================================================================
--- head/net/qt5-network/pkg-plist (revision 434379)
+++ head/net/qt5-network/pkg-plist (revision 434380)
@@ -1,164 +1,165 @@
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qabstractnetworkcache_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qabstractprotocolhandler_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qabstractsocket_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qabstractsocketengine_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qasn1element_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qauthenticator_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qbearerengine_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qbearerplugin_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qdnslookup_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qftp_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhostaddress_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhostinfo_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpmultipart_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpnetworkconnection_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpnetworkconnectionchannel_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpnetworkheader_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpnetworkreply_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpnetworkrequest_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpprotocolhandler_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpsocketengine_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpthreaddelegate_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qlocalserver_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qlocalsocket_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnativesocketengine_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnativesocketengine_winrt_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnet_unix_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccessauthenticationmanager_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccessbackend_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccesscache_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccesscachebackend_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccessdebugpipebackend_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccessfilebackend_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccessftpbackend_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccessmanager_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkconfigmanager_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkconfiguration_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkcookie_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkcookiejar_p.h
+%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkdatagram_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkdiskcache_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkinterface_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkproxy_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkreply_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkreplydataimpl_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkreplyfileimpl_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkreplyhttpimpl_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkreplyimpl_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkrequest_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworksession_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsharednetworksession_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsocks5socketengine_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qspdyprotocolhandler_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qssl_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslcertificate_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslcertificateextension_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslcipher_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslconfiguration_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslcontext_openssl_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslkey_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslpresharedkeyauthenticator_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslsocket_mac_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslsocket_openssl_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslsocket_openssl_symbols_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslsocket_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslsocket_winrt_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtcpserver_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtcpsocket_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qurlinfo_p.h
%%QT_INCDIR%%/QtNetwork/QAbstractNetworkCache
%%QT_INCDIR%%/QtNetwork/QAbstractSocket
%%QT_INCDIR%%/QtNetwork/QAuthenticator
%%QT_INCDIR%%/QtNetwork/QDnsDomainNameRecord
%%QT_INCDIR%%/QtNetwork/QDnsHostAddressRecord
%%QT_INCDIR%%/QtNetwork/QDnsLookup
%%QT_INCDIR%%/QtNetwork/QDnsMailExchangeRecord
%%QT_INCDIR%%/QtNetwork/QDnsServiceRecord
%%QT_INCDIR%%/QtNetwork/QDnsTextRecord
%%QT_INCDIR%%/QtNetwork/QHostAddress
%%QT_INCDIR%%/QtNetwork/QHostInfo
%%QT_INCDIR%%/QtNetwork/QHttpMultiPart
%%QT_INCDIR%%/QtNetwork/QHttpPart
%%QT_INCDIR%%/QtNetwork/QIPv6Address
%%QT_INCDIR%%/QtNetwork/QLocalServer
%%QT_INCDIR%%/QtNetwork/QLocalSocket
%%QT_INCDIR%%/QtNetwork/QNetworkAccessManager
%%QT_INCDIR%%/QtNetwork/QNetworkAddressEntry
%%QT_INCDIR%%/QtNetwork/QNetworkCacheMetaData
%%QT_INCDIR%%/QtNetwork/QNetworkConfiguration
%%QT_INCDIR%%/QtNetwork/QNetworkConfigurationManager
%%QT_INCDIR%%/QtNetwork/QNetworkCookie
%%QT_INCDIR%%/QtNetwork/QNetworkCookieJar
%%QT_INCDIR%%/QtNetwork/QNetworkDiskCache
%%QT_INCDIR%%/QtNetwork/QNetworkInterface
%%QT_INCDIR%%/QtNetwork/QNetworkProxy
%%QT_INCDIR%%/QtNetwork/QNetworkProxyFactory
%%QT_INCDIR%%/QtNetwork/QNetworkProxyQuery
%%QT_INCDIR%%/QtNetwork/QNetworkReply
%%QT_INCDIR%%/QtNetwork/QNetworkRequest
%%QT_INCDIR%%/QtNetwork/QNetworkSession
%%QT_INCDIR%%/QtNetwork/QSsl
%%QT_INCDIR%%/QtNetwork/QSslCertificate
%%QT_INCDIR%%/QtNetwork/QSslCertificateExtension
%%QT_INCDIR%%/QtNetwork/QSslCipher
%%QT_INCDIR%%/QtNetwork/QSslConfiguration
%%QT_INCDIR%%/QtNetwork/QSslEllipticCurve
%%QT_INCDIR%%/QtNetwork/QSslError
%%QT_INCDIR%%/QtNetwork/QSslKey
%%QT_INCDIR%%/QtNetwork/QSslPreSharedKeyAuthenticator
%%QT_INCDIR%%/QtNetwork/QSslSocket
%%QT_INCDIR%%/QtNetwork/QTcpServer
%%QT_INCDIR%%/QtNetwork/QTcpSocket
%%QT_INCDIR%%/QtNetwork/QUdpSocket
%%QT_INCDIR%%/QtNetwork/Q_IPV6ADDR
%%QT_INCDIR%%/QtNetwork/QtNetwork
%%QT_INCDIR%%/QtNetwork/QtNetworkDepends
%%QT_INCDIR%%/QtNetwork/QtNetworkVersion
%%QT_INCDIR%%/QtNetwork/qabstractnetworkcache.h
%%QT_INCDIR%%/QtNetwork/qabstractsocket.h
%%QT_INCDIR%%/QtNetwork/qauthenticator.h
%%QT_INCDIR%%/QtNetwork/qdnslookup.h
%%QT_INCDIR%%/QtNetwork/qhostaddress.h
%%QT_INCDIR%%/QtNetwork/qhostinfo.h
%%QT_INCDIR%%/QtNetwork/qhttpmultipart.h
%%QT_INCDIR%%/QtNetwork/qlocalserver.h
%%QT_INCDIR%%/QtNetwork/qlocalsocket.h
%%QT_INCDIR%%/QtNetwork/qnetworkaccessmanager.h
%%QT_INCDIR%%/QtNetwork/qnetworkconfigmanager.h
%%QT_INCDIR%%/QtNetwork/qnetworkconfiguration.h
%%QT_INCDIR%%/QtNetwork/qnetworkcookie.h
%%QT_INCDIR%%/QtNetwork/qnetworkcookiejar.h
%%QT_INCDIR%%/QtNetwork/qnetworkdiskcache.h
%%QT_INCDIR%%/QtNetwork/qnetworkfunctions_wince.h
%%QT_INCDIR%%/QtNetwork/qnetworkinterface.h
%%QT_INCDIR%%/QtNetwork/qnetworkproxy.h
%%QT_INCDIR%%/QtNetwork/qnetworkreply.h
%%QT_INCDIR%%/QtNetwork/qnetworkrequest.h
%%QT_INCDIR%%/QtNetwork/qnetworksession.h
%%QT_INCDIR%%/QtNetwork/qssl.h
%%QT_INCDIR%%/QtNetwork/qsslcertificate.h
%%QT_INCDIR%%/QtNetwork/qsslcertificateextension.h
%%QT_INCDIR%%/QtNetwork/qsslcipher.h
%%QT_INCDIR%%/QtNetwork/qsslconfiguration.h
%%QT_INCDIR%%/QtNetwork/qsslellipticcurve.h
%%QT_INCDIR%%/QtNetwork/qsslerror.h
%%QT_INCDIR%%/QtNetwork/qsslkey.h
%%QT_INCDIR%%/QtNetwork/qsslpresharedkeyauthenticator.h
%%QT_INCDIR%%/QtNetwork/qsslsocket.h
%%QT_INCDIR%%/QtNetwork/qtcpserver.h
%%QT_INCDIR%%/QtNetwork/qtcpsocket.h
%%QT_INCDIR%%/QtNetwork/qtnetworkversion.h
%%QT_INCDIR%%/QtNetwork/qudpsocket.h
-%%QT_LIBDIR%%/cmake/Qt5Network/Qt5NetworkConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Network/Qt5NetworkConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Network/Qt5NetworkConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake
%%QT_LIBDIR%%/libQt5Network.prl
%%QT_LIBDIR%%/libQt5Network.so
%%QT_LIBDIR%%/libQt5Network.so.5
%%QT_LIBDIR%%/libQt5Network.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Network.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Network.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_network.pri
%%QT_MKSPECDIR%%/modules/qt_lib_network_private.pri
%%QT_PLUGINDIR%%/bearer/libqgenericbearer.so
%%DEBUG%%%%QT_PLUGINDIR%%/bearer/libqgenericbearer.so.debug
libdata/pkgconfig/Qt5Network.pc
Index: head/net/rsplib/files/patch-configure
===================================================================
--- head/net/rsplib/files/patch-configure (nonexistent)
+++ head/net/rsplib/files/patch-configure (revision 434380)
@@ -0,0 +1,10 @@
+--- configure.orig 2017-01-18 19:43:22 UTC
++++ configure
+@@ -16692,7 +16692,6 @@ QT_REQUIRED_COMPONENTS="QtCore QtGui QtX
+ QT_DEFAULT_INCLUDE_PATHS="/usr/share/qt4/include /usr/local/include/qt4 /usr/include/qt4 /usr/include"
+ QT_DEFAULT_LIBRARY_PATHS="/usr/lib /usr/local/lib /usr/local/qt4/lib /usr/local/lib/qt4 /usr/share/qt4/lib `cat 2>/dev/null /etc/ld.so.conf.d/*.conf | sed -e "/# /d"` /usr/lib64"
+ QT_DEFAULT_BINARY_PATHS="/usr/bin /usr/local/bin /usr/local/qt4/bin /usr/share/qt4/bin"
+-QTPOSTFIX="-qt4"
+
+ QTEXTRAINC=""
+ QTEXTRALIB=""
Property changes on: head/net/rsplib/files/patch-configure
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/net/wireshark/Makefile
===================================================================
--- head/net/wireshark/Makefile (revision 434379)
+++ head/net/wireshark/Makefile (revision 434380)
@@ -1,185 +1,186 @@
# Created by: Bill Fumerola <billf@chc-chimes.com>
# $FreeBSD$
PORTNAME?= wireshark
PORTVERSION= 2.2.4
PORTREVISION?= 0
CATEGORIES= net ipv6
MASTER_SITES= http://www.wireshark.org/download/src/ \
http://ftp.uni-kl.de/pub/wireshark/src/ \
http://wireshark.askapache.com/download/src/all-versions/ \
ftp://ftp.uni-kl.de/pub/wireshark/src/ \
http://prdownloads.sourceforge.net/wireshark/ \
http://ftp.yz.yamagata-u.ac.jp/pub/network/security/wireshark/src/ \
ftp://ftp.yz.yamagata-u.ac.jp/pub/network/security/wireshark/src/ \
http://wireshark.zing.org/download/src/
DISTNAME= ${DATADIR_NAME}-${PORTVERSION}
MAINTAINER= marcus@FreeBSD.org
COMMENT?= Powerful network analyzer/capture tool
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
CONFLICTS?= wireshark-qt5-[0-9]*
DATADIR_NAME= wireshark
DATADIR= ${PREFIX}/share/${DATADIR_NAME}
GNU_CONFIGURE= yes
USES= alias cpe gettext-runtime gmake libtool pathfix perl5 \
pkgconfig python:build ssl tar:bzip2
USE_PERL5= build
USE_GNOME= glib20
CONFIGURE_ARGS+= --program-transform-name="" \
--with-ssl=${OPENSSLBASE}
INSTALL_TARGET= install-strip
USE_LDCONFIG= yes
LIB_DEPENDS+= libgpg-error.so:security/libgpg-error
CFLAGS+= -funit-at-a-time
LIBS+= -L${LOCALBASE}/lib
PLIST_SUB+= PORTVERSION=${PORTVERSION}
.for x in capinfos editcap mergecap rawshark text2pcap dftest randpkt \
reordercap captype randpktdump
.if defined(LITE)
PKGNAMESUFFIX= -lite
PLIST_SUB+= ${x:tu}="@comment $x not installed" \
${x:tu}_LIB="@comment $x not installed " \
${x:tu}_MAN="@comment $x not installed "
CONFIGURE_ARGS+= --enable-$x=no
OPTIONS_EXCLUDE+= RTP SNMP GEOIP LUA CARES ANDROIDDUMP
.else
PLIST_SUB+= ${x:tu}=bin/$x \
${x:tu}_MAN="" \
${x:tu}_LIB=""
.endif
.endfor
OPTIONS_DEFINE= RTP SNMP IPV6 GEOIP LUA DECRYPT ANDROIDDUMP CARES
OPTIONS_RADIO= GUI
OPTIONS_SINGLE= KERBEROS
OPTIONS_RADIO_GUI= GTK2 GTK3 QT5
OPTIONS_SINGLE_KERBEROS=KRB_BASE KRB_HEIMDAL KRB_MIT KRB_NONE
OPTIONS_DEFAULT?= SNMP IPV6 GEOIP KRB_BASE GTK3 DECRYPT
RTP_DESC= Enable support for playing back RTP streams
DECRYPT_DESC= Decryption support for SSL and IPSec
ANDROIDDUMP_DESC= Build androiddump extcap tool
CARES_DESC= Enable support for asynchronous DNS via c-ares
KERBEROS_DESC= Kerberos dissection support
KRB_BASE_DESC= Kerberos support via base system
KRB_HEIMDAL_DESC= Kerberos support via security/heimdal
KRB_MIT_DESC= Kerberos support via security/krb5
KRB_NONE_DESC= Disable Kerberos support
GTK2_USE= GNOME=gtk20,cairo
GTK3_USE= GNOME=gtk30,cairo
QT5_USE= qt5=core,gui,widgets,printsupport,buildtools_build,linguisttools_build
LUA_USES= lua:5[1-2]
KRB_BASE_USES= gssapi
KRB_HEIMDAL_USES= gssapi:heimdal
KRB_MIT_USES= gssapi:mit
RTP_LIB_DEPENDS= libportaudio.so:audio/portaudio
RTP_CPPFLAGS= -I${LOCALBASE}/include
SNMP_LIB_DEPENDS= libsmi.so:net-mgmt/libsmi
CARES_LIB_DEPENDS= libcares.so:dns/c-ares
GEOIP_LIB_DEPENDS= libGeoIP.so:net/GeoIP
DECRYPT_LIB_DEPENDS= libgnutls.so:security/gnutls \
libgcrypt.so:security/libgcrypt
IPV6_CONFIGURE_ENABLE= ipv6
KRB_NONE_CONFIGURE_ON= --without-krb5
KRB_NONE_CONFIGURE_OFF= --with-krb5
KRB_NONE_CONFIGURE_ENV_OFF= KRB5_CONFIG=${KRB5CONFIG}
GTK2_CONFIGURE_ON= --with-gtk=2 --with-qt=no
GTK3_CONFIGURE_ON= --with-gtk=3 --with-qt=no
QT5_CONFIGURE_ON= --with-qt=5 --with-gtk=no
LUA_CONFIGURE_WITH= lua
RTP_CONFIGURE_WITH= portaudio
SNMP_CONFIGURE_WITH= libsmi
CARES_CONFIGURE_WITH= c-ares
GEOIP_CONFIGURE_WITH= geoip
DECRYPT_CONFIGURE_WITH= gnutls gcrypt
ANDROIDDUMP_CONFIGURE_ON=--enable-androiddump=yes
ANDROIDDUMP_CONFIGURE_OFF=--enable-androiddump=no
LUA_CPPFLAGS= -I${LUA_INCDIR}
QT5_CONFIGURE_ENV= PATH="${PATH}:${QT_BINDIR}"
+QT5_EXTRA_PATCHES= ${FILESDIR}/extrapatch-configure-qt5
QT5_MAKE_ENV= PATH="${PATH}:${QT_BINDIR}"
QT5_VARS= PKGNAMESUFFIX=-qt5
QT5_PLIST_SUB= GUI_GTK="@comment "
GTK2_PLIST_SUB= GUI_GTK=""
GTK3_PLIST_SUB= GUI_GTK=""
OPTIONS_SUB= LUA
.if defined(LITE)
CONFIGURE_ARGS+=--enable-androiddump=no
PLIST_SUB+= ANDROIDDUMP_LIB="@comment " \
ANDROIDDUMP_MAN="@comment "
.endif
.include <bsd.port.options.mk>
.if empty(PORT_OPTIONS:MGTK2) && empty(PORT_OPTIONS:MGTK3) && \
empty(PORT_OPTIONS:MQT5)
CONFIGURE_ARGS+= --disable-wireshark
PLIST_SUB+= GUI="@comment "
.else
USES+= desktop-file-utils shared-mime-info
INSTALLS_ICONS= yes
PLIST_SUB+= GUI=""
.endif
.if !defined(LITE)
.if ${PORT_OPTIONS:MANDROIDDUMP}
PLIST_SUB+= ANDROIDDUMP_LIB="" \
ANDROIDDUMP_MAN=""
.else
PLIST_SUB+= ANDROIDDUMP_LIB="@comment " \
ANDROIDDUMP_MAN="@comment "
.endif
.endif
.if ${PORT_OPTIONS:MKRB_BASE} && exists(${LOCALBASE}/include/krb5.h)
IGNORE= cannot build with base Kerberos if krb5 port is installed. \
Use ``make config'' to choose a different option
.endif
.if empty(PORT_OPTIONS:MGTK2) && empty(PORT_OPTIONS:MGTK3) && \
${PORT_OPTIONS:MRTP}
IGNORE= the RTP support requires GTK+ frontend
.endif
post-patch:
@${REINPLACE_CMD} -e 's|llua|llua-${LUA_VER}|g ; \
s|-DQT_GUI_LIB|-DQT_GUI_LIB $$CPPFLAGS| ' \
${WRKSRC}/configure
# XXX: Should be optional as to whether or not this flag works at runtime
@${REINPLACE_CMD} -e 's|-msse4.2||g' \
${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|/usr/share/applications|${DESKTOPDIR}|g ; \
s|/usr/share|${LOCALBASE}/share|g ; \
s|{mime/packages,applications}|mime/packages| ; \
s|{apps,mimetypes}|apps $$(DESTDIR)${LOCALBASE}/share/icons/hicolor/$$$${size}x$$$${size}/mimetypes|' \
${WRKSRC}/Makefile.in
.if ${PORT_OPTIONS:MGTK2} || ${PORT_OPTIONS:MGTK3}
post-install:
${MV} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}-gtk \
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.endif
.include <bsd.port.mk>
Index: head/net/wireshark/files/extrapatch-configure-qt5
===================================================================
--- head/net/wireshark/files/extrapatch-configure-qt5 (nonexistent)
+++ head/net/wireshark/files/extrapatch-configure-qt5 (revision 434380)
@@ -0,0 +1,37 @@
+Work around the buggy detection of the Qt tools via qtchooser, which adds the -qt=foo
+flag even though the found tool is not qtchooser.
+
+--- configure.orig 2017-02-09 18:02:53 UTC
++++ configure
+@@ -47562,7 +47562,6 @@ fi
+ #
+ # Add the -qt={version} argument to it.
+ #
+- UIC="$UIC -qt=$qt_version"
+ else
+ #
+ # Annoyingly, on some Linux distros (e.g. Debian)
+@@ -47740,7 +47739,6 @@ fi
+ #
+ # Add the -qt={version} argument to it.
+ #
+- MOC="$MOC -qt=$qt_version"
+ else
+ #
+ # Annoyingly, on some Linux distros (e.g. Debian)
+@@ -47918,7 +47916,6 @@ fi
+ #
+ # Add the -qt={version} argument to it.
+ #
+- RCC="$RCC -qt=$qt_version"
+ else
+ #
+ # Annoyingly, on some Linux distros (e.g. Debian)
+@@ -48097,7 +48094,6 @@ fi
+ #
+ # Add the -qt={version} argument to it.
+ #
+- LRELEASE="$LRELEASE -qt=$qt_version"
+ else
+ #
+ # Annoyingly, on some Linux distros (e.g. Debian)
Property changes on: head/net/wireshark/files/extrapatch-configure-qt5
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/net-im/telepathy-logger-qt4/Makefile
===================================================================
--- head/net-im/telepathy-logger-qt4/Makefile (revision 434379)
+++ head/net-im/telepathy-logger-qt4/Makefile (revision 434380)
@@ -1,37 +1,35 @@
# $FreeBSD$
PORTNAME= telepathy-logger-qt4
PORTVERSION= 0.8.0
CATEGORIES= net-im
MASTER_SITES= KDE/stable/${PORTNAME:C/4$//}/${PORTVERSION}/src
DISTNAME= ${PORTNAME:C/4$//}-${PORTVERSION}
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt binding for Telepathy Logger
LICENSE= LGPL21
LIB_DEPENDS= libdbus-1.so:devel/dbus \
libdbus-glib-1.so:devel/dbus-glib \
libtelepathy-glib.so:net-im/telepathy-glib \
libtelepathy-logger.so:net-im/telepathy-logger \
libtelepathy-qt4.so:net-im/telepathy-qt4
USES= bison:build cmake kde:4 pkgconfig python:build tar:bzip2
USE_GNOME= glib20 libxml2
USE_GSTREAMER= qt4
USE_KDE= # empty
USE_QT4= corelib dbus moc_build qmake_build rcc_build uic_build
CMAKE_ARGS= -DUSE_COMMON_CMAKE_PACKAGE_CONFIG_DIR:BOOL=True
USE_LDCONFIG= yes
post-patch:
- @${REINPLACE_CMD} -e '/FIND_PROGRAM/ s,qmake ,,' \
- ${WRKSRC}/cmake/modules/FindQt.cmake
@${REINPLACE_CMD} -e '/$${QTGLIB_INCLUDE_DIR}/ s,)$$, ${LOCALBASE}/include),' \
${WRKSRC}/CMakeLists.txt
@${REINPLACE_CMD} -e '/$${GOBJECT_LIBRARIES}/ s,$$, -L${LOCALBASE}/lib,' \
-e 's,$${LIB_INSTALL_DIR}/pkgconfig,libdata/pkgconfig,' \
${WRKSRC}/TelepathyLoggerQt4/CMakeLists.txt
.include <bsd.port.mk>
Index: head/print/qt5-printsupport/pkg-plist
===================================================================
--- head/print/qt5-printsupport/pkg-plist (revision 434379)
+++ head/print/qt5-printsupport/pkg-plist (revision 434380)
@@ -1,51 +1,51 @@
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qabstractprintdialog_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qcups_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qcupsjobwidget_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qpagesetupdialog_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qpagesetupdialog_unix_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qpaintengine_alpha_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qpaintengine_preview_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprint_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprintdevice_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprintengine_pdf_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprintengine_win_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprinter_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprinterinfo_p.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/qpa/qplatformprintdevice.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/qpa/qplatformprintersupport.h
%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/qpa/qplatformprintplugin.h
%%QT_INCDIR%%/QtPrintSupport/QAbstractPrintDialog
%%QT_INCDIR%%/QtPrintSupport/QPageSetupDialog
%%QT_INCDIR%%/QtPrintSupport/QPrintDialog
%%QT_INCDIR%%/QtPrintSupport/QPrintEngine
%%QT_INCDIR%%/QtPrintSupport/QPrintPreviewDialog
%%QT_INCDIR%%/QtPrintSupport/QPrintPreviewWidget
%%QT_INCDIR%%/QtPrintSupport/QPrinter
%%QT_INCDIR%%/QtPrintSupport/QPrinterInfo
%%QT_INCDIR%%/QtPrintSupport/QtPrintSupport
%%QT_INCDIR%%/QtPrintSupport/QtPrintSupportDepends
%%QT_INCDIR%%/QtPrintSupport/QtPrintSupportVersion
%%QT_INCDIR%%/QtPrintSupport/qabstractprintdialog.h
%%QT_INCDIR%%/QtPrintSupport/qpagesetupdialog.h
%%QT_INCDIR%%/QtPrintSupport/qprintdialog.h
%%QT_INCDIR%%/QtPrintSupport/qprintengine.h
%%QT_INCDIR%%/QtPrintSupport/qprinter.h
%%QT_INCDIR%%/QtPrintSupport/qprinterinfo.h
%%QT_INCDIR%%/QtPrintSupport/qprintpreviewdialog.h
%%QT_INCDIR%%/QtPrintSupport/qprintpreviewwidget.h
%%QT_INCDIR%%/QtPrintSupport/qtprintsupportglobal.h
%%QT_INCDIR%%/QtPrintSupport/qtprintsupportversion.h
-%%QT_LIBDIR%%/cmake/Qt5PrintSupport/Qt5PrintSupportConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5PrintSupport/Qt5PrintSupportConfigVersion.cmake
-%%CUPS%%%%QT_LIBDIR%%/cmake/Qt5PrintSupport/Qt5PrintSupport_QCupsPrinterSupportPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5PrintSupport/Qt5PrintSupportConfig.cmake
+%%QT_CMAKEDIR%%/Qt5PrintSupport/Qt5PrintSupportConfigVersion.cmake
+%%CUPS%%%%QT_CMAKEDIR%%/Qt5PrintSupport/Qt5PrintSupport_QCupsPrinterSupportPlugin.cmake
%%QT_LIBDIR%%/libQt5PrintSupport.prl
%%QT_LIBDIR%%/libQt5PrintSupport.so
%%QT_LIBDIR%%/libQt5PrintSupport.so.5
%%QT_LIBDIR%%/libQt5PrintSupport.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5PrintSupport.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5PrintSupport.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_printsupport.pri
%%QT_MKSPECDIR%%/modules/qt_lib_printsupport_private.pri
%%CUPS%%%%QT_PLUGINDIR%%/printsupport/libcupsprintersupport.so
%%CUPS%%%%DEBUG%%%%QT_PLUGINDIR%%/printsupport/libcupsprintersupport.so.debug
libdata/pkgconfig/Qt5PrintSupport.pc
Index: head/sysutils/qpxtool/files/patch-configure
===================================================================
--- head/sysutils/qpxtool/files/patch-configure (revision 434379)
+++ head/sysutils/qpxtool/files/patch-configure (revision 434380)
@@ -1,46 +1,37 @@
--- configure.orig 2012-12-04 12:06:33 UTC
+++ configure
@@ -13,10 +13,10 @@ OSLIBS_INET=""
OSLIBS_DL=""
OSLIBS_THREAD=""
-__cc=cc
-__cxx=c++
-__defprefix=""
-__prefix=""
+__cc=${CC}
+__cxx=${CXX}
+__defprefix="${PREFIX}"
+__prefix="${PREFIX}"
__enable_debug=no
__enable_png=yes
__enable_gui=yes
@@ -344,8 +344,8 @@ LPNG_LIB = $lpng_ldflags
" >> Makefile
- echo "CXXFLAGS += -Wall -O2 $OSDEFS $LPNG_DEFS $PLUGIN_DEFS $DEFS" >> Makefile
- echo "CFLAGS += -Wall -O2 $OSDEFS $LPNG_DEFS $PLUGIN_DEFS $DEFS" >> Makefile
+ echo "CXXFLAGS += -Wall $OSDEFS $LPNG_DEFS $PLUGIN_DEFS $DEFS" >> Makefile
+ echo "CFLAGS += -Wall $OSDEFS $LPNG_DEFS $PLUGIN_DEFS $DEFS" >> Makefile
if test "$__enable_debug" = "yes" ; then
echo "# additional debug options" >> Makefile
-@@ -491,7 +491,7 @@ else
- fi
- fi
- fi
-- echo " lrelease -verbose qpxtool.pro" >> $mf
-+ echo " lrelease-qt4 -verbose qpxtool.pro" >> $mf
-
- echo "
- clean: Makefile.qmake
@@ -846,7 +846,7 @@ case "$OSL" in
__libdir=$__prefix/lib
__plugindir=$__libdir/qpxtool
__incdir=$__prefix/include
- __mandir=$__prefix/share/man
+ __mandir=$__prefix/man
;;
mingw32*)
__bindir=$__prefix
Index: head/textproc/clucene-qt4/pkg-plist
===================================================================
--- head/textproc/clucene-qt4/pkg-plist (revision 434379)
+++ head/textproc/clucene-qt4/pkg-plist (nonexistent)
@@ -1,7 +0,0 @@
-%%QT_LIBDIR%%/libQtCLucene.prl
-%%QT_LIBDIR%%/libQtCLucene.so
-%%QT_LIBDIR%%/libQtCLucene.so.4
-%%QT_LIBDIR%%/libQtCLucene.so.%%SHORTVER%%
-%%QT_LIBDIR%%/libQtCLucene.so.%%FULLVER%%
-%%DEBUG%%%%QT_LIBDIR%%/libQtCLucene.so.%%FULLVER%%.debug
-libdata/pkgconfig/QtCLucene.pc
Property changes on: head/textproc/clucene-qt4/pkg-plist
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/textproc/clucene-qt4/Makefile
===================================================================
--- head/textproc/clucene-qt4/Makefile (revision 434379)
+++ head/textproc/clucene-qt4/Makefile (nonexistent)
@@ -1,52 +0,0 @@
-# Created by: danny@ricin.com
-# $FreeBSD$
-
-PORTNAME= clucene
-DISTVERSION= ${QT4_VERSION}
-CATEGORIES= textproc
-PKGNAMEPREFIX= qt4-
-
-MAINTAINER= kde@FreeBSD.org
-COMMENT= Qt bindings for the CLucene full-text search library
-
-USE_QT4= qmake_build corelib
-QT_DIST= yes
-
-HAS_CONFIGURE= yes
-USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
-
-ALL_TARGET= first
-CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
-MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
- PATH=${WRKSRC}/bin:$$PATH
-
-DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
- src/activeqt src/dbus src/gui src/multimedia src/network \
- src/opengl src/openvg src/phonon src/qt3support \
- src/s60installs src/s60main src/script src/scripttools \
- src/sql src/svg src/testlib src/tools src/winmain src/xml \
- src/xmlpatterns src/3rdparty/freetype src/3rdparty/libjpeg \
- src/3rdparty/libmng src/3rdparty/libpng src/3rdparty/libtiff \
- src/3rdparty/phonon src/3rdparty/webkit
-.for dne in ${DO_NOT_EXTRACT}
-EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
-.endfor
-
-BUILD_WRKSRC= ${WRKSRC}/tools/assistant/lib/fulltextsearch
-INSTALL_WRKSRC= ${BUILD_WRKSRC}
-
-pre-configure:
- ${MKDIR} ${WRKSRC}/mkspecs
- ${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
-
-post-configure:
- ${REINPLACE_CMD} \
- -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
- -e 's|.*$$(QMAKE).*||g' \
- -e 's|-fno-exceptions ||g' \
- ${BUILD_WRKSRC}/Makefile
- ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
- -E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
- ${WRKSRC}/lib/pkgconfig/QtCLucene.pc
-
-.include <bsd.port.mk>
Property changes on: head/textproc/clucene-qt4/Makefile
___________________________________________________________________
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-FreeBSD=%H
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/textproc/clucene-qt4/files/patch-src__3rdparty__clucene__src__CLucene__search__FieldCacheImpl.cpp
===================================================================
--- head/textproc/clucene-qt4/files/patch-src__3rdparty__clucene__src__CLucene__search__FieldCacheImpl.cpp (revision 434379)
+++ head/textproc/clucene-qt4/files/patch-src__3rdparty__clucene__src__CLucene__search__FieldCacheImpl.cpp (nonexistent)
@@ -1,11 +0,0 @@
---- src/3rdparty/clucene/src/CLucene/search/FieldCacheImpl.cpp~
-+++ src/3rdparty/clucene/src/CLucene/search/FieldCacheImpl.cpp
-@@ -11,6 +11,8 @@ CL_NS_USE(util)
- CL_NS_USE(index)
- CL_NS_DEF(search)
-
-+using ::wcschr;
-+
- FieldCacheImpl::FieldCacheImpl():
- cache(false,true){
- }
Property changes on: head/textproc/clucene-qt4/files/patch-src__3rdparty__clucene__src__CLucene__search__FieldCacheImpl.cpp
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/textproc/Makefile
===================================================================
--- head/textproc/Makefile (revision 434379)
+++ head/textproc/Makefile (revision 434380)
@@ -1,1758 +1,1758 @@
# $FreeBSD$
#
COMMENT = Text processing utilities (does not include desktop publishing)
SUBDIR += 2bsd-diff
SUBDIR += R-cran-DT
SUBDIR += R-cran-R2HTML
SUBDIR += R-cran-XML
SUBDIR += R-cran-formatR
SUBDIR += R-cran-highr
SUBDIR += R-cran-htmltools
SUBDIR += R-cran-markdown
SUBDIR += R-cran-pystr
SUBDIR += R-cran-rmarkdown
SUBDIR += R-cran-stringi
SUBDIR += R-cran-stringr
SUBDIR += R-cran-xml2
SUBDIR += R-cran-xtable
SUBDIR += R-cran-yaml
SUBDIR += UCD
SUBDIR += ack
SUBDIR += adabrowse
SUBDIR += add-css-links
SUBDIR += af-aspell
SUBDIR += aft
SUBDIR += agrep
SUBDIR += aiksaurus
SUBDIR += align
SUBDIR += am-aspell
SUBDIR += amberfish
SUBDIR += ansifilter
SUBDIR += ant-xinclude-task
SUBDIR += antiword
SUBDIR += apache-poi
SUBDIR += apache-solr
SUBDIR += apache-solr3
SUBDIR += apertium
SUBDIR += archmage
SUBDIR += artha
SUBDIR += asciidoc
SUBDIR += asm-xml
SUBDIR += asm2html
SUBDIR += aspell
SUBDIR += aspell-ispell
SUBDIR += ast-aspell
SUBDIR += atom
SUBDIR += augeas
SUBDIR += az-aspell
SUBDIR += bar
SUBDIR += bbe
SUBDIR += be-aspell
SUBDIR += bedic-data
SUBDIR += beediff
SUBDIR += bg-aspell
SUBDIR += bg-hyphen
SUBDIR += bg-mythes
SUBDIR += bib2html
SUBDIR += bibtex2html
SUBDIR += bibtool
SUBDIR += bibutils
SUBDIR += bn-aspell
SUBDIR += bomstrip
SUBDIR += br-aspell
SUBDIR += bsddiff
SUBDIR += bsdgrep
SUBDIR += bsdsort
SUBDIR += btparse
SUBDIR += c2html
SUBDIR += ca-aspell
SUBDIR += catdoc
SUBDIR += cdif
SUBDIR += cdiff
SUBDIR += cgrep
SUBDIR += chm2pdf
SUBDIR += chpp
SUBDIR += cl-meta
SUBDIR += cl-meta-sbcl
SUBDIR += cl-ppcre
SUBDIR += cl-ppcre-sbcl
SUBDIR += clit
SUBDIR += clucene
- SUBDIR += clucene-qt4
SUBDIR += cmark
SUBDIR += coccigrep
SUBDIR += code2html
SUBDIR += codespell
SUBDIR += colordiff
SUBDIR += confetti
SUBDIR += confget
SUBDIR += consul-template
SUBDIR += crimson
SUBDIR += cs-aspell
SUBDIR += cs-hunspell
SUBDIR += cs-hyphen
SUBDIR += cs-mythes
SUBDIR += csb-aspell
SUBDIR += csv2latex
SUBDIR += csvdiff
SUBDIR += ctpl
SUBDIR += ctpp2
SUBDIR += cwtext
SUBDIR += cy-aspell
SUBDIR += da-aspell
SUBDIR += da-hyphen
SUBDIR += dadadodo
SUBDIR += db2latex
SUBDIR += dbacl
SUBDIR += dblatex
SUBDIR += denature
SUBDIR += dict
SUBDIR += dictem
SUBDIR += dictfmt
SUBDIR += dictionary
SUBDIR += diffmark
SUBDIR += diffsplit
SUBDIR += diffstat
SUBDIR += diffutils
SUBDIR += dikt
SUBDIR += discount
SUBDIR += dixit
SUBDIR += doc-mode.el
SUBDIR += docbook
SUBDIR += docbook-sgml
SUBDIR += docbook-tdg
SUBDIR += docbook-to-man
SUBDIR += docbook-utils
SUBDIR += docbook-xml
SUBDIR += docbook-xsd
SUBDIR += docbook-xsl
SUBDIR += docbook-xsl-ns
SUBDIR += docbook2X
SUBDIR += docbook2mdoc
SUBDIR += docbook2odf
SUBDIR += doclifter
SUBDIR += docproj
SUBDIR += dom4j
SUBDIR += domc
SUBDIR += dsssl-docbook-modular
SUBDIR += dtd-catalogs
SUBDIR += dtd2relax
SUBDIR += dtdinst
SUBDIR += dtdparse
SUBDIR += duncan
SUBDIR += dwdiff
SUBDIR += easydiff
SUBDIR += ebook-tools
SUBDIR += ecromedos
SUBDIR += ekhtml
SUBDIR += el-aspell
SUBDIR += el-hyphen
SUBDIR += elasticsearch
SUBDIR += elasticsearch-plugin-head
SUBDIR += elasticsearch-plugin-hq
SUBDIR += elasticsearch-plugin-marvel
SUBDIR += elasticsearch-plugin-migration
SUBDIR += elasticsearch-plugin-sql
SUBDIR += elasticsearch-river-rabbitmq
SUBDIR += elasticsearch2
SUBDIR += elasticsearch2-plugin-hq
SUBDIR += elasticsearch2-plugin-marvel
SUBDIR += elasticsearch2-plugin-migration
SUBDIR += elasticsearch2-plugin-sql
SUBDIR += elasticsearch5
SUBDIR += elasticsearch5-x-pack
SUBDIR += elixir-earmark
SUBDIR += elixir-ex_doc
SUBDIR += elixir-funnel
SUBDIR += elixir-sweet_xml
SUBDIR += emacs-wiki
SUBDIR += en-aspell
SUBDIR += en-hunspell
SUBDIR += en-mythes
SUBDIR += enchant
SUBDIR += eo-aspell
SUBDIR += eqe
SUBDIR += erlang-edown
SUBDIR += erlang-fast_xml
SUBDIR += erlang-p1_utils
SUBDIR += erlang-yamerl
SUBDIR += es-aspell
SUBDIR += es-hunspell
SUBDIR += es-hyphen
SUBDIR += es-mythes
SUBDIR += estraier
SUBDIR += et-aspell
SUBDIR += exempi
SUBDIR += expat2
SUBDIR += extract_url
SUBDIR += ezxml
SUBDIR += fa-aspell
SUBDIR += fcitx-m17n
SUBDIR += fcitx-qt5
SUBDIR += fex
SUBDIR += ffe
SUBDIR += fi-aspell
SUBDIR += filepp
SUBDIR += fist
SUBDIR += fixrtf
SUBDIR += fldiff
SUBDIR += flex
SUBDIR += flip
SUBDIR += fo-aspell
SUBDIR += foiltex
SUBDIR += fop
SUBDIR += fpc-aspell
SUBDIR += fpc-libxml2
SUBDIR += freexl
SUBDIR += fy-aspell
SUBDIR += fzf
SUBDIR += ga-aspell
SUBDIR += gastex
SUBDIR += gd-aspell
SUBDIR += gdome2
SUBDIR += gl-aspell
SUBDIR += gladtex
SUBDIR += glark
SUBDIR += gmetadom
SUBDIR += gnome-doc-utils
SUBDIR += gnome-spell
SUBDIR += gnugrep
SUBDIR += go-text
SUBDIR += go.text
SUBDIR += goldendict
SUBDIR += google-ctemplate
SUBDIR += google-translate-cli
SUBDIR += gpp
SUBDIR += grap
SUBDIR += grc-aspell
SUBDIR += groff
SUBDIR += groonga
SUBDIR += gsed
SUBDIR += gspell
SUBDIR += gtk-doc
SUBDIR += gtkspell
SUBDIR += gtkspell-reference
SUBDIR += gtkspell3
SUBDIR += gu-aspell
SUBDIR += gutenmark
SUBDIR += gv-aspell
SUBDIR += heirloom-doctools
SUBDIR += hevea
SUBDIR += hhm
SUBDIR += hi-aspell
SUBDIR += highlight
SUBDIR += hil-aspell
SUBDIR += hr-aspell
SUBDIR += hs-Diff
SUBDIR += hs-HStringTemplate
SUBDIR += hs-HaXml
SUBDIR += hs-appar
SUBDIR += hs-attoparsec
SUBDIR += hs-attoparsec-enumerator
SUBDIR += hs-bencode
SUBDIR += hs-blaze-html
SUBDIR += hs-blaze-markup
SUBDIR += hs-bytestring-csv
SUBDIR += hs-case-insensitive
SUBDIR += hs-cassava
SUBDIR += hs-citeproc-hs
SUBDIR += hs-cmark
SUBDIR += hs-csv
SUBDIR += hs-double-conversion
SUBDIR += hs-feed
SUBDIR += hs-hexpat
SUBDIR += hs-highlighting-kate
SUBDIR += hs-hs-bibutils
SUBDIR += hs-html
SUBDIR += hs-html-conduit
SUBDIR += hs-hxt
SUBDIR += hs-hxt-charproperties
SUBDIR += hs-hxt-regex-xmlschema
SUBDIR += hs-hxt-unicode
SUBDIR += hs-lhs2tex
SUBDIR += hs-libxml
SUBDIR += hs-libxml-sax
SUBDIR += hs-pandoc
SUBDIR += hs-pandoc-citeproc
SUBDIR += hs-pandoc-types
SUBDIR += hs-parsec
SUBDIR += hs-polyparse
SUBDIR += hs-regex-applicative
SUBDIR += hs-regex-base
SUBDIR += hs-regex-compat
SUBDIR += hs-regex-compat-tdfa
SUBDIR += hs-regex-pcre-builtin
SUBDIR += hs-regex-posix
SUBDIR += hs-regex-tdfa
SUBDIR += hs-rfc5051
SUBDIR += hs-stringsearch
SUBDIR += hs-tagsoup
SUBDIR += hs-tagstream-conduit
SUBDIR += hs-texmath
SUBDIR += hs-uri
SUBDIR += hs-xml
SUBDIR += hs-xml-conduit
SUBDIR += hs-xml-hamlet
SUBDIR += hs-xml-types
SUBDIR += hs-xmlhtml
SUBDIR += hs-yaml
SUBDIR += hsb-aspell
SUBDIR += htdig
SUBDIR += html
SUBDIR += html-pretty
SUBDIR += html-xml-utils
SUBDIR += html2fo
SUBDIR += html2tex
SUBDIR += html2text
SUBDIR += html2xhtml
SUBDIR += htmlc
SUBDIR += htmldoc
SUBDIR += htmlise
SUBDIR += htmlize.el
SUBDIR += htmlsection
SUBDIR += htmltolatex
SUBDIR += humanzip
SUBDIR += hunspell
SUBDIR += hy-aspell
SUBDIR += hyperestraier
SUBDIR += hyphen
SUBDIR += ia-aspell
SUBDIR += ibus
SUBDIR += ibus-el
SUBDIR += ibus-kmfl
SUBDIR += ibus-m17n
SUBDIR += ibus-qt
SUBDIR += ibus-table
SUBDIR += icdiff
SUBDIR += id-aspell
SUBDIR += id-hyphen
SUBDIR += idnits
SUBDIR += igor
SUBDIR += iksemel
SUBDIR += info2html
SUBDIR += info2man
SUBDIR += info_to_html
SUBDIR += intltool
SUBDIR += irstlm
SUBDIR += is-aspell
SUBDIR += is-hyphen
SUBDIR += iso-schematron-xslt
SUBDIR += iso12083
SUBDIR += iso8879
SUBDIR += it-aspell
SUBDIR += it-hunspell
SUBDIR += it-hyphen
SUBDIR += it-mythes
SUBDIR += itstool
SUBDIR += jade
SUBDIR += jakarta-commons-digester
SUBDIR += jalingo
SUBDIR += jarnal
SUBDIR += java2html
SUBDIR += jaxup
SUBDIR += jdictionary
SUBDIR += jdictionary-int-eng
SUBDIR += jid
SUBDIR += jing
SUBDIR += jo
SUBDIR += jq
SUBDIR += jrefentry
SUBDIR += jshon
SUBDIR += kdiff3
SUBDIR += kenlm
SUBDIR += kf5-kcodecs
SUBDIR += kf5-sonnet
SUBDIR += kf5-syntax-highlighting
SUBDIR += kibana3
SUBDIR += kibana41
SUBDIR += kibana43
SUBDIR += kibana44
SUBDIR += kibana45
SUBDIR += kibana50
SUBDIR += kibana50-x-pack
SUBDIR += kmfl-european-latin
SUBDIR += kmfl-khmer
SUBDIR += kmfl-sil-ezra
SUBDIR += kmfl-sil-galatia
SUBDIR += kmfl-sil-ipa-unicode
SUBDIR += kmfl-sil-panafrican-latin
SUBDIR += kmfl-sil-yi
SUBDIR += kmfl-varamozhi-malayalam
SUBDIR += kmflcomp
SUBDIR += kn-aspell
SUBDIR += kompare
SUBDIR += ku-aspell
SUBDIR += ky-aspell
SUBDIR += l2a
SUBDIR += la-aspell
SUBDIR += lacheck
SUBDIR += lasem
SUBDIR += latex-service
SUBDIR += latex2html
SUBDIR += libabw
SUBDIR += libcrm114
SUBDIR += libcroco
SUBDIR += libcss
SUBDIR += libcsv
SUBDIR += libcue
SUBDIR += libe-book
SUBDIR += libebml
SUBDIR += libextractor
SUBDIR += libexttextcat
SUBDIR += libflate
SUBDIR += libfo
SUBDIR += libgepub
SUBDIR += libguess
SUBDIR += libkmfl
SUBDIR += libkolabxml
SUBDIR += libkomparediff2
SUBDIR += liblingoteach
SUBDIR += liblrdf
SUBDIR += libmrss
SUBDIR += libmrss-php
SUBDIR += libmwaw03
SUBDIR += libnxml
SUBDIR += libodfgen01
SUBDIR += libparsifal
SUBDIR += librevenge
SUBDIR += libroxml
SUBDIR += libsass
SUBDIR += libsoldout
SUBDIR += libsphinxclient
SUBDIR += libstree
SUBDIR += libtextcat
SUBDIR += libtranslate
SUBDIR += libtre
SUBDIR += libucl
SUBDIR += libunibreak
SUBDIR += libuninameslist
SUBDIR += libutf8proc
SUBDIR += libvisio01
SUBDIR += libwapcaplet
SUBDIR += libwpd010
SUBDIR += libwps
SUBDIR += libwps03
SUBDIR += libxdiff
SUBDIR += libxml++26
SUBDIR += libxml++26-reference
SUBDIR += libxml2
SUBDIR += libxml2-reference
SUBDIR += libxode
SUBDIR += libxslt
SUBDIR += libxslt-reference
SUBDIR += libyaml
SUBDIR += link-grammar
SUBDIR += linux-c6-aspell
SUBDIR += linux-c6-expat
SUBDIR += linux-c6-libxml2
SUBDIR += linux-c7-aspell
SUBDIR += linux-c7-expat
SUBDIR += linux-c7-libxml2
SUBDIR += linuxdoc
SUBDIR += linuxdoc-tools
SUBDIR += localize
SUBDIR += loook
SUBDIR += lowdown
SUBDIR += lt-aspell
SUBDIR += lt-hyphen
SUBDIR += lttoolbox
SUBDIR += ltxml
SUBDIR += luaexpat
SUBDIR += lucene
SUBDIR += lucene4
SUBDIR += lucene5
SUBDIR += luceneplusplus
SUBDIR += lv-aspell
SUBDIR += m17n-im-config
SUBDIR += makefaq
SUBDIR += makepatch
SUBDIR += man2html
SUBDIR += markdown
SUBDIR += markdown-mode.el
SUBDIR += mathml-xsd
SUBDIR += mdocml
SUBDIR += meld
SUBDIR += metauml
SUBDIR += mgdiff
SUBDIR += mguesser
SUBDIR += mi-aspell
SUBDIR += mifluz
SUBDIR += miller
SUBDIR += minised
SUBDIR += minixmlto
SUBDIR += mk-aspell
SUBDIR += mkcatalog
SUBDIR += ml-aspell
SUBDIR += ml1
SUBDIR += mn-aspell
SUBDIR += modlogan
SUBDIR += mr-aspell
SUBDIR += ms-aspell
SUBDIR += msort
SUBDIR += mt-aspell
SUBDIR += multimarkdown
SUBDIR += muse
SUBDIR += mxml
SUBDIR += mysqlviz
SUBDIR += mythes
SUBDIR += nb-aspell
SUBDIR += nds-aspell
SUBDIR += nl-aspell
SUBDIR += nl-hunspell
SUBDIR += nl-hyphen
SUBDIR += nl-mythes
SUBDIR += nn-aspell
SUBDIR += no-hunspell
SUBDIR += nunnimcax
SUBDIR += nux
SUBDIR += ny-aspell
SUBDIR += ocaml-csv
SUBDIR += ocaml-expat
SUBDIR += ocaml-pxp
SUBDIR += ocaml-text
SUBDIR += ocaml-tyxml
SUBDIR += odt2txt
SUBDIR += openfts
SUBDIR += opengrm-ngram
SUBDIR += openjade
SUBDIR += opensched
SUBDIR += opensp
SUBDIR += opentoken
SUBDIR += openvanilla-framework
SUBDIR += or-aspell
SUBDIR += ots
SUBDIR += p5-AI-Categorizer
SUBDIR += p5-Algorithm-CheckDigits
SUBDIR += p5-Algorithm-RabinKarp
SUBDIR += p5-Apache-ParseLog
SUBDIR += p5-BibTeX-Parser
SUBDIR += p5-Bloom-Filter
SUBDIR += p5-CAM-PDF
SUBDIR += p5-CQL-Parser
SUBDIR += p5-CSS
SUBDIR += p5-CSS-Compressor
SUBDIR += p5-CSS-Croco
SUBDIR += p5-CSS-Minifier
SUBDIR += p5-CSS-Minifier-XS
SUBDIR += p5-CSS-Packer
SUBDIR += p5-CSS-SAC
SUBDIR += p5-CSS-Simple
SUBDIR += p5-CSS-Squish
SUBDIR += p5-CSS-Tiny
SUBDIR += p5-Chess-PGN-Parse
SUBDIR += p5-Class-CSV
SUBDIR += p5-Data-FormValidator
SUBDIR += p5-Data-FormValidator-Constraints-DateTime
SUBDIR += p5-Data-Phrasebook
SUBDIR += p5-Data-Phrasebook-Loader-YAML
SUBDIR += p5-Data-Report
SUBDIR += p5-Data-SpreadPagination
SUBDIR += p5-DelimMatch
SUBDIR += p5-Dev-Bollocks
SUBDIR += p5-Devel-TraceSAX
SUBDIR += p5-DocSet
SUBDIR += p5-EBook-Tools
SUBDIR += p5-Excel-Template
SUBDIR += p5-Excel-Writer-XLSX
SUBDIR += p5-File-Inplace
SUBDIR += p5-Filter-Simple
SUBDIR += p5-FormValidator-Lite
SUBDIR += p5-Games-Dissociate
SUBDIR += p5-Geo-Parse-OSM
SUBDIR += p5-Getopt-Lucid
SUBDIR += p5-Google-Data-JSON
SUBDIR += p5-HTML-CTPP2
SUBDIR += p5-HTML-Copy
SUBDIR += p5-HTML-Entities-ImodePictogram
SUBDIR += p5-HTML-Entities-Interpolate
SUBDIR += p5-HTML-Entities-Numbered
SUBDIR += p5-HTML-EscapeEvil
SUBDIR += p5-HTML-Format
SUBDIR += p5-HTML-FormatExternal
SUBDIR += p5-HTML-FormatText-WithLinks
SUBDIR += p5-HTML-FormatText-WithLinks-AndTables
SUBDIR += p5-HTML-Fraction
SUBDIR += p5-HTML-HTML5-Entities
SUBDIR += p5-HTML-HTML5-Parser
SUBDIR += p5-HTML-HTMLDoc
SUBDIR += p5-HTML-Packer
SUBDIR += p5-HTML-QRCode
SUBDIR += p5-HTML-Quoted
SUBDIR += p5-HTML-RewriteAttributes
SUBDIR += p5-HTML-SBC
SUBDIR += p5-HTML-SuperForm
SUBDIR += p5-HTML-TagFilter
SUBDIR += p5-HTML-Tidy
SUBDIR += p5-HTML-Tiny
SUBDIR += p5-HTML-Truncate
SUBDIR += p5-Hailo
SUBDIR += p5-Hash-Merge
SUBDIR += p5-Hatena-Keyword
SUBDIR += p5-IDNA-Punycode
SUBDIR += p5-IO-CSVHeaderFile
SUBDIR += p5-JavaScript-Minifier
SUBDIR += p5-JavaScript-Minifier-XS
SUBDIR += p5-JavaScript-Packer
SUBDIR += p5-KinoSearch1
SUBDIR += p5-Kwalify
SUBDIR += p5-LaTeX-Driver
SUBDIR += p5-LaTeX-Encode
SUBDIR += p5-LaTeX-Pod
SUBDIR += p5-LaTeX-TOM
SUBDIR += p5-LaTeX-Table
SUBDIR += p5-LaTeX-ToUnicode
SUBDIR += p5-Lingua-Conjunction
SUBDIR += p5-Lingua-EN-AddressParse
SUBDIR += p5-Lingua-EN-Fathom
SUBDIR += p5-Lingua-EN-FindNumber
SUBDIR += p5-Lingua-EN-Gender
SUBDIR += p5-Lingua-EN-Infinitive
SUBDIR += p5-Lingua-EN-Inflect
SUBDIR += p5-Lingua-EN-Inflect-Number
SUBDIR += p5-Lingua-EN-Inflect-Phrase
SUBDIR += p5-Lingua-EN-MatchNames
SUBDIR += p5-Lingua-EN-NameCase
SUBDIR += p5-Lingua-EN-NameParse
SUBDIR += p5-Lingua-EN-NamedEntity
SUBDIR += p5-Lingua-EN-Nickname
SUBDIR += p5-Lingua-EN-Number-IsOrdinal
SUBDIR += p5-Lingua-EN-Numbers
SUBDIR += p5-Lingua-EN-Numbers-Easy
SUBDIR += p5-Lingua-EN-Numbers-Ordinate
SUBDIR += p5-Lingua-EN-PluralToSingular
SUBDIR += p5-Lingua-EN-Sentence
SUBDIR += p5-Lingua-EN-Squeeze
SUBDIR += p5-Lingua-EN-Summarize
SUBDIR += p5-Lingua-EN-Syllable
SUBDIR += p5-Lingua-EN-Tagger
SUBDIR += p5-Lingua-EN-Words2Nums
SUBDIR += p5-Lingua-Ident
SUBDIR += p5-Lingua-Identify
SUBDIR += p5-Lingua-Identify-CLD
SUBDIR += p5-Lingua-Ispell
SUBDIR += p5-Lingua-PT-Stemmer
SUBDIR += p5-Lingua-Preferred
SUBDIR += p5-Lingua-Stem
SUBDIR += p5-Lingua-Stem-Fr
SUBDIR += p5-Lingua-Stem-It
SUBDIR += p5-Lingua-Stem-Ru
SUBDIR += p5-Lingua-Stem-Snowball
SUBDIR += p5-Lingua-Stem-Snowball-Da
SUBDIR += p5-Lingua-Stem-Snowball-No
SUBDIR += p5-Lingua-Stem-Snowball-Se
SUBDIR += p5-Lingua-StopWords
SUBDIR += p5-Lingua-Treebank
SUBDIR += p5-MARC
SUBDIR += p5-MARC-Charset
SUBDIR += p5-MARC-Lint
SUBDIR += p5-MARC-Record
SUBDIR += p5-MARC-XML
SUBDIR += p5-MKDoc-XML
SUBDIR += p5-Makefile-DOM
SUBDIR += p5-Makefile-Parser
SUBDIR += p5-Markapl
SUBDIR += p5-Marpa-HTML
SUBDIR += p5-MathML-Entities
SUBDIR += p5-Net-Groonga-HTTP
SUBDIR += p5-Net-IDN-Encode
SUBDIR += p5-Net-Snort-Parser
SUBDIR += p5-Net-YASA
SUBDIR += p5-NetAddr-IP-Find
SUBDIR += p5-Number-Format
SUBDIR += p5-Number-Spell
SUBDIR += p5-ODF-lpOD
SUBDIR += p5-OpenOffice-OODoc
SUBDIR += p5-PDF-API2
SUBDIR += p5-PDF-API2-Simple
SUBDIR += p5-PDF-API3
SUBDIR += p5-PDF-Create
SUBDIR += p5-PDF-FromHTML
SUBDIR += p5-PDF-Table
SUBDIR += p5-PDF-WebKit
SUBDIR += p5-PDF-Writer
SUBDIR += p5-POD2-Base
SUBDIR += p5-POE-Filter-XML
SUBDIR += p5-POSIX-Regex
SUBDIR += p5-PPI
SUBDIR += p5-PPI-HTML
SUBDIR += p5-PPI-XS
SUBDIR += p5-PPIx-EditorTools
SUBDIR += p5-PPIx-Regexp
SUBDIR += p5-PPIx-Utilities
SUBDIR += p5-Parse-BooleanLogic
SUBDIR += p5-Parse-CSV
SUBDIR += p5-Parse-FixedLength
SUBDIR += p5-Parse-Flex
SUBDIR += p5-Parse-PhoneNumber
SUBDIR += p5-Parse-Syslog
SUBDIR += p5-Perl-Critic
SUBDIR += p5-Perl-Critic-Bangs
SUBDIR += p5-Perl-Critic-Itch
SUBDIR += p5-Perl-Critic-Moose
SUBDIR += p5-Perl-Critic-More
SUBDIR += p5-Perl-Critic-Pulp
SUBDIR += p5-Perl-Critic-Swift
SUBDIR += p5-Perl-Critic-Tics
SUBDIR += p5-Perl-Lint
SUBDIR += p5-Perl-MinimumVersion
SUBDIR += p5-PerlPoint-Converters
SUBDIR += p5-PerlPoint-Package
SUBDIR += p5-Petal
SUBDIR += p5-Petal-CodePerl
SUBDIR += p5-Petal-Mail
SUBDIR += p5-Petal-Utils
SUBDIR += p5-Plagger
SUBDIR += p5-Plucene
SUBDIR += p5-Plucene-Analysis-CJKAnalyzer
SUBDIR += p5-Plucene-Plugin-Analyzer-SnowballAnalyzer
SUBDIR += p5-Plucene-Simple
SUBDIR += p5-Pod-Abstract
SUBDIR += p5-Pod-Autopod
SUBDIR += p5-Pod-Constants
SUBDIR += p5-Pod-DocBook
SUBDIR += p5-Pod-Elemental
SUBDIR += p5-Pod-Escapes
SUBDIR += p5-Pod-Eventual
SUBDIR += p5-Pod-HtmlEasy
SUBDIR += p5-Pod-Markdown
SUBDIR += p5-Pod-MinimumVersion
SUBDIR += p5-Pod-POM
SUBDIR += p5-Pod-POM-View-HTML-Filter
SUBDIR += p5-Pod-Parser
SUBDIR += p5-Pod-Perldoc
SUBDIR += p5-Pod-ProjectDocs
SUBDIR += p5-Pod-Readme
SUBDIR += p5-Pod-Simple
SUBDIR += p5-Pod-Spell
SUBDIR += p5-Pod-Strip
SUBDIR += p5-Pod-Stripper
SUBDIR += p5-Pod-Tree
SUBDIR += p5-Pod-WSDL
SUBDIR += p5-Pod-WikiDoc
SUBDIR += p5-Pod-XML
SUBDIR += p5-Pod-Xhtml
SUBDIR += p5-RADIUS-UserFile
SUBDIR += p5-RDF-Core
SUBDIR += p5-RDF-Notation3
SUBDIR += p5-RDF-Simple
SUBDIR += p5-RDF-Trine
SUBDIR += p5-RDFStore
SUBDIR += p5-RTF-Parser
SUBDIR += p5-RTF-Tokenizer
SUBDIR += p5-RTF-Writer
SUBDIR += p5-Regex-PreSuf
SUBDIR += p5-Regexp-Common
SUBDIR += p5-Regexp-Common-Email-Address
SUBDIR += p5-Regexp-Common-net-CIDR
SUBDIR += p5-Regexp-Common-profanity_us
SUBDIR += p5-Regexp-Copy
SUBDIR += p5-Regexp-Debugger
SUBDIR += p5-Regexp-DefaultFlags
SUBDIR += p5-Regexp-IPv6
SUBDIR += p5-Regexp-Log
SUBDIR += p5-Regexp-Log-Common
SUBDIR += p5-SGML-DTDParse
SUBDIR += p5-SGML-Parser-OpenSP
SUBDIR += p5-SGMLSpm
SUBDIR += p5-SQL-Tokenizer
SUBDIR += p5-SVG
SUBDIR += p5-SVG-Parser
SUBDIR += p5-Search-Elasticsearch
SUBDIR += p5-Search-Elasticsearch-Client-0_90
SUBDIR += p5-Search-Elasticsearch-Client-1_0
SUBDIR += p5-Search-Elasticsearch-Client-2_0
SUBDIR += p5-Search-Estraier
SUBDIR += p5-Search-Odeum
SUBDIR += p5-Search-QueryParser
SUBDIR += p5-Search-QueryParser-SQL
SUBDIR += p5-Search-Saryer
SUBDIR += p5-Search-VectorSpace
SUBDIR += p5-Senna
SUBDIR += p5-Solr
SUBDIR += p5-Sort-ArbBiLex
SUBDIR += p5-Sort-Fields
SUBDIR += p5-Sort-Naturally
SUBDIR += p5-Sphinx-Config
SUBDIR += p5-Sphinx-Manager
SUBDIR += p5-Sphinx-Search
SUBDIR += p5-Spork
SUBDIR += p5-Spreadsheet-ParseExcel
SUBDIR += p5-Spreadsheet-Read
SUBDIR += p5-Spreadsheet-ReadSXC
SUBDIR += p5-Spreadsheet-WriteExcel
SUBDIR += p5-Spreadsheet-WriteExcel-FromXML
SUBDIR += p5-Spreadsheet-WriteExcel-Styler
SUBDIR += p5-Spreadsheet-WriteExcelXML
SUBDIR += p5-Spreadsheet-XLSX
SUBDIR += p5-String-BufferStack
SUBDIR += p5-String-CamelCase
SUBDIR += p5-String-Compare-ConstantTime
SUBDIR += p5-String-Divert
SUBDIR += p5-String-Escape
SUBDIR += p5-String-Flogger
SUBDIR += p5-String-Format
SUBDIR += p5-String-Fraction
SUBDIR += p5-String-HexConvert
SUBDIR += p5-String-Koremutake
SUBDIR += p5-String-LCSS
SUBDIR += p5-String-Print
SUBDIR += p5-String-RewritePrefix
SUBDIR += p5-String-Scanf
SUBDIR += p5-String-ShellQuote
SUBDIR += p5-String-ShowDiff
SUBDIR += p5-String-Strip
SUBDIR += p5-String-ToIdentifier-EN
SUBDIR += p5-String-Tokenizer
SUBDIR += p5-String-Trim
SUBDIR += p5-String-Truncate
SUBDIR += p5-String-Urandom
SUBDIR += p5-String-Util
SUBDIR += p5-Syntax-Highlight-Engine-Kate
SUBDIR += p5-Syntax-Highlight-Perl-Improved
SUBDIR += p5-TOML
SUBDIR += p5-TOML-Parser
SUBDIR += p5-TeX-Encode
SUBDIR += p5-TeX-Hyphen
SUBDIR += p5-Template-Declare
SUBDIR += p5-Template-Extract
SUBDIR += p5-Template-Magic
SUBDIR += p5-Template-Plugin-Autoformat
SUBDIR += p5-Template-Plugin-CSV
SUBDIR += p5-Template-Plugin-Filter-Minify-CSS
SUBDIR += p5-Template-Plugin-Filter-Minify-CSS-XS
SUBDIR += p5-Template-Plugin-Filter-Minify-JavaScript
SUBDIR += p5-Template-Plugin-Filter-Minify-JavaScript-XS
SUBDIR += p5-Template-Plugin-HTML-SuperForm
SUBDIR += p5-Template-Plugin-Lingua-EN-Inflect
SUBDIR += p5-Template-Plugin-XML-Escape
SUBDIR += p5-Template-Semantic
SUBDIR += p5-Template-Tiny
SUBDIR += p5-Term-QRCode
SUBDIR += p5-Test-Groonga
SUBDIR += p5-Test-Perl-Critic
SUBDIR += p5-Text-ASCIIMathML
SUBDIR += p5-Text-ASCIITable
SUBDIR += p5-Text-Affixes
SUBDIR += p5-Text-Aligner
SUBDIR += p5-Text-Aspell
SUBDIR += p5-Text-Autoformat
SUBDIR += p5-Text-Balanced
SUBDIR += p5-Text-Bastardize
SUBDIR += p5-Text-BibTeX
SUBDIR += p5-Text-Bind
SUBDIR += p5-Text-Brew
SUBDIR += p5-Text-CSV
SUBDIR += p5-Text-CSV-Encoded
SUBDIR += p5-Text-CSV-Hashify
SUBDIR += p5-Text-CSV-Simple
SUBDIR += p5-Text-CSV_XS
SUBDIR += p5-Text-Capitalize
SUBDIR += p5-Text-CharWidth
SUBDIR += p5-Text-Chomp
SUBDIR += p5-Text-ClearSilver
SUBDIR += p5-Text-Colorizer
SUBDIR += p5-Text-Context
SUBDIR += p5-Text-Context-EitherSide
SUBDIR += p5-Text-DHCPLeases
SUBDIR += p5-Text-Decorator
SUBDIR += p5-Text-Delimited
SUBDIR += p5-Text-Diff
SUBDIR += p5-Text-Diff-HTML
SUBDIR += p5-Text-Diff-Parser
SUBDIR += p5-Text-Diff3
SUBDIR += p5-Text-DoubleMetaphone
SUBDIR += p5-Text-Emoticon
SUBDIR += p5-Text-Emoticon-GoogleTalk
SUBDIR += p5-Text-Emoticon-MSN
SUBDIR += p5-Text-EtText
SUBDIR += p5-Text-Extract-Word
SUBDIR += p5-Text-ExtractWords
SUBDIR += p5-Text-FillIn
SUBDIR += p5-Text-Filter
SUBDIR += p5-Text-Filter-Chain
SUBDIR += p5-Text-FindIndent
SUBDIR += p5-Text-FixEOL
SUBDIR += p5-Text-FixedLength
SUBDIR += p5-Text-FixedLength-Extra
SUBDIR += p5-Text-Flow
SUBDIR += p5-Text-Flowchart
SUBDIR += p5-Text-Flowed
SUBDIR += p5-Text-Format
SUBDIR += p5-Text-Format+NWrap
SUBDIR += p5-Text-FormatTable
SUBDIR += p5-Text-German
SUBDIR += p5-Text-Glob
SUBDIR += p5-Text-Graphics
SUBDIR += p5-Text-Greeking
SUBDIR += p5-Text-Haml
SUBDIR += p5-Text-Hatena
SUBDIR += p5-Text-Highlight
SUBDIR += p5-Text-HikiDoc
SUBDIR += p5-Text-Hyphen
SUBDIR += p5-Text-LTSV
SUBDIR += p5-Text-Language-Guess
SUBDIR += p5-Text-Lorem
SUBDIR += p5-Text-Markdown
SUBDIR += p5-Text-Match-FastAlternatives
SUBDIR += p5-Text-Metaphone
SUBDIR += p5-Text-MicroMason
SUBDIR += p5-Text-MicroTemplate
SUBDIR += p5-Text-MicroTemplate-Extended
SUBDIR += p5-Text-MultiMarkdown
SUBDIR += p5-Text-NSP
SUBDIR += p5-Text-NeatTemplate
SUBDIR += p5-Text-Netstring
SUBDIR += p5-Text-Ngram
SUBDIR += p5-Text-Ngrams
SUBDIR += p5-Text-Original
SUBDIR += p5-Text-Padding
SUBDIR += p5-Text-ParagraphDiff
SUBDIR += p5-Text-ParseWords
SUBDIR += p5-Text-Patch
SUBDIR += p5-Text-Pipe
SUBDIR += p5-Text-Prefix-XS
SUBDIR += p5-Text-QRCode
SUBDIR += p5-Text-Query
SUBDIR += p5-Text-Quote
SUBDIR += p5-Text-Quoted
SUBDIR += p5-Text-RecordParser
SUBDIR += p5-Text-Reflow
SUBDIR += p5-Text-Reform
SUBDIR += p5-Text-Report
SUBDIR += p5-Text-Repository
SUBDIR += p5-Text-Roman
SUBDIR += p5-Text-Sass
SUBDIR += p5-Text-Shellwords
SUBDIR += p5-Text-Similarity
SUBDIR += p5-Text-SimpleTable
SUBDIR += p5-Text-SimpleTable-AutoWidth
SUBDIR += p5-Text-SimpleTemplate
SUBDIR += p5-Text-Soundex
SUBDIR += p5-Text-SpellChecker
SUBDIR += p5-Text-SpellChecker-GUI
SUBDIR += p5-Text-Striphigh
SUBDIR += p5-Text-Table
SUBDIR += p5-Text-Table-Manifold
SUBDIR += p5-Text-Tabs+Wrap
SUBDIR += p5-Text-TabularDisplay
SUBDIR += p5-Text-Tags
SUBDIR += p5-Text-Template
SUBDIR += p5-Text-TestBase
SUBDIR += p5-Text-Textile
SUBDIR += p5-Text-Tmpl
SUBDIR += p5-Text-Trac
SUBDIR += p5-Text-Trim
SUBDIR += p5-Text-Truncate
SUBDIR += p5-Text-Typography
SUBDIR += p5-Text-Unaccent
SUBDIR += p5-Text-VimColor
SUBDIR += p5-Text-VisualWidth
SUBDIR += p5-Text-WikiCreole
SUBDIR += p5-Text-WikiFormat
SUBDIR += p5-Text-WordDiff
SUBDIR += p5-Text-WrapI18N
SUBDIR += p5-Text-Wrapper
SUBDIR += p5-Text-Xslate
SUBDIR += p5-Text-Xslate-Bridge-TT2Like
SUBDIR += p5-Text-vCard
SUBDIR += p5-Tiffany
SUBDIR += p5-Time-Human
SUBDIR += p5-Tk-Pod
SUBDIR += p5-Tk-XMLViewer
SUBDIR += p5-Tree-Nary
SUBDIR += p5-Tree-Suffix
SUBDIR += p5-UML-Class-Simple
SUBDIR += p5-UML-Sequence
SUBDIR += p5-UML-State
SUBDIR += p5-URI-Find
SUBDIR += p5-Unicode-CaseFold
SUBDIR += p5-Unicode-CheckUTF8
SUBDIR += p5-Unicode-Collate
SUBDIR += p5-Unicode-EastAsianWidth
SUBDIR += p5-Unicode-Escape
SUBDIR += p5-Unicode-LineBreak
SUBDIR += p5-Unicode-Normalize
SUBDIR += p5-Unicode-Unihan
SUBDIR += p5-Validator-Custom
SUBDIR += p5-Version-Next
SUBDIR += p5-Vroom
SUBDIR += p5-WDDX
SUBDIR += p5-WWW-Google-SiteMap
SUBDIR += p5-WWW-Wordnik-API
SUBDIR += p5-WordNet-QueryData
SUBDIR += p5-WordNet-Similarity
SUBDIR += p5-XML-Atom
SUBDIR += p5-XML-Atom-Ext-OpenSearch
SUBDIR += p5-XML-Atom-Filter
SUBDIR += p5-XML-Atom-SimpleFeed
SUBDIR += p5-XML-Atom-Stream
SUBDIR += p5-XML-Atom-Syndication
SUBDIR += p5-XML-AutoWriter
SUBDIR += p5-XML-Bare
SUBDIR += p5-XML-Canonical
SUBDIR += p5-XML-CanonicalizeXML
SUBDIR += p5-XML-Catalog
SUBDIR += p5-XML-Clean
SUBDIR += p5-XML-Code
SUBDIR += p5-XML-CommonNS
SUBDIR += p5-XML-Compile
SUBDIR += p5-XML-Compile-Cache
SUBDIR += p5-XML-Compile-Dumper
SUBDIR += p5-XML-DBMS
SUBDIR += p5-XML-DOM
SUBDIR += p5-XML-DOM-Lite
SUBDIR += p5-XML-DOM-XPath
SUBDIR += p5-XML-DOM2
SUBDIR += p5-XML-DOMHandler
SUBDIR += p5-XML-DT
SUBDIR += p5-XML-DTDParser
SUBDIR += p5-XML-Declare
SUBDIR += p5-XML-Descent
SUBDIR += p5-XML-DifferenceMarkup
SUBDIR += p5-XML-Directory
SUBDIR += p5-XML-DoubleEncodedEntities
SUBDIR += p5-XML-Driver-HTML
SUBDIR += p5-XML-Dumper
SUBDIR += p5-XML-Elemental
SUBDIR += p5-XML-Encoding
SUBDIR += p5-XML-Entities
SUBDIR += p5-XML-FOAF
SUBDIR += p5-XML-Feed
SUBDIR += p5-XML-Feed-Deduper
SUBDIR += p5-XML-FeedPP
SUBDIR += p5-XML-Filter-BufferText
SUBDIR += p5-XML-Filter-DOMFilter-LibXML
SUBDIR += p5-XML-Filter-DetectWS
SUBDIR += p5-XML-Filter-GenericChunk
SUBDIR += p5-XML-Filter-Reindent
SUBDIR += p5-XML-Filter-SAX1toSAX2
SUBDIR += p5-XML-Filter-SAXT
SUBDIR += p5-XML-Filter-XInclude
SUBDIR += p5-XML-Filter-XSLT
SUBDIR += p5-XML-Flow
SUBDIR += p5-XML-GDOME
SUBDIR += p5-XML-Generator
SUBDIR += p5-XML-Generator-DBI
SUBDIR += p5-XML-Generator-PerlData
SUBDIR += p5-XML-Grove
SUBDIR += p5-XML-Handler-Dtd2DocBook
SUBDIR += p5-XML-Handler-Dtd2Html
SUBDIR += p5-XML-Handler-HTMLWriter
SUBDIR += p5-XML-Handler-Trees
SUBDIR += p5-XML-Handler-YAWriter
SUBDIR += p5-XML-Hash-LX
SUBDIR += p5-XML-LibXML
SUBDIR += p5-XML-LibXML-Cache
SUBDIR += p5-XML-LibXML-Iterator
SUBDIR += p5-XML-LibXML-PrettyPrint
SUBDIR += p5-XML-LibXML-SAX-ChunkParser
SUBDIR += p5-XML-LibXML-Simple
SUBDIR += p5-XML-LibXSLT
SUBDIR += p5-XML-Liberal
SUBDIR += p5-XML-Literal
SUBDIR += p5-XML-Mini
SUBDIR += p5-XML-MyXML
SUBDIR += p5-XML-Namespace
SUBDIR += p5-XML-NamespaceFactory
SUBDIR += p5-XML-NamespaceSupport
SUBDIR += p5-XML-Node
SUBDIR += p5-XML-NodeFilter
SUBDIR += p5-XML-OPML
SUBDIR += p5-XML-OPML-LibXML
SUBDIR += p5-XML-Parsepp
SUBDIR += p5-XML-Parser
SUBDIR += p5-XML-Parser-EasyTree
SUBDIR += p5-XML-Parser-Lite
SUBDIR += p5-XML-Parser-Lite-Tree
SUBDIR += p5-XML-Parser-Style-EasyTree
SUBDIR += p5-XML-Parser-Style-Elemental
SUBDIR += p5-XML-Quote
SUBDIR += p5-XML-RAI
SUBDIR += p5-XML-RSS
SUBDIR += p5-XML-RSS-Feed
SUBDIR += p5-XML-RSS-JavaScript
SUBDIR += p5-XML-RSS-LibXML
SUBDIR += p5-XML-RSS-Liberal
SUBDIR += p5-XML-RSS-Parser
SUBDIR += p5-XML-RSS-SimpleGen
SUBDIR += p5-XML-RSSLite
SUBDIR += p5-XML-Reader
SUBDIR += p5-XML-RegExp
SUBDIR += p5-XML-Rewrite
SUBDIR += p5-XML-Rules
SUBDIR += p5-XML-SAX
SUBDIR += p5-XML-SAX-Base
SUBDIR += p5-XML-SAX-Expat
SUBDIR += p5-XML-SAX-Expat-Incremental
SUBDIR += p5-XML-SAX-ExpatXS
SUBDIR += p5-XML-SAX-Machines
SUBDIR += p5-XML-SAX-Simple
SUBDIR += p5-XML-SAX-Writer
SUBDIR += p5-XML-SAXDriver-CSV
SUBDIR += p5-XML-SAXDriver-Excel
SUBDIR += p5-XML-STX
SUBDIR += p5-XML-Schematron
SUBDIR += p5-XML-SemanticDiff
SUBDIR += p5-XML-Simple
SUBDIR += p5-XML-SimpleObject
SUBDIR += p5-XML-SimpleObject-LibXML
SUBDIR += p5-XML-Smart
SUBDIR += p5-XML-Stream
SUBDIR += p5-XML-Tiny
SUBDIR += p5-XML-TinyXML
SUBDIR += p5-XML-TokeParser
SUBDIR += p5-XML-Toolkit
SUBDIR += p5-XML-TreeBuilder
SUBDIR += p5-XML-TreePP
SUBDIR += p5-XML-Twig
SUBDIR += p5-XML-Validate
SUBDIR += p5-XML-Validator-Schema
SUBDIR += p5-XML-Writer
SUBDIR += p5-XML-XBEL
SUBDIR += p5-XML-XML2JSON
SUBDIR += p5-XML-XPath
SUBDIR += p5-XML-XPathEngine
SUBDIR += p5-XML-XQL
SUBDIR += p5-XML-XSH
SUBDIR += p5-XML-XSLT
SUBDIR += p5-XML-XUpdate-LibXML
SUBDIR += p5-YAML
SUBDIR += p5-YAML-LibYAML
SUBDIR += p5-YAML-Shell
SUBDIR += p5-YAML-Syck
SUBDIR += p5-YAML-Tiny
SUBDIR += p5-YAML-Tiny-Color
SUBDIR += p5-YAPE-HTML
SUBDIR += p5-YAPE-Regex
SUBDIR += p5-YAPE-Regex-Explain
SUBDIR += p5-dTemplate
SUBDIR += p5-libsoldout
SUBDIR += p5-libxml
SUBDIR += p5-pod2pdf
SUBDIR += p5-podlators
SUBDIR += p5-texcount
SUBDIR += p5-xmltv
SUBDIR += pa-aspell
SUBDIR += par
SUBDIR += pcrs
SUBDIR += pdfgrep
SUBDIR += pdfoutline
SUBDIR += pdftohtml
SUBDIR += pear-File_Fortune
SUBDIR += pear-File_MARC
SUBDIR += pear-Horde_CssMinify
SUBDIR += pear-Horde_JavascriptMinify
SUBDIR += pear-Horde_Kolab_Format
SUBDIR += pear-Horde_Pdf
SUBDIR += pear-Horde_SpellChecker
SUBDIR += pear-Horde_Text_Diff
SUBDIR += pear-Horde_Text_Filter
SUBDIR += pear-Horde_Text_Filter_Csstidy
SUBDIR += pear-Horde_Text_Flowed
SUBDIR += pear-Horde_Xml_Element
SUBDIR += pear-Horde_Xml_Wbxml
SUBDIR += pear-Numbers_Roman
SUBDIR += pear-Numbers_Words
SUBDIR += pear-Spreadsheet_Excel_Writer
SUBDIR += pear-Structures_DataGrid_DataSource_RSS
SUBDIR += pear-Structures_DataGrid_DataSource_XML
SUBDIR += pear-Structures_DataGrid_Renderer_CSV
SUBDIR += pear-Structures_DataGrid_Renderer_XLS
SUBDIR += pear-Structures_DataGrid_Renderer_XML
SUBDIR += pear-Symfony_Component_Yaml
SUBDIR += pear-Text_Highlighter
SUBDIR += pear-Text_Template
SUBDIR += pear-Validate_ISPN
SUBDIR += pear-XML_Beautifier
SUBDIR += pear-XML_DTD
SUBDIR += pear-XML_Feed_Parser
SUBDIR += pear-XML_HTMLSax
SUBDIR += pear-XML_Wddx
SUBDIR += pear-YAML
SUBDIR += pecl-cld
SUBDIR += pecl-ctemplate
SUBDIR += pecl-doublemetaphone
SUBDIR += pecl-stem
SUBDIR += pecl-syck
SUBDIR += pecl-wbxml
SUBDIR += pecl-xdiff
SUBDIR += pecl-xdiff2
SUBDIR += pecl-xslcache
SUBDIR += pecl-yaml
SUBDIR += peco
SUBDIR += perl2html
SUBDIR += permute
SUBDIR += php-mecab
SUBDIR += php56-ctype
SUBDIR += php56-dom
SUBDIR += php56-enchant
SUBDIR += php56-pspell
SUBDIR += php56-simplexml
SUBDIR += php56-wddx
SUBDIR += php56-xml
SUBDIR += php56-xmlreader
SUBDIR += php56-xmlwriter
SUBDIR += php56-xsl
SUBDIR += php70-ctype
SUBDIR += php70-dom
SUBDIR += php70-enchant
SUBDIR += php70-pspell
SUBDIR += php70-simplexml
SUBDIR += php70-wddx
SUBDIR += php70-xml
SUBDIR += php70-xmlreader
SUBDIR += php70-xmlwriter
SUBDIR += php70-xsl
SUBDIR += php71-ctype
SUBDIR += php71-dom
SUBDIR += php71-enchant
SUBDIR += php71-pspell
SUBDIR += php71-simplexml
SUBDIR += php71-wddx
SUBDIR += php71-xml
SUBDIR += php71-xmlreader
SUBDIR += php71-xmlwriter
SUBDIR += php71-xsl
SUBDIR += plover
SUBDIR += po4a
SUBDIR += pocketreader
SUBDIR += pod2mdoc
SUBDIR += pootle
SUBDIR += popup
SUBDIR += popup-stacks
SUBDIR += ppower4
SUBDIR += print-n-times
SUBDIR += pugixml
SUBDIR += pure-csv
SUBDIR += pure-xml
SUBDIR += py-Chameleon
SUBDIR += py-MarkupSafe
SUBDIR += py-Tempita
SUBDIR += py-acora
SUBDIR += py-agate
SUBDIR += py-agate-dbf
SUBDIR += py-agate-excel
SUBDIR += py-alabaster
SUBDIR += py-asv
SUBDIR += py-awesome-slugify
SUBDIR += py-bugzillatools
SUBDIR += py-chardet
SUBDIR += py-cloud_sptheme
SUBDIR += py-colorclass
SUBDIR += py-creole
SUBDIR += py-csvkit
SUBDIR += py-dbfread
SUBDIR += py-diff-match-patch
SUBDIR += py-docutils
SUBDIR += py-dsv
SUBDIR += py-elasticsearch-curator-py
SUBDIR += py-elasticsearch-dsl-py
SUBDIR += py-elasticsearch-py
SUBDIR += py-elib.intl
SUBDIR += py-empy
SUBDIR += py-enchant
SUBDIR += py-errorhandler
SUBDIR += py-esmre
SUBDIR += py-et_xmlfile
SUBDIR += py-excelerator
SUBDIR += py-feedparser
SUBDIR += py-genshi
SUBDIR += py-guess-language
SUBDIR += py-hexdump
SUBDIR += py-html2text
SUBDIR += py-hunspell
SUBDIR += py-hyperestraier-python
SUBDIR += py-hypua2jamo
SUBDIR += py-jaxml
SUBDIR += py-junit-xml
SUBDIR += py-libtre
SUBDIR += py-libxml2
SUBDIR += py-libxslt
SUBDIR += py-ltxml
SUBDIR += py-m2r
SUBDIR += py-mako
SUBDIR += py-markdown
SUBDIR += py-markdown2
SUBDIR += py-mistune
SUBDIR += py-mwparserfromhell
SUBDIR += py-nltk
SUBDIR += py-numpydoc
SUBDIR += py-openpyxl
SUBDIR += py-pandocfilters
SUBDIR += py-paragrep
SUBDIR += py-parsimonious
SUBDIR += py-pdfminer
SUBDIR += py-pss
SUBDIR += py-pyctpp2
SUBDIR += py-pyelasticsearch
SUBDIR += py-pyes
SUBDIR += py-pygments
SUBDIR += py-pygtail
SUBDIR += py-pyhwp
SUBDIR += py-pyphen
SUBDIR += py-pyscss
SUBDIR += py-pysrt
SUBDIR += py-pystache
SUBDIR += py-pystemmer
SUBDIR += py-python-augeas
SUBDIR += py-python-docx
SUBDIR += py-python-gettext
SUBDIR += py-pytidylib
SUBDIR += py-pyx12
SUBDIR += py-qrcode
SUBDIR += py-qt4-xml
SUBDIR += py-qt4-xmlpatterns
SUBDIR += py-qt5-xml
SUBDIR += py-qt5-xmlpatterns
SUBDIR += py-rdflib
SUBDIR += py-regex
SUBDIR += py-reverend
SUBDIR += py-rss2gen
SUBDIR += py-rst2html5
SUBDIR += py-rstyoutube
SUBDIR += py-rxp
SUBDIR += py-scour
SUBDIR += py-sgrep
SUBDIR += py-snowballstemmer
SUBDIR += py-sparqlwrapper
SUBDIR += py-sphinx
SUBDIR += py-sphinx-intl
SUBDIR += py-sphinx-me
SUBDIR += py-sphinx_numfig
SUBDIR += py-sphinx_rtd_theme
SUBDIR += py-sphinx_wikipedia
SUBDIR += py-sphinxcontrib-adadomain
SUBDIR += py-sphinxcontrib-bitbucket
SUBDIR += py-sphinxcontrib-fulltoc
SUBDIR += py-sphinxcontrib-httpdomain
SUBDIR += py-sphinxcontrib-programoutput
SUBDIR += py-syck
SUBDIR += py-tabletext
SUBDIR += py-terminaltables
SUBDIR += py-texttable
SUBDIR += py-tinycss
SUBDIR += py-toronado
SUBDIR += py-trans
SUBDIR += py-transifex-client
SUBDIR += py-translationstring
SUBDIR += py-tvgrab
SUBDIR += py-twistedLore
SUBDIR += py-ucl
SUBDIR += py-whoosh
SUBDIR += py-wicked
SUBDIR += py-wordnet
SUBDIR += py-wstools
SUBDIR += py-wtforms
SUBDIR += py-xlrd
SUBDIR += py-xlsxwriter
SUBDIR += py-xlutils
SUBDIR += py-xlwriter
SUBDIR += py-xlwt
SUBDIR += py-xmltv
SUBDIR += py-zope.app.i18n
SUBDIR += py-zope.app.locales
SUBDIR += py-zope.i18nmessageid
SUBDIR += py-zope.structuredtext
SUBDIR += py-zope.tal
SUBDIR += py-zpt
SUBDIR += py2html
SUBDIR += py3-MarkupSafe
SUBDIR += py3-asciinema
SUBDIR += py3-chardet
SUBDIR += py3-hunspell
SUBDIR += py3-libxml2
SUBDIR += py3-pager
SUBDIR += pychm
SUBDIR += qprint
SUBDIR += qrcodegen
SUBDIR += qstardict
+ SUBDIR += qt4-clucene
SUBDIR += qt4-xml
SUBDIR += qt4-xmlpatterns
SUBDIR += qt4-xmlpatterns-tool
SUBDIR += qt5-xml
SUBDIR += qt5-xmlpatterns
SUBDIR += qu-aspell
SUBDIR += queequeg
SUBDIR += rand
SUBDIR += randlm
SUBDIR += rapidxml
SUBDIR += raptor
SUBDIR += raptor2
SUBDIR += rarian
SUBDIR += rasqal
SUBDIR += re_graph
SUBDIR += redet
SUBDIR += redland
SUBDIR += redland-bindings
SUBDIR += refdb
SUBDIR += reflex
SUBDIR += replaceit
SUBDIR += resume
SUBDIR += resume-extensions
SUBDIR += rfcdiff
SUBDIR += ripole
SUBDIR += rl
SUBDIR += rman
SUBDIR += rnv
SUBDIR += ro-aspell
SUBDIR += ro-hunspell
SUBDIR += ro-hyphen
SUBDIR += ro-mythes
SUBDIR += rot
SUBDIR += rss2html
SUBDIR += rtf2html
SUBDIR += rtfreader
SUBDIR += rtfx
SUBDIR += rubber
SUBDIR += ruby-deplate
SUBDIR += ruby-escape
SUBDIR += ruby-format
SUBDIR += ruby-htree
SUBDIR += ruby-rd-mode.el
SUBDIR += ruby-rdtool
SUBDIR += ruby-rttool
SUBDIR += ruby-sary
SUBDIR += ruby-xmlparser
SUBDIR += rubygem-actionpack-xml_parser
SUBDIR += rubygem-actionpack-xml_parser1
SUBDIR += rubygem-albino
SUBDIR += rubygem-amatch
SUBDIR += rubygem-asciidoctor
SUBDIR += rubygem-autoprefixer-rails
SUBDIR += rubygem-babel-source
SUBDIR += rubygem-babel-transpiler
SUBDIR += rubygem-babosa
SUBDIR += rubygem-charlock_holmes
SUBDIR += rubygem-coderay
SUBDIR += rubygem-colorator
SUBDIR += rubygem-colored
SUBDIR += rubygem-compass
SUBDIR += rubygem-compass-core
SUBDIR += rubygem-compass-import-once
SUBDIR += rubygem-compass-rails
SUBDIR += rubygem-creole
SUBDIR += rubygem-css_parser
SUBDIR += rubygem-cssmin
SUBDIR += rubygem-diff-lcs
SUBDIR += rubygem-diffy
SUBDIR += rubygem-docdiff
SUBDIR += rubygem-elasticsearch
SUBDIR += rubygem-elasticsearch-api
SUBDIR += rubygem-elasticsearch-transport
SUBDIR += rubygem-emot
SUBDIR += rubygem-escape_utils
SUBDIR += rubygem-escape_utils-rails4
SUBDIR += rubygem-ezamar
SUBDIR += rubygem-fast_xs
SUBDIR += rubygem-fast_xs073
SUBDIR += rubygem-ferret
SUBDIR += rubygem-fog-xml
SUBDIR += rubygem-gemoji
SUBDIR += rubygem-gherkin
SUBDIR += rubygem-github-linguist
SUBDIR += rubygem-github-markdown
SUBDIR += rubygem-github-markup
SUBDIR += rubygem-gitlab-grit
SUBDIR += rubygem-gitlab-linguist
SUBDIR += rubygem-gitlab-markup
SUBDIR += rubygem-heredoc_unindent
SUBDIR += rubygem-hikidoc
SUBDIR += rubygem-html-pipeline
SUBDIR += rubygem-html-pipeline-gitlab
SUBDIR += rubygem-html-pipeline1
SUBDIR += rubygem-htmlentities
SUBDIR += rubygem-ini
SUBDIR += rubygem-itextomml
SUBDIR += rubygem-jekyll-assets
SUBDIR += rubygem-jekyll-feed
SUBDIR += rubygem-jekyll-gist
SUBDIR += rubygem-jekyll-mentions
SUBDIR += rubygem-jekyll-paginate
SUBDIR += rubygem-jekyll-redirect-from
SUBDIR += rubygem-jekyll-sass-converter
SUBDIR += rubygem-jekyll-sitemap
SUBDIR += rubygem-jemoji
SUBDIR += rubygem-jsmin
SUBDIR += rubygem-kramdown
SUBDIR += rubygem-kwalify
SUBDIR += rubygem-libxml-ruby
SUBDIR += rubygem-linguistics
SUBDIR += rubygem-liquid
SUBDIR += rubygem-liquid2
SUBDIR += rubygem-liquid3
SUBDIR += rubygem-loggability
SUBDIR += rubygem-loofah
SUBDIR += rubygem-ltsv
SUBDIR += rubygem-markaby
SUBDIR += rubygem-multi_xml
SUBDIR += rubygem-nokogiri
SUBDIR += rubygem-nokogiri-diff
SUBDIR += rubygem-nokogiri14
SUBDIR += rubygem-nokogumbo
SUBDIR += rubygem-octopress-escape-code
SUBDIR += rubygem-opml
SUBDIR += rubygem-org-ruby
SUBDIR += rubygem-ox
SUBDIR += rubygem-parslet
SUBDIR += rubygem-phone
SUBDIR += rubygem-pretty-xml
SUBDIR += rubygem-rails-dom-testing
SUBDIR += rubygem-rails-dom-testing1
SUBDIR += rubygem-rails-html-sanitizer
SUBDIR += rubygem-rak
SUBDIR += rubygem-rchardet
SUBDIR += rubygem-rdiscount
SUBDIR += rubygem-rdtool
SUBDIR += rubygem-redcarpet
SUBDIR += rubygem-reverse_markdown
SUBDIR += rubygem-ri_cal
SUBDIR += rubygem-rich
SUBDIR += rubygem-rmmseg-cpp
SUBDIR += rubygem-ronn
SUBDIR += rubygem-rouge
SUBDIR += rubygem-rouge1
SUBDIR += rubygem-rttool
SUBDIR += rubygem-ruby-augeas
SUBDIR += rubygem-ruby-xslt
SUBDIR += rubygem-ruby_expect
SUBDIR += rubygem-rubypants
SUBDIR += rubygem-rugments
SUBDIR += rubygem-sanitize
SUBDIR += rubygem-sass
SUBDIR += rubygem-sass-rails4
SUBDIR += rubygem-sass-rails5
SUBDIR += rubygem-sass32
SUBDIR += rubygem-sax-machine
SUBDIR += rubygem-scss_lint
SUBDIR += rubygem-shell2html
SUBDIR += rubygem-simplecov-html
SUBDIR += rubygem-sixarm_ruby_unaccent
SUBDIR += rubygem-spreadsheet
SUBDIR += rubygem-stamp
SUBDIR += rubygem-syntax
SUBDIR += rubygem-termcolor
SUBDIR += rubygem-terminal-table
SUBDIR += rubygem-text
SUBDIR += rubygem-tidy
SUBDIR += rubygem-twitter-text
SUBDIR += rubygem-unf
SUBDIR += rubygem-unf_ext
SUBDIR += rubygem-version_sorter
SUBDIR += rubygem-wikicloth
SUBDIR += rubygem-xml-simple
SUBDIR += rubygem-ya2yaml
SUBDIR += rubygem-yard
SUBDIR += rubygem-yard-chef
SUBDIR += rubygem-zmq
SUBDIR += rw-aspell
SUBDIR += rxp
SUBDIR += s5
SUBDIR += sablotron
SUBDIR += sagasu
SUBDIR += sansi
SUBDIR += sarep
SUBDIR += sary
SUBDIR += sassc
SUBDIR += saxon
SUBDIR += saxon-devel
SUBDIR += saxon-he
SUBDIR += sc-aspell
SUBDIR += scew
SUBDIR += scim
SUBDIR += scim-bridge
SUBDIR += scim-bridge-qt4
SUBDIR += scim-input-pad
SUBDIR += scim-kmfl-imengine
SUBDIR += scim-m17n
SUBDIR += scim-openvanilla
SUBDIR += scim-table-imengine
SUBDIR += scr2txt
SUBDIR += scrollkeeper
SUBDIR += scss
SUBDIR += sdcv
SUBDIR += sdf
SUBDIR += sdocbook-xml
SUBDIR += sdom
SUBDIR += senna
SUBDIR += sgmlformat
SUBDIR += sgmls
SUBDIR += sgrep
SUBDIR += sgrep2
SUBDIR += sigil
SUBDIR += silvercity
SUBDIR += simplexml
SUBDIR += sk-aspell
SUBDIR += sk-hunspell
SUBDIR += sk-hyphen
SUBDIR += sk-mythes
SUBDIR += sl-aspell
SUBDIR += sl-hyphen
SUBDIR += sl-mythes
SUBDIR += slides
SUBDIR += smi
SUBDIR += smu
SUBDIR += so-hunspell
SUBDIR += soothsayer
SUBDIR += soprano
SUBDIR += source-highlight
SUBDIR += sowing
SUBDIR += spellutils
SUBDIR += sphinxsearch
SUBDIR += sphinxsearch-devel
SUBDIR += spiff
SUBDIR += splitpatch
SUBDIR += sq-hunspell
SUBDIR += sr-aspell
SUBDIR += sr-hunspell
SUBDIR += srilm
SUBDIR += ss-hunspell
SUBDIR += stardict-dict-fa_IR
SUBDIR += stardict-dictd_mova
SUBDIR += stardict-quick
SUBDIR += stardict-rptts
SUBDIR += stardict3
SUBDIR += supercat
SUBDIR += sv-aspell
SUBDIR += sv-hunspell
SUBDIR += sv-hyphen
SUBDIR += sv-mythes
SUBDIR += svn2cl
SUBDIR += sw-aspell
SUBDIR += sxml
SUBDIR += syck
SUBDIR += ta-aspell
SUBDIR += tagsoup
SUBDIR += tclExpat
SUBDIR += te-aspell
SUBDIR += te-hunspell
SUBDIR += teckit
SUBDIR += templates_parser
SUBDIR += tet-aspell
SUBDIR += tex2im
SUBDIR += texi2db
SUBDIR += texi2html
SUBDIR += texi2mdoc
SUBDIR += textogif
SUBDIR += the_silver_searcher
SUBDIR += ti-hunspell
SUBDIR += tidyp
SUBDIR += tinyxml
SUBDIR += tinyxml2
SUBDIR += tk-aspell
SUBDIR += tk-hunspell
SUBDIR += tkdiff
SUBDIR += tkxmlive
SUBDIR += tl-aspell
SUBDIR += tn-aspell
SUBDIR += tn-hunspell
SUBDIR += tnef2txt
SUBDIR += tokyodystopia
SUBDIR += topic
SUBDIR += tr-aspell
SUBDIR += trang
SUBDIR += translate-toolkit
SUBDIR += ts-hunspell
SUBDIR += tth
SUBDIR += turboxsl
SUBDIR += txt2html
SUBDIR += txt2man
SUBDIR += txt2tags
SUBDIR += uchardet
SUBDIR += uim
SUBDIR += uim-el
SUBDIR += uim-gtk
SUBDIR += uim-gtk3
SUBDIR += uim-kde4
SUBDIR += uim-m17nlib
SUBDIR += uim-qt4
SUBDIR += uml2svg
SUBDIR += uncrustify
SUBDIR += uni2ascii
SUBDIR += unoconv
SUBDIR += unroff
SUBDIR += unrtf
SUBDIR += urlview
SUBDIR += utf8proc
SUBDIR += uz-aspell
SUBDIR += uz-hunspell
SUBDIR += vbindiff
SUBDIR += ve-hunspell
SUBDIR += wa-aspell
SUBDIR += wa-hunspell
SUBDIR += wbxml2
SUBDIR += wdiff
SUBDIR += webcpp
SUBDIR += website
SUBDIR += weka
SUBDIR += wiggle
SUBDIR += word2x
SUBDIR += wordnet
SUBDIR += words
SUBDIR += wv
SUBDIR += wv2
SUBDIR += xalan-c
SUBDIR += xalan-j
SUBDIR += xerces-c3
SUBDIR += xerces-j
SUBDIR += xfce4-dict-plugin
SUBDIR += xh-hunspell
SUBDIR += xhtml
SUBDIR += xhtml-11
SUBDIR += xhtml-basic
SUBDIR += xhtml-modularization
SUBDIR += xhtml1-xsd
SUBDIR += xincluder
SUBDIR += xlhtml
SUBDIR += xlreader
SUBDIR += xml-commons
SUBDIR += xml-format
SUBDIR += xml-i18n-tools
SUBDIR += xml-lite.el
SUBDIR += xml-parse.el
SUBDIR += xml2
SUBDIR += xml2rfc
SUBDIR += xml_ez_out
SUBDIR += xmlada
SUBDIR += xmlcatmgr
SUBDIR += xmlcharent
SUBDIR += xmldiff
SUBDIR += xmlenc
SUBDIR += xmlformat
SUBDIR += xmlgen
SUBDIR += xmlindent
SUBDIR += xmlppm
SUBDIR += xmlprpr
SUBDIR += xmlroff
SUBDIR += xmlstarlet
SUBDIR += xmlto
SUBDIR += xmlwrapp
SUBDIR += xom
SUBDIR += xorg-sgml-doctools
SUBDIR += xp
SUBDIR += xqilla
SUBDIR += xslide.el
SUBDIR += xstream
SUBDIR += xsv
SUBDIR += xwindiff
SUBDIR += xxdiff
SUBDIR += xxdiff-scripts
SUBDIR += y2l
SUBDIR += yali
SUBDIR += yamcha
SUBDIR += yaml-mode.el
SUBDIR += yelp-tools
SUBDIR += yelp-xsl
SUBDIR += yi-aspell
SUBDIR += yi-hunspell
SUBDIR += yodl
SUBDIR += yould
SUBDIR += zenxml
SUBDIR += zorba
SUBDIR += zsh-syntax-highlighting
SUBDIR += zu-aspell
SUBDIR += zu-hunspell
SUBDIR += zxing-cpp
.include <bsd.port.subdir.mk>
Index: head/textproc/goldendict/files/patch-goldendict.pro
===================================================================
--- head/textproc/goldendict/files/patch-goldendict.pro (revision 434379)
+++ head/textproc/goldendict/files/patch-goldendict.pro (revision 434380)
@@ -1,45 +1,36 @@
--- ./goldendict.pro.orig 2010-12-04 00:12:46.000000000 +0300
+++ ./goldendict.pro 2010-12-28 11:46:37.207723741 +0300
@@ -58,12 +58,12 @@
ogg \
hunspell
LIBS += -lX11 \
- -lXtst
+ -lXtst -lexecinfo
PREFIX = $$(PREFIX)
isEmpty( PREFIX ):PREFIX = /usr/local
- DEFINES += PROGRAM_DATA_DIR=\\\"$$PREFIX/share/apps/goldendict/\\\"
+ DEFINES += PROGRAM_DATA_DIR=\\\"$$PREFIX/share/goldendict/\\\"
target.path = $$PREFIX/bin/
- locale.path = $$PREFIX/share/apps/goldendict/locale/
+ locale.path = $$PREFIX/share/goldendict/locale/
locale.files = locale/*.qm
INSTALLS += target \
locale
@@ -72,13 +72,15 @@
INSTALLS += icons
icons2.path = $$PREFIX/share/app-install/icons
icons2.files = redist/icons/*.*
- INSTALLS += icons2
+ # we don't use icons2 directory at FreeBSD
+ #INSTALLS += icons2
desktops.path = $$PREFIX/share/applications
desktops.files = redist/*.desktop
INSTALLS += desktops
desktops2.path = $$PREFIX/share/app-install/desktop
desktops2.files = redist/*.desktop
- INSTALLS += desktops2
+ # we don't use desktop2 directory at FreeBSD
+ #INSTALLS += desktops2
}
DEFINES += PROGRAM_VERSION=\\\"$$VERSION\\\"
-@@ -267,8 +269,6 @@
- }
-
- # This makes qmake generate translations
--win32:# Windows doesn't seem to have *-qt4 symlinks
--isEmpty(QMAKE_LRELEASE):QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
- isEmpty(QMAKE_LRELEASE):QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease-qt4
- updateqm.input = TRANSLATIONS
- updateqm.output = ${QMAKE_FILE_PATH}/${QMAKE_FILE_BASE}.qm
Index: head/textproc/qt4-clucene/Makefile
===================================================================
--- head/textproc/qt4-clucene/Makefile (nonexistent)
+++ head/textproc/qt4-clucene/Makefile (revision 434380)
@@ -0,0 +1,53 @@
+# Created by: danny@ricin.com
+# $FreeBSD$
+
+PORTNAME= clucene
+DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
+CATEGORIES= textproc
+PKGNAMEPREFIX= qt4-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt bindings for the CLucene full-text search library
+
+USE_QT4= qmake_build corelib
+QT_DIST= yes
+
+HAS_CONFIGURE= yes
+USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
+
+ALL_TARGET= first
+CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
+MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
+ PATH=${WRKSRC}/bin:$$PATH
+
+DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
+ src/activeqt src/dbus src/gui src/multimedia src/network \
+ src/opengl src/openvg src/phonon src/qt3support \
+ src/s60installs src/s60main src/script src/scripttools \
+ src/sql src/svg src/testlib src/tools src/winmain src/xml \
+ src/xmlpatterns src/3rdparty/freetype src/3rdparty/libjpeg \
+ src/3rdparty/libmng src/3rdparty/libpng src/3rdparty/libtiff \
+ src/3rdparty/phonon src/3rdparty/webkit
+.for dne in ${DO_NOT_EXTRACT}
+EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
+.endfor
+
+BUILD_WRKSRC= ${WRKSRC}/tools/assistant/lib/fulltextsearch
+INSTALL_WRKSRC= ${BUILD_WRKSRC}
+
+pre-configure:
+ ${MKDIR} ${WRKSRC}/mkspecs
+ ${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
+
+post-configure:
+ ${REINPLACE_CMD} \
+ -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
+ -e 's|.*$$(QMAKE).*||g' \
+ -e 's|-fno-exceptions ||g' \
+ ${BUILD_WRKSRC}/Makefile
+ ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
+ -E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
+ ${WRKSRC}/lib/pkgconfig/QtCLucene.pc
+
+.include <bsd.port.mk>
Property changes on: head/textproc/qt4-clucene/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/textproc/qt4-clucene/pkg-plist
===================================================================
--- head/textproc/qt4-clucene/pkg-plist (nonexistent)
+++ head/textproc/qt4-clucene/pkg-plist (revision 434380)
@@ -0,0 +1,7 @@
+%%QT_LIBDIR%%/libQtCLucene.prl
+%%QT_LIBDIR%%/libQtCLucene.so
+%%QT_LIBDIR%%/libQtCLucene.so.4
+%%QT_LIBDIR%%/libQtCLucene.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQtCLucene.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQtCLucene.so.%%FULLVER%%.debug
+libdata/pkgconfig/QtCLucene.pc
Property changes on: head/textproc/qt4-clucene/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/textproc/qt4-clucene/files/patch-src__3rdparty__clucene__src__CLucene__search__FieldCacheImpl.cpp
===================================================================
--- head/textproc/qt4-clucene/files/patch-src__3rdparty__clucene__src__CLucene__search__FieldCacheImpl.cpp (nonexistent)
+++ head/textproc/qt4-clucene/files/patch-src__3rdparty__clucene__src__CLucene__search__FieldCacheImpl.cpp (revision 434380)
@@ -0,0 +1,11 @@
+--- src/3rdparty/clucene/src/CLucene/search/FieldCacheImpl.cpp~
++++ src/3rdparty/clucene/src/CLucene/search/FieldCacheImpl.cpp
+@@ -11,6 +11,8 @@ CL_NS_USE(util)
+ CL_NS_USE(index)
+ CL_NS_DEF(search)
+
++using ::wcschr;
++
+ FieldCacheImpl::FieldCacheImpl():
+ cache(false,true){
+ }
Property changes on: head/textproc/qt4-clucene/files/patch-src__3rdparty__clucene__src__CLucene__search__FieldCacheImpl.cpp
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/textproc/qt4-xml/Makefile
===================================================================
--- head/textproc/qt4-xml/Makefile (revision 434379)
+++ head/textproc/qt4-xml/Makefile (revision 434380)
@@ -1,53 +1,54 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= xml
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= textproc
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt SAX and DOM implementations
USE_QT4= qmake_build moc_build corelib
QT_DIST= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools src/sql \
src/svg src/testlib src/tools src/winmain src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
post-configure:
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
-E -e 's|(.*location=).*uic|\1${PREFIX}/${QT_BINDIR_REL}/${UIC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtXml.pc
#disable installation of include/Qt/qxmlstream.h, it handled by qt-corelib package
${REINPLACE_CMD} -e '\,stream/qxmlstream.h.*${QT_INCDIR}/Qt/,d' ${WRKSRC}/src/xml/Makefile
.include <bsd.port.mk>
Index: head/textproc/qt4-xmlpatterns/Makefile
===================================================================
--- head/textproc/qt4-xmlpatterns/Makefile (revision 434379)
+++ head/textproc/qt4-xmlpatterns/Makefile (revision 434380)
@@ -1,54 +1,55 @@
# Created by: danny@ricin.com
# $FreeBSD$
PORTNAME= xmlpatterns
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= textproc
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt support for XPath, XQuery, XSLT and XML Schema
USE_QT4= qmake_build moc_build rcc_build corelib network
QT_DIST= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/gui src/multimedia src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/svg \
src/testlib src/tools src/winmain src/3rdparty/clucene \
src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
src/3rdparty/libpng src/3rdparty/libtiff src/3rdparty/phonon \
src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
post-configure:
${REINPLACE_CMD} \
-e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' \
-e 's|-fno-exceptions ||g' \
${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtXmlPatterns.pc
.include <bsd.port.mk>
Index: head/textproc/qt4-xmlpatterns-tool/Makefile
===================================================================
--- head/textproc/qt4-xmlpatterns-tool/Makefile (revision 434379)
+++ head/textproc/qt4-xmlpatterns-tool/Makefile (revision 434380)
@@ -1,43 +1,44 @@
# Created by: danny@ricin.com
# $FreeBSD$
PORTNAME= xmlpatterns-tool
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= textproc
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt command-line utility for running XQueries
USE_QT4= qmake_build xmlpatterns
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \
src/activeqt src/dbus src/gui src/multimedia src/network \
src/opengl src/openvg src/phonon src/qt3support \
src/s60installs src/s60main src/script src/scripttools \
src/sql src/svg src/testlib src/tools src/winmain src/xml \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/tools/xmlpatterns
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
# ${REINPLACE_CMD} -e 's|^TARGET.*|TARGET=xmlpatterns|g' \
# ${BUILD_WRKSRC}/xmlpatterns.pro
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
.include <bsd.port.mk>
Index: head/textproc/qt5-xml/pkg-plist
===================================================================
--- head/textproc/qt5-xml/pkg-plist (revision 434379)
+++ head/textproc/qt5-xml/pkg-plist (revision 434380)
@@ -1,50 +1,50 @@
%%QT_INCDIR%%/QtXml/%%FULLVER%%/QtXml/private/qxml_p.h
%%QT_INCDIR%%/QtXml/QDomAttr
%%QT_INCDIR%%/QtXml/QDomCDATASection
%%QT_INCDIR%%/QtXml/QDomCharacterData
%%QT_INCDIR%%/QtXml/QDomComment
%%QT_INCDIR%%/QtXml/QDomDocument
%%QT_INCDIR%%/QtXml/QDomDocumentFragment
%%QT_INCDIR%%/QtXml/QDomDocumentType
%%QT_INCDIR%%/QtXml/QDomElement
%%QT_INCDIR%%/QtXml/QDomEntity
%%QT_INCDIR%%/QtXml/QDomEntityReference
%%QT_INCDIR%%/QtXml/QDomImplementation
%%QT_INCDIR%%/QtXml/QDomNamedNodeMap
%%QT_INCDIR%%/QtXml/QDomNode
%%QT_INCDIR%%/QtXml/QDomNodeList
%%QT_INCDIR%%/QtXml/QDomNotation
%%QT_INCDIR%%/QtXml/QDomProcessingInstruction
%%QT_INCDIR%%/QtXml/QDomText
%%QT_INCDIR%%/QtXml/QXmlAttributes
%%QT_INCDIR%%/QtXml/QXmlContentHandler
%%QT_INCDIR%%/QtXml/QXmlDTDHandler
%%QT_INCDIR%%/QtXml/QXmlDeclHandler
%%QT_INCDIR%%/QtXml/QXmlDefaultHandler
%%QT_INCDIR%%/QtXml/QXmlEntityResolver
%%QT_INCDIR%%/QtXml/QXmlErrorHandler
%%QT_INCDIR%%/QtXml/QXmlInputSource
%%QT_INCDIR%%/QtXml/QXmlLexicalHandler
%%QT_INCDIR%%/QtXml/QXmlLocator
%%QT_INCDIR%%/QtXml/QXmlNamespaceSupport
%%QT_INCDIR%%/QtXml/QXmlParseException
%%QT_INCDIR%%/QtXml/QXmlReader
%%QT_INCDIR%%/QtXml/QXmlSimpleReader
%%QT_INCDIR%%/QtXml/QtXml
%%QT_INCDIR%%/QtXml/QtXmlDepends
%%QT_INCDIR%%/QtXml/QtXmlVersion
%%QT_INCDIR%%/QtXml/qdom.h
%%QT_INCDIR%%/QtXml/qtxmlglobal.h
%%QT_INCDIR%%/QtXml/qtxmlversion.h
%%QT_INCDIR%%/QtXml/qxml.h
-%%QT_LIBDIR%%/cmake/Qt5Xml/Qt5XmlConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Xml/Qt5XmlConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Xml/Qt5XmlConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Xml/Qt5XmlConfigVersion.cmake
%%QT_LIBDIR%%/libQt5Xml.prl
%%QT_LIBDIR%%/libQt5Xml.so
%%QT_LIBDIR%%/libQt5Xml.so.5
%%QT_LIBDIR%%/libQt5Xml.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Xml.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Xml.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_xml.pri
%%QT_MKSPECDIR%%/modules/qt_lib_xml_private.pri
libdata/pkgconfig/Qt5Xml.pc
Index: head/textproc/qt5-xmlpatterns/pkg-plist
===================================================================
--- head/textproc/qt5-xmlpatterns/pkg-plist (revision 434379)
+++ head/textproc/qt5-xmlpatterns/pkg-plist (revision 434380)
@@ -1,416 +1,416 @@
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractdatetime_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractduration_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractfloat_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractfloat_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractfloatcasters_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractfloatcasters_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractfloatmathematician_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractfloatmathematician_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractfunctionfactory_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractnodetest_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractxmlforwarditerator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractxmlnodemodel_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractxmlpullprovider_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qabstractxmlreceiver_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qacceliterators_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qacceltree_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qacceltreebuilder_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qacceltreebuilder_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qacceltreeresourceloader_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qaccessorfns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qaggregatefns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qaggregator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qandexpression_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qanyitemtype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qanynodetype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qanysimpletype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qanytype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qanyuri_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qapplytemplate_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qargumentconverter_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qargumentreference_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qarithmeticexpression_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qassemblestringfns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomiccaster_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomiccasterlocator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomiccasterlocators_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomiccasters_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomiccomparator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomiccomparatorlocator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomiccomparatorlocators_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomiccomparators_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomicmathematician_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomicmathematicianlocator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomicmathematicianlocators_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomicmathematicians_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomicstring_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomictype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomictypedispatch_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qatomizer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qattributeconstructor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qattributenamevalidator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qautoptr_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qaxisstep_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qbase64binary_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qbasictypesfactory_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qboolean_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qbooleanfns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qbuiltinatomictype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qbuiltinatomictypes_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qbuiltinnodetype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qbuiltinnodetype_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qbuiltintypes_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcachecells_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcachingiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcallsite_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcalltargetdescription_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcalltemplate_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcardinality_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcardinalityverifier_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcastableas_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcastas_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcastingplatform_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcastingplatform_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcollationchecker_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcoloringmessagehandler_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcoloroutput_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcombinenodes_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcommentconstructor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcommonnamespaces_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcommonsequencetypes_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcommonvalues_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcomparescaseaware_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcomparestringfns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcomparingaggregator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcomparingaggregator_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcomparisonfactory_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcomparisonplatform_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcomparisonplatform_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcompressedwhitespace_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcomputednamespaceconstructor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qconstructorfunctionsfactory_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcontextfns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcontextitem_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcontextnodechecker_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcopyof_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcppcastinghelper_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcurrentfn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcurrentitemcontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qcurrentitemstore_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdate_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdatetimefn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdatetimefns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdatetimefns_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdaytimeduration_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdecimal_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdeduplicateiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdeepequalfn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdelegatingdynamiccontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdelegatingnamespaceresolver_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdelegatingstaticcontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qderivedinteger_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qderivedstring_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdeviceresourceloader_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdistinctiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdocumentconstructor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdocumentcontentvalidator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdocumentfn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdocumentprojector_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qduration_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdynamiccontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qdynamiccontextstore_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qebvextractor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qebvtype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qelementavailablefn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qelementconstructor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qemptycontainer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qemptyiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qemptysequence_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qemptysequencetype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qerrorfn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qevaluationcache_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qevaluationcache_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qexceptiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qexpression_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qexpressiondispatch_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qexpressionfactory_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qexpressionsequence_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qexpressionvariablereference_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qexternalvariableloader_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qexternalvariablereference_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qfirstitempredicate_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qfocus_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qforclause_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qfunctionargument_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qfunctionavailablefn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qfunctioncall_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qfunctionfactory_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qfunctionfactorycollection_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qfunctionsignature_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qgday_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qgeneralcomparison_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qgenerateidfn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qgenericdynamiccontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qgenericnamespaceresolver_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qgenericpredicate_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qgenericsequencetype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qgenericstaticcontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qgmonth_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qgmonthday_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qgyear_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qgyearmonth_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qhexbinary_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qifthenclause_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qindexofiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qinsertioniterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qinstanceof_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qinteger_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qintersectiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qiodevicedelegate_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qitem_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qitemmappingiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qitemtype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qitemverifier_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qletclause_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qliteral_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qliteralsequence_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qlocalnametest_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qmaintainingreader_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qmaintainingreader_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qmultiitemtype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnamedschemacomponent_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnamepool_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnamespacebinding_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnamespaceconstructor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnamespacenametest_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnamespaceresolver_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnamespacesupport_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qncnameconstructor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnetworkaccessdelegator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnodebuilder_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnodecomparison_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnodefns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnodenamespaceresolver_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnodesort_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnonetype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnumericfns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qnumerictype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qoperandsiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qoptimizationpasses_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qoptimizerblocks_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qoptimizerframework_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qorderby_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qorexpression_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qoutputvalidator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qpaircontainer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qparentnodeaxis_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qparsercontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qpath_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qpatternistlocale_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qpatternmatchingfns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qpatternplatform_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qpositionalvariablereference_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qprimitives_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qprocessinginstructionconstructor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qprojectedexpression_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qpullbridge_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qqnameconstructor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qqnamefns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qqnametest_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qqnamevalue_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qquantifiedexpression_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qquerytransformparser_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qrangeexpression_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qrangeiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qrangevariablereference_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qreceiverdynamiccontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qreferencecountedvalue_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qremovaliterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qreportcontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qresolveurifn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qresourcedelegator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qresourceloader_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qreturnorderby_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qschemacomponent_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qschemadatetime_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qschemanumeric_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qschematime_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qschematype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qschematypefactory_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsequencefns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsequencegeneratingfns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsequencemappingiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsequencereceiver_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsequencetype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsimplecontentconstructor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsinglecontainer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsingletoniterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsorttuple_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsourcelocationreflection_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstackcontextbase_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstackcontextbase_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstaticbaseuricontainer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstaticbaseuricontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstaticbaseuristore_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstaticcompatibilitycontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstaticcompatibilitystore_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstaticcontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstaticcurrentcontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstaticfocuscontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstaticnamespacecontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstaticnamespacescontainer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qstringvaluefns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsubsequenceiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsubstringfns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qsystempropertyfn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtemplate_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtemplateinvoker_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtemplatemode_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtemplateparameterreference_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtemplatepattern_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtextnodeconstructor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtimezonefns_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtocodepointsiterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtokenizer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtokenrevealer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtokensource_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtokenvalue_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtracefn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtreatas_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtriplecontainer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtruthpredicate_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtypeavailablefn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qtypechecker_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qunaryexpression_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qunioniterator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qunlimitedcontainer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qunparsedentitypublicidfn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qunparsedentityurifn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qunparsedtextavailablefn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qunparsedtextfn_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qunresolvedvariablereference_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/quntyped_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/quntypedatomic_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/quntypedatomicconverter_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/quriloader_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/quserfunction_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/quserfunctioncallsite_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qvalidate_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qvalidationerror_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qvaluecomparison_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qvaluefactory_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qvariabledeclaration_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qvariableloader_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qvariablereference_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qwithparam_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxmldebug_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxmlpatternistcli_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxmlquery_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxmlresultitems_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxmlschema_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxmlschemavalidator_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxmlserializer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxpath10corefunctions_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxpath20corefunctions_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxpathhelper_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxquerytokenizer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdalternative_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdannotated_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdannotation_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdapplicationinformation_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdassertion_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdattribute_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdattributegroup_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdattributereference_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdattributeterm_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdattributeuse_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdcomplextype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsddocumentation_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdelement_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdfacet_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdidcache_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdidchelper_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdidentityconstraint_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdinstancereader_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdmodelgroup_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdnotation_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdparticle_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdparticlechecker_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdreference_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdschema_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdschemachecker_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdschemacontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdschemadebugger_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdschemahelper_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdschemamerger_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdschemaparser_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdschemaparsercontext_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdschemaresolver_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdschematoken_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdschematypesfactory_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdsimpletype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdstatemachine_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdstatemachine_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdstatemachinebuilder_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdterm_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdtypechecker_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsduserschematype_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsduserschematype_tpl_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdvalidatedxmlnodemodel_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdvalidatinginstancereader_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdwildcard_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsdxpathexpression_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxslt20corefunctions_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsltnodetest_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxsltsimplecontentconstructor_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxslttokenizer_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qxslttokenlookup_p.h
%%QT_INCDIR%%/QtXmlPatterns/%%FULLVER%%/QtXmlPatterns/private/qyearmonthduration_p.h
%%QT_INCDIR%%/QtXmlPatterns/QAbstractMessageHandler
%%QT_INCDIR%%/QtXmlPatterns/QAbstractUriResolver
%%QT_INCDIR%%/QtXmlPatterns/QAbstractXmlNodeModel
%%QT_INCDIR%%/QtXmlPatterns/QAbstractXmlReceiver
%%QT_INCDIR%%/QtXmlPatterns/QSimpleXmlNodeModel
%%QT_INCDIR%%/QtXmlPatterns/QSourceLocation
%%QT_INCDIR%%/QtXmlPatterns/QXmlFormatter
%%QT_INCDIR%%/QtXmlPatterns/QXmlItem
%%QT_INCDIR%%/QtXmlPatterns/QXmlName
%%QT_INCDIR%%/QtXmlPatterns/QXmlNamePool
%%QT_INCDIR%%/QtXmlPatterns/QXmlNodeModelIndex
%%QT_INCDIR%%/QtXmlPatterns/QXmlQuery
%%QT_INCDIR%%/QtXmlPatterns/QXmlResultItems
%%QT_INCDIR%%/QtXmlPatterns/QXmlSchema
%%QT_INCDIR%%/QtXmlPatterns/QXmlSchemaValidator
%%QT_INCDIR%%/QtXmlPatterns/QXmlSerializer
%%QT_INCDIR%%/QtXmlPatterns/QtXmlPatterns
%%QT_INCDIR%%/QtXmlPatterns/QtXmlPatternsDepends
%%QT_INCDIR%%/QtXmlPatterns/QtXmlPatternsVersion
%%QT_INCDIR%%/QtXmlPatterns/qabstractmessagehandler.h
%%QT_INCDIR%%/QtXmlPatterns/qabstracturiresolver.h
%%QT_INCDIR%%/QtXmlPatterns/qabstractxmlnodemodel.h
%%QT_INCDIR%%/QtXmlPatterns/qabstractxmlreceiver.h
%%QT_INCDIR%%/QtXmlPatterns/qsimplexmlnodemodel.h
%%QT_INCDIR%%/QtXmlPatterns/qsourcelocation.h
%%QT_INCDIR%%/QtXmlPatterns/qtxmlpatternsglobal.h
%%QT_INCDIR%%/QtXmlPatterns/qtxmlpatternsversion.h
%%QT_INCDIR%%/QtXmlPatterns/qxmlformatter.h
%%QT_INCDIR%%/QtXmlPatterns/qxmlname.h
%%QT_INCDIR%%/QtXmlPatterns/qxmlnamepool.h
%%QT_INCDIR%%/QtXmlPatterns/qxmlquery.h
%%QT_INCDIR%%/QtXmlPatterns/qxmlresultitems.h
%%QT_INCDIR%%/QtXmlPatterns/qxmlschema.h
%%QT_INCDIR%%/QtXmlPatterns/qxmlschemavalidator.h
%%QT_INCDIR%%/QtXmlPatterns/qxmlserializer.h
-%%QT_LIBDIR%%/cmake/Qt5XmlPatterns/Qt5XmlPatternsConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5XmlPatterns/Qt5XmlPatternsConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5XmlPatterns/Qt5XmlPatternsConfig.cmake
+%%QT_CMAKEDIR%%/Qt5XmlPatterns/Qt5XmlPatternsConfigVersion.cmake
%%QT_LIBDIR%%/libQt5XmlPatterns.prl
%%QT_LIBDIR%%/libQt5XmlPatterns.so
%%QT_LIBDIR%%/libQt5XmlPatterns.so.5
%%QT_LIBDIR%%/libQt5XmlPatterns.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5XmlPatterns.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5XmlPatterns.so.%%FULLVER%%.debug
%%QT_BINDIR%%/xmlpatterns
%%QT_BINDIR%%/xmlpatternsvalidator
%%QT_MKSPECDIR%%/modules/qt_lib_xmlpatterns.pri
%%QT_MKSPECDIR%%/modules/qt_lib_xmlpatterns_private.pri
libdata/pkgconfig/Qt5XmlPatterns.pc
Index: head/textproc/scim-bridge-qt4/files/patch-client-qt_qt4_Makefile.in
===================================================================
--- head/textproc/scim-bridge-qt4/files/patch-client-qt_qt4_Makefile.in (revision 434379)
+++ head/textproc/scim-bridge-qt4/files/patch-client-qt_qt4_Makefile.in (revision 434380)
@@ -1,20 +1,11 @@
--- client-qt/qt4/Makefile.in.orig
+++ client-qt/qt4/Makefile.in
@@ -243,7 +243,7 @@
@SCIM_BRIDGE_BUILD_QT4_IMMODULE_TRUE@ -I$(top_srcdir)/client-common
@SCIM_BRIDGE_BUILD_QT4_IMMODULE_TRUE@noinst_HEADERS = ../scim-bridge-client-qt.h ../scim-bridge-client-imcontext-qt.h ../scim-bridge-client-key-event-utility-qt.h ../scim-bridge-client-common-qt.h
-@SCIM_BRIDGE_BUILD_QT4_IMMODULE_TRUE@moduledir = @QT4_PREFIX@/plugins/inputmethods
+@SCIM_BRIDGE_BUILD_QT4_IMMODULE_TRUE@moduledir = @QT4_PREFIX@/lib/qt4/plugins/inputmethods
@SCIM_BRIDGE_BUILD_QT4_IMMODULE_TRUE@module_LTLIBRARIES = im-scim-bridge.la
@SCIM_BRIDGE_BUILD_QT4_IMMODULE_TRUE@im_scim_bridge_la_SOURCES = ../im-scim-bridge-qt.cpp \
@SCIM_BRIDGE_BUILD_QT4_IMMODULE_TRUE@ ../scim-bridge-client-qt.cpp \
-@@ -261,7 +261,7 @@
- @SCIM_BRIDGE_BUILD_QT4_IMMODULE_TRUE@im_scim_bridge_la_LIBADD = $(top_srcdir)/common/libscimbridgecommon.la \
- @SCIM_BRIDGE_BUILD_QT4_IMMODULE_TRUE@ $(top_srcdir)/client-common/libscimbridgeclientcommon.la
-
--@SCIM_BRIDGE_BUILD_QT4_IMMODULE_TRUE@MOC = @QT4_PREFIX@/bin/moc
-+@SCIM_BRIDGE_BUILD_QT4_IMMODULE_TRUE@MOC = @QT4_PREFIX@/bin/moc-qt4
- MAINTAINERCLEANFILES = Makefile.in
- CLEANFILES = moc_scim-bridge-client-qt.cpp
- all: all-am
Index: head/www/webkit-qt4/pkg-plist
===================================================================
--- head/www/webkit-qt4/pkg-plist (revision 434379)
+++ head/www/webkit-qt4/pkg-plist (nonexistent)
@@ -1,68 +0,0 @@
-%%QT_INCDIR%%/Qt/QtWebKit
-%%QT_INCDIR%%/Qt/qgraphicswebview.h
-%%QT_INCDIR%%/Qt/qwebdatabase.h
-%%QT_INCDIR%%/Qt/qwebelement.h
-%%QT_INCDIR%%/Qt/qwebframe.h
-%%QT_INCDIR%%/Qt/qwebhistory.h
-%%QT_INCDIR%%/Qt/qwebhistoryinterface.h
-%%QT_INCDIR%%/Qt/qwebinspector.h
-%%QT_INCDIR%%/Qt/qwebkitglobal.h
-%%QT_INCDIR%%/Qt/qwebkitplatformplugin.h
-%%QT_INCDIR%%/Qt/qwebkitversion.h
-%%QT_INCDIR%%/Qt/qwebpage.h
-%%QT_INCDIR%%/Qt/qwebpluginfactory.h
-%%QT_INCDIR%%/Qt/qwebscriptworld.h
-%%QT_INCDIR%%/Qt/qwebsecurityorigin.h
-%%QT_INCDIR%%/Qt/qwebsettings.h
-%%QT_INCDIR%%/Qt/qwebview.h
-%%QT_INCDIR%%/QtWebKit/QGraphicsWebView
-%%QT_INCDIR%%/QtWebKit/QWebDatabase
-%%QT_INCDIR%%/QtWebKit/QWebElement
-%%QT_INCDIR%%/QtWebKit/QWebElementCollection
-%%QT_INCDIR%%/QtWebKit/QWebFrame
-%%QT_INCDIR%%/QtWebKit/QWebFullScreenVideoHandler
-%%QT_INCDIR%%/QtWebKit/QWebHapticFeedbackPlayer
-%%QT_INCDIR%%/QtWebKit/QWebHistory
-%%QT_INCDIR%%/QtWebKit/QWebHistoryInterface
-%%QT_INCDIR%%/QtWebKit/QWebHistoryItem
-%%QT_INCDIR%%/QtWebKit/QWebHitTestResult
-%%QT_INCDIR%%/QtWebKit/QWebInspector
-%%QT_INCDIR%%/QtWebKit/QWebKitPlatformPlugin
-%%QT_INCDIR%%/QtWebKit/QWebNotificationData
-%%QT_INCDIR%%/QtWebKit/QWebNotificationPresenter
-%%QT_INCDIR%%/QtWebKit/QWebPage
-%%QT_INCDIR%%/QtWebKit/QWebPluginFactory
-%%QT_INCDIR%%/QtWebKit/QWebScriptWorld
-%%QT_INCDIR%%/QtWebKit/QWebSecurityOrigin
-%%QT_INCDIR%%/QtWebKit/QWebSelectData
-%%QT_INCDIR%%/QtWebKit/QWebSelectMethod
-%%QT_INCDIR%%/QtWebKit/QWebSettings
-%%QT_INCDIR%%/QtWebKit/QWebTouchModifier
-%%QT_INCDIR%%/QtWebKit/QWebView
-%%QT_INCDIR%%/QtWebKit/QtWebKit
-%%QT_INCDIR%%/QtWebKit/qgraphicswebview.h
-%%QT_INCDIR%%/QtWebKit/qwebdatabase.h
-%%QT_INCDIR%%/QtWebKit/qwebelement.h
-%%QT_INCDIR%%/QtWebKit/qwebframe.h
-%%QT_INCDIR%%/QtWebKit/qwebhistory.h
-%%QT_INCDIR%%/QtWebKit/qwebhistoryinterface.h
-%%QT_INCDIR%%/QtWebKit/qwebinspector.h
-%%QT_INCDIR%%/QtWebKit/qwebkitglobal.h
-%%QT_INCDIR%%/QtWebKit/qwebkitplatformplugin.h
-%%QT_INCDIR%%/QtWebKit/qwebkitversion.h
-%%QT_INCDIR%%/QtWebKit/qwebpage.h
-%%QT_INCDIR%%/QtWebKit/qwebpluginfactory.h
-%%QT_INCDIR%%/QtWebKit/qwebscriptworld.h
-%%QT_INCDIR%%/QtWebKit/qwebsecurityorigin.h
-%%QT_INCDIR%%/QtWebKit/qwebsettings.h
-%%QT_INCDIR%%/QtWebKit/qwebview.h
-%%QT_IMPORTDIR%%/QtWebKit/libqmlwebkitplugin.so
-%%DEBUG%%%%QT_IMPORTDIR%%/QtWebKit/libqmlwebkitplugin.so.debug
-%%QT_IMPORTDIR%%/QtWebKit/qmldir
-%%QT_LIBDIR%%/libQtWebKit.prl
-%%QT_LIBDIR%%/libQtWebKit.so
-%%QT_LIBDIR%%/libQtWebKit.so.4
-%%QT_LIBDIR%%/libQtWebKit.so.4.9
-%%QT_LIBDIR%%/libQtWebKit.so.4.9.4
-libdata/pkgconfig/QtWebKit.pc
-%%QT_MKSPECDIR%%/modules/qt_webkit_version.pri
Property changes on: head/www/webkit-qt4/pkg-plist
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt4/Makefile
===================================================================
--- head/www/webkit-qt4/Makefile (revision 434379)
+++ head/www/webkit-qt4/Makefile (nonexistent)
@@ -1,97 +0,0 @@
-# Created by: danny@ricin.com
-# $FreeBSD$
-
-PORTNAME= webkit
-DISTVERSION= ${QT4_VERSION}
-CATEGORIES= www
-PKGNAMEPREFIX= qt4-
-
-MAINTAINER= kde@FreeBSD.org
-COMMENT= Qt WebKit implementation
-
-USE_QT4= corelib declarative gui network \
- qmake_build moc_build rcc_build
-QT_DIST= yes
-USE_XORG= xrender
-USES= pkgconfig
-
-HAS_CONFIGURE= yes
-USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
-
-ALL_TARGET= first
-CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
-MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
- PATH=${WRKSRC}/bin:$$PATH MAKEOBJDIR=.
-
-DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
- src/activeqt src/dbus src/opengl src/openvg src/qt3support \
- src/s60installs src/s60main src/scripttools src/sql src/svg \
- src/testlib src/tools src/winmain src/3rdparty/clucene \
- src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
- src/3rdparty/libpng src/3rdparty/libtiff
-.for dne in ${DO_NOT_EXTRACT}
-EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
-.endfor
-
-BUILD_WRKSRC= ${WRKSRC}/src/3rdparty/${PORTNAME}/Source
-INSTALL_WRKSRC= ${BUILD_WRKSRC}
-
-CONFIGURE_ARGS+= -I../../../../include/Qt -I../../../../include
-
-OPTIONS_DEFINE= GSTREAMER
-OPTIONS_DEFAULT=GSTREAMER
-
-GSTREAMER_USE= GSTREAMER=yes
-
-.include <bsd.port.pre.mk>
-
-# Base ld(1) segfaults on PowerPC:
-# http://bugs.freebsd.org/173042
-.if ${ARCH} == "powerpc"
-BUILD_DEPENDS+= ${LOCALBASE}/bin/ld:devel/binutils
-.endif
-
-.if ${ARCH} == powerpc64
-CFLAGS+= -mminimal-toc
-.endif
-
-# Quick hack to avoid messing up qt_webkit_version.pri installation
-# directory. bsd.port.pre.mk is required to add the setting at the end.
-CONFIGURE_ENV+= QMAKEPATH=""
-MAKE_ENV+= QMAKEPATH=""
-
-pre-configure:
- ${MKDIR} ${WRKSRC}/mkspecs
- ${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
- ${LN} -sf ${MOC} ${WRKSRC}/bin/moc
- ${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
- ${REINPLACE_CMD} -e 's|linux-\*|unix|g' \
- ${BUILD_WRKSRC}/WebCore/features.pri \
- ${BUILD_WRKSRC}/JavaScriptCore/wtf/wtf.pri
-.if ! ${PORT_OPTIONS:MGSTREAMER}
- ${REINPLACE_CMD} -e 's|.*exists.*gstreamer.*|false {|' \
- ${BUILD_WRKSRC}/WebCore/features.pri
-.endif
-# Avoid building and installing several tests. Should this be made an option?
- ${REINPLACE_CMD} -e '/WebKit\/qt\/tests/ d' \
- ${BUILD_WRKSRC}/WebKit.pro
-
-post-configure:
- ${REINPLACE_CMD} \
- -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
- -e 's|.*$$(QMAKE).*||g' \
- -e '/^CFLAGS/ s|-I${LOCALBASE}/include ||g' \
- -e '/^CXXFLAGS/ s|-I${LOCALBASE}/include ||g' \
- ${BUILD_WRKSRC}/Makefile \
- ${BUILD_WRKSRC}/WebCore/Makefile \
- ${BUILD_WRKSRC}/WebKit/qt/Makefile
- ${CP} ${BUILD_WRKSRC}/WebKit/qt/Makefile \
- ${BUILD_WRKSRC}/WebKit/qt/Makefile.QtWebKit
- ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
- -E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
- ${WRKSRC}/lib/pkgconfig/QtWebKit.pc
-# QtWebKit is statically linked with jscore, remove the latest.
- ${REINPLACE_CMD} -e 's|-L../JavaScriptCore/release||; s|-ljscore||' \
- ${WRKSRC}/lib/pkgconfig/QtWebKit.pc
-
-.include <bsd.port.post.mk>
Property changes on: head/www/webkit-qt4/Makefile
___________________________________________________________________
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-FreeBSD=%H
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro
===================================================================
--- head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro (revision 434379)
+++ head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro (nonexistent)
@@ -1,11 +0,0 @@
---- ./src/3rdparty/webkit/Source/WebKit/qt/QtWebKit.pro.orig 2011-12-08 06:06:03.000000000 +0100
-+++ ./src/3rdparty/webkit/Source/WebKit/qt/QtWebKit.pro 2012-01-08 17:18:52.521346053 +0100
-@@ -84,7 +84,7 @@
- }
-
- moduleFile=$$PWD/qt_webkit_version.pri
--isEmpty(QT_BUILD_TREE):include($$moduleFile)
-+include($$moduleFile)
- VERSION = $${QT_WEBKIT_MAJOR_VERSION}.$${QT_WEBKIT_MINOR_VERSION}.$${QT_WEBKIT_PATCH_VERSION}
-
- symbian {
Property changes on: head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt4/files/patch-libcxx
===================================================================
--- head/www/webkit-qt4/files/patch-libcxx (revision 434379)
+++ head/www/webkit-qt4/files/patch-libcxx (nonexistent)
@@ -1,620 +0,0 @@
-Several upstream (as in WebKit itself) commits that fix the build with libc++,
-plus a few additional changes made only for the port (the OS(FREEBSD) part for
-time_t). Some of those commits had to be edited because they did not apply
-cleanly to the ancient WebKit checkout present in Qt.
-
-Upstream commit messages:
-
-------------------------------------------------------------------------
-r86529 | abarth@webkit.org | 2011-05-16 09:30:58 +0300 (Mon, 16 May 2011) | 7 lines
-
-2011-05-15 Adam Barth <abarth@webkit.org>
-
- Attempt to fix Qt build. (Strict PassOwnPtr fix.)
-
- * dom/XMLDocumentParserQt.cpp:
- (WebCore::XMLDocumentParser::doEnd):
-
-------------------------------------------------------------------------
-r86530 | abarth@webkit.org | 2011-05-16 09:36:56 +0300 (Mon, 16 May 2011) | 13 lines
-
-2011-05-15 Adam Barth <abarth@webkit.org>
-
- Attempt to fix Qt build. (Strict PassOwnPtr fix.)
-
-* platform/network/qt/QNetworkReplyHandler.cpp:
-(WebCore::QNetworkReplyWrapper::release):
-(WebCore::QNetworkReplyWrapper::receiveMetaData):
-(WebCore::QNetworkReplyWrapper::receiveSniffedMIMEType):
-(WebCore::QNetworkReplyHandler::release):
-(WebCore::QNetworkReplyHandler::finish):
-(WebCore::QNetworkReplyHandler::redirect):
-(WebCore::QNetworkReplyHandler::start):
-
-------------------------------------------------------------------------
-r86531 | abarth@webkit.org | 2011-05-16 09:41:08 +0300 (Mon, 16 May 2011) | 7 lines
-
-2011-05-15 Adam Barth <abarth@webkit.org>
-
- Attempt to fix Qt build. (Strict PassOwnPtr fix.)
-
- * platform/text/qt/TextCodecQt.cpp:
- (WebCore::newTextCodecQt):
-
-------------------------------------------------------------------------
-r86532 | abarth@webkit.org | 2011-05-16 09:46:33 +0300 (Mon, 16 May 2011) | 8 lines
-
-2011-05-15 Adam Barth <abarth@webkit.org>
-
- Attempt to fix Qt build. (Strict PassOwnPtr fix.)
-
- * platform/graphics/qt/GraphicsLayerQt.cpp:
- (WebCore::GraphicsLayerQt::GraphicsLayerQt):
- (WebCore::GraphicsLayer::create):
-
-
-------------------------------------------------------------------------
-r86533 | abarth@webkit.org | 2011-05-16 09:52:23 +0300 (Mon, 16 May 2011) | 10 lines
-
-2011-05-15 Adam Barth <abarth@webkit.org>
-
- Attempt to fix the Qt build. (Strict PassOwnPtr fix.)
-
- * Api/qgraphicswebview.cpp:
- (QGraphicsWebViewPrivate::detachCurrentPage):
- (QGraphicsWebView::setPage):
- * Api/qwebpage.cpp:
- (QWebPage::setView):
-
-------------------------------------------------------------------------
-r86537 | abarth@webkit.org | 2011-05-16 10:24:01 +0300 (Mon, 16 May 2011) | 41 lines
-
-2011-05-16 Adam Barth <abarth@webkit.org>
-
- [Qt] QtPlatformPlugin create methods should use PassOwnPtr
- https://bugs.webkit.org/show_bug.cgi?id=60873
-
- This change is slightly more than a build fix because the patch kind of
- spidered a bit while I was trying to fix the build the "right way."
- Hopefully nothing here is controversial.
-
- * Api/qwebpage.cpp:
- (QWebPagePrivate::adjustPointForClicking):
- * WebCoreSupport/ChromeClientQt.cpp:
- (WebCore::ChromeClientQt::createSelectPopup):
- * WebCoreSupport/FullScreenVideoQt.cpp:
- (WebCore::FullScreenVideoQt::FullScreenVideoQt):
- (WebCore::FullScreenVideoQt::~FullScreenVideoQt):
- * WebCoreSupport/FullScreenVideoQt.h:
- * WebCoreSupport/NotificationPresenterClientQt.cpp:
- (WebCore::NotificationWrapper::NotificationWrapper):
- (WebCore::NotificationPresenterClientQt::displayNotification):
- * WebCoreSupport/PopupMenuQt.cpp:
- (WebCore::PopupMenuQt::PopupMenuQt):
- (WebCore::PopupMenuQt::~PopupMenuQt):
- (WebCore::PopupMenuQt::show):
- * WebCoreSupport/PopupMenuQt.h:
- * WebCoreSupport/QtPlatformPlugin.cpp:
- (WebCore::QtPlatformPlugin::createSelectInputMethod):
- (WebCore::QtPlatformPlugin::createNotificationPresenter):
- (WebCore::QtPlatformPlugin::createHapticFeedbackPlayer):
- (WebCore::QtPlatformPlugin::createTouchModifier):
- (WebCore::QtPlatformPlugin::createFullScreenVideoHandler):
- * WebCoreSupport/QtPlatformPlugin.h:
- (WebCore::QtPlatformPlugin::QtPlatformPlugin):
-2011-05-16 Adam Barth <abarth@webkit.org>
-
- [Qt] QtPlatformPlugin create methods should use PassOwnPtr
- https://bugs.webkit.org/show_bug.cgi?id=60873
-
- * plugins/qt/PluginViewQt.cpp:
- (WebCore::PluginView::platformStart):
-
-------------------------------------------------------------------------
-r86538 | abarth@webkit.org | 2011-05-16 10:27:51 +0300 (Mon, 16 May 2011) | 6 lines
-
-2011-05-16 Adam Barth <abarth@webkit.org>
-
- Missing include.
-
- * WebCoreSupport/PopupMenuQt.h:
-
-------------------------------------------------------------------------
-r86540 | abarth@webkit.org | 2011-05-16 10:43:22 +0300 (Mon, 16 May 2011) | 10 lines
-
-2011-05-16 Adam Barth <abarth@webkit.org>
-
- Attempt to fix Qt build. (Strict PassOwnPtr fix.)
-
- This patch requires some slightly fancy footwork.
-
- * WebCoreSupport/InspectorClientQt.cpp:
- (WebCore::InspectorClientQt::openInspectorFrontend):
- (WebCore::InspectorFrontendClientQt::InspectorFrontendClientQt):
-
-------------------------------------------------------------------------
-r86541 | abarth@webkit.org | 2011-05-16 10:51:04 +0300 (Mon, 16 May 2011) | 7 lines
-
-2011-05-16 Adam Barth <abarth@webkit.org>
-
- Sigh. This code is somewhat crazy.
-
- * WebCoreSupport/InspectorClientQt.cpp:
- (WebCore::InspectorClientQt::openInspectorFrontend):
-
-------------------------------------------------------------------------
-r86550 | abarth@webkit.org | 2011-05-16 12:30:40 +0300 (Mon, 16 May 2011) | 13 lines
-
-2011-05-16 Adam Barth <abarth@webkit.org>
-
- Partial revert of r86537. FullScreenVideoQt.h can't depend on OwnPtr.h
- because moc_FullScreenVideoQt.cpp fails to include config.h.
- Apparently, having moc_FullScreenVideoQt.cpp properly include config.h
- is hard, so we're going back to manual new and delete for this class.
- Bad times.
-
- * WebCoreSupport/FullScreenVideoQt.cpp:
- (WebCore::FullScreenVideoQt::FullScreenVideoQt):
- (WebCore::FullScreenVideoQt::~FullScreenVideoQt):
- * WebCoreSupport/FullScreenVideoQt.h:
-
-------------------------------------------------------------------------
-r90915 | andersca@apple.com | 2011-07-13 17:11:49 +0300 (Wed, 13 Jul 2011) | 7 lines
-
-If a compiler has nullptr support, include <cstddef> to get the nullptr_t definition
-https://bugs.webkit.org/show_bug.cgi?id=64429
-
-Include the cstddef which has the nullptr_t typedef according to the C++0x standard.
-
-* wtf/NullPtr.h:
-
-------------------------------------------------------------------------
-r92556 | darin@apple.com | 2011-08-06 23:17:26 +0300 (Sat, 06 Aug 2011) | 17 lines
-
-Fix Timer heap implementation to work with more libraries (other versions of STL)
-https://bugs.webkit.org/show_bug.cgi?id=65782
-
-Reviewed by Anders Carlsson.
-
-No behavior change, so no tests needed. Existing tests pass.
-
-* platform/Timer.cpp: Added TimerHeapPointer and TimerHeapReference class
-alongside the TimerHeapIterator class. Also added a swap function. Also
-added a TimerHeapLessThanFunction class.
-(WebCore::TimerBase::heapDecreaseKey): Pass pointers in to the TimerHeapIterator
-since that's how the class works now. Pass a TimerHeapLessThanFunction object
-instead of letting the library use the < operator directly.
-(WebCore::TimerBase::heapPopMin): Ditto.
-
-* platform/Timer.h: Updated for above changes.
-
-------------------------------------------------------------------------
-r107489 | weinig@apple.com | 2012-02-12 01:10:24 +0200 (Sun, 12 Feb 2012) | 9 lines
-
-Prepare JavaScriptCore to build with libc++
-<rdar://problem/10426673>
-https://bugs.webkit.org/show_bug.cgi?id=78424
-
-Reviewed by Anders Carlsson.
-
-* wtf/NullPtr.cpp:
-* wtf/NullPtr.h:
-libc++ provides std::nullptr emulation, so we don't have to.
-
-------------------------------------------------------------------------
---- src/3rdparty/webkit/Source/JavaScriptCore/wtf/NullPtr.h
-+++ src/3rdparty/webkit/Source/JavaScriptCore/wtf/NullPtr.h
-@@ -35,10 +35,14 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- #define __has_feature(feature) 0
- #endif
-
--#if __has_feature(cxx_nullptr) || (GCC_VERSION_AT_LEAST(4, 6, 0) && defined(__GXX_EXPERIMENTAL_CXX0X__)) || (defined(_MSC_VER) && _MSC_VER >= 1600 && !COMPILER(INTEL)) || defined(_LIBCPP_VERSION)
-+#include <ciso646>
-+
-+#if __has_feature(cxx_nullptr) || (GCC_VERSION_AT_LEAST(4, 6, 0) && defined(__GXX_EXPERIMENTAL_CXX0X__)) || (defined(_MSC_VER) && _MSC_VER >= 1600 && !COMPILER(INTEL)) || defined(_LIBCPP_VERSION)
-
- #define HAVE_NULLPTR 1
-
-+#include <cstddef>
-+
- #else
-
- namespace std {
---- src/3rdparty/webkit/Source/WebCore/dom/XMLDocumentParserQt.cpp (revision 86528)
-+++ src/3rdparty/webkit/Source/WebCore/dom/XMLDocumentParserQt.cpp (revision 86529)
-@@ -215,7 +215,7 @@
- {
- #if ENABLE(XSLT)
- if (m_sawXSLTransform) {
-- document()->setTransformSource(new TransformSource(m_originalSourceForTransform));
-+ document()->setTransformSource(adoptPtr(new TransformSource(m_originalSourceForTransform)));
- document()->setParsing(false); // Make the doc think it's done, so it will apply xsl sheets.
- document()->styleSelectorChanged(RecalcStyleImmediately);
- document()->setParsing(true);
---- src/3rdparty/webkit/Source/WebCore/loader/icon/IconRecord.h
-+++ src/3rdparty/webkit/Source/WebCore/loader/icon/IconRecord.h
-@@ -38,7 +38,7 @@
- #include <wtf/OwnPtr.h>
- #include <wtf/text/StringHash.h>
-
--#if OS(SOLARIS)
-+#if OS(FREEBSD) || OS(SOLARIS)
- #include <sys/types.h> // For time_t structure.
- #endif
-
---- src/3rdparty/webkit/Source/WebCore/page/Page.h
-+++ src/3rdparty/webkit/Source/WebCore/page/Page.h
-@@ -29,7 +29,7 @@
- #include <wtf/HashSet.h>
- #include <wtf/Noncopyable.h>
-
--#if OS(SOLARIS)
-+#if OS(FREEBSD) || OS(SOLARIS)
- #include <sys/time.h> // For time_t structure.
- #endif
-
---- src/3rdparty/webkit/Source/WebCore/platform/network/ResourceResponseBase.h
-+++ src/3rdparty/webkit/Source/WebCore/platform/network/ResourceResponseBase.h
-@@ -35,7 +35,7 @@
- #include <wtf/PassOwnPtr.h>
- #include <wtf/RefPtr.h>
-
--#if OS(SOLARIS)
-+#if OS(FREEBSD) || OS(SOLARIS)
- #include <sys/time.h> // For time_t structure.
- #endif
-
---- src/3rdparty/webkit/Source/WebCore/platform/network/qt/QNetworkReplyHandler.cpp (revision 86529)
-+++ src/3rdparty/webkit/Source/WebCore/platform/network/qt/QNetworkReplyHandler.cpp (revision 86530)
-@@ -285,7 +285,7 @@
-
- Q_ASSERT(!m_sniffer);
-
-- m_sniffer = new QtMIMETypeSniffer(m_reply, m_advertisedMIMEType, isSupportedImageType);
-+ m_sniffer = adoptPtr(new QtMIMETypeSniffer(m_reply, m_advertisedMIMEType, isSupportedImageType));
-
- if (m_sniffer->isFinished()) {
- receiveSniffedMIMEType();
-@@ -666,7 +666,7 @@
- if (!reply)
- return;
-
-- m_replyWrapper = new QNetworkReplyWrapper(&m_queue, reply, m_resourceHandle->shouldContentSniff() && d->m_context->mimeSniffingEnabled(), this);
-+ m_replyWrapper = adoptPtr(new QNetworkReplyWrapper(&m_queue, reply, m_resourceHandle->shouldContentSniff() && d->m_context->mimeSniffingEnabled(), this));
-
- if (m_loadType == SynchronousLoad) {
- m_replyWrapper->synchronousLoad();
-===================================================================
---- src/3rdparty/webkit/Source/WebCore/platform/text/qt/TextCodecQt.cpp (revision 86530)
-+++ src/3rdparty/webkit/Source/WebCore/platform/text/qt/TextCodecQt.cpp (revision 86531)
-@@ -64,7 +64,7 @@
-
- static PassOwnPtr<TextCodec> newTextCodecQt(const TextEncoding& encoding, const void*)
- {
-- return new TextCodecQt(encoding);
-+ return adoptPtr(new TextCodecQt(encoding));
- }
-
- void TextCodecQt::registerCodecs(TextCodecRegistrar registrar)
-
---- src/3rdparty/webkit/Source/WebKit/qt/Api/qgraphicswebview.cpp (revision 86532)
-+++ src/3rdparty/webkit/Source/WebKit/qt/Api/qgraphicswebview.cpp (revision 86533)
-@@ -504,7 +504,7 @@
- if (!d->page)
- return;
-
-- d->page->d->client = new PageClientQGraphicsWidget(this, page); // set the page client
-+ d->page->d->client = adoptPtr(new PageClientQGraphicsWidget(this, page));
-
- if (d->overlay())
- d->overlay()->prepareGraphicsItemGeometryChange();
---- src/3rdparty/webkit/Source/WebKit/qt/Api/qwebpage.cpp (revision 86532)
-+++ src/3rdparty/webkit/Source/WebKit/qt/Api/qwebpage.cpp (revision 86550)
-@@ -1319,7 +1319,7 @@
- void QWebPagePrivate::adjustPointForClicking(QGraphicsSceneMouseEvent* ev)
- {
- QtPlatformPlugin platformPlugin;
-- QWebTouchModifier* touchModifier = platformPlugin.createTouchModifier();
-+ OwnPtr<QWebTouchModifier> touchModifier = platformPlugin.createTouchModifier();
- if (!touchModifier)
- return;
-
-@@ -1328,8 +1328,7 @@
- unsigned bottomPadding = touchModifier->hitTestPaddingForTouch(QWebTouchModifier::Down);
- unsigned leftPadding = touchModifier->hitTestPaddingForTouch(QWebTouchModifier::Left);
-
-- delete touchModifier;
-- touchModifier = 0;
-+ touchModifier = nullptr;
-
- if (!topPadding && !rightPadding && !bottomPadding && !leftPadding)
- return;
-@@ -2044,7 +2044,7 @@
- }
-
- if (view)
-- d->client = new PageClientQWidget(view, this);
-+ d->client = adoptPtr(new PageClientQWidget(view, this));
- }
-
- /*!
---- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/PopupMenuQt.h (revision 86536)
-+++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/PopupMenuQt.h (revision 86550)
-@@ -22,6 +22,8 @@
-
- #include "PopupMenu.h"
- #include <QObject>
-+#include <wtf/OwnPtr.h>
-+#include <wtf/PassOwnPtr.h>
-
- class QWebSelectData;
- class QWebSelectMethod;
-@@ -49,8 +51,8 @@
-
- private:
- PopupMenuClient* m_popupClient;
-- QWebSelectMethod* m_popup;
-- QWebSelectData* m_selectData;
-+ OwnPtr<QWebSelectMethod> m_popup;
-+ OwnPtr<QWebSelectData> m_selectData;
- const ChromeClientQt* m_chromeClient;
- };
-
---- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/QtPlatformPlugin.h (revision 86536)
-+++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/QtPlatformPlugin.h (revision 86550)
-@@ -22,6 +22,7 @@
- #define QtPlatformPlugin_h
-
- #include <QPluginLoader>
-+#include <wtf/PassOwnPtr.h>
-
- class QWebSelectMethod;
- class QWebKitPlatformPlugin;
-@@ -37,15 +38,20 @@
-
- class QtPlatformPlugin {
- public:
-- QtPlatformPlugin() : m_loaded(false), m_plugin(0) {}
-+ QtPlatformPlugin()
-+ : m_loaded(false)
-+ , m_plugin(0)
-+ {
-+ }
-+
- ~QtPlatformPlugin();
-
-- QWebSelectMethod* createSelectInputMethod();
-- QWebNotificationPresenter* createNotificationPresenter();
-- QWebHapticFeedbackPlayer* createHapticFeedbackPlayer();
-- QWebTouchModifier* createTouchModifier();
-+ PassOwnPtr<QWebSelectMethod> createSelectInputMethod();
-+ PassOwnPtr<QWebNotificationPresenter> createNotificationPresenter();
-+ PassOwnPtr<QWebHapticFeedbackPlayer> createHapticFeedbackPlayer();
-+ PassOwnPtr<QWebTouchModifier> createTouchModifier();
- #if ENABLE(VIDEO) && USE(QT_MULTIMEDIA)
-- QWebFullScreenVideoHandler* createFullScreenVideoHandler();
-+ PassOwnPtr<QWebFullScreenVideoHandler> createFullScreenVideoHandler();
- #endif
-
- QWebKitPlatformPlugin* plugin();
---- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp (revision 86536)
-+++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp (revision 86550)
-@@ -696,18 +696,18 @@
- }
- #endif
-
--QWebSelectMethod* ChromeClientQt::createSelectPopup() const
-+PassOwnPtr<QWebSelectMethod> ChromeClientQt::createSelectPopup() const
- {
-- QWebSelectMethod* result = m_platformPlugin.createSelectInputMethod();
-+ OwnPtr<QWebSelectMethod> result = m_platformPlugin.createSelectInputMethod();
- if (result)
-- return result;
-+ return result.release();
-
- #if defined(Q_WS_MAEMO_5)
-- return new QtMaemoWebPopup;
-+ return adoptPtr(new QtMaemoWebPopup);
- #elif !defined(QT_NO_COMBOBOX)
-- return new QtFallbackWebPopup(this);
-+ return adoptPtr(new QtFallbackWebPopup(this));
- #else
-- return 0;
-+ return nullptr;
- #endif
- }
-
---- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/PopupMenuQt.cpp (revision 86536)
-+++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/PopupMenuQt.cpp (revision 86550)
-@@ -82,8 +82,6 @@
-
- PopupMenuQt::PopupMenuQt(PopupMenuClient* client, const ChromeClientQt* chromeClient)
- : m_popupClient(client)
-- , m_popup(0)
-- , m_selectData(0)
- , m_chromeClient(chromeClient)
- {
- }
-@@ -90,8 +88,6 @@
-
- PopupMenuQt::~PopupMenuQt()
- {
-- delete m_selectData;
-- delete m_popup;
- }
-
- void PopupMenuQt::disconnectClient()
-@@ -107,11 +103,11 @@
-
- if (!m_popup) {
- m_popup = m_chromeClient->createSelectPopup();
-- connect(m_popup, SIGNAL(didHide()), this, SLOT(didHide()));
-- connect(m_popup, SIGNAL(selectItem(int, bool, bool)), this, SLOT(selectItem(int, bool, bool)));
-+ connect(m_popup.get(), SIGNAL(didHide()), this, SLOT(didHide()));
-+ connect(m_popup.get(), SIGNAL(selectItem(int, bool, bool)), this, SLOT(selectItem(int, bool, bool)));
- }
-
-- if (QtFallbackWebPopup* fallback = qobject_cast<QtFallbackWebPopup*>(m_popup)) {
-+ if (QtFallbackWebPopup* fallback = qobject_cast<QtFallbackWebPopup*>(m_popup.get())) {
- QRect geometry(rect);
- geometry.moveTopLeft(view->contentsToWindow(rect.location()));
- fallback->setGeometry(geometry);
-@@ -118,10 +114,8 @@
- fallback->setFont(m_popupClient->menuStyle().font().font());
- }
-
-- if (m_selectData)
-- delete m_selectData;
-- m_selectData = new SelectData(m_popupClient);
-- m_popup->show(*m_selectData);
-+ m_selectData = adoptPtr(new SelectData(m_popupClient));
-+ m_popup->show(*m_selectData.get());
- #endif
- }
-
---- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/FullScreenVideoQt.cpp (revision 86536)
-+++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/FullScreenVideoQt.cpp (revision 86550)
-@@ -136,7 +136,7 @@
- Q_ASSERT(m_chromeClient);
-
- #if USE(QT_MULTIMEDIA)
-- m_FullScreenVideoHandler = m_chromeClient->m_platformPlugin.createFullScreenVideoHandler();
-+ m_FullScreenVideoHandler = m_chromeClient->m_platformPlugin.createFullScreenVideoHandler().leakPtr();
- if (!m_FullScreenVideoHandler)
- m_FullScreenVideoHandler = new DefaultFullScreenVideoHandler;
-
---- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/QtPlatformPlugin.cpp (revision 86536)
-+++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/QtPlatformPlugin.cpp (revision 86550)
-@@ -102,36 +102,35 @@
- return m_plugin;
- }
-
--QWebSelectMethod* QtPlatformPlugin::createSelectInputMethod()
-+PassOwnPtr<QWebSelectMethod> QtPlatformPlugin::createSelectInputMethod()
- {
- QWebKitPlatformPlugin* p = plugin();
-- return p ? static_cast<QWebSelectMethod*>(p->createExtension(QWebKitPlatformPlugin::MultipleSelections)) : 0;
-+ return adoptPtr(p ? static_cast<QWebSelectMethod*>(p->createExtension(QWebKitPlatformPlugin::MultipleSelections)) : 0);
- }
-
--
--QWebNotificationPresenter* QtPlatformPlugin::createNotificationPresenter()
-+PassOwnPtr<QWebNotificationPresenter> QtPlatformPlugin::createNotificationPresenter()
- {
- QWebKitPlatformPlugin* p = plugin();
-- return p ? static_cast<QWebNotificationPresenter*>(p->createExtension(QWebKitPlatformPlugin::Notifications)) : 0;
-+ return adoptPtr(p ? static_cast<QWebNotificationPresenter*>(p->createExtension(QWebKitPlatformPlugin::Notifications)) : 0);
- }
-
--QWebHapticFeedbackPlayer* QtPlatformPlugin::createHapticFeedbackPlayer()
-+PassOwnPtr<QWebHapticFeedbackPlayer> QtPlatformPlugin::createHapticFeedbackPlayer()
- {
- QWebKitPlatformPlugin* p = plugin();
-- return p ? static_cast<QWebHapticFeedbackPlayer*>(p->createExtension(QWebKitPlatformPlugin::Haptics)) : 0;
-+ return adoptPtr(p ? static_cast<QWebHapticFeedbackPlayer*>(p->createExtension(QWebKitPlatformPlugin::Haptics)) : 0);
- }
-
--QWebTouchModifier* QtPlatformPlugin::createTouchModifier()
-+PassOwnPtr<QWebTouchModifier> QtPlatformPlugin::createTouchModifier()
- {
- QWebKitPlatformPlugin* p = plugin();
-- return p ? static_cast<QWebTouchModifier*>(p->createExtension(QWebKitPlatformPlugin::TouchInteraction)) : 0;
-+ return adoptPtr(p ? static_cast<QWebTouchModifier*>(p->createExtension(QWebKitPlatformPlugin::TouchInteraction)) : 0);
- }
-
- #if ENABLE(VIDEO) && USE(QT_MULTIMEDIA)
--QWebFullScreenVideoHandler* QtPlatformPlugin::createFullScreenVideoHandler()
-+PassOwnPtr<QWebFullScreenVideoHandler> QtPlatformPlugin::createFullScreenVideoHandler()
- {
- QWebKitPlatformPlugin* p = plugin();
-- return p ? static_cast<QWebFullScreenVideoHandler*>(p->createExtension(QWebKitPlatformPlugin::FullScreenVideoPlayer)) : 0;
-+ return adoptPtr(p ? static_cast<QWebFullScreenVideoHandler*>(p->createExtension(QWebKitPlatformPlugin::FullScreenVideoPlayer)) : 0);
- }
- #endif
-
---- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp (revision 86536)
-+++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp (revision 86550)
-@@ -203,8 +203,9 @@
- void InspectorClientQt::openInspectorFrontend(WebCore::InspectorController* inspectorController)
- {
- #if ENABLE(INSPECTOR)
-- QWebView* inspectorView = new QWebView;
-- InspectorClientWebPage* inspectorPage = new InspectorClientWebPage(inspectorView);
-+ OwnPtr<QWebView> inspectorView = adoptPtr(new QWebView);
-+ // FIXME: Where does inspectorPage get deleted?
-+ InspectorClientWebPage* inspectorPage = new InspectorClientWebPage(inspectorView.get());
- inspectorView->setPage(inspectorPage);
-
- QWebInspector* inspector = m_inspectedWebPage->d->getOrCreateInspector();
-@@ -229,11 +230,14 @@
- inspectorPage->setProperty("_q_inspectorJavaScriptWindowObjects", inspectorJavaScriptWindowObjects);
- #endif
- inspectorView->page()->mainFrame()->load(inspectorUrl);
-- m_inspectedWebPage->d->inspectorFrontend = inspectorView;
-- inspector->d->setFrontend(inspectorView);
-+ m_inspectedWebPage->d->inspectorFrontend = inspectorView.get();
-+ inspector->d->setFrontend(inspectorView.get());
-
-- m_frontendClient = new InspectorFrontendClientQt(m_inspectedWebPage, inspectorView, this);
-- inspectorView->page()->d->page->inspectorController()->setInspectorFrontendClient(m_frontendClient);
-+ // Is 'controller' the same object as 'inspectorController' (which appears to be unused)?
-+ InspectorController* controller = inspectorView->page()->d->page->inspectorController();
-+ OwnPtr<InspectorFrontendClientQt> frontendClient = adoptPtr(new InspectorFrontendClientQt(m_inspectedWebPage, inspectorView.release(), this));
-+ m_frontendClient = frontendClient.get();
-+ controller->setInspectorFrontendClient(frontendClient.release());
- m_frontendWebPage = inspectorPage;
- #endif
- }
-@@ -297,7 +301,7 @@
-
- #if ENABLE(INSPECTOR)
- InspectorFrontendClientQt::InspectorFrontendClientQt(QWebPage* inspectedWebPage, PassOwnPtr<QWebView> inspectorView, InspectorClientQt* inspectorClient)
-- : InspectorFrontendClientLocal(inspectedWebPage->d->page->inspectorController(), inspectorView->page()->d->page, new InspectorFrontendSettingsQt())
-+ : InspectorFrontendClientLocal(inspectedWebPage->d->page->inspectorController(), inspectorView->page()->d->page, adoptPtr(new InspectorFrontendSettingsQt()))
- , m_inspectedWebPage(inspectedWebPage)
- , m_inspectorView(inspectorView)
- , m_destroyingInspectorView(false)
---- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.cpp (revision 86536)
-+++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.cpp (revision 86550)
-@@ -211,9 +211,9 @@
- QPixmap pixmap;
- if (bytes.length() && pixmap.loadFromData(bytes)) {
- QIcon icon(pixmap);
-- wrapper->m_notificationIcon = new QSystemTrayIcon(icon);
-+ wrapper->m_notificationIcon = adoptPtr(new QSystemTrayIcon(icon));
- } else
-- wrapper->m_notificationIcon = new QSystemTrayIcon();
-+ wrapper->m_notificationIcon = adoptPtr(new QSystemTrayIcon());
- #endif
- }
-
---- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/ChromeClientQt.h (revision 86536)
-+++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/ChromeClientQt.h (revision 86550)
-@@ -34,6 +34,7 @@
- #include "KURL.h"
- #include "PlatformString.h"
- #include "QtPlatformPlugin.h"
-+#include <wtf/PassOwnPtr.h>
- #include <wtf/RefCounted.h>
-
- QT_BEGIN_NAMESPACE
-@@ -189,7 +190,7 @@
- virtual PassRefPtr<SearchPopupMenu> createSearchPopupMenu(PopupMenuClient*) const;
- virtual void populateVisitedLinks();
-
-- QWebSelectMethod* createSelectPopup() const;
-+ PassOwnPtr<QWebSelectMethod> createSelectPopup() const;
-
- virtual void dispatchViewportDataDidChange(const ViewportArguments&) const;
-
---- src/3rdparty/webkit/Source/WebCore/plugins/qt/PluginViewQt.cpp (revision 86536)
-+++ src/3rdparty/webkit/Source/WebCore/plugins/qt/PluginViewQt.cpp (revision 86550)
-@@ -950,7 +950,7 @@ bool PluginView::platformStart()
-
- #if USE(ACCELERATED_COMPOSITING) && !USE(TEXTURE_MAPPER)
- if (shouldUseAcceleratedCompositing()) {
-- m_platformLayer = new PluginGraphicsLayerQt(this);
-+ m_platformLayer = adoptPtr(new PluginGraphicsLayerQt(this));
- // Trigger layer computation in RenderLayerCompositor
- m_element->setNeedsStyleRecalc(SyntheticStyleChange);
- }
Property changes on: head/www/webkit-qt4/files/patch-libcxx
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h
===================================================================
--- head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h (revision 434379)
+++ head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h (nonexistent)
@@ -1,26 +0,0 @@
---- ./src/3rdparty/webkit/Source/JavaScriptCore/runtime/JSValueInlineMethods.h.orig 2011-12-08 06:06:02.000000000 +0100
-+++ ./src/3rdparty/webkit/Source/JavaScriptCore/runtime/JSValueInlineMethods.h 2012-01-08 17:18:52.511348683 +0100
-@@ -227,7 +227,11 @@
- u.asBits.tag = CellTag;
- else
- u.asBits.tag = EmptyValueTag;
-+#if defined(__sparc64__)
-+ u.asBits.payload = reinterpret_cast<int64_t>(ptr);
-+#else
- u.asBits.payload = reinterpret_cast<int32_t>(ptr);
-+#endif
- #if ENABLE(JSC_ZOMBIES)
- ASSERT(!isZombie());
- #endif
-@@ -239,7 +243,11 @@
- u.asBits.tag = CellTag;
- else
- u.asBits.tag = EmptyValueTag;
-+#if defined(__sparc64__)
-+ u.asBits.payload = reinterpret_cast<int64_t>(const_cast<JSCell*>(ptr));
-+#else
- u.asBits.payload = reinterpret_cast<int32_t>(const_cast<JSCell*>(ptr));
-+#endif
- #if ENABLE(JSC_ZOMBIES)
- ASSERT(!isZombie());
- #endif
Property changes on: head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt4/files/patch-src_3rdparty_webkit_Source_WebCore_html_HTMLImageElement.cpp
===================================================================
--- head/www/webkit-qt4/files/patch-src_3rdparty_webkit_Source_WebCore_html_HTMLImageElement.cpp (revision 434379)
+++ head/www/webkit-qt4/files/patch-src_3rdparty_webkit_Source_WebCore_html_HTMLImageElement.cpp (nonexistent)
@@ -1,21 +0,0 @@
-------------------------------------------------------------------------
-r113848 | abecsi@webkit.org | 2012-04-11 11:23:19 +0000 (Wed, 11 Apr 2012) | 27 lines
-
-Fix the build with gcc 4.7.0
-https://bugs.webkit.org/show_bug.cgi?id=83584
-[...]
-* html/HTMLImageElement.cpp:
-(WebCore::HTMLImageElement::createForJSConstructor): Fails because of -Werror=extra
-[...]
-
---- src/3rdparty/webkit/Source/WebCore/html/HTMLImageElement.cpp.orig 2015-05-07 14:14:47 UTC
-+++ src/3rdparty/webkit/Source/WebCore/html/HTMLImageElement.cpp
-@@ -74,7 +74,7 @@ PassRefPtr<HTMLImageElement> HTMLImageEl
- RefPtr<HTMLImageElement> image = adoptRef(new HTMLImageElement(imgTag, document));
- if (optionalWidth)
- image->setWidth(*optionalWidth);
-- if (optionalHeight > 0)
-+ if (optionalHeight)
- image->setHeight(*optionalHeight);
- return image.release();
- }
Property changes on: head/www/webkit-qt4/files/patch-src_3rdparty_webkit_Source_WebCore_html_HTMLImageElement.cpp
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt4/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp
===================================================================
--- head/www/webkit-qt4/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp (revision 434379)
+++ head/www/webkit-qt4/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp (nonexistent)
@@ -1,11 +0,0 @@
---- ./src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp.orig 2011-12-08 06:06:02.000000000 +0100
-+++ ./src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp 2012-01-08 17:18:52.511348683 +0100
-@@ -80,7 +80,7 @@
- #define THUMB_FUNC_PARAM(name)
- #endif
-
--#if OS(LINUX) && CPU(X86_64)
-+#if (OS(LINUX) || OS(FREEBSD)) && CPU(X86_64)
- #define SYMBOL_STRING_RELOCATION(name) #name "@plt"
- #else
- #define SYMBOL_STRING_RELOCATION(name) SYMBOL_STRING(name)
Property changes on: head/www/webkit-qt4/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Atomics.h
===================================================================
--- head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Atomics.h (revision 434379)
+++ head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Atomics.h (nonexistent)
@@ -1,34 +0,0 @@
---- src/3rdparty/webkit/Source/JavaScriptCore/wtf/Atomics.h.orig 2014-04-10 20:37:11.000000000 +0200
-+++ src/3rdparty/webkit/Source/JavaScriptCore/wtf/Atomics.h 2014-04-24 16:11:40.000000000 +0200
-@@ -63,18 +63,10 @@
-
- #if OS(WINDOWS)
- #include <windows.h>
--#elif OS(DARWIN)
--#include <libkern/OSAtomic.h>
- #elif OS(ANDROID)
- #include <cutils/atomic.h>
- #elif OS(QNX)
- #include <atomic.h>
--#elif COMPILER(GCC) && !OS(SYMBIAN)
--#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 2))
--#include <ext/atomicity.h>
--#else
--#include <bits/atomicity.h>
--#endif
- #endif
-
- namespace WTF {
-@@ -90,12 +82,6 @@
- inline int atomicDecrement(int volatile* addend) { return InterlockedDecrement(reinterpret_cast<long volatile*>(addend)); }
- #endif
-
--#elif OS(DARWIN)
--#define WTF_USE_LOCKFREE_THREADSAFESHARED 1
--
--inline int atomicIncrement(int volatile* addend) { return OSAtomicIncrement32Barrier(const_cast<int*>(addend)); }
--inline int atomicDecrement(int volatile* addend) { return OSAtomicDecrement32Barrier(const_cast<int*>(addend)); }
--
- #elif OS(ANDROID)
-
- inline int atomicIncrement(int volatile* addend) { return android_atomic_inc(addend); }
Property changes on: head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Atomics.h
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/distinfo
===================================================================
--- head/www/webkit-qt5/distinfo (revision 434379)
+++ head/www/webkit-qt5/distinfo (nonexistent)
@@ -1,3 +0,0 @@
-TIMESTAMP = 1476277006
-SHA256 (KDE/Qt/5.6.2/qtwebkit-opensource-src-5.6.2.tar.xz) = 528a6b8b1c5095367b26e8ce4f3a46bb739e2e9913ff4dfc6ef58a04fcd73966
-SIZE (KDE/Qt/5.6.2/qtwebkit-opensource-src-5.6.2.tar.xz) = 35306252
Property changes on: head/www/webkit-qt5/distinfo
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/pkg-plist
===================================================================
--- head/www/webkit-qt5/pkg-plist (revision 434379)
+++ head/www/webkit-qt5/pkg-plist (nonexistent)
@@ -1,112 +0,0 @@
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/bytearraytestdata.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qhttpheader_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquicknetworkreply_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquicknetworkrequest_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquickurlschemedelegate_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquickwebpage_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquickwebpage_p_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquickwebview_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquickwebview_p_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qrawwebview_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qrawwebview_p_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qtwebsecurityorigin_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebchannelwebkittransport_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebdatabase_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebdownloaditem_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebdownloaditem_p_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebelement_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebhistory_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebiconimageprovider_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebkittest_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebloadrequest_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebnavigationhistory_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebnavigationhistory_p_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebnavigationrequest_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebpermissionrequest_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebplugindatabase_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebpreferences_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebpreferences_p_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebscriptworld.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebscriptworld_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebsecurityorigin_p.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/testwindow.h
-%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/util.h
-%%QT_INCDIR%%/QtWebKit/QWebDatabase
-%%QT_INCDIR%%/QtWebKit/QWebElement
-%%QT_INCDIR%%/QtWebKit/QWebElementCollection
-%%QT_INCDIR%%/QtWebKit/QWebFullScreenVideoHandler
-%%QT_INCDIR%%/QtWebKit/QWebHapticFeedbackPlayer
-%%QT_INCDIR%%/QtWebKit/QWebHistory
-%%QT_INCDIR%%/QtWebKit/QWebHistoryInterface
-%%QT_INCDIR%%/QtWebKit/QWebHistoryItem
-%%QT_INCDIR%%/QtWebKit/QWebKitPlatformPlugin
-%%QT_INCDIR%%/QtWebKit/QWebNotificationData
-%%QT_INCDIR%%/QtWebKit/QWebNotificationPresenter
-%%QT_INCDIR%%/QtWebKit/QWebPluginFactory
-%%QT_INCDIR%%/QtWebKit/QWebSecurityOrigin
-%%QT_INCDIR%%/QtWebKit/QWebSelectData
-%%QT_INCDIR%%/QtWebKit/QWebSelectMethod
-%%QT_INCDIR%%/QtWebKit/QWebSettings
-%%QT_INCDIR%%/QtWebKit/QWebSpellChecker
-%%QT_INCDIR%%/QtWebKit/QWebTouchModifier
-%%QT_INCDIR%%/QtWebKit/QtWebKit
-%%QT_INCDIR%%/QtWebKit/QtWebKitDepends
-%%QT_INCDIR%%/QtWebKit/QtWebKitVersion
-%%QT_INCDIR%%/QtWebKit/qtwebkitversion.h
-%%QT_INCDIR%%/QtWebKit/qwebdatabase.h
-%%QT_INCDIR%%/QtWebKit/qwebelement.h
-%%QT_INCDIR%%/QtWebKit/qwebhistory.h
-%%QT_INCDIR%%/QtWebKit/qwebhistoryinterface.h
-%%QT_INCDIR%%/QtWebKit/qwebkitglobal.h
-%%QT_INCDIR%%/QtWebKit/qwebkitplatformplugin.h
-%%QT_INCDIR%%/QtWebKit/qwebpluginfactory.h
-%%QT_INCDIR%%/QtWebKit/qwebsecurityorigin.h
-%%QT_INCDIR%%/QtWebKit/qwebsettings.h
-%%QT_INCDIR%%/QtWebKitWidgets/%%FULLVER%%/QtWebKitWidgets/private/qwebframe_p.h
-%%QT_INCDIR%%/QtWebKitWidgets/%%FULLVER%%/QtWebKitWidgets/private/qwebinspector_p.h
-%%QT_INCDIR%%/QtWebKitWidgets/%%FULLVER%%/QtWebKitWidgets/private/qwebpage_p.h
-%%QT_INCDIR%%/QtWebKitWidgets/%%FULLVER%%/QtWebKitWidgets/private/qwebviewaccessible_p.h
-%%QT_INCDIR%%/QtWebKitWidgets/QGraphicsWebView
-%%QT_INCDIR%%/QtWebKitWidgets/QWebFrame
-%%QT_INCDIR%%/QtWebKitWidgets/QWebHitTestResult
-%%QT_INCDIR%%/QtWebKitWidgets/QWebInspector
-%%QT_INCDIR%%/QtWebKitWidgets/QWebPage
-%%QT_INCDIR%%/QtWebKitWidgets/QWebView
-%%QT_INCDIR%%/QtWebKitWidgets/QtWebKitWidgets
-%%QT_INCDIR%%/QtWebKitWidgets/QtWebKitWidgetsDepends
-%%QT_INCDIR%%/QtWebKitWidgets/QtWebKitWidgetsVersion
-%%QT_INCDIR%%/QtWebKitWidgets/qgraphicswebview.h
-%%QT_INCDIR%%/QtWebKitWidgets/qtwebkitwidgetsversion.h
-%%QT_INCDIR%%/QtWebKitWidgets/qwebframe.h
-%%QT_INCDIR%%/QtWebKitWidgets/qwebinspector.h
-%%QT_INCDIR%%/QtWebKitWidgets/qwebpage.h
-%%QT_INCDIR%%/QtWebKitWidgets/qwebview.h
-%%QT_LIBDIR%%/cmake/Qt5WebKit/Qt5WebKitConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5WebKit/Qt5WebKitConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5WebKitWidgets/Qt5WebKitWidgetsConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5WebKitWidgets/Qt5WebKitWidgetsConfigVersion.cmake
-%%QT_LIBDIR%%/libQt5WebKit.prl
-%%QT_LIBDIR%%/libQt5WebKit.so
-%%QT_LIBDIR%%/libQt5WebKit.so.5
-%%QT_LIBDIR%%/libQt5WebKit.so.%%SHORTVER%%
-%%QT_LIBDIR%%/libQt5WebKit.so.%%FULLVER%%
-%%DEBUG%%%%QT_LIBDIR%%/libQt5WebKit.so.%%FULLVER%%.debug
-%%QT_LIBDIR%%/libQt5WebKitWidgets.prl
-%%QT_LIBDIR%%/libQt5WebKitWidgets.so
-%%QT_LIBDIR%%/libQt5WebKitWidgets.so.5
-%%QT_LIBDIR%%/libQt5WebKitWidgets.so.%%SHORTVER%%
-%%QT_LIBDIR%%/libQt5WebKitWidgets.so.%%FULLVER%%
-%%DEBUG%%%%QT_LIBDIR%%/libQt5WebKitWidgets.so.%%FULLVER%%.debug
-%%QT_MKSPECDIR%%/modules/qt_lib_webkit.pri
-%%QT_MKSPECDIR%%/modules/qt_lib_webkit_private.pri
-%%QT_MKSPECDIR%%/modules/qt_lib_webkitwidgets.pri
-%%QT_MKSPECDIR%%/modules/qt_lib_webkitwidgets_private.pri
-%%QT_QMLDIR%%/QtWebKit/experimental/libqmlwebkitexperimentalplugin.so
-%%QT_QMLDIR%%/QtWebKit/experimental/qmldir
-%%QT_QMLDIR%%/QtWebKit/libqmlwebkitplugin.so
-%%QT_QMLDIR%%/QtWebKit/plugins.qmltypes
-%%QT_QMLDIR%%/QtWebKit/qmldir
-libdata/pkgconfig/Qt5WebKit.pc
-libdata/pkgconfig/Qt5WebKitWidgets.pc
-%%QT_LIBEXECDIR%%/QtWebPluginProcess
-%%QT_LIBEXECDIR%%/QtWebProcess
Property changes on: head/www/webkit-qt5/pkg-plist
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/Makefile
===================================================================
--- head/www/webkit-qt5/Makefile (revision 434379)
+++ head/www/webkit-qt5/Makefile (nonexistent)
@@ -1,81 +0,0 @@
-# $FreeBSD$
-
-PORTNAME= webkit
-DISTVERSION= ${QT5_VERSION}
-PORTREVISION= 2
-CATEGORIES= www
-MASTER_SITE_SUBDIR= community_releases/${QT5_VERSION:R}/${QT5_VERSION}/
-PKGNAMEPREFIX= qt5-
-
-MAINTAINER= kde@FreeBSD.org
-COMMENT= Qt WebKit implementation
-
-LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
- libicui18n.so:devel/icu \
- libleveldb.so:databases/leveldb \
- libpng.so:graphics/png \
- libwebp.so:graphics/webp
-BUILD_DEPENDS= ${LOCALBASE}/bin/flex:textproc/flex
-
-DISTINFO_FILE= ${MASTERDIR}/distinfo
-
-BROKEN_sparc64= cannot build: uses i386 assembler
-
-USE_GL= gl
-USE_GNOME= libxml2 libxslt
-USE_PERL5= build
-USE_QT5= core gui network opengl printsupport qml quick sql \
- widgets buildtools_build
-QT_DIST= ${PORTNAME}
-USE_RUBY= yes
-RUBY_NO_RUN_DEPENDS= yes
-USE_XORG= x11 xcomposite xrender
-USES= bison gperf jpeg perl5 pkgconfig python:build qmake:outsource \
- sqlite
-# Use flex(1) from ports.
-MAKE_ENV= PATH="${LOCALBASE}/bin:${PATH}"
-# "all" builds many more targets. The default one is called "first" in
-# QtWebKit, and is invoked by default when make is called without arguments.
-ALL_TARGET= first
-USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
-
-QT_DEFINES= ACCESSIBILITY
-QT_CONFIG= accessibility accessibility-atspi-bridge
-
-OPTIONS_DEFINE= GSTREAMER
-OPTIONS_DEFAULT=GSTREAMER
-
-GSTREAMER_USE= GNOME=glib20 GSTREAMER1=yes
-
-.include <bsd.port.pre.mk>
-
-# Base ld(1) segfaults on PowerPC (inherited from Qt 4):
-# http://bugs.freebsd.org/173042
-.if ${ARCH} == "powerpc"
-BUILD_DEPENDS+= ${LOCALBASE}/bin/ld:devel/binutils
-.endif
-
-post-patch:
- ${REINPLACE_CMD} -e 's,python,${PYTHON_VERSION},g' \
- -e 's,$$$${PYTHON},${PYTHON_VERSION},g' \
- ${WRKSRC}/Source/WebCore/DerivedSources.make \
- ${WRKSRC}/Source/WebCore/DerivedSources.pri \
- ${WRKSRC}/Source/WebKit2/DerivedSources.make \
- ${WRKSRC}/Source/WebKit2/DerivedSources.pri \
- ${WRKSRC}/Source/JavaScriptCore/DerivedSources.make \
- ${WRKSRC}/Source/JavaScriptCore/DerivedSources.pri \
- ${WRKSRC}/Tools/qmake/mkspecs/features/configure.prf
-
-pre-configure:
- @${REINPLACE_CMD} -Ee 's|linux-?\*|unix|g' \
- ${WRKSRC}/Source/JavaScriptCore/DerivedSources.pri \
- ${WRKSRC}/Source/JavaScriptCore/JavaScriptCore.pri \
- ${WRKSRC}/Source/JavaScriptCore/Target.pri \
- ${WRKSRC}/Source/WebCore/WebCore.pri \
- ${WRKSRC}/Tools/qmake/mkspecs/features/features.prf
-.if ! ${PORT_OPTIONS:MGSTREAMER}
- @${REINPLACE_CMD} -e 's|packagesExist.*gstreamer.*|false {|' \
- ${WRKSRC}/Tools/qmake/mkspecs/features/features.prf
-.endif
-
-.include <bsd.port.post.mk>
Property changes on: head/www/webkit-qt5/Makefile
___________________________________________________________________
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-FreeBSD=%H
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_libXcomposite_libXcomposite.pro
===================================================================
--- head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_libXcomposite_libXcomposite.pro (revision 434379)
+++ head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_libXcomposite_libXcomposite.pro (nonexistent)
@@ -1,12 +0,0 @@
-Setting OBJECTS_DIR to "obj" causes problems with make(1), as "obj" is one of
-the directories make tries to enter in case it exists (because of .OBJDIR).
-Since qmake will create it because of OBJECTS_DIR, make will invoke the
-compiler from there and fail because it's trying to pass "-o obj/foo.o" while
-already in obj/.
-
---- Tools/qmake/config.tests/libXcomposite/libXcomposite.pro.orig 2016-09-26 14:56:58 UTC
-+++ Tools/qmake/config.tests/libXcomposite/libXcomposite.pro
-@@ -1,3 +1,2 @@
- SOURCES = libXcomposite.cpp
--OBJECTS_DIR = obj
- LIBS += -lXcomposite -lX11
Property changes on: head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_libXcomposite_libXcomposite.pro
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Source__QtWebKit.pro
===================================================================
--- head/www/webkit-qt5/files/patch-Source__QtWebKit.pro (revision 434379)
+++ head/www/webkit-qt5/files/patch-Source__QtWebKit.pro (nonexistent)
@@ -1,17 +0,0 @@
-Do not go into the examples/ directory, which contains only platformplugin/.
-
-Even though it is not part of the default target, it is included in `make
-install', and platformplugin's .pro file has a DESTDIR setting that causes the
-file system to be touched even though there is nothing to build or install.
---- Source/QtWebKit.pro
-+++ Source/QtWebKit.pro
-@@ -38,9 +38,4 @@ build?(webkit1) {
- tests.file = tests.pri
- SUBDIRS += tests
- }
--
-- examples.file = WebKit/qt/examples/examples.pro
-- examples.CONFIG += no_default_target
-- examples.makefile = Makefile
-- SUBDIRS += examples
- }
Property changes on: head/www/webkit-qt5/files/patch-Source__QtWebKit.pro
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurfaceToken.h
===================================================================
--- head/www/webkit-qt5/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurfaceToken.h (revision 434379)
+++ head/www/webkit-qt5/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurfaceToken.h (nonexistent)
@@ -1,11 +0,0 @@
---- ./Source/WebCore/platform/graphics/surfaces/GraphicsSurfaceToken.h.orig 2012-12-18 20:04:31.000000000 +0100
-+++ ./Source/WebCore/platform/graphics/surfaces/GraphicsSurfaceToken.h 2012-12-28 13:02:03.566975217 +0100
-@@ -35,7 +35,7 @@
-
- #if OS(DARWIN)
- typedef mach_port_t BufferHandle;
--#elif OS(LINUX)
-+#elif OS(LINUX) || OS(FREEBSD)
- typedef uint32_t BufferHandle;
- #elif OS(WINDOWS)
- typedef HANDLE BufferHandle;
Property changes on: head/www/webkit-qt5/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurfaceToken.h
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Source_JavaScriptCore_disassembler_udis86_ud_opcode.py
===================================================================
--- head/www/webkit-qt5/files/patch-Source_JavaScriptCore_disassembler_udis86_ud_opcode.py (revision 434379)
+++ head/www/webkit-qt5/files/patch-Source_JavaScriptCore_disassembler_udis86_ud_opcode.py (nonexistent)
@@ -1,15 +0,0 @@
---- Source/JavaScriptCore/disassembler/udis86/ud_opcode.py.bak 2016-09-09 23:35:32.000000000 +1000
-+++ Source/JavaScriptCore/disassembler/udis86/ud_opcode.py 2016-12-24 18:52:06.065571000 +1000
-@@ -115,9 +115,9 @@
- '/mod' : lambda v: '00' if v == '!11' else '01',
- # Mode extensions:
- # (16, 32, 64) => (00, 01, 02)
-- '/o' : lambda v: "%02x" % (int(v) / 32),
-- '/a' : lambda v: "%02x" % (int(v) / 32),
-- '/m' : lambda v: "%02x" % (int(v) / 32),
-+ '/o' : lambda v: "%02x" % (int(v) // 32),
-+ '/a' : lambda v: "%02x" % (int(v) // 32),
-+ '/m' : lambda v: "%02x" % (int(v) // 32),
- '/sse' : lambda v: UdOpcodeTables.OpcExtIndex['sse'][v]
- }
-
Property changes on: head/www/webkit-qt5/files/patch-Source_JavaScriptCore_disassembler_udis86_ud_opcode.py
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_libXrender_libXrender.pro
===================================================================
--- head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_libXrender_libXrender.pro (revision 434379)
+++ head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_libXrender_libXrender.pro (nonexistent)
@@ -1,12 +0,0 @@
-Setting OBJECTS_DIR to "obj" causes problems with make(1), as "obj" is one of
-the directories make tries to enter in case it exists (because of .OBJDIR).
-Since qmake will create it because of OBJECTS_DIR, make will invoke the
-compiler from there and fail because it's trying to pass "-o obj/foo.o" while
-already in obj/.
-
---- Tools/qmake/config.tests/libXrender/libXrender.pro.orig 2016-09-26 14:56:47 UTC
-+++ Tools/qmake/config.tests/libXrender/libXrender.pro
-@@ -1,3 +1,2 @@
- SOURCES = libXrender.cpp
--OBJECTS_DIR = obj
- LIBS += -lXrender -lX11
Property changes on: head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_libXrender_libXrender.pro
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Source__JavaScriptCore__runtime__JSCJSValueInlines.h
===================================================================
--- head/www/webkit-qt5/files/patch-Source__JavaScriptCore__runtime__JSCJSValueInlines.h (revision 434379)
+++ head/www/webkit-qt5/files/patch-Source__JavaScriptCore__runtime__JSCJSValueInlines.h (nonexistent)
@@ -1,26 +0,0 @@
---- ./Source/JavaScriptCore/runtime/JSCJSValueInlines.h.orig 2013-10-22 01:49:45.000000000 -0700
-+++ ./Source/JavaScriptCore/runtime/JSCJSValueInlines.h 2013-11-08 00:51:34.238960064 -0800
-@@ -198,7 +198,11 @@
- u.asBits.tag = CellTag;
- else
- u.asBits.tag = EmptyValueTag;
-+#if defined(__sparc64__)
-+ u.asBits.payload = reinterpret_cast<int64_t>(ptr);
-+#else
- u.asBits.payload = reinterpret_cast<int32_t>(ptr);
-+#endif
- }
-
- inline JSValue::JSValue(const JSCell* ptr)
-@@ -207,7 +211,11 @@
- u.asBits.tag = CellTag;
- else
- u.asBits.tag = EmptyValueTag;
-+#if defined(__sparc64__)
-+ u.asBits.payload = reinterpret_cast<int64_t>(const_cast<JSCell*>(ptr));
-+#else
- u.asBits.payload = reinterpret_cast<int32_t>(const_cast<JSCell*>(ptr));
-+#endif
- }
-
- inline JSValue::operator bool() const
Property changes on: head/www/webkit-qt5/files/patch-Source__JavaScriptCore__runtime__JSCJSValueInlines.h
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Source_WebCore_platform_leveldb_LevelDBDatabase.cpp
===================================================================
--- head/www/webkit-qt5/files/patch-Source_WebCore_platform_leveldb_LevelDBDatabase.cpp (revision 434379)
+++ head/www/webkit-qt5/files/patch-Source_WebCore_platform_leveldb_LevelDBDatabase.cpp (nonexistent)
@@ -1,13 +0,0 @@
-databases/leveldb installs the memenv.h header into a different location.
-
---- Source/WebCore/platform/leveldb/LevelDBDatabase.cpp.orig 2016-09-26 15:03:55 UTC
-+++ Source/WebCore/platform/leveldb/LevelDBDatabase.cpp
-@@ -38,7 +38,7 @@
- #include <leveldb/comparator.h>
- #include <leveldb/db.h>
- #include <leveldb/env.h>
--#include <helpers/memenv/memenv.h>
-+#include <memenv/memenv.h>
- #include <leveldb/slice.h>
- #include <string>
- #include <wtf/PassOwnPtr.h>
Property changes on: head/www/webkit-qt5/files/patch-Source_WebCore_platform_leveldb_LevelDBDatabase.cpp
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurface.h
===================================================================
--- head/www/webkit-qt5/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurface.h (revision 434379)
+++ head/www/webkit-qt5/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurface.h (nonexistent)
@@ -1,11 +0,0 @@
---- ./Source/WebCore/platform/graphics/surfaces/GraphicsSurface.h.orig 2012-12-18 20:04:31.000000000 +0100
-+++ ./Source/WebCore/platform/graphics/surfaces/GraphicsSurface.h 2012-12-28 13:00:05.846909692 +0100
-@@ -36,7 +36,7 @@
- typedef IOSurfaceRef PlatformGraphicsSurface;
- #endif
-
--#if OS(LINUX)
-+#if OS(LINUX) || OS(FREEBSD)
- typedef uint32_t PlatformGraphicsSurface;
- #endif
-
Property changes on: head/www/webkit-qt5/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurface.h
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_leveldb_leveldb.cpp
===================================================================
--- head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_leveldb_leveldb.cpp (revision 434379)
+++ head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_leveldb_leveldb.cpp (nonexistent)
@@ -1,13 +0,0 @@
-databases/leveldb installs the memenv.h header into a different location.
-
---- Tools/qmake/config.tests/leveldb/leveldb.cpp.orig 2016-09-26 15:03:32 UTC
-+++ Tools/qmake/config.tests/leveldb/leveldb.cpp
-@@ -19,7 +19,7 @@
-
- #include <leveldb/db.h>
- #include <leveldb/env.h>
--#include <helpers/memenv/memenv.h>
-+#include <memenv/memenv.h>
-
- int main(int, char**)
- {
Property changes on: head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_leveldb_leveldb.cpp
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Source_JavaScriptCore_assembler_ARMAssembler.h
===================================================================
--- head/www/webkit-qt5/files/patch-Source_JavaScriptCore_assembler_ARMAssembler.h (revision 434379)
+++ head/www/webkit-qt5/files/patch-Source_JavaScriptCore_assembler_ARMAssembler.h (nonexistent)
@@ -1,11 +0,0 @@
---- Source/JavaScriptCore/assembler/ARMAssembler.h
-+++ Source/JavaScriptCore/assembler/ARMAssembler.h
-@@ -1064,6 +1064,8 @@
- linuxPageFlush(current, end);
- #elif OS(WINCE)
- CacheRangeFlush(code, size, CACHE_SYNC_ALL);
-+#elif CPU(ARM_TRADITIONAL) && OS(FREEBSD) && COMPILER(CLANG)
-+ __clear_cache(code, reinterpret_cast<char*>(code) + size);
- #elif OS(QNX) && ENABLE(ASSEMBLER_WX_EXCLUSIVE)
- UNUSED_PARAM(code);
- UNUSED_PARAM(size);
Property changes on: head/www/webkit-qt5/files/patch-Source_JavaScriptCore_assembler_ARMAssembler.h
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Source__WebCore__page__NavigatorBase.cpp
===================================================================
--- head/www/webkit-qt5/files/patch-Source__WebCore__page__NavigatorBase.cpp (revision 434379)
+++ head/www/webkit-qt5/files/patch-Source__WebCore__page__NavigatorBase.cpp (nonexistent)
@@ -1,20 +0,0 @@
---- ./Source/WebCore/page/NavigatorBase.cpp.orig 2012-12-18 20:04:33.000000000 +0100
-+++ ./Source/WebCore/page/NavigatorBase.cpp 2013-01-07 04:01:53.177339022 +0100
-@@ -30,7 +30,7 @@
- #include "NetworkStateNotifier.h"
- #include <wtf/text/WTFString.h>
-
--#if OS(LINUX)
-+#if OS(LINUX) || OS(FREEBSD)
- #include "sys/utsname.h"
- #include <wtf/StdLibExtras.h>
- #endif
-@@ -86,7 +86,7 @@
-
- String NavigatorBase::platform() const
- {
--#if OS(LINUX)
-+#if OS(LINUX) || OS(FREEBSD)
- if (!String(WEBCORE_NAVIGATOR_PLATFORM).isEmpty())
- return WEBCORE_NAVIGATOR_PLATFORM;
- struct utsname osname;
Property changes on: head/www/webkit-qt5/files/patch-Source__WebCore__page__NavigatorBase.cpp
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_leveldb_leveldb.pro
===================================================================
--- head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_leveldb_leveldb.pro (revision 434379)
+++ head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_leveldb_leveldb.pro (nonexistent)
@@ -1,14 +0,0 @@
-Setting OBJECTS_DIR to "obj" causes problems with make(1), as "obj" is one of
-the directories make tries to enter in case it exists (because of .OBJDIR).
-Since qmake will create it because of OBJECTS_DIR, make will invoke the
-compiler from there and fail because it's trying to pass "-o obj/foo.o" while
-already in obj/.
-
---- Tools/qmake/config.tests/leveldb/leveldb.pro.orig 2016-09-26 14:57:15 UTC
-+++ Tools/qmake/config.tests/leveldb/leveldb.pro
-@@ -1,5 +1,4 @@
- SOURCES = leveldb.cpp
--OBJECTS_DIR = obj
- LIBS += -lleveldb -lmemenv
-
- load(qt_build_config)
Property changes on: head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_leveldb_leveldb.pro
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_glx_glx.pro
===================================================================
--- head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_glx_glx.pro (revision 434379)
+++ head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_glx_glx.pro (nonexistent)
@@ -1,13 +0,0 @@
-Setting OBJECTS_DIR to "obj" causes problems with make(1), as "obj" is one of
-the directories make tries to enter in case it exists (because of .OBJDIR).
-Since qmake will create it because of OBJECTS_DIR, make will invoke the
-compiler from there and fail because it's trying to pass "-o obj/foo.o" while
-already in obj/.
-
---- Tools/qmake/config.tests/glx/glx.pro.orig 2016-09-26 14:56:31 UTC
-+++ Tools/qmake/config.tests/glx/glx.pro
-@@ -1,4 +1,3 @@
- SOURCES = glx.cpp
--OBJECTS_DIR = obj
- LIBS += -lX11 -lGL
-
Property changes on: head/www/webkit-qt5/files/patch-Tools_qmake_config.tests_glx_glx.pro
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/www/Makefile
===================================================================
--- head/www/Makefile (revision 434379)
+++ head/www/Makefile (revision 434380)
@@ -1,2480 +1,2480 @@
# $FreeBSD$
#
COMMENT = Ports related to the World Wide Web
SUBDIR += R-cran-RgoogleMaps
SUBDIR += R-cran-htmlwidgets
SUBDIR += R-cran-httpuv
SUBDIR += R-cran-httr
SUBDIR += R-cran-rvest
SUBDIR += R-cran-scrapeR
SUBDIR += R-cran-selectr
SUBDIR += R-cran-shiny
SUBDIR += WebMagick
SUBDIR += ach
SUBDIR += adzap
SUBDIR += alef-webfont
SUBDIR += amphetadesk
SUBDIR += analog
SUBDIR += anyremote2html
SUBDIR += anyterm
SUBDIR += apache-forrest
SUBDIR += apache-mode.el
SUBDIR += apache22
SUBDIR += apache22-event-mpm
SUBDIR += apache22-itk-mpm
SUBDIR += apache22-peruser-mpm
SUBDIR += apache22-worker-mpm
SUBDIR += apache24
SUBDIR += apercu
SUBDIR += aria2
SUBDIR += aria2fe
SUBDIR += arora
SUBDIR += asql
SUBDIR += asterisk-stat
SUBDIR += atutor
SUBDIR += august
SUBDIR += awffull
SUBDIR += aws
SUBDIR += aws-demos
SUBDIR += awstats
SUBDIR += axis
SUBDIR += axis2
SUBDIR += b2evolution
SUBDIR += bacula-web
SUBDIR += baikal
SUBDIR += bareos-webui
SUBDIR += bblog
SUBDIR += bigbluebutton
SUBDIR += bins
SUBDIR += bkmrkconv
SUBDIR += blastbeat
SUBDIR += blogsum
SUBDIR += bluefish
SUBDIR += boa
SUBDIR += bolt
SUBDIR += bookmarkbridge
SUBDIR += bozohttpd
SUBDIR += butterfly
SUBDIR += c-icap
SUBDIR += c-icap-modules
SUBDIR += cadaver
SUBDIR += calamaris
SUBDIR += calamaris-devel
SUBDIR += caldavzap
SUBDIR += calendarserver
SUBDIR += castget
SUBDIR += caudium14
SUBDIR += cblog
SUBDIR += cgi-lib
SUBDIR += cgi-lib.pl
SUBDIR += cgicc
SUBDIR += cgichk
SUBDIR += cgihtml
SUBDIR += cgiparse
SUBDIR += cgiwrap
SUBDIR += checkbot
SUBDIR += chems
SUBDIR += cherokee
SUBDIR += choqok
SUBDIR += chpasswd
SUBDIR += chromium
SUBDIR += ckeditor
SUBDIR += cl-lml
SUBDIR += cl-lml-sbcl
SUBDIR += claroline
SUBDIR += clearsilver
SUBDIR += clearsilver-python
SUBDIR += closure-compiler
SUBDIR += closure-linter
SUBDIR += cmsmadesimple
SUBDIR += cntlm
SUBDIR += cocoon
SUBDIR += codeigniter
SUBDIR += coppermine
SUBDIR += cplanet
SUBDIR += cppcms
SUBDIR += crawl
SUBDIR += crp
SUBDIR += css-mode.el
SUBDIR += cssed
SUBDIR += csso
SUBDIR += csstidy
SUBDIR += ctemplate
SUBDIR += cutycapt
SUBDIR += dalbum
SUBDIR += davical
SUBDIR += dddbl
SUBDIR += decss
SUBDIR += deforaos-surfer
SUBDIR += demoroniser
SUBDIR += dfileserver
SUBDIR += dhttpd
SUBDIR += dillo2
SUBDIR += dojo
SUBDIR += dojo-shrinksafe
SUBDIR += dokuwiki
SUBDIR += domoticz
SUBDIR += dotproject
SUBDIR += drood
SUBDIR += drraw
SUBDIR += drupal7
SUBDIR += drupal7-wysiwyg
SUBDIR += drupal8
SUBDIR += drush
SUBDIR += dtse
SUBDIR += dummyflash
SUBDIR += e107
SUBDIR += e2guardian
SUBDIR += edbrowse
SUBDIR += efront
SUBDIR += elgg
SUBDIR += elinks
SUBDIR += elixir-html_entities
SUBDIR += elixir-httpoison
SUBDIR += elixir-httpotion
SUBDIR += elixir-joken
SUBDIR += elixir-maru
SUBDIR += elixir-phoenix
SUBDIR += elixir-phoenix_ecto
SUBDIR += elixir-phoenix_html
SUBDIR += elixir-phoenix_pubsub
SUBDIR += elixir-webassembly
SUBDIR += emacs-w3m
SUBDIR += encode-explorer
SUBDIR += entrans
SUBDIR += ephemera
SUBDIR += epiphany
SUBDIR += erlang-cowboy
SUBDIR += erlang-cowlib
SUBDIR += erlang-hackney
SUBDIR += erlang-ibrowse
SUBDIR += erlang-mochiweb
SUBDIR += erlang-mochiweb-basho
SUBDIR += erlang-webmachine
SUBDIR += erwn
SUBDIR += eventum
SUBDIR += extjs
SUBDIR += fabio
SUBDIR += fancybox
SUBDIR += faup
SUBDIR += fcgi
SUBDIR += fcgiwrap
SUBDIR += feedjack
SUBDIR += feedonfeeds
SUBDIR += ffproxy
SUBDIR += fira-webfont
SUBDIR += firefox
SUBDIR += firefox-esr
SUBDIR += firefox-esr-i18n
SUBDIR += firefox-i18n
SUBDIR += flashplayer
SUBDIR += flat-frog
SUBDIR += flickcurl
SUBDIR += flood
SUBDIR += flot
SUBDIR += fluxbb
SUBDIR += fnord
SUBDIR += formication
SUBDIR += foswiki
SUBDIR += fpc-fastcgi
SUBDIR += fpc-httpd22
SUBDIR += fpc-httpd24
SUBDIR += free-sa-devel
SUBDIR += freeway
SUBDIR += fswiki
SUBDIR += ftasv
SUBDIR += g-cows
SUBDIR += g-gcl
SUBDIR += gaeo
SUBDIR += gaeutilities
SUBDIR += gallery2
SUBDIR += gallery3
SUBDIR += gatling
SUBDIR += gecko-mediaplayer
SUBDIR += geeklog
SUBDIR += geeknote
SUBDIR += geneweb
SUBDIR += geolizer
SUBDIR += geronimo
SUBDIR += get_flash_videos
SUBDIR += getleft
SUBDIR += gist
SUBDIR += gitea
SUBDIR += gitlab
SUBDIR += gitlab-workhorse
SUBDIR += glassfish
SUBDIR += glpi
SUBDIR += gnome-user-share
SUBDIR += gnome-web-photo
SUBDIR += go-www
SUBDIR += gohugo
SUBDIR += google-appengine
SUBDIR += google-sitemapgen
SUBDIR += googlebook_dl
SUBDIR += googler
SUBDIR += goose
SUBDIR += gotty
SUBDIR += gpx2map
SUBDIR += grafana
SUBDIR += grafana2
SUBDIR += grafana3
SUBDIR += grafana4
SUBDIR += grails
SUBDIR += graylog-web-interface
SUBDIR += gregarius
SUBDIR += groupoffice
SUBDIR += grr
SUBDIR += gstreamer-plugins-neon
SUBDIR += gstreamer1-plugins-neon
SUBDIR += gtkhtml3
SUBDIR += gtkhtml4
SUBDIR += guacamole-client
SUBDIR += guile-www
SUBDIR += gurlchecker
SUBDIR += h2o
SUBDIR += habari
SUBDIR += hastymail
SUBDIR += hastymail2
SUBDIR += hastymail2-devel
SUBDIR += havp
SUBDIR += helma
SUBDIR += hiawatha
SUBDIR += hinventory-client
SUBDIR += horde-ansel
SUBDIR += horde-base
SUBDIR += horde-passwd
SUBDIR += horde-trean
SUBDIR += horde-wicked
SUBDIR += hotcrp
SUBDIR += hs-DAV
SUBDIR += hs-HTTP
SUBDIR += hs-activehs
SUBDIR += hs-authenticate
SUBDIR += hs-cgi
SUBDIR += hs-cookie
SUBDIR += hs-css-text
SUBDIR += hs-fastcgi
SUBDIR += hs-gitit
SUBDIR += hs-hS3
SUBDIR += hs-happstack
SUBDIR += hs-happstack-server
SUBDIR += hs-heist
SUBDIR += hs-hjsmin
SUBDIR += hs-http-client
SUBDIR += hs-http-client-tls
SUBDIR += hs-http-conduit
SUBDIR += hs-http-date
SUBDIR += hs-http-reverse-proxy
SUBDIR += hs-http-server
SUBDIR += hs-http-types
SUBDIR += hs-http2
SUBDIR += hs-multipart
SUBDIR += hs-oeis
SUBDIR += hs-path-pieces
SUBDIR += hs-recaptcha
SUBDIR += hs-shakespeare
SUBDIR += hs-snap
SUBDIR += hs-snap-core
SUBDIR += hs-snap-server
SUBDIR += hs-url
SUBDIR += hs-wai
SUBDIR += hs-wai-app-static
SUBDIR += hs-wai-extra
SUBDIR += hs-wai-logger
SUBDIR += hs-warp
SUBDIR += hs-warp-tls
SUBDIR += hs-webkit
SUBDIR += hs-xss-sanitize
SUBDIR += hs-yesod
SUBDIR += hs-yesod-auth
SUBDIR += hs-yesod-auth-hashdb
SUBDIR += hs-yesod-bin
SUBDIR += hs-yesod-core
SUBDIR += hs-yesod-form
SUBDIR += hs-yesod-persistent
SUBDIR += hs-yesod-static
SUBDIR += hs-yesod-test
SUBDIR += htdigest
SUBDIR += htdump
SUBDIR += html2hdml
SUBDIR += html2wml
SUBDIR += htmlcompressor
SUBDIR += htmlcxx
SUBDIR += htmlpp
SUBDIR += httest
SUBDIR += http-analyze
SUBDIR += http_get
SUBDIR += http_load
SUBDIR += http_post
SUBDIR += httpasyncclient
SUBDIR += httpclient
SUBDIR += httpcore
SUBDIR += httpsqs
SUBDIR += httptunnel
SUBDIR += httrack
SUBDIR += hypermail
SUBDIR += igal2
SUBDIR += ikiwiki
SUBDIR += ilias
SUBDIR += imgsizer
SUBDIR += impresscms
SUBDIR += interchange
SUBDIR += itop
SUBDIR += iwebcal
SUBDIR += jdresolve
SUBDIR += jericho-html
SUBDIR += jesred
SUBDIR += jetty8
SUBDIR += jetty9
SUBDIR += jinzora
SUBDIR += jmeter
SUBDIR += joomla3
SUBDIR += jspacker
SUBDIR += jspwiki
SUBDIR += jtoolkit
SUBDIR += junkbuster
SUBDIR += kanboard
SUBDIR += kannel
SUBDIR += kannel-sqlbox
SUBDIR += kcgi
SUBDIR += kdewebdev4
SUBDIR += kf5-kdewebkit
SUBDIR += kf5-khtml
SUBDIR += kf5-kjs
SUBDIR += kf5-kjsembed
SUBDIR += kohana
SUBDIR += kpartsplugin
SUBDIR += kplaylist
SUBDIR += kwebkitpart
SUBDIR += larbin
SUBDIR += lessc
SUBDIR += libapreq2
SUBDIR += libdom
SUBDIR += libecap
SUBDIR += libepc
SUBDIR += libevhtp
SUBDIR += libgtkhtml
SUBDIR += libhpack
SUBDIR += libhtp-suricata
SUBDIR += libhubbub
SUBDIR += libjwt
SUBDIR += libmicrohttpd
SUBDIR += libnghttp2
SUBDIR += libsocialweb
SUBDIR += libwww
SUBDIR += libxul
SUBDIR += lightsquid
SUBDIR += lighttpd
SUBDIR += lighttpd-mod_h264_streaming
SUBDIR += lilurl
SUBDIR += limesurvey
SUBDIR += linkcheck
SUBDIR += linkchecker
SUBDIR += linklint
SUBDIR += links
SUBDIR += links-hacked
SUBDIR += links1
SUBDIR += linux-c6-qt47-webkit
SUBDIR += linux-c7-qtwebkit
SUBDIR += linux-firefox
SUBDIR += linux-flashplayer
SUBDIR += linux-opera
SUBDIR += linux-seamonkey
SUBDIR += lionwiki
SUBDIR += litmus
SUBDIR += ljdeps
SUBDIR += ljdump
SUBDIR += llgal
SUBDIR += logtools
SUBDIR += luakit
SUBDIR += lynx
SUBDIR += lynx-current
SUBDIR += madsonic
SUBDIR += madsonic-standalone
SUBDIR += magento
SUBDIR += mahara
SUBDIR += man2web
SUBDIR += mathjax
SUBDIR += mathopd
SUBDIR += mediawiki123
SUBDIR += mediawiki126
SUBDIR += mediawiki127
SUBDIR += mediawiki128
SUBDIR += mergelog
SUBDIR += mgstat
SUBDIR += mhonarc
SUBDIR += micro_httpd
SUBDIR += middleman
SUBDIR += midori
SUBDIR += mimetex
SUBDIR += mini_httpd
SUBDIR += miniminiweb
SUBDIR += minio
SUBDIR += minio-client
SUBDIR += mitmproxy
SUBDIR += mkapachepw
SUBDIR += mknmz-wwwoffle
SUBDIR += mnogosearch
SUBDIR += mod_amazon_proxy
SUBDIR += mod_antiloris
SUBDIR += mod_asn
SUBDIR += mod_auth_cas
SUBDIR += mod_auth_cookie_mysql2
SUBDIR += mod_auth_external2
SUBDIR += mod_auth_gssapi
SUBDIR += mod_auth_imap2
SUBDIR += mod_auth_kerb2
SUBDIR += mod_auth_mysql2
SUBDIR += mod_auth_mysql_another
SUBDIR += mod_auth_openid
SUBDIR += mod_auth_pam2
SUBDIR += mod_auth_pgsql2
SUBDIR += mod_auth_pubtkt
SUBDIR += mod_auth_tkt
SUBDIR += mod_auth_xradius
SUBDIR += mod_authn_otp
SUBDIR += mod_authn_sasl
SUBDIR += mod_authnz_crowd
SUBDIR += mod_authnz_external22
SUBDIR += mod_authnz_external24
SUBDIR += mod_authz_unixgroup22
SUBDIR += mod_authz_unixgroup24
SUBDIR += mod_backtrace
SUBDIR += mod_bw
SUBDIR += mod_cband
SUBDIR += mod_cfg_ldap
SUBDIR += mod_chroot
SUBDIR += mod_clamav
SUBDIR += mod_cloudflare
SUBDIR += mod_cvs2
SUBDIR += mod_dav_svn
SUBDIR += mod_dnssd
SUBDIR += mod_domaintree
SUBDIR += mod_encoding
SUBDIR += mod_evasive
SUBDIR += mod_extract_forwarded
SUBDIR += mod_fastcgi
SUBDIR += mod_fcgid
SUBDIR += mod_fileiri
SUBDIR += mod_flickr
SUBDIR += mod_geoip2
SUBDIR += mod_gzip2
SUBDIR += mod_h264_streaming
SUBDIR += mod_hosts_access
SUBDIR += mod_http2-devel
SUBDIR += mod_jail
SUBDIR += mod_jk
SUBDIR += mod_layout22
SUBDIR += mod_limitipconn2
SUBDIR += mod_line_edit
SUBDIR += mod_log_config-st
SUBDIR += mod_log_firstbyte
SUBDIR += mod_log_mysql
SUBDIR += mod_log_sql2
SUBDIR += mod_log_sql2-dtc
SUBDIR += mod_macro22
SUBDIR += mod_memcache
SUBDIR += mod_memcache_block
SUBDIR += mod_mono
SUBDIR += mod_mpm_itk
SUBDIR += mod_musicindex
SUBDIR += mod_myvhost
SUBDIR += mod_ntlm2
SUBDIR += mod_perl2
SUBDIR += mod_php56
SUBDIR += mod_php70
SUBDIR += mod_php71
SUBDIR += mod_proctitle
SUBDIR += mod_proxy_html
SUBDIR += mod_proxy_uwsgi
SUBDIR += mod_proxy_xml
SUBDIR += mod_python33
SUBDIR += mod_python35
SUBDIR += mod_qos
SUBDIR += mod_realdoc
SUBDIR += mod_remoteip
SUBDIR += mod_reproxy
SUBDIR += mod_rivet
SUBDIR += mod_rpaf2
SUBDIR += mod_scgi
SUBDIR += mod_security
SUBDIR += mod_setenvifplus
SUBDIR += mod_spdy
SUBDIR += mod_tidy
SUBDIR += mod_tsa
SUBDIR += mod_uid
SUBDIR += mod_umask
SUBDIR += mod_vhost_ldap
SUBDIR += mod_vhs
SUBDIR += mod_webauth
SUBDIR += mod_webkit
SUBDIR += mod_whatkilledus
SUBDIR += mod_wsgi4
SUBDIR += mod_xml2enc
SUBDIR += mod_xmlns
SUBDIR += mod_xsendfile
SUBDIR += mohawk
SUBDIR += moinmoin
SUBDIR += monast
SUBDIR += mongoose
SUBDIR += mongrel2
SUBDIR += moodle29
SUBDIR += moodle30
SUBDIR += moodle31
SUBDIR += moodle32
SUBDIR += mozplugger
SUBDIR += multisort
SUBDIR += multiwatch
SUBDIR += mybb
SUBDIR += myfaces
SUBDIR += mysar
SUBDIR += mysqlphp2postgres
SUBDIR += mythplugin-mythweb
SUBDIR += nanoblogger
SUBDIR += nanoblogger-extra
SUBDIR += neon
SUBDIR += netoffice
SUBDIR += netrik
SUBDIR += netstiff
SUBDIR += netsurf
SUBDIR += newsbeuter
SUBDIR += nextcloud
SUBDIR += nghttp2
SUBDIR += nginx
SUBDIR += nginx-devel
SUBDIR += nginx-full
SUBDIR += nginx-lite
SUBDIR += nginx-naxsi
SUBDIR += nibbleblog
SUBDIR += node
SUBDIR += node012
SUBDIR += node4
SUBDIR += node6
SUBDIR += nostromo
SUBDIR += npapi-vlc
SUBDIR += npapi-xine
SUBDIR += npc
SUBDIR += npm
SUBDIR += npm012
SUBDIR += npm2
SUBDIR += npm3
SUBDIR += nspluginwrapper
SUBDIR += nuvolaplayer-8tracks
SUBDIR += nuvolaplayer-all-services
SUBDIR += nuvolaplayer-amazon-cloud-player
SUBDIR += nuvolaplayer-bandcamp
SUBDIR += nuvolaplayer-google-play-music
SUBDIR += nuvolaplayer-groove
SUBDIR += nuvolaplayer-jango
SUBDIR += nuvolaplayer-kexp
SUBDIR += nuvolaplayer-logitech-media-server
SUBDIR += nuvolaplayer-mixcloud
SUBDIR += nuvolaplayer-plex
SUBDIR += nuvolaplayer-soundcloud
SUBDIR += nuvolaplayer-spotify
SUBDIR += nuvolaplayer-tunein
SUBDIR += nuvolaplayer-yandex-music
SUBDIR += nuvolaplayer-youtube
SUBDIR += obhttpd
SUBDIR += ocaml-net
SUBDIR += offline-npm
SUBDIR += opencart
SUBDIR += openxmldir
SUBDIR += opera
SUBDIR += opera-linuxplugins
SUBDIR += orangehrm
SUBDIR += oscommerce
SUBDIR += otrs
SUBDIR += otter-browser
SUBDIR += owncloud
SUBDIR += p5-AMF-Perl
SUBDIR += p5-Acme-Monta
SUBDIR += p5-Amon2
SUBDIR += p5-Amon2-Lite
SUBDIR += p5-Amon2-Plugin-LogDispatch
SUBDIR += p5-Amon2-Plugin-Web-CSRFDefender
SUBDIR += p5-Amon2-Plugin-Web-MobileAgent
SUBDIR += p5-Any-Template
SUBDIR += p5-Any-URI-Escape
SUBDIR += p5-AnyEvent-HTTP
SUBDIR += p5-AnyEvent-HTTP-LWP-UserAgent
SUBDIR += p5-AnyEvent-HTTPD
SUBDIR += p5-AnyEvent-Mojo
SUBDIR += p5-AnyEvent-ReverseHTTP
SUBDIR += p5-AnyEvent-SCGI
SUBDIR += p5-Apache-ASP
SUBDIR += p5-Apache-Admin-Config
SUBDIR += p5-Apache-AuthCookie
SUBDIR += p5-Apache-AuthTicket
SUBDIR += p5-Apache-Clean2
SUBDIR += p5-Apache-ConfigFile
SUBDIR += p5-Apache-ConfigParser
SUBDIR += p5-Apache-DB
SUBDIR += p5-Apache-DBI
SUBDIR += p5-Apache-Gallery
SUBDIR += p5-Apache-Htgroup
SUBDIR += p5-Apache-LogFormat-Compiler
SUBDIR += p5-Apache-MP3
SUBDIR += p5-Apache-ParseFormData
SUBDIR += p5-Apache-Profiler
SUBDIR += p5-Apache-Session
SUBDIR += p5-Apache-Session-PHP
SUBDIR += p5-Apache-Session-SQLite3
SUBDIR += p5-Apache-Session-SharedMem
SUBDIR += p5-Apache-Session-Wrapper
SUBDIR += p5-Apache-SessionX
SUBDIR += p5-Apache-Singleton
SUBDIR += p5-Apache2-SiteControl
SUBDIR += p5-ApacheBench
SUBDIR += p5-App-Nopaste
SUBDIR += p5-App-gist
SUBDIR += p5-Ark
SUBDIR += p5-Bigtop
SUBDIR += p5-Blog-Spam
SUBDIR += p5-Browser-Open
SUBDIR += p5-Business-PayPal
SUBDIR += p5-CGI
SUBDIR += p5-CGI-Ajax
SUBDIR += p5-CGI-Application
SUBDIR += p5-CGI-Application-Dispatch
SUBDIR += p5-CGI-Application-Dispatch-Server
SUBDIR += p5-CGI-Application-PSGI
SUBDIR += p5-CGI-Application-Plugin-AnyTemplate
SUBDIR += p5-CGI-Application-Plugin-Apache
SUBDIR += p5-CGI-Application-Plugin-Authentication
SUBDIR += p5-CGI-Application-Plugin-Authorization
SUBDIR += p5-CGI-Application-Plugin-AutoRunmode
SUBDIR += p5-CGI-Application-Plugin-Config-YAML
SUBDIR += p5-CGI-Application-Plugin-ConfigAuto
SUBDIR += p5-CGI-Application-Plugin-DBH
SUBDIR += p5-CGI-Application-Plugin-DebugScreen
SUBDIR += p5-CGI-Application-Plugin-DevPopup
SUBDIR += p5-CGI-Application-Plugin-Forward
SUBDIR += p5-CGI-Application-Plugin-HTDot
SUBDIR += p5-CGI-Application-Plugin-HTMLPrototype
SUBDIR += p5-CGI-Application-Plugin-HtmlTidy
SUBDIR += p5-CGI-Application-Plugin-JSON
SUBDIR += p5-CGI-Application-Plugin-LinkIntegrity
SUBDIR += p5-CGI-Application-Plugin-LogDispatch
SUBDIR += p5-CGI-Application-Plugin-MessageStack
SUBDIR += p5-CGI-Application-Plugin-Redirect
SUBDIR += p5-CGI-Application-Plugin-Session
SUBDIR += p5-CGI-Application-Plugin-Stream
SUBDIR += p5-CGI-Application-Plugin-TT
SUBDIR += p5-CGI-Application-Plugin-ValidateRM
SUBDIR += p5-CGI-Application-Plugin-ViewCode
SUBDIR += p5-CGI-Application-Server
SUBDIR += p5-CGI-ArgChecker
SUBDIR += p5-CGI-Builder
SUBDIR += p5-CGI-Builder-TT2
SUBDIR += p5-CGI-Cache
SUBDIR += p5-CGI-Compile
SUBDIR += p5-CGI-Compress-Gzip
SUBDIR += p5-CGI-Cookie-Splitter
SUBDIR += p5-CGI-Cookie-XS
SUBDIR += p5-CGI-Deurl-XS
SUBDIR += p5-CGI-Emulate-PSGI
SUBDIR += p5-CGI-EncryptForm
SUBDIR += p5-CGI-Enurl
SUBDIR += p5-CGI-Ex
SUBDIR += p5-CGI-Expand
SUBDIR += p5-CGI-ExtDirect
SUBDIR += p5-CGI-FCKeditor
SUBDIR += p5-CGI-Fast
SUBDIR += p5-CGI-FastTemplate
SUBDIR += p5-CGI-FormBuilder
SUBDIR += p5-CGI-Framework
SUBDIR += p5-CGI-Kwiki
SUBDIR += p5-CGI-Minimal
SUBDIR += p5-CGI-PSGI
SUBDIR += p5-CGI-Pager
SUBDIR += p5-CGI-Prototype
SUBDIR += p5-CGI-Response
SUBDIR += p5-CGI-SSI
SUBDIR += p5-CGI-Session
SUBDIR += p5-CGI-Session-ExpireSessions
SUBDIR += p5-CGI-Simple
SUBDIR += p5-CGI-SpeedyCGI
SUBDIR += p5-CGI-Struct
SUBDIR += p5-CGI-Thin
SUBDIR += p5-CGI-Untaint
SUBDIR += p5-CGI-Untaint-date
SUBDIR += p5-CGI-Untaint-email
SUBDIR += p5-CGI-Upload
SUBDIR += p5-CGI-Utils
SUBDIR += p5-CGI-XMLApplication
SUBDIR += p5-CGI.pm
SUBDIR += p5-CGI_Lite
SUBDIR += p5-CIF-Client
SUBDIR += p5-CSS-DOM
SUBDIR += p5-CSS-Inliner
SUBDIR += p5-Catalyst-Action-REST
SUBDIR += p5-Catalyst-Action-RenderView
SUBDIR += p5-Catalyst-Action-Serialize-XML-Hash-LX
SUBDIR += p5-Catalyst-ActionRole-ACL
SUBDIR += p5-Catalyst-Authentication-Credential-HTTP
SUBDIR += p5-Catalyst-Authentication-Credential-OpenID
SUBDIR += p5-Catalyst-Authentication-Store-DBIx-Class
SUBDIR += p5-Catalyst-Authentication-Store-LDAP
SUBDIR += p5-Catalyst-Component-ACCEPT_CONTEXT
SUBDIR += p5-Catalyst-Component-InstancePerContext
SUBDIR += p5-Catalyst-Controller-ActionRole
SUBDIR += p5-Catalyst-Controller-BindLex
SUBDIR += p5-Catalyst-Controller-FormBuilder
SUBDIR += p5-Catalyst-Controller-HTML-FormFu
SUBDIR += p5-Catalyst-Controller-RateLimit
SUBDIR += p5-Catalyst-Controller-RequestToken
SUBDIR += p5-Catalyst-Controller-SOAP
SUBDIR += p5-Catalyst-Devel
SUBDIR += p5-Catalyst-DispatchType-Regex
SUBDIR += p5-Catalyst-Engine-Apache
SUBDIR += p5-Catalyst-Engine-HTTP-Prefork
SUBDIR += p5-Catalyst-Engine-PSGI
SUBDIR += p5-Catalyst-Enzyme
SUBDIR += p5-Catalyst-Helper-Controller-Scaffold
SUBDIR += p5-Catalyst-Manual
SUBDIR += p5-Catalyst-Model-Adaptor
SUBDIR += p5-Catalyst-Model-CDBI
SUBDIR += p5-Catalyst-Model-CDBI-Plain
SUBDIR += p5-Catalyst-Model-CDBI-Sweet
SUBDIR += p5-Catalyst-Model-DBIC-Plain
SUBDIR += p5-Catalyst-Model-DBIC-Schema
SUBDIR += p5-Catalyst-Model-DynamicAdaptor
SUBDIR += p5-Catalyst-Model-LDAP
SUBDIR += p5-Catalyst-Model-Memcached
SUBDIR += p5-Catalyst-Model-Oryx
SUBDIR += p5-Catalyst-Model-Tarantool
SUBDIR += p5-Catalyst-Model-XML-Feed
SUBDIR += p5-Catalyst-Model-Xapian
SUBDIR += p5-Catalyst-Model-Xapian10
SUBDIR += p5-Catalyst-Plugin-AtomServer
SUBDIR += p5-Catalyst-Plugin-Authentication
SUBDIR += p5-Catalyst-Plugin-Authentication-CDBI
SUBDIR += p5-Catalyst-Plugin-Authentication-OpenID
SUBDIR += p5-Catalyst-Plugin-Authentication-Store-Htpasswd
SUBDIR += p5-Catalyst-Plugin-Authorization-ACL
SUBDIR += p5-Catalyst-Plugin-Authorization-Roles
SUBDIR += p5-Catalyst-Plugin-AutoCRUD
SUBDIR += p5-Catalyst-Plugin-Browser
SUBDIR += p5-Catalyst-Plugin-C3
SUBDIR += p5-Catalyst-Plugin-Cache
SUBDIR += p5-Catalyst-Plugin-Cache-FastMmap
SUBDIR += p5-Catalyst-Plugin-Cache-Memcached
SUBDIR += p5-Catalyst-Plugin-Cache-Memcached-Fast
SUBDIR += p5-Catalyst-Plugin-Captcha
SUBDIR += p5-Catalyst-Plugin-ConfigLoader
SUBDIR += p5-Catalyst-Plugin-ConfigLoader-Environment
SUBDIR += p5-Catalyst-Plugin-CookiedSession
SUBDIR += p5-Catalyst-Plugin-DateTime
SUBDIR += p5-Catalyst-Plugin-DefaultEnd
SUBDIR += p5-Catalyst-Plugin-Email
SUBDIR += p5-Catalyst-Plugin-ErrorCatcher
SUBDIR += p5-Catalyst-Plugin-FillInForm
SUBDIR += p5-Catalyst-Plugin-FormBuilder
SUBDIR += p5-Catalyst-Plugin-FormValidator
SUBDIR += p5-Catalyst-Plugin-I18N
SUBDIR += p5-Catalyst-Plugin-Log-Dispatch
SUBDIR += p5-Catalyst-Plugin-Log-Handler
SUBDIR += p5-Catalyst-Plugin-LogWarnings
SUBDIR += p5-Catalyst-Plugin-PageCache
SUBDIR += p5-Catalyst-Plugin-Params-Nested
SUBDIR += p5-Catalyst-Plugin-Pluggable
SUBDIR += p5-Catalyst-Plugin-Prototype
SUBDIR += p5-Catalyst-Plugin-RunAfterRequest
SUBDIR += p5-Catalyst-Plugin-Scheduler
SUBDIR += p5-Catalyst-Plugin-Server
SUBDIR += p5-Catalyst-Plugin-Session
SUBDIR += p5-Catalyst-Plugin-Session-FastMmap
SUBDIR += p5-Catalyst-Plugin-Session-PerUser
SUBDIR += p5-Catalyst-Plugin-Session-State-Cookie
SUBDIR += p5-Catalyst-Plugin-Session-State-URI
SUBDIR += p5-Catalyst-Plugin-Session-Store-Cache
SUBDIR += p5-Catalyst-Plugin-Session-Store-DBI
SUBDIR += p5-Catalyst-Plugin-Session-Store-DBIC
SUBDIR += p5-Catalyst-Plugin-Session-Store-Delegate
SUBDIR += p5-Catalyst-Plugin-Session-Store-FastMmap
SUBDIR += p5-Catalyst-Plugin-Session-Store-File
SUBDIR += p5-Catalyst-Plugin-Session-Store-Memcached
SUBDIR += p5-Catalyst-Plugin-Session-Store-Memcached-Fast
SUBDIR += p5-Catalyst-Plugin-Setenv
SUBDIR += p5-Catalyst-Plugin-Singleton
SUBDIR += p5-Catalyst-Plugin-SmartURI
SUBDIR += p5-Catalyst-Plugin-StackTrace
SUBDIR += p5-Catalyst-Plugin-Static
SUBDIR += p5-Catalyst-Plugin-Static-Simple
SUBDIR += p5-Catalyst-Plugin-StatusMessage
SUBDIR += p5-Catalyst-Plugin-SubRequest
SUBDIR += p5-Catalyst-Plugin-Textile
SUBDIR += p5-Catalyst-Plugin-Unicode
SUBDIR += p5-Catalyst-Plugin-XMLRPC
SUBDIR += p5-Catalyst-Runtime
SUBDIR += p5-Catalyst-TraitFor-Controller-DBIC-DoesPaging
SUBDIR += p5-Catalyst-TraitFor-Request-BrowserDetect
SUBDIR += p5-Catalyst-View-ClearSilver
SUBDIR += p5-Catalyst-View-Email
SUBDIR += p5-Catalyst-View-GraphViz
SUBDIR += p5-Catalyst-View-HTML-Template
SUBDIR += p5-Catalyst-View-HTML-Template-Compiled
SUBDIR += p5-Catalyst-View-JSON
SUBDIR += p5-Catalyst-View-Jemplate
SUBDIR += p5-Catalyst-View-Mason
SUBDIR += p5-Catalyst-View-REST-XML
SUBDIR += p5-Catalyst-View-RRDGraph
SUBDIR += p5-Catalyst-View-TT
SUBDIR += p5-Catalyst-View-TT-Alloy
SUBDIR += p5-Catalyst-View-TT-ControllerLocal
SUBDIR += p5-Catalyst-View-Template-Declare
SUBDIR += p5-Catalyst-View-Templated
SUBDIR += p5-Catalyst-View-XML-Feed
SUBDIR += p5-Catalyst-View-XML-Simple
SUBDIR += p5-Catalyst-View-XSLT
SUBDIR += p5-CatalystX-AppBuilder
SUBDIR += p5-CatalystX-Component-Traits
SUBDIR += p5-CatalystX-InjectComponent
SUBDIR += p5-CatalystX-LeakChecker
SUBDIR += p5-CatalystX-Profile
SUBDIR += p5-CatalystX-REPL
SUBDIR += p5-CatalystX-RoleApplicator
SUBDIR += p5-CatalystX-SimpleLogin
SUBDIR += p5-CatalystX-VirtualComponents
SUBDIR += p5-Class-DBI-FromForm
SUBDIR += p5-ClearSilver
SUBDIR += p5-Compress-LeadingBlankSpaces
SUBDIR += p5-Continuity
SUBDIR += p5-Cookie-Baker
SUBDIR += p5-Corona
SUBDIR += p5-Dancer
SUBDIR += p5-Dancer-Logger-Log4perl
SUBDIR += p5-Dancer-Plugin-ExtDirect
SUBDIR += p5-Dancer-Plugin-Feed
SUBDIR += p5-Dancer-Plugin-FlashMessage
SUBDIR += p5-Dancer-Plugin-Lexicon
SUBDIR += p5-Dancer-Plugin-Memcached
SUBDIR += p5-Dancer-Plugin-REST
SUBDIR += p5-Dancer-Plugin-RPC
SUBDIR += p5-Dancer-Plugin-SiteMap
SUBDIR += p5-Dancer-Plugin-ValidationClass
SUBDIR += p5-Dancer-Session-Cookie
SUBDIR += p5-Dancer-Template-Xslate
SUBDIR += p5-Dancer2
SUBDIR += p5-Dancer2-Plugin-Ajax
SUBDIR += p5-Dancer2-Plugin-Deferred
SUBDIR += p5-Dancer2-Plugin-Interchange6
SUBDIR += p5-Dancer2-Plugin-Path-Class
SUBDIR += p5-Data-TreeDumper-Renderer-DHTML
SUBDIR += p5-Data-Validate-URI
SUBDIR += p5-Emplacken
SUBDIR += p5-FAQ-OMatic
SUBDIR += p5-FCGI
SUBDIR += p5-FCGI-Async
SUBDIR += p5-FCGI-Client
SUBDIR += p5-FCGI-Engine
SUBDIR += p5-FCGI-ProcManager
SUBDIR += p5-FCGI-Spawn
SUBDIR += p5-FEAR-API
SUBDIR += p5-Facebook-Graph
SUBDIR += p5-Feed-Find
SUBDIR += p5-Feersum
SUBDIR += p5-File-Mork
SUBDIR += p5-Flea
SUBDIR += p5-Flickr-API
SUBDIR += p5-Flickr-Upload
SUBDIR += p5-Fliggy
SUBDIR += p5-Furl
SUBDIR += p5-FurlX-Coro
SUBDIR += p5-Gantry
SUBDIR += p5-Geo-Caching
SUBDIR += p5-Google-Search
SUBDIR += p5-Gtk2-WebKit
SUBDIR += p5-Gungho
SUBDIR += p5-GunghoX-FollowLinks
SUBDIR += p5-HTML-Adsense
SUBDIR += p5-HTML-Breadcrumbs
SUBDIR += p5-HTML-CalendarMonthSimple
SUBDIR += p5-HTML-Chunks
SUBDIR += p5-HTML-Clean
SUBDIR += p5-HTML-ContentExtractor
SUBDIR += p5-HTML-DOM
SUBDIR += p5-HTML-Declare
SUBDIR += p5-HTML-Defaultify
SUBDIR += p5-HTML-Diff
SUBDIR += p5-HTML-Display
SUBDIR += p5-HTML-Element-Extended
SUBDIR += p5-HTML-Element-Library
SUBDIR += p5-HTML-Element-Replacer
SUBDIR += p5-HTML-Encoding
SUBDIR += p5-HTML-ExtractContent
SUBDIR += p5-HTML-ExtractMain
SUBDIR += p5-HTML-Field
SUBDIR += p5-HTML-FillInForm
SUBDIR += p5-HTML-FillInForm-ForceUTF8
SUBDIR += p5-HTML-FillInForm-Lite
SUBDIR += p5-HTML-Form
SUBDIR += p5-HTML-FormFu
SUBDIR += p5-HTML-FormFu-Imager
SUBDIR += p5-HTML-FormFu-Model-DBIC
SUBDIR += p5-HTML-FormHandler
SUBDIR += p5-HTML-FromANSI
SUBDIR += p5-HTML-FromText
SUBDIR += p5-HTML-GenToc
SUBDIR += p5-HTML-GenerateUtil
SUBDIR += p5-HTML-GoogleMaps
SUBDIR += p5-HTML-Highlight
SUBDIR += p5-HTML-LinkExtractor
SUBDIR += p5-HTML-LinkList
SUBDIR += p5-HTML-Lint
SUBDIR += p5-HTML-Location
SUBDIR += p5-HTML-Macro
SUBDIR += p5-HTML-Mason
SUBDIR += p5-HTML-Mason-PSGIHandler
SUBDIR += p5-HTML-MobileConverter
SUBDIR += p5-HTML-Pager
SUBDIR += p5-HTML-Parser
SUBDIR += p5-HTML-Parser-Simple
SUBDIR += p5-HTML-Perlinfo
SUBDIR += p5-HTML-PrettyPrinter
SUBDIR += p5-HTML-Prototype
SUBDIR += p5-HTML-Query
SUBDIR += p5-HTML-QuickCheck
SUBDIR += p5-HTML-RSSAutodiscovery
SUBDIR += p5-HTML-ResolveLink
SUBDIR += p5-HTML-Restrict
SUBDIR += p5-HTML-RobotsMETA
SUBDIR += p5-HTML-Scrubber
SUBDIR += p5-HTML-Seamstress
SUBDIR += p5-HTML-Selector-XPath
SUBDIR += p5-HTML-Shakan
SUBDIR += p5-HTML-SimpleLinkExtor
SUBDIR += p5-HTML-SimpleParse
SUBDIR += p5-HTML-StickyQuery
SUBDIR += p5-HTML-StickyQuery-DoCoMoGUID
SUBDIR += p5-HTML-Stream
SUBDIR += p5-HTML-Strip
SUBDIR += p5-HTML-StripScripts
SUBDIR += p5-HTML-StripScripts-Parser
SUBDIR += p5-HTML-Summary
SUBDIR += p5-HTML-Table
SUBDIR += p5-HTML-TableContentParser
SUBDIR += p5-HTML-TableExtract
SUBDIR += p5-HTML-TableLayout
SUBDIR += p5-HTML-TableParser
SUBDIR += p5-HTML-TableTiler
SUBDIR += p5-HTML-TagCloud
SUBDIR += p5-HTML-TagCloud-Extended
SUBDIR += p5-HTML-TagParser
SUBDIR += p5-HTML-Tagset
SUBDIR += p5-HTML-Template
SUBDIR += p5-HTML-Template-Associate
SUBDIR += p5-HTML-Template-Compiled
SUBDIR += p5-HTML-Template-Expr
SUBDIR += p5-HTML-Template-HashWrapper
SUBDIR += p5-HTML-Template-JIT
SUBDIR += p5-HTML-Template-Pluggable
SUBDIR += p5-HTML-Template-Pro
SUBDIR += p5-HTML-Toc
SUBDIR += p5-HTML-TokeParser-Simple
SUBDIR += p5-HTML-Tree
SUBDIR += p5-HTML-TreeBuilder-LibXML
SUBDIR += p5-HTML-TreeBuilder-XPath
SUBDIR += p5-HTML-Widgets-SelectLayers
SUBDIR += p5-HTML-WikiConverter
SUBDIR += p5-HTML-WikiConverter-DokuWiki
SUBDIR += p5-HTML-WikiConverter-GoogleCode
SUBDIR += p5-HTML-WikiConverter-Kwiki
SUBDIR += p5-HTML-WikiConverter-Markdown
SUBDIR += p5-HTML-WikiConverter-MediaWiki
SUBDIR += p5-HTML-WikiConverter-MoinMoin
SUBDIR += p5-HTML-WikiConverter-Oddmuse
SUBDIR += p5-HTML-WikiConverter-PbWiki
SUBDIR += p5-HTML-WikiConverter-PhpWiki
SUBDIR += p5-HTML-WikiConverter-PmWiki
SUBDIR += p5-HTML-WikiConverter-SnipSnap
SUBDIR += p5-HTML-WikiConverter-Socialtext
SUBDIR += p5-HTML-WikiConverter-TikiWiki
SUBDIR += p5-HTML-WikiConverter-UseMod
SUBDIR += p5-HTML-WikiConverter-WakkaWiki
SUBDIR += p5-HTML-WikiConverter-WikkaWiki
SUBDIR += p5-HTTP-Async
SUBDIR += p5-HTTP-Body
SUBDIR += p5-HTTP-BrowserDetect
SUBDIR += p5-HTTP-Cache-Transparent
SUBDIR += p5-HTTP-CookieJar
SUBDIR += p5-HTTP-Cookies
SUBDIR += p5-HTTP-Cookies-Mozilla
SUBDIR += p5-HTTP-Cookies-iCab
SUBDIR += p5-HTTP-Cookies-w3m
SUBDIR += p5-HTTP-DAV
SUBDIR += p5-HTTP-Daemon
SUBDIR += p5-HTTP-Daemon-SSL
SUBDIR += p5-HTTP-Date
SUBDIR += p5-HTTP-Engine
SUBDIR += p5-HTTP-Engine-Middleware
SUBDIR += p5-HTTP-Exception
SUBDIR += p5-HTTP-HeaderParser-XS
SUBDIR += p5-HTTP-Headers-Fast
SUBDIR += p5-HTTP-Link-Parser
SUBDIR += p5-HTTP-Lite
SUBDIR += p5-HTTP-MHTTP
SUBDIR += p5-HTTP-Message
SUBDIR += p5-HTTP-MobileAgent
SUBDIR += p5-HTTP-MobileAgent-Plugin-Charset
SUBDIR += p5-HTTP-MobileAgent-Plugin-Locator
SUBDIR += p5-HTTP-Negotiate
SUBDIR += p5-HTTP-Parser
SUBDIR += p5-HTTP-Parser-XS
SUBDIR += p5-HTTP-Proxy
SUBDIR += p5-HTTP-ProxyPAC
SUBDIR += p5-HTTP-Recorder
SUBDIR += p5-HTTP-Request-AsCGI
SUBDIR += p5-HTTP-Request-Params
SUBDIR += p5-HTTP-Response-Encoding
SUBDIR += p5-HTTP-Router
SUBDIR += p5-HTTP-Server-Simple
SUBDIR += p5-HTTP-Server-Simple-Authen
SUBDIR += p5-HTTP-Server-Simple-Mason
SUBDIR += p5-HTTP-Server-Simple-PSGI
SUBDIR += p5-HTTP-Server-Simple-Recorder
SUBDIR += p5-HTTP-Server-Simple-Static
SUBDIR += p5-HTTP-Session
SUBDIR += p5-HTTP-Session-State-MobileAgentID
SUBDIR += p5-HTTP-Session-Store-DBI
SUBDIR += p5-HTTP-Session2
SUBDIR += p5-HTTP-SimpleLinkChecker
SUBDIR += p5-HTTP-Size
SUBDIR += p5-HTTP-Thin
SUBDIR += p5-HTTP-Tiny
SUBDIR += p5-HTTP-Tiny-SPDY
SUBDIR += p5-HTTP-WebTest
SUBDIR += p5-HTTPD-Log-Filter
SUBDIR += p5-HTTPD-User-Manage
SUBDIR += p5-Hijk
SUBDIR += p5-I18N-AcceptLanguage
SUBDIR += p5-IMDB-Film
SUBDIR += p5-Image-Delivery
SUBDIR += p5-Interchange6
SUBDIR += p5-JE
SUBDIR += p5-Jemplate
SUBDIR += p5-Jifty
SUBDIR += p5-Kwiki
SUBDIR += p5-LWP-Authen-Negotiate
SUBDIR += p5-LWP-Authen-OAuth
SUBDIR += p5-LWP-Authen-Wsse
SUBDIR += p5-LWP-ConnCache-MaxKeepAliveRequests
SUBDIR += p5-LWP-MediaTypes
SUBDIR += p5-LWP-Online
SUBDIR += p5-LWP-Protocol-PSGI
SUBDIR += p5-LWP-Protocol-connect
SUBDIR += p5-LWP-Protocol-http10
SUBDIR += p5-LWP-Protocol-https
SUBDIR += p5-LWP-Protocol-socks
SUBDIR += p5-LWP-UserAgent-Determined
SUBDIR += p5-LWP-UserAgent-POE
SUBDIR += p5-LWP-UserAgent-WithCache
SUBDIR += p5-LWPx-ParanoidAgent
SUBDIR += p5-LWPx-TimedHTTP
SUBDIR += p5-Markup-Perl
SUBDIR += p5-Mason
SUBDIR += p5-MasonX-Interp-WithCallbacks
SUBDIR += p5-MasonX-Profiler
SUBDIR += p5-MasonX-Request-WithApacheSession
SUBDIR += p5-MasonX-WebApp
SUBDIR += p5-Maypole
SUBDIR += p5-Maypole-Authentication-UserSessionCookie
SUBDIR += p5-Maypole-Component
SUBDIR += p5-McBain
SUBDIR += p5-McBain-WithPSGI
SUBDIR += p5-MediaWiki
SUBDIR += p5-MediaWiki-API
SUBDIR += p5-Mobile-UserAgent
SUBDIR += p5-ModPerl-VersionUtil
SUBDIR += p5-Mojo-Server-FastCGI
SUBDIR += p5-MojoMojo
SUBDIR += p5-MojoX-Log-Dispatch-Simple
SUBDIR += p5-MojoX-Renderer-Xslate
SUBDIR += p5-Mojolicious
SUBDIR += p5-Mojolicious-Plugin-Authentication
SUBDIR += p5-Mojolicious-Plugin-Database
SUBDIR += p5-Mojolicious-Plugin-Mongodb
SUBDIR += p5-Mojolicious-Plugin-SetUserGroup
SUBDIR += p5-Mojolicious-Plugin-TtRenderer
SUBDIR += p5-Mojolicious-Plugin-YamlConfig
SUBDIR += p5-Monoceros
SUBDIR += p5-Mozilla-CA
SUBDIR += p5-Net-Akismet
SUBDIR += p5-Net-Amazon-AWIS
SUBDIR += p5-Net-Async-FastCGI
SUBDIR += p5-Net-Async-HTTP
SUBDIR += p5-Net-FastCGI
SUBDIR += p5-Net-FireEagle
SUBDIR += p5-Net-Flickr-API
SUBDIR += p5-Net-Flickr-Backup
SUBDIR += p5-Net-Flickr-RDF
SUBDIR += p5-Net-FreshBooks-API
SUBDIR += p5-Net-GeoPlanet
SUBDIR += p5-Net-Plurk
SUBDIR += p5-Net-STF-Client
SUBDIR += p5-Net-Trac
SUBDIR += p5-Net-YAP
SUBDIR += p5-Net-eBay
SUBDIR += p5-Newsletter
SUBDIR += p5-Nginx-ReadBody
SUBDIR += p5-Nginx-Simple
SUBDIR += p5-PHP-Session
SUBDIR += p5-POE-Component-Client-HTTP
SUBDIR += p5-POE-Component-Client-UserAgent
SUBDIR += p5-POE-Component-Server-HTTP
SUBDIR += p5-POE-Component-Server-HTTPServer
SUBDIR += p5-POE-Component-Server-PSGI
SUBDIR += p5-POE-Component-Server-SOAP
SUBDIR += p5-POE-Component-Server-SimpleHTTP
SUBDIR += p5-POE-Filter-HTTP-Parser
SUBDIR += p5-POEx-Role-PSGIServer
SUBDIR += p5-PSGI
SUBDIR += p5-ParallelUserAgent
SUBDIR += p5-Parse-HTTP-UserAgent
SUBDIR += p5-Path-Class-URI
SUBDIR += p5-Perlanet
SUBDIR += p5-Perlbal-Plugin-PSGI
SUBDIR += p5-Plack
SUBDIR += p5-Plack-App-Proxy
SUBDIR += p5-Plack-Builder-Conditionals
SUBDIR += p5-Plack-Handler-AnyEvent-HTTPD
SUBDIR += p5-Plack-Handler-AnyEvent-ReverseHTTP
SUBDIR += p5-Plack-Handler-AnyEvent-SCGI
SUBDIR += p5-Plack-Handler-CLI
SUBDIR += p5-Plack-Handler-SCGI
SUBDIR += p5-Plack-Middleware-AMF
SUBDIR += p5-Plack-Middleware-AddDefaultCharset
SUBDIR += p5-Plack-Middleware-Auth-Digest
SUBDIR += p5-Plack-Middleware-AutoRefresh
SUBDIR += p5-Plack-Middleware-ConsoleLogger
SUBDIR += p5-Plack-Middleware-CrossOrigin
SUBDIR += p5-Plack-Middleware-Debug
SUBDIR += p5-Plack-Middleware-Deflater
SUBDIR += p5-Plack-Middleware-Expires
SUBDIR += p5-Plack-Middleware-ExtDirect
SUBDIR += p5-Plack-Middleware-File-Sass
SUBDIR += p5-Plack-Middleware-FixMissingBodyInRedirect
SUBDIR += p5-Plack-Middleware-ForceEnv
SUBDIR += p5-Plack-Middleware-Header
SUBDIR += p5-Plack-Middleware-IEnosniff
SUBDIR += p5-Plack-Middleware-InteractiveDebugger
SUBDIR += p5-Plack-Middleware-JSConcat
SUBDIR += p5-Plack-Middleware-MemoryUsage
SUBDIR += p5-Plack-Middleware-MethodOverride
SUBDIR += p5-Plack-Middleware-NoMultipleSlashes
SUBDIR += p5-Plack-Middleware-Precompressed
SUBDIR += p5-Plack-Middleware-RemoveRedundantBody
SUBDIR += p5-Plack-Middleware-Reproxy
SUBDIR += p5-Plack-Middleware-ReverseProxy
SUBDIR += p5-Plack-Middleware-Rewrite
SUBDIR += p5-Plack-Middleware-ServerStatus-Lite
SUBDIR += p5-Plack-Middleware-Session
SUBDIR += p5-Plack-Middleware-SocketIO
SUBDIR += p5-Plack-Middleware-Status
SUBDIR += p5-Plack-Middleware-Test-StashWarnings
SUBDIR += p5-Plack-Middleware-Throttle
SUBDIR += p5-Plack-Middleware-XForwardedFor
SUBDIR += p5-Plack-Server-Coro
SUBDIR += p5-Plack-Server-POE
SUBDIR += p5-Plack-Server-ReverseHTTP
SUBDIR += p5-Plack-Test-ExternalServer
SUBDIR += p5-PocketIO
SUBDIR += p5-Pod-Site
SUBDIR += p5-PodToHTML
SUBDIR += p5-Protocol-HTTP2
SUBDIR += p5-Protocol-SocketIO
SUBDIR += p5-Protocol-WebSocket
SUBDIR += p5-Protocol-XMLRPC
SUBDIR += p5-REST-Client
SUBDIR += p5-REST-Google-Apps-Provisioning
SUBDIR += p5-RPC-ExtDirect
SUBDIR += p5-RT-Authen-ExternalAuth
SUBDIR += p5-RT-Client-REST
SUBDIR += p5-RT-Extension-CommandByMail
SUBDIR += p5-RT-Extension-Gravatar
SUBDIR += p5-RT-Extension-LDAPImport
SUBDIR += p5-RT-Extension-MandatoryOnTransition
SUBDIR += p5-RT-Extension-QuickAssign
SUBDIR += p5-RT-Extension-SLA
SUBDIR += p5-RTx-Calendar
SUBDIR += p5-Reaction
SUBDIR += p5-Reddit
SUBDIR += p5-Reddit-Client
SUBDIR += p5-Role-REST-Client
SUBDIR += p5-Rose-HTML-Objects
SUBDIR += p5-Router-Boom
SUBDIR += p5-Router-Simple
SUBDIR += p5-Router-Simple-Sinatraish
SUBDIR += p5-SCGI
SUBDIR += p5-SOAP-Transport-HTTP-Plack
SUBDIR += p5-SRU
SUBDIR += p5-STF-Dispatcher-PSGI
SUBDIR += p5-SWF-Chart
SUBDIR += p5-Scrappy
SUBDIR += p5-Selenium-Remote-Driver
SUBDIR += p5-Session-Storage-Secure
SUBDIR += p5-Squatting
SUBDIR += p5-Squatting-On-PSGI
SUBDIR += p5-Starlet
SUBDIR += p5-Starman
SUBDIR += p5-Syntax-Highlight-HTML
SUBDIR += p5-Syntax-Highlight-Shell
SUBDIR += p5-Task-Catalyst
SUBDIR += p5-Task-Plack
SUBDIR += p5-Tatsumaki
SUBDIR += p5-Template-Alloy
SUBDIR += p5-Template-GD
SUBDIR += p5-Template-Iterator-AlzaboWrapperCursor
SUBDIR += p5-Template-Multilingual
SUBDIR += p5-Template-Mustache
SUBDIR += p5-Template-Plugin-Class
SUBDIR += p5-Template-Plugin-Clickable
SUBDIR += p5-Template-Plugin-Clickable-Email
SUBDIR += p5-Template-Plugin-Comma
SUBDIR += p5-Template-Plugin-FillInForm
SUBDIR += p5-Template-Plugin-JSON
SUBDIR += p5-Template-Plugin-JavaScript
SUBDIR += p5-Template-Plugin-MP3
SUBDIR += p5-Template-Plugin-Markdown
SUBDIR += p5-Template-Plugin-Monta
SUBDIR += p5-Template-Plugin-Number-Format
SUBDIR += p5-Template-Plugin-StripScripts
SUBDIR += p5-Template-Plugin-Subst
SUBDIR += p5-Template-Plugin-VMethods
SUBDIR += p5-Template-Provider-Encoding
SUBDIR += p5-Template-Provider-FromDATA
SUBDIR += p5-Template-Simple
SUBDIR += p5-Template-Stash-AutoEscape
SUBDIR += p5-Template-Timer
SUBDIR += p5-Template-Toolkit
SUBDIR += p5-Template-Toolkit-Simple
SUBDIR += p5-Tenjin
SUBDIR += p5-Test-HTTP
SUBDIR += p5-Test-HTTP-Server-Simple
SUBDIR += p5-Test-LWP-UserAgent
SUBDIR += p5-Test-Nginx
SUBDIR += p5-TestGen4Web-Runner
SUBDIR += p5-Text-MultiMarkdown-ApacheHandler
SUBDIR += p5-Tie-TinyURL
SUBDIR += p5-Toader
SUBDIR += p5-Toadfarm
SUBDIR += p5-Twiggy
SUBDIR += p5-Twiggy-TLS
SUBDIR += p5-URI-Encode
SUBDIR += p5-URI-Escape-JavaScript
SUBDIR += p5-URI-Escape-XS
SUBDIR += p5-URI-Fetch
SUBDIR += p5-URI-ParseSearchString
SUBDIR += p5-URI-Sequin
SUBDIR += p5-URI-Title
SUBDIR += p5-URI-ToDisk
SUBDIR += p5-URL-Encode
SUBDIR += p5-URL-Encode-XS
SUBDIR += p5-VUser-Google-ProvisioningAPI
SUBDIR += p5-W3C-LinkChecker
SUBDIR += p5-W3C-LogValidator
SUBDIR += p5-WWW-AtMovies-TV
SUBDIR += p5-WWW-Babelfish
SUBDIR += p5-WWW-Baseball-NPB
SUBDIR += p5-WWW-Comic
SUBDIR += p5-WWW-Contact
SUBDIR += p5-WWW-Curl
SUBDIR += p5-WWW-DHL
SUBDIR += p5-WWW-Dilbert
SUBDIR += p5-WWW-Facebook-API
SUBDIR += p5-WWW-Form-UrlEncoded
SUBDIR += p5-WWW-FreeProxy
SUBDIR += p5-WWW-GitHub-Gist
SUBDIR += p5-WWW-Google-Calculator
SUBDIR += p5-WWW-Google-News
SUBDIR += p5-WWW-Google-News-TW
SUBDIR += p5-WWW-Google-PageRank
SUBDIR += p5-WWW-Google-Video
SUBDIR += p5-WWW-HatenaDiary
SUBDIR += p5-WWW-HatenaLogin
SUBDIR += p5-WWW-HatenaStar
SUBDIR += p5-WWW-IMDb
SUBDIR += p5-WWW-Instapaper-Client
SUBDIR += p5-WWW-LongURL
SUBDIR += p5-WWW-Mechanize
SUBDIR += p5-WWW-Mechanize-CGI
SUBDIR += p5-WWW-Mechanize-DecodedContent
SUBDIR += p5-WWW-Mechanize-FormFiller
SUBDIR += p5-WWW-Mechanize-GZip
SUBDIR += p5-WWW-Mechanize-Meta
SUBDIR += p5-WWW-Mechanize-PhantomJS
SUBDIR += p5-WWW-Mechanize-Pluggable
SUBDIR += p5-WWW-Mechanize-Plugin-phpBB
SUBDIR += p5-WWW-Mechanize-Shell
SUBDIR += p5-WWW-Mechanize-SpamCop
SUBDIR += p5-WWW-Mechanize-TreeBuilder
SUBDIR += p5-WWW-Mediawiki-Client
SUBDIR += p5-WWW-Mixi
SUBDIR += p5-WWW-Mixi-Scraper
SUBDIR += p5-WWW-Myspace
SUBDIR += p5-WWW-NicoVideo-Download
SUBDIR += p5-WWW-NioTV
SUBDIR += p5-WWW-OpenSVN
SUBDIR += p5-WWW-OpenSearch
SUBDIR += p5-WWW-Pastebin-PastebinCom-Create
SUBDIR += p5-WWW-Plurk
SUBDIR += p5-WWW-Robot
SUBDIR += p5-WWW-RobotRules
SUBDIR += p5-WWW-RobotRules-Parser
SUBDIR += p5-WWW-Salesforce
SUBDIR += p5-WWW-Scraper-ISBN
SUBDIR += p5-WWW-Scraper-ISBN-Amazon_Driver
SUBDIR += p5-WWW-Scraper-ISBN-ORA_Driver
SUBDIR += p5-WWW-Scripter
SUBDIR += p5-WWW-Scripter-Plugin-Ajax
SUBDIR += p5-WWW-Scripter-Plugin-JavaScript
SUBDIR += p5-WWW-Search
SUBDIR += p5-WWW-Search-AltaVista
SUBDIR += p5-WWW-Search-Google
SUBDIR += p5-WWW-Search-MSN
SUBDIR += p5-WWW-Shorten
SUBDIR += p5-WWW-Shorten-0rz
SUBDIR += p5-WWW-Shorten-Bitly
SUBDIR += p5-WWW-Shorten-Googl
SUBDIR += p5-WWW-Shorten-KUSO
SUBDIR += p5-WWW-Shorten-Yourls
SUBDIR += p5-WWW-Shorten-isgd
SUBDIR += p5-WWW-SourceForge
SUBDIR += p5-WWW-Spinn3r
SUBDIR += p5-WWW-TV
SUBDIR += p5-WWW-TWSMS
SUBDIR += p5-WWW-TinySong
SUBDIR += p5-WWW-Tumblr
SUBDIR += p5-WWW-VenusEnvy
SUBDIR += p5-WWW-WebArchive
SUBDIR += p5-WWW-Wikipedia
SUBDIR += p5-WWW-Yandex-TIC
SUBDIR += p5-WWW-iTunesConnect
SUBDIR += p5-Web-Query
SUBDIR += p5-Web-Scraper
SUBDIR += p5-Web-Scraper-Config
SUBDIR += p5-Web-oEmbed
SUBDIR += p5-WebDAO
SUBDIR += p5-WebDriver-Tiny
SUBDIR += p5-WebService-Basecamp
SUBDIR += p5-WebService-Bloglines
SUBDIR += p5-WebService-BuzzurlAPI
SUBDIR += p5-WebService-CIA
SUBDIR += p5-WebService-GData
SUBDIR += p5-WebService-Google-Reader
SUBDIR += p5-WebService-Google-Sets
SUBDIR += p5-WebService-IMDB
SUBDIR += p5-WebService-ISBNDB
SUBDIR += p5-WebService-Linode
SUBDIR += p5-WebService-MoviePosterDB
SUBDIR += p5-WebService-MusicBrainz
SUBDIR += p5-WebService-NoPaste
SUBDIR += p5-WebService-Pushover
SUBDIR += p5-WebService-Rakuten
SUBDIR += p5-WebService-Redmine
SUBDIR += p5-WebService-Simple
SUBDIR += p5-WebService-Technorati
SUBDIR += p5-WebService-YouTube
SUBDIR += p5-WordPress-XMLRPC
SUBDIR += p5-Yahoo-Lifestyle
SUBDIR += p5-Yahoo-Search
SUBDIR += p5-ZConf-RSS
SUBDIR += p5-ZConf-RSS-GUI-GTK
SUBDIR += p5-chklinks
SUBDIR += p5-jQuery-File-Upload
SUBDIR += p5-libapreq2
SUBDIR += p5-libservlet
SUBDIR += p5-libwww
SUBDIR += p5-pQuery
SUBDIR += p5-webservice-validator-css-w3c
SUBDIR += p5-webservice-validator-html-w3c
SUBDIR += paros
SUBDIR += pear-HTML_AJAX
SUBDIR += pear-HTML_TagCloud
SUBDIR += pear-HTTP
SUBDIR += pear-HTTP_Client
SUBDIR += pear-HTTP_Download
SUBDIR += pear-HTTP_FloodControl
SUBDIR += pear-HTTP_Header
SUBDIR += pear-HTTP_Request
SUBDIR += pear-HTTP_Request2
SUBDIR += pear-HTTP_Server
SUBDIR += pear-HTTP_Session2
SUBDIR += pear-HTTP_Upload
SUBDIR += pear-HTTP_WebDAV_Client
SUBDIR += pear-HTTP_WebDAV_Server
SUBDIR += pear-Horde_Browser
SUBDIR += pear-Horde_Css_Parser
SUBDIR += pear-Horde_Dav
SUBDIR += pear-Horde_Editor
SUBDIR += pear-Horde_Feed
SUBDIR += pear-Horde_Form
SUBDIR += pear-Horde_Http
SUBDIR += pear-Horde_Routes
SUBDIR += pear-Horde_Service_Facebook
SUBDIR += pear-Horde_Service_Gravatar
SUBDIR += pear-Horde_Service_Twitter
SUBDIR += pear-Horde_Service_UrlShortener
SUBDIR += pear-Horde_Service_Weather
SUBDIR += pear-Horde_SessionHandler
SUBDIR += pear-Horde_Template
SUBDIR += pear-Services_Amazon
SUBDIR += pear-Services_Amazon_S3
SUBDIR += pear-Services_Blogging
SUBDIR += pear-Services_Compete
SUBDIR += pear-Services_Delicious
SUBDIR += pear-Services_Digg
SUBDIR += pear-Services_Facebook
SUBDIR += pear-Services_GeoNames
SUBDIR += pear-Services_Google
SUBDIR += pear-Services_OpenSearch
SUBDIR += pear-Services_ShortURL
SUBDIR += pear-Services_TinyURL
SUBDIR += pear-Services_TwitPic
SUBDIR += pear-Services_W3C_CSSValidator
SUBDIR += pear-Services_W3C_HTMLValidator
SUBDIR += pear-Services_Yadis
SUBDIR += pear-Services_Yahoo
SUBDIR += pear-Services_urlTea
SUBDIR += pear-Structures_DataGrid_Renderer_Flexy
SUBDIR += pear-Structures_DataGrid_Renderer_Pager
SUBDIR += pear-Structures_DataGrid_Renderer_Smarty
SUBDIR += pear-Text_Wiki
SUBDIR += pear-UDDI
SUBDIR += pear-XML_GRDDL
SUBDIR += pear-twig
SUBDIR += pebble
SUBDIR += pecl-amfext
SUBDIR += pecl-http
SUBDIR += pecl-http1
SUBDIR += pecl-http2
SUBDIR += pecl-solr
SUBDIR += pecl-sphinx
SUBDIR += pecl-swish
SUBDIR += pecl-twig
SUBDIR += pecl-yaf
SUBDIR += pecl-yaf2
SUBDIR += pecl-yar
SUBDIR += perlbal
SUBDIR += pglogd
SUBDIR += phalcon
SUBDIR += photo_gallery
SUBDIR += php-plurk-api
SUBDIR += php-screw
SUBDIR += php-templates
SUBDIR += php56-opcache
SUBDIR += php56-session
SUBDIR += php56-tidy
SUBDIR += php70-opcache
SUBDIR += php70-session
SUBDIR += php70-tidy
SUBDIR += php71-opcache
SUBDIR += php71-session
SUBDIR += php71-tidy
SUBDIR += phpbb
SUBDIR += phpbb3
SUBDIR += phpgroupware
SUBDIR += phpmp
SUBDIR += phpmustache
SUBDIR += phpmyfaq
SUBDIR += phprecipebook
SUBDIR += phproxy
SUBDIR += phpsysinfo
SUBDIR += phpvirtualbox
SUBDIR += phpwebapp
SUBDIR += pivotx
SUBDIR += piwigo
SUBDIR += piwik
SUBDIR += planet
SUBDIR += plexwatchweb
SUBDIR += plone
SUBDIR += plugger
SUBDIR += pmwiki
SUBDIR += pnews
SUBDIR += podcastamatic
SUBDIR += polipo
SUBDIR += pound
SUBDIR += privoxy
SUBDIR += protovis
SUBDIR += pserv
SUBDIR += publicfile
SUBDIR += punbb
SUBDIR += pwebstats
SUBDIR += py-GinGin
SUBDIR += py-HTMLgen
SUBDIR += py-Lightbox
SUBDIR += py-MechanicalSoup
SUBDIR += py-Products.CMFPlone
SUBDIR += py-Products.PloneLDAP
SUBDIR += py-Products.TinyMCE
SUBDIR += py-Tenjin
SUBDIR += py-WebError
SUBDIR += py-WebFlash
SUBDIR += py-WebTest
SUBDIR += py-aiohttp
SUBDIR += py-albatross
SUBDIR += py-amf
SUBDIR += py-apachelog
SUBDIR += py-autobahn
SUBDIR += py-beaker
SUBDIR += py-beautifulsoup
SUBDIR += py-beautifulsoup32
SUBDIR += py-bjoern
SUBDIR += py-bleach
SUBDIR += py-blogofile
SUBDIR += py-bokeh
SUBDIR += py-boto3
SUBDIR += py-bottle
SUBDIR += py-bottle-cork
SUBDIR += py-cachecontrol
SUBDIR += py-cactus
SUBDIR += py-caldav
SUBDIR += py-cherrypy
SUBDIR += py-cherrypy-old
SUBDIR += py-clientform
SUBDIR += py-collective.easytemplate
SUBDIR += py-collective.templateengines
SUBDIR += py-cookies
SUBDIR += py-cssmin
SUBDIR += py-cssselect
SUBDIR += py-cssutils
SUBDIR += py-django
SUBDIR += py-django-allauth
SUBDIR += py-django-annotations
SUBDIR += py-django-annoying
SUBDIR += py-django-app-plugins
SUBDIR += py-django-appconf
SUBDIR += py-django-appmedia
SUBDIR += py-django-assets
SUBDIR += py-django-auth-ldap
SUBDIR += py-django-babel
SUBDIR += py-django-bitfield
SUBDIR += py-django-bootstrap-form
SUBDIR += py-django-caching-app-plugins
SUBDIR += py-django-classy-tags
SUBDIR += py-django-cms
SUBDIR += py-django-configurations
SUBDIR += py-django-constance
SUBDIR += py-django-contact-form
SUBDIR += py-django-contrib-comments
SUBDIR += py-django-cors-headers
SUBDIR += py-django-countries
SUBDIR += py-django-crispy-forms
SUBDIR += py-django-datetime-widget
SUBDIR += py-django-debug-toolbar
SUBDIR += py-django-devel
SUBDIR += py-django-dpaste
SUBDIR += py-django-evolution
SUBDIR += py-django-extensions
SUBDIR += py-django-filer
SUBDIR += py-django-formtools
SUBDIR += py-django-guardian
SUBDIR += py-django-happenings
SUBDIR += py-django-haystack
SUBDIR += py-django-htmlmin
SUBDIR += py-django-json-rpc
SUBDIR += py-django-jsonfield
SUBDIR += py-django-keyedcache
SUBDIR += py-django-ldapdb
SUBDIR += py-django-livesettings
SUBDIR += py-django-markdownx
SUBDIR += py-django-markwhat
SUBDIR += py-django-mezzanine
SUBDIR += py-django-mezzanine-filebrowser
SUBDIR += py-django-mezzanine-grappelli
SUBDIR += py-django-mptt
SUBDIR += py-django-openid-auth
SUBDIR += py-django-otp
SUBDIR += py-django-otp-yubikey
SUBDIR += py-django-overextends
SUBDIR += py-django-paging
SUBDIR += py-django-photologue
SUBDIR += py-django-picklefield
SUBDIR += py-django-pipeline
SUBDIR += py-django-pipeline13
SUBDIR += py-django-post_office
SUBDIR += py-django-profiles
SUBDIR += py-django-pyscss
SUBDIR += py-django-recaptcha
SUBDIR += py-django-redis
SUBDIR += py-django-registration
SUBDIR += py-django-registration-defaults
SUBDIR += py-django-registration-redux
SUBDIR += py-django-reversion
SUBDIR += py-django-sekizai
SUBDIR += py-django-signals-ahoy
SUBDIR += py-django-simple-captcha
SUBDIR += py-django-simple-history
SUBDIR += py-django-social-auth
SUBDIR += py-django-sortedm2m
SUBDIR += py-django-statici18n
SUBDIR += py-django-storages
SUBDIR += py-django-subdomains
SUBDIR += py-django-sudo
SUBDIR += py-django-tables2
SUBDIR += py-django-tagging
SUBDIR += py-django-taggit
SUBDIR += py-django-tastypie
SUBDIR += py-django-templatetag-sugar
SUBDIR += py-django-threaded-multihost
SUBDIR += py-django-tinymce
SUBDIR += py-django-voting
SUBDIR += py-django110
SUBDIR += py-django16
SUBDIR += py-django16-tastypie
SUBDIR += py-django18
SUBDIR += py-django19
SUBDIR += py-django_compressor
SUBDIR += py-django_openstack_auth
SUBDIR += py-django_polymorphic
SUBDIR += py-djangorestframework
SUBDIR += py-djangorestframework-csv
SUBDIR += py-djangorestframework-filters
SUBDIR += py-djangorestframework-xml
SUBDIR += py-djangotoolbox
SUBDIR += py-djblets
SUBDIR += py-dojango
SUBDIR += py-dotcloud.cli
SUBDIR += py-dtflickr
SUBDIR += py-evernote
SUBDIR += py-falcon
SUBDIR += py-fcgi
SUBDIR += py-fedex
SUBDIR += py-feedgenerator
SUBDIR += py-flask
SUBDIR += py-flask-admin
SUBDIR += py-flask-assets
SUBDIR += py-flask-bootstrap
SUBDIR += py-flask-cache
SUBDIR += py-flask-compress
SUBDIR += py-flask-cors
SUBDIR += py-flask-flatpages
SUBDIR += py-flask-login
SUBDIR += py-flask-oauthlib
SUBDIR += py-flask-principal
SUBDIR += py-flask-restful
SUBDIR += py-flask-restplus
SUBDIR += py-flask-restplus08
SUBDIR += py-flask-sockets
SUBDIR += py-flask-uploads
SUBDIR += py-flask-wtf
SUBDIR += py-flexget
SUBDIR += py-flup
SUBDIR += py-formalchemy
SUBDIR += py-formencode
SUBDIR += py-frappe-bench
SUBDIR += py-frozen-flask
SUBDIR += py-funkload
SUBDIR += py-gandi.cli
SUBDIR += py-gevent-websocket
SUBDIR += py-goobook
SUBDIR += py-google
SUBDIR += py-google-api-python-client
SUBDIR += py-graphite-api
SUBDIR += py-graphite-web
SUBDIR += py-grequests
SUBDIR += py-gunicorn
SUBDIR += py-horizon
SUBDIR += py-html
SUBDIR += py-html5lib
SUBDIR += py-http-parser
SUBDIR += py-httpie
SUBDIR += py-httplib2
SUBDIR += py-hyper
SUBDIR += py-imdbpy
SUBDIR += py-jonpy
SUBDIR += py-jswebkit
SUBDIR += py-kallithea
SUBDIR += py-libsass
SUBDIR += py-mechanize
SUBDIR += py-meld
SUBDIR += py-meld3
SUBDIR += py-mt
SUBDIR += py-nevow
SUBDIR += py-notebook
SUBDIR += py-octoprint
SUBDIR += py-pafy
SUBDIR += py-paste
SUBDIR += py-pastedeploy
SUBDIR += py-pastescript
SUBDIR += py-pelican
SUBDIR += py-plone.alterego
SUBDIR += py-plone.app.blob
SUBDIR += py-plone.app.caching
SUBDIR += py-plone.app.collection
SUBDIR += py-plone.app.content
SUBDIR += py-plone.app.contentlisting
SUBDIR += py-plone.app.contentmenu
SUBDIR += py-plone.app.contentrules
SUBDIR += py-plone.app.controlpanel
SUBDIR += py-plone.app.customerize
SUBDIR += py-plone.app.dexterity
SUBDIR += py-plone.app.discussion
SUBDIR += py-plone.app.folder
SUBDIR += py-plone.app.form
SUBDIR += py-plone.app.i18n
SUBDIR += py-plone.app.imaging
SUBDIR += py-plone.app.iterate
SUBDIR += py-plone.app.jquery
SUBDIR += py-plone.app.jquerytools
SUBDIR += py-plone.app.layout
SUBDIR += py-plone.app.ldap
SUBDIR += py-plone.app.linkintegrity
SUBDIR += py-plone.app.locales
SUBDIR += py-plone.app.portlets
SUBDIR += py-plone.app.querystring
SUBDIR += py-plone.app.redirector
SUBDIR += py-plone.app.registry
SUBDIR += py-plone.app.search
SUBDIR += py-plone.app.testing
SUBDIR += py-plone.app.textfield
SUBDIR += py-plone.app.theming
SUBDIR += py-plone.app.upgrade
SUBDIR += py-plone.app.users
SUBDIR += py-plone.app.uuid
SUBDIR += py-plone.app.viewletmanager
SUBDIR += py-plone.app.vocabularies
SUBDIR += py-plone.app.workflow
SUBDIR += py-plone.app.z3cform
SUBDIR += py-plone.autoform
SUBDIR += py-plone.batching
SUBDIR += py-plone.behavior
SUBDIR += py-plone.browserlayer
SUBDIR += py-plone.cachepurging
SUBDIR += py-plone.caching
SUBDIR += py-plone.contentrules
SUBDIR += py-plone.dexterity
SUBDIR += py-plone.fieldsets
SUBDIR += py-plone.folder
SUBDIR += py-plone.formwidget.namedfile
SUBDIR += py-plone.i18n
SUBDIR += py-plone.indexer
SUBDIR += py-plone.intelligenttext
SUBDIR += py-plone.locking
SUBDIR += py-plone.memoize
SUBDIR += py-plone.namedfile
SUBDIR += py-plone.outputfilters
SUBDIR += py-plone.portlet.collection
SUBDIR += py-plone.portlet.static
SUBDIR += py-plone.portlets
SUBDIR += py-plone.registry
SUBDIR += py-plone.resource
SUBDIR += py-plone.resourceeditor
SUBDIR += py-plone.rfc822
SUBDIR += py-plone.scale
SUBDIR += py-plone.schemaeditor
SUBDIR += py-plone.stringinterp
SUBDIR += py-plone.subrequest
SUBDIR += py-plone.supermodel
SUBDIR += py-plone.synchronize
SUBDIR += py-plone.testing
SUBDIR += py-plone.theme
SUBDIR += py-plone.transformchain
SUBDIR += py-plone.uuid
SUBDIR += py-plone.z3cform
SUBDIR += py-plonetheme.classic
SUBDIR += py-plonetheme.sunburst
SUBDIR += py-poster
SUBDIR += py-postmarkup
SUBDIR += py-praw
SUBDIR += py-prewikka
SUBDIR += py-puppetboard
SUBDIR += py-puppetboard02
SUBDIR += py-py-restclient
SUBDIR += py-pySmartDL
SUBDIR += py-pyjwt
SUBDIR += py-pylons
SUBDIR += py-pyocclient
SUBDIR += py-pyquery
SUBDIR += py-pyramid
SUBDIR += py-pyramid_rpc
SUBDIR += py-pysearch
SUBDIR += py-python-digitalocean
SUBDIR += py-pywebdav
SUBDIR += py-pywikibot
SUBDIR += py-qp
SUBDIR += py-qpy
SUBDIR += py-qt4-webkit
SUBDIR += py-qt5-webkit
SUBDIR += py-qt5-webkitwidgets
SUBDIR += py-rackspace-monitoring
SUBDIR += py-recaptcha
SUBDIR += py-requestbuilder
SUBDIR += py-requests
SUBDIR += py-requests-futures
SUBDIR += py-requests-oauthlib
SUBDIR += py-requests-toolbelt
SUBDIR += py-requests1
SUBDIR += py-restclient
SUBDIR += py-rfc3986
SUBDIR += py-rfc3987
SUBDIR += py-rhodecode
SUBDIR += py-rollbar
SUBDIR += py-routes
SUBDIR += py-scgi
SUBDIR += py-scrapy
SUBDIR += py-scriptaculous
SUBDIR += py-seafdav
SUBDIR += py-seafobj
SUBDIR += py-searx
SUBDIR += py-selector
SUBDIR += py-selenium
SUBDIR += py-slimit
SUBDIR += py-slimmer
SUBDIR += py-slumber
SUBDIR += py-sockjs-tornado
SUBDIR += py-splinter
SUBDIR += py-spyne
SUBDIR += py-surl
SUBDIR += py-textile
SUBDIR += py-tgwebservices
SUBDIR += py-tmdb3
SUBDIR += py-tornado
SUBDIR += py-trello
SUBDIR += py-turbogears
SUBDIR += py-turbogears2
SUBDIR += py-tvdb_api
SUBDIR += py-twistedWeb
SUBDIR += py-twistedWeb2
SUBDIR += py-txrequests
SUBDIR += py-uliweb
SUBDIR += py-urlgrabber
SUBDIR += py-urlobject
SUBDIR += py-user_agent
SUBDIR += py-utidy
SUBDIR += py-w3lib
SUBDIR += py-waitress
SUBDIR += py-webassets
SUBDIR += py-webhelpers
SUBDIR += py-webkitgtk
SUBDIR += py-webob
SUBDIR += py-websocket-client
SUBDIR += py-webunit
SUBDIR += py-werkzeug
SUBDIR += py-wikipedia
SUBDIR += py-wikitools
SUBDIR += py-ws4py
SUBDIR += py-wsaccel
SUBDIR += py-wsgiauth
SUBDIR += py-wsgidav
SUBDIR += py-zope.app.wsgi
SUBDIR += py3-cssutils
SUBDIR += py3-requests
SUBDIR += pyblosxom
SUBDIR += pycarddav
SUBDIR += pydio
SUBDIR += pyjamas
SUBDIR += pylot
SUBDIR += pyweblib
SUBDIR += qdecoder
SUBDIR += qooxdoo
+ SUBDIR += qt4-webkit
+ SUBDIR += qt5-webkit
SUBDIR += qt5-webchannel
SUBDIR += qt5-websockets
SUBDIR += quickie
SUBDIR += qupzilla-qt4
SUBDIR += qupzilla-qt5
SUBDIR += radicale
SUBDIR += red5
SUBDIR += redaxo
SUBDIR += redmine
SUBDIR += redmine-a_common_libs
SUBDIR += redmine-backlogs
SUBDIR += redmine-basecamp
SUBDIR += redmine-default_assign
SUBDIR += redmine-graphs
SUBDIR += redmine-http-auth
SUBDIR += redmine-issue_templates
SUBDIR += redmine-knowledgebase
SUBDIR += redmine-ldap_sync
SUBDIR += redmine-qa_contact
SUBDIR += redmine-redcarpet_formatter
SUBDIR += redmine-sidebar_hide
SUBDIR += redmine-single_auth
SUBDIR += redmine-wiki_notes
SUBDIR += rejik
SUBDIR += rekonq
SUBDIR += reportmagic
SUBDIR += repos-style
SUBDIR += resin3
SUBDIR += retawq
SUBDIR += revive-adserver
SUBDIR += rnews
SUBDIR += roundup
SUBDIR += rsskit
SUBDIR += rssowl
SUBDIR += rssroll
SUBDIR += rsstail
SUBDIR += rsstool
SUBDIR += rt40
SUBDIR += rt42
SUBDIR += rt44
SUBDIR += rtv
SUBDIR += ruby-aws
SUBDIR += rubygem-ace-rails-ap
SUBDIR += rubygem-actioncable5
SUBDIR += rubygem-actionpack4
SUBDIR += rubygem-actionpack5
SUBDIR += rubygem-activeresource4
SUBDIR += rubygem-acts-as-taggable-on
SUBDIR += rubygem-acts-as-taggable-on3
SUBDIR += rubygem-acts_as_taggable
SUBDIR += rubygem-addressable
SUBDIR += rubygem-akami
SUBDIR += rubygem-amazon-ecs
SUBDIR += rubygem-anemone
SUBDIR += rubygem-asana
SUBDIR += rubygem-async_sinatra
SUBDIR += rubygem-bluecloth
SUBDIR += rubygem-bootstrap-sass
SUBDIR += rubygem-browser
SUBDIR += rubygem-cal-heatmap-rails
SUBDIR += rubygem-cal-heatmap-rails-rails4
SUBDIR += rubygem-carrierwave
SUBDIR += rubygem-cgi_multipart_eof_fix
SUBDIR += rubygem-chosen-rails
SUBDIR += rubygem-cookiejar
SUBDIR += rubygem-crass
SUBDIR += rubygem-cuba
SUBDIR += rubygem-d3_rails
SUBDIR += rubygem-d3_rails-rails4
SUBDIR += rubygem-dashing
SUBDIR += rubygem-davclient
SUBDIR += rubygem-domainatrix
SUBDIR += rubygem-dropzonejs-rails
SUBDIR += rubygem-em-http-request
SUBDIR += rubygem-em-socksify
SUBDIR += rubygem-em-twitter
SUBDIR += rubygem-em-websocket
SUBDIR += rubygem-emk-sinatra-url-for
SUBDIR += rubygem-erubis
SUBDIR += rubygem-ethon
SUBDIR += rubygem-eventmachine_httpserver
SUBDIR += rubygem-faraday
SUBDIR += rubygem-faraday_middleware
SUBDIR += rubygem-faye
SUBDIR += rubygem-faye-websocket
SUBDIR += rubygem-fcgi
SUBDIR += rubygem-feed-normalizer
SUBDIR += rubygem-feedjira
SUBDIR += rubygem-flowdock
SUBDIR += rubygem-geminabox
SUBDIR += rubygem-gitlab-flowdock-git-hook
SUBDIR += rubygem-gitlab-gollum-lib
SUBDIR += rubygem-gitlab-grack
SUBDIR += rubygem-gollum-grit_adapter
SUBDIR += rubygem-gollum-lib
SUBDIR += rubygem-gollum-rugged_adapter
SUBDIR += rubygem-gon
SUBDIR += rubygem-gon-rails4
SUBDIR += rubygem-hackpad-cli
SUBDIR += rubygem-haml
SUBDIR += rubygem-haml-coderay
SUBDIR += rubygem-haml-contrib
SUBDIR += rubygem-haml-rails-rails4
SUBDIR += rubygem-hamlit
SUBDIR += rubygem-hashicorp-checkpoint
SUBDIR += rubygem-heroku
SUBDIR += rubygem-heroku-api
SUBDIR += rubygem-heroku-nav
SUBDIR += rubygem-hpricot
SUBDIR += rubygem-html2haml
SUBDIR += rubygem-http
SUBDIR += rubygem-http-cookie
SUBDIR += rubygem-http-form_data
SUBDIR += rubygem-http_router
SUBDIR += rubygem-httparty
SUBDIR += rubygem-httpclient
SUBDIR += rubygem-httpi
SUBDIR += rubygem-innate
SUBDIR += rubygem-jekyll
SUBDIR += rubygem-jekyll-watch
SUBDIR += rubygem-journey
SUBDIR += rubygem-jquery-atwho-rails
SUBDIR += rubygem-jquery-atwho-rails-rails4
SUBDIR += rubygem-jquery-rails4
SUBDIR += rubygem-jquery-scrollto-rails
SUBDIR += rubygem-jquery-turbolinks
SUBDIR += rubygem-jquery-ui-rails-rails4
SUBDIR += rubygem-jquery-ui-rails5-rails4
SUBDIR += rubygem-jruby-rack
SUBDIR += rubygem-jsobfu
SUBDIR += rubygem-jwt
SUBDIR += rubygem-kaminari
SUBDIR += rubygem-kaminari-actionview
SUBDIR += rubygem-kaminari-activerecord
SUBDIR += rubygem-kaminari-core
SUBDIR += rubygem-kaminari-rails4
SUBDIR += rubygem-kensa
SUBDIR += rubygem-layout_yullio_generator
SUBDIR += rubygem-less
SUBDIR += rubygem-lighthouse-api
SUBDIR += rubygem-link_header
SUBDIR += rubygem-maruku
SUBDIR += rubygem-mechanize
SUBDIR += rubygem-mechanize26
SUBDIR += rubygem-merb-assets
SUBDIR += rubygem-merb-core
SUBDIR += rubygem-merb-haml
SUBDIR += rubygem-merb-helpers
SUBDIR += rubygem-merb-param-protection
SUBDIR += rubygem-mousetrap-rails
SUBDIR += rubygem-multipart-post
SUBDIR += rubygem-nanoc
SUBDIR += rubygem-nested_form
SUBDIR += rubygem-net-http-digest_auth
SUBDIR += rubygem-net-http-digest_auth11
SUBDIR += rubygem-net-http-persistent
SUBDIR += rubygem-net-http-persistent25
SUBDIR += rubygem-net-http-pipeline
SUBDIR += rubygem-nicovideo
SUBDIR += rubygem-ntlm-http
SUBDIR += rubygem-octopress
SUBDIR += rubygem-pagerduty
SUBDIR += rubygem-passenger
SUBDIR += rubygem-puma
SUBDIR += rubygem-pusher-client
SUBDIR += rubygem-rabbirack
SUBDIR += rubygem-rack
SUBDIR += rubygem-rack-accept
SUBDIR += rubygem-rack-attack
SUBDIR += rubygem-rack-cache
SUBDIR += rubygem-rack-contrib
SUBDIR += rubygem-rack-cors
SUBDIR += rubygem-rack-mount
SUBDIR += rubygem-rack-openid
SUBDIR += rubygem-rack-protection
SUBDIR += rubygem-rack-ssl
SUBDIR += rubygem-rack-test
SUBDIR += rubygem-rack14
SUBDIR += rubygem-rack15
SUBDIR += rubygem-rack16
SUBDIR += rubygem-rails4
SUBDIR += rubygem-rails_autolink
SUBDIR += rubygem-railties4
SUBDIR += rubygem-railties5
SUBDIR += rubygem-raindrops
SUBDIR += rubygem-ramaze
SUBDIR += rubygem-raphael-rails
SUBDIR += rubygem-rdf
SUBDIR += rubygem-redcloth
SUBDIR += rubygem-redis-rack
SUBDIR += rubygem-redis-rails
SUBDIR += rubygem-redmine_acts_as_taggable_on
SUBDIR += rubygem-responders
SUBDIR += rubygem-rest-client
SUBDIR += rubygem-rfacebook
SUBDIR += rubygem-rfeedfinder
SUBDIR += rubygem-rinku
SUBDIR += rubygem-rkelly-remix
SUBDIR += rubygem-robotex
SUBDIR += rubygem-robots
SUBDIR += rubygem-rqrcode
SUBDIR += rubygem-rqrcode-rails3
SUBDIR += rubygem-rtlit
SUBDIR += rubygem-ruby-readability
SUBDIR += rubygem-savon
SUBDIR += rubygem-sawyer
SUBDIR += rubygem-scrapi
SUBDIR += rubygem-select2-rails
SUBDIR += rubygem-selenium-webdriver
SUBDIR += rubygem-semantic-ui-sass
SUBDIR += rubygem-simple-rss
SUBDIR += rubygem-sinatra
SUBDIR += rubygem-sinatra-contrib
SUBDIR += rubygem-sinatra-r18n
SUBDIR += rubygem-sinatra-respond_to
SUBDIR += rubygem-socksify
SUBDIR += rubygem-task_list
SUBDIR += rubygem-thin
SUBDIR += rubygem-tinyatom
SUBDIR += rubygem-tinymce-rails
SUBDIR += rubygem-totoridipjp
SUBDIR += rubygem-tumblr_client
SUBDIR += rubygem-turbolinks
SUBDIR += rubygem-turbolinks-classic
SUBDIR += rubygem-turbolinks-source
SUBDIR += rubygem-typhoeus
SUBDIR += rubygem-uglifier
SUBDIR += rubygem-underscore-rails
SUBDIR += rubygem-unicorn
SUBDIR += rubygem-unicorn-worker-killer
SUBDIR += rubygem-url_escape
SUBDIR += rubygem-url_mount
SUBDIR += rubygem-wasabi
SUBDIR += rubygem-webkit-gtk
SUBDIR += rubygem-webkit-gtk2
SUBDIR += rubygem-webmock
SUBDIR += rubygem-webrobots
SUBDIR += rubygem-websocket
SUBDIR += rubygem-websocket-driver
SUBDIR += rubygem-websocket-extensions
SUBDIR += rubygem-yapra
SUBDIR += sabredav
SUBDIR += sahi
SUBDIR += sakai
SUBDIR += samidare
SUBDIR += sams2
SUBDIR += sarg
SUBDIR += scloader
SUBDIR += script4rss
SUBDIR += seahub
SUBDIR += seamonkey
SUBDIR += seamonkey-i18n
SUBDIR += selenium
SUBDIR += serendipity
SUBDIR += serf
SUBDIR += servlet-api
SUBDIR += sfnt2woff
SUBDIR += shellinabox
SUBDIR += shttpd
SUBDIR += sit
SUBDIR += sitebar
SUBDIR += sitecopy
SUBDIR += skytemplate
SUBDIR += slowcgi
SUBDIR += smarty2
SUBDIR += smarty3
SUBDIR += smb_auth
SUBDIR += snarf
SUBDIR += sogo2
SUBDIR += sogo2-activesync
SUBDIR += sogo3
SUBDIR += sogo3-activesync
SUBDIR += spawn-fcgi
SUBDIR += spdylay
SUBDIR += speedtest-mini
SUBDIR += spreadlogd
SUBDIR += sqstat
SUBDIR += squid
SUBDIR += squid-devel
SUBDIR += squid_radius_auth
SUBDIR += squidanalyzer
SUBDIR += squidclamav
SUBDIR += squidguard
SUBDIR += squidpurge
SUBDIR += squidstats
SUBDIR += squidview
SUBDIR += srg
SUBDIR += stagit
SUBDIR += subsonic
SUBDIR += subsonic-standalone
SUBDIR += suphp
SUBDIR += surf
SUBDIR += surfraw
SUBDIR += sventon
SUBDIR += swfdec-plugin
SUBDIR += swiggle
SUBDIR += swish++
SUBDIR += swish-e
SUBDIR += sws
SUBDIR += sxweb
SUBDIR += syndigator
SUBDIR += tclhttpd
SUBDIR += tclwebtest
SUBDIR += tdiary
SUBDIR += tdom
SUBDIR += template_
SUBDIR += templatelite
SUBDIR += tengine
SUBDIR += testlink
SUBDIR += textpattern
SUBDIR += thttpd
SUBDIR += thumbnail_index
SUBDIR += thundercache
SUBDIR += thundersnarf
SUBDIR += tickr
SUBDIR += tidy
SUBDIR += tidy-devel
SUBDIR += tidy-html5
SUBDIR += tidy-lib
SUBDIR += tikiwiki
SUBDIR += tinymce
SUBDIR += tinyproxy
SUBDIR += tinytinyhttpd
SUBDIR += tivoka
SUBDIR += tntnet
SUBDIR += tokyopromenade
SUBDIR += tomcat-native
SUBDIR += tomcat6
SUBDIR += tomcat7
SUBDIR += tomcat8
SUBDIR += tomee
SUBDIR += trac
SUBDIR += trac-OhlohWidgetsMacro
SUBDIR += trac-TracGoogleAnalytics
SUBDIR += trac-accountmanager
SUBDIR += trac-advancedticketworkflow
SUBDIR += trac-attachmentpolicy
SUBDIR += trac-autocomplete
SUBDIR += trac-bzr
SUBDIR += trac-ccselector
SUBDIR += trac-childtickets
SUBDIR += trac-customfieldadmin
SUBDIR += trac-datefield
SUBDIR += trac-defaultcc
SUBDIR += trac-discussion
SUBDIR += trac-down
SUBDIR += trac-downloads
SUBDIR += trac-email2trac
SUBDIR += trac-email2trac-postfix
SUBDIR += trac-estimator
SUBDIR += trac-fivestarvote
SUBDIR += trac-fullblog
SUBDIR += trac-fullblognotification
SUBDIR += trac-gantt
SUBDIR += trac-graphviz
SUBDIR += trac-iniadmin
SUBDIR += trac-keywords
SUBDIR += trac-keywordsecretticket
SUBDIR += trac-ldap
SUBDIR += trac-ldapauthstore
SUBDIR += trac-math
SUBDIR += trac-mercurial
SUBDIR += trac-navadd
SUBDIR += trac-permredirect
SUBDIR += trac-privatetickets
SUBDIR += trac-pydotorgtheme
SUBDIR += trac-scrumburndown
SUBDIR += trac-spam-filter
SUBDIR += trac-subtickets
SUBDIR += trac-tags
SUBDIR += trac-themeengine
SUBDIR += trac-ticketimport
SUBDIR += trac-tickettemplate
SUBDIR += trac-timingandestimation
SUBDIR += trac-tocmacro
SUBDIR += trac-tracdragdrop
SUBDIR += trac-tweakui
SUBDIR += trac-vote
SUBDIR += trac-watchlist
SUBDIR += trac-wikigoodies
SUBDIR += trac-wikinotification
SUBDIR += trac-wikitemplates
SUBDIR += trac-wikitopdf
SUBDIR += trac-wysiwyg
SUBDIR += trac-xmlrpc
SUBDIR += trafficserver
SUBDIR += transmission-web
SUBDIR += transproxy
SUBDIR += trytond28_google_maps
SUBDIR += tt-rss
SUBDIR += ttf2eot
SUBDIR += twiki
SUBDIR += twiki-BehaviourContrib
SUBDIR += twiki-BlogAddOn
SUBDIR += twiki-BugzillaLinkPlugin
SUBDIR += twiki-ClassicSkin
SUBDIR += twiki-CommentPlugin
SUBDIR += twiki-EditTablePlugin
SUBDIR += twiki-EmptyPlugin
SUBDIR += twiki-GluePlugin
SUBDIR += twiki-InterwikiPlugin
SUBDIR += twiki-JSCalendarContrib
SUBDIR += twiki-LDAPPasswordChangerPlugin
SUBDIR += twiki-LdapContrib
SUBDIR += twiki-LdapNgPlugin
SUBDIR += twiki-MailerContrib
SUBDIR += twiki-MathModePlugin
SUBDIR += twiki-NewUserPlugin
SUBDIR += twiki-PatternSkin
SUBDIR += twiki-PreferencesPlugin
SUBDIR += twiki-RenderListPlugin
SUBDIR += twiki-SlideShowPlugin
SUBDIR += twiki-SmiliesPlugin
SUBDIR += twiki-SpreadSheetPlugin
SUBDIR += twiki-SubscribePlugin
SUBDIR += twiki-TWikiUserMappingContrib
SUBDIR += twiki-TablePlugin
SUBDIR += twiki-TagMePlugin
SUBDIR += twiki-TinyMCEPlugin
SUBDIR += twiki-TipsContrib
SUBDIR += twiki-TopicVarsPlugin
SUBDIR += twiki-TwistyContrib
SUBDIR += twiki-TwistyPlugin
SUBDIR += twiki-WysiwygPlugin
SUBDIR += twill
SUBDIR += twms
SUBDIR += typo3
SUBDIR += typo3-lts
SUBDIR += uchiwa
SUBDIR += udmsearch
SUBDIR += ufdbguard
SUBDIR += uglifyjs
SUBDIR += usermanager
SUBDIR += uwsgi
SUBDIR += uwsgitop
SUBDIR += uzbl
SUBDIR += validator
SUBDIR += varnish-libvmod-awsrest
SUBDIR += varnish-libvmod-digest
SUBDIR += varnish-libvmod-maxminddb
SUBDIR += varnish-modules
SUBDIR += varnish-nagios
SUBDIR += varnish4
SUBDIR += varnish5
SUBDIR += vdr-plugin-live
SUBDIR += vdradmin-am
SUBDIR += vee
SUBDIR += vertx
SUBDIR += vimb-gtk2
SUBDIR += vimb-gtk3
SUBDIR += visitors
SUBDIR += volta
SUBDIR += w3m
SUBDIR += w3m-img
SUBDIR += w3mir
SUBDIR += waccess
SUBDIR += wadcomblog
SUBDIR += web2ldap
SUBDIR += webalizer
SUBDIR += webbrowser
SUBDIR += webcheck
SUBDIR += webcopy
SUBDIR += webcrawl
SUBDIR += webfs
SUBDIR += webgo
SUBDIR += webgrind
SUBDIR += webinject
SUBDIR += webkit-gtk2
SUBDIR += webkit-gtk3
- SUBDIR += webkit-qt4
- SUBDIR += webkit-qt5
SUBDIR += webkit-sharp
SUBDIR += webkit2-gtk3
SUBDIR += weblint
SUBDIR += weblint++
SUBDIR += webpy
SUBDIR += webreport
SUBDIR += webresolve
SUBDIR += websh
SUBDIR += webstats
SUBDIR += webstone
SUBDIR += webstone-ssl
SUBDIR += webtrees
SUBDIR += wgetpaste
SUBDIR += wikicalc
SUBDIR += wml
SUBDIR += woof
SUBDIR += wordpress
SUBDIR += wsdlpull
SUBDIR += wsmake
SUBDIR += wt
SUBDIR += www6to4
SUBDIR += wwwoffle
SUBDIR += xapian-omega
SUBDIR += xaraya
SUBDIR += xcache
SUBDIR += xfce4-smartbookmark-plugin
SUBDIR += xist
SUBDIR += xombrero
SUBDIR += xoops
SUBDIR += xpi-adblock
SUBDIR += xpi-adblock_plus
SUBDIR += xpi-clear_cache_button
SUBDIR += xpi-close-all-tabs
SUBDIR += xpi-colorfultabs
SUBDIR += xpi-conkeror
SUBDIR += xpi-cssviewer
SUBDIR += xpi-cutemenus-crystalsvg
SUBDIR += xpi-default_full_zoom_level
SUBDIR += xpi-delicious
SUBDIR += xpi-downthemall
SUBDIR += xpi-errorzilla
SUBDIR += xpi-firebug
SUBDIR += xpi-firefox-showcase
SUBDIR += xpi-firemobilesimulator
SUBDIR += xpi-fission
SUBDIR += xpi-flagfox
SUBDIR += xpi-flashblock
SUBDIR += xpi-flashgot
SUBDIR += xpi-flatbmark
SUBDIR += xpi-forecastfox
SUBDIR += xpi-formfox
SUBDIR += xpi-foxmarks
SUBDIR += xpi-foxyproxy
SUBDIR += xpi-gdata_provider
SUBDIR += xpi-ghostery
SUBDIR += xpi-gmail-manager
SUBDIR += xpi-google-notebook
SUBDIR += xpi-google_shortcuts
SUBDIR += xpi-grab_and_drag
SUBDIR += xpi-greasemonkey
SUBDIR += xpi-httpfox
SUBDIR += xpi-imagezoom
SUBDIR += xpi-imdbpreview
SUBDIR += xpi-imglikeopera
SUBDIR += xpi-infolister
SUBDIR += xpi-informenter
SUBDIR += xpi-inline-google-definitions
SUBDIR += xpi-it_s_all_text
SUBDIR += xpi-jslib
SUBDIR += xpi-jsview
SUBDIR += xpi-jv
SUBDIR += xpi-leechblock
SUBDIR += xpi-linkification
SUBDIR += xpi-live_http_headers
SUBDIR += xpi-live_pagerank
SUBDIR += xpi-menueditor
SUBDIR += xpi-modify_headers
SUBDIR += xpi-mrtech-local-install
SUBDIR += xpi-neo-diggler
SUBDIR += xpi-no-referrer
SUBDIR += xpi-noscript
SUBDIR += xpi-passwordmaker
SUBDIR += xpi-pdf_download
SUBDIR += xpi-pencil
SUBDIR += xpi-pentadactyl
SUBDIR += xpi-permatabs
SUBDIR += xpi-quick-locale-switcher
SUBDIR += xpi-quickproxy
SUBDIR += xpi-resurrectpages
SUBDIR += xpi-sameplace
SUBDIR += xpi-scrapbook
SUBDIR += xpi-searchstatus
SUBDIR += xpi-server_spy
SUBDIR += xpi-server_switcher
SUBDIR += xpi-sessionmanager
SUBDIR += xpi-showip
SUBDIR += xpi-speed-dial
SUBDIR += xpi-splash
SUBDIR += xpi-stumbleupon
SUBDIR += xpi-stylish
SUBDIR += xpi-table2clipboard
SUBDIR += xpi-tabmixplus
SUBDIR += xpi-tagzilla
SUBDIR += xpi-togglewordwrap
SUBDIR += xpi-torbutton
SUBDIR += xpi-twitterfox
SUBDIR += xpi-u2f4moz
SUBDIR += xpi-uBlock_origin
SUBDIR += xpi-unplug
SUBDIR += xpi-urllink
SUBDIR += xpi-user_agent_switcher
SUBDIR += xpi-vimperator
SUBDIR += xpi-web_developer
SUBDIR += xpi-wmlbrowser
SUBDIR += xpi-xhtml-ruby-support
SUBDIR += xpi-xmpp4moz
SUBDIR += xpi-yslow
SUBDIR += xshttpd
SUBDIR += xshttpd-devel
SUBDIR += xsp
SUBDIR += yabb
SUBDIR += yanopaste
SUBDIR += yaws
SUBDIR += yii
SUBDIR += yourls
SUBDIR += youtube_dl
SUBDIR += yuicompressor
SUBDIR += zen-cart
SUBDIR += zend-framework
SUBDIR += zend-framework1
SUBDIR += zenphoto
SUBDIR += zerowait-httpd
SUBDIR += zikula
SUBDIR += zope213
.include <bsd.port.subdir.mk>
Index: head/www/qt4-webkit/Makefile
===================================================================
--- head/www/qt4-webkit/Makefile (nonexistent)
+++ head/www/qt4-webkit/Makefile (revision 434380)
@@ -0,0 +1,98 @@
+# Created by: danny@ricin.com
+# $FreeBSD$
+
+PORTNAME= webkit
+DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
+CATEGORIES= www
+PKGNAMEPREFIX= qt4-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt WebKit implementation
+
+USE_QT4= corelib declarative gui network \
+ qmake_build moc_build rcc_build
+QT_DIST= yes
+USE_XORG= xrender
+USES= pkgconfig
+
+HAS_CONFIGURE= yes
+USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
+
+ALL_TARGET= first
+CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
+MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
+ PATH=${WRKSRC}/bin:$$PATH MAKEOBJDIR=.
+
+DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
+ src/activeqt src/dbus src/opengl src/openvg src/qt3support \
+ src/s60installs src/s60main src/scripttools src/sql src/svg \
+ src/testlib src/tools src/winmain src/3rdparty/clucene \
+ src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \
+ src/3rdparty/libpng src/3rdparty/libtiff
+.for dne in ${DO_NOT_EXTRACT}
+EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
+.endfor
+
+BUILD_WRKSRC= ${WRKSRC}/src/3rdparty/${PORTNAME}/Source
+INSTALL_WRKSRC= ${BUILD_WRKSRC}
+
+CONFIGURE_ARGS+= -I../../../../include/Qt -I../../../../include
+
+OPTIONS_DEFINE= GSTREAMER
+OPTIONS_DEFAULT=GSTREAMER
+
+GSTREAMER_USE= GSTREAMER=yes
+
+.include <bsd.port.pre.mk>
+
+# Base ld(1) segfaults on PowerPC:
+# http://bugs.freebsd.org/173042
+.if ${ARCH} == "powerpc"
+BUILD_DEPENDS+= ${LOCALBASE}/bin/ld:devel/binutils
+.endif
+
+.if ${ARCH} == powerpc64
+CFLAGS+= -mminimal-toc
+.endif
+
+# Quick hack to avoid messing up qt_webkit_version.pri installation
+# directory. bsd.port.pre.mk is required to add the setting at the end.
+CONFIGURE_ENV+= QMAKEPATH=""
+MAKE_ENV+= QMAKEPATH=""
+
+pre-configure:
+ ${MKDIR} ${WRKSRC}/mkspecs
+ ${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
+ ${LN} -sf ${MOC} ${WRKSRC}/bin/moc
+ ${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
+ ${REINPLACE_CMD} -e 's|linux-\*|unix|g' \
+ ${BUILD_WRKSRC}/WebCore/features.pri \
+ ${BUILD_WRKSRC}/JavaScriptCore/wtf/wtf.pri
+.if ! ${PORT_OPTIONS:MGSTREAMER}
+ ${REINPLACE_CMD} -e 's|.*exists.*gstreamer.*|false {|' \
+ ${BUILD_WRKSRC}/WebCore/features.pri
+.endif
+# Avoid building and installing several tests. Should this be made an option?
+ ${REINPLACE_CMD} -e '/WebKit\/qt\/tests/ d' \
+ ${BUILD_WRKSRC}/WebKit.pro
+
+post-configure:
+ ${REINPLACE_CMD} \
+ -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
+ -e 's|.*$$(QMAKE).*||g' \
+ -e '/^CFLAGS/ s|-I${LOCALBASE}/include ||g' \
+ -e '/^CXXFLAGS/ s|-I${LOCALBASE}/include ||g' \
+ ${BUILD_WRKSRC}/Makefile \
+ ${BUILD_WRKSRC}/WebCore/Makefile \
+ ${BUILD_WRKSRC}/WebKit/qt/Makefile
+ ${CP} ${BUILD_WRKSRC}/WebKit/qt/Makefile \
+ ${BUILD_WRKSRC}/WebKit/qt/Makefile.QtWebKit
+ ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
+ -E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
+ ${WRKSRC}/lib/pkgconfig/QtWebKit.pc
+# QtWebKit is statically linked with jscore, remove the latest.
+ ${REINPLACE_CMD} -e 's|-L../JavaScriptCore/release||; s|-ljscore||' \
+ ${WRKSRC}/lib/pkgconfig/QtWebKit.pc
+
+.include <bsd.port.post.mk>
Property changes on: head/www/qt4-webkit/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt4-webkit/files/patch-src_3rdparty_webkit_Source_WebCore_html_HTMLImageElement.cpp
===================================================================
--- head/www/qt4-webkit/files/patch-src_3rdparty_webkit_Source_WebCore_html_HTMLImageElement.cpp (nonexistent)
+++ head/www/qt4-webkit/files/patch-src_3rdparty_webkit_Source_WebCore_html_HTMLImageElement.cpp (revision 434380)
@@ -0,0 +1,21 @@
+------------------------------------------------------------------------
+r113848 | abecsi@webkit.org | 2012-04-11 11:23:19 +0000 (Wed, 11 Apr 2012) | 27 lines
+
+Fix the build with gcc 4.7.0
+https://bugs.webkit.org/show_bug.cgi?id=83584
+[...]
+* html/HTMLImageElement.cpp:
+(WebCore::HTMLImageElement::createForJSConstructor): Fails because of -Werror=extra
+[...]
+
+--- src/3rdparty/webkit/Source/WebCore/html/HTMLImageElement.cpp.orig 2015-05-07 14:14:47 UTC
++++ src/3rdparty/webkit/Source/WebCore/html/HTMLImageElement.cpp
+@@ -74,7 +74,7 @@ PassRefPtr<HTMLImageElement> HTMLImageEl
+ RefPtr<HTMLImageElement> image = adoptRef(new HTMLImageElement(imgTag, document));
+ if (optionalWidth)
+ image->setWidth(*optionalWidth);
+- if (optionalHeight > 0)
++ if (optionalHeight)
+ image->setHeight(*optionalHeight);
+ return image.release();
+ }
Property changes on: head/www/qt4-webkit/files/patch-src_3rdparty_webkit_Source_WebCore_html_HTMLImageElement.cpp
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt4-webkit/files/patch-libcxx
===================================================================
--- head/www/qt4-webkit/files/patch-libcxx (nonexistent)
+++ head/www/qt4-webkit/files/patch-libcxx (revision 434380)
@@ -0,0 +1,620 @@
+Several upstream (as in WebKit itself) commits that fix the build with libc++,
+plus a few additional changes made only for the port (the OS(FREEBSD) part for
+time_t). Some of those commits had to be edited because they did not apply
+cleanly to the ancient WebKit checkout present in Qt.
+
+Upstream commit messages:
+
+------------------------------------------------------------------------
+r86529 | abarth@webkit.org | 2011-05-16 09:30:58 +0300 (Mon, 16 May 2011) | 7 lines
+
+2011-05-15 Adam Barth <abarth@webkit.org>
+
+ Attempt to fix Qt build. (Strict PassOwnPtr fix.)
+
+ * dom/XMLDocumentParserQt.cpp:
+ (WebCore::XMLDocumentParser::doEnd):
+
+------------------------------------------------------------------------
+r86530 | abarth@webkit.org | 2011-05-16 09:36:56 +0300 (Mon, 16 May 2011) | 13 lines
+
+2011-05-15 Adam Barth <abarth@webkit.org>
+
+ Attempt to fix Qt build. (Strict PassOwnPtr fix.)
+
+* platform/network/qt/QNetworkReplyHandler.cpp:
+(WebCore::QNetworkReplyWrapper::release):
+(WebCore::QNetworkReplyWrapper::receiveMetaData):
+(WebCore::QNetworkReplyWrapper::receiveSniffedMIMEType):
+(WebCore::QNetworkReplyHandler::release):
+(WebCore::QNetworkReplyHandler::finish):
+(WebCore::QNetworkReplyHandler::redirect):
+(WebCore::QNetworkReplyHandler::start):
+
+------------------------------------------------------------------------
+r86531 | abarth@webkit.org | 2011-05-16 09:41:08 +0300 (Mon, 16 May 2011) | 7 lines
+
+2011-05-15 Adam Barth <abarth@webkit.org>
+
+ Attempt to fix Qt build. (Strict PassOwnPtr fix.)
+
+ * platform/text/qt/TextCodecQt.cpp:
+ (WebCore::newTextCodecQt):
+
+------------------------------------------------------------------------
+r86532 | abarth@webkit.org | 2011-05-16 09:46:33 +0300 (Mon, 16 May 2011) | 8 lines
+
+2011-05-15 Adam Barth <abarth@webkit.org>
+
+ Attempt to fix Qt build. (Strict PassOwnPtr fix.)
+
+ * platform/graphics/qt/GraphicsLayerQt.cpp:
+ (WebCore::GraphicsLayerQt::GraphicsLayerQt):
+ (WebCore::GraphicsLayer::create):
+
+
+------------------------------------------------------------------------
+r86533 | abarth@webkit.org | 2011-05-16 09:52:23 +0300 (Mon, 16 May 2011) | 10 lines
+
+2011-05-15 Adam Barth <abarth@webkit.org>
+
+ Attempt to fix the Qt build. (Strict PassOwnPtr fix.)
+
+ * Api/qgraphicswebview.cpp:
+ (QGraphicsWebViewPrivate::detachCurrentPage):
+ (QGraphicsWebView::setPage):
+ * Api/qwebpage.cpp:
+ (QWebPage::setView):
+
+------------------------------------------------------------------------
+r86537 | abarth@webkit.org | 2011-05-16 10:24:01 +0300 (Mon, 16 May 2011) | 41 lines
+
+2011-05-16 Adam Barth <abarth@webkit.org>
+
+ [Qt] QtPlatformPlugin create methods should use PassOwnPtr
+ https://bugs.webkit.org/show_bug.cgi?id=60873
+
+ This change is slightly more than a build fix because the patch kind of
+ spidered a bit while I was trying to fix the build the "right way."
+ Hopefully nothing here is controversial.
+
+ * Api/qwebpage.cpp:
+ (QWebPagePrivate::adjustPointForClicking):
+ * WebCoreSupport/ChromeClientQt.cpp:
+ (WebCore::ChromeClientQt::createSelectPopup):
+ * WebCoreSupport/FullScreenVideoQt.cpp:
+ (WebCore::FullScreenVideoQt::FullScreenVideoQt):
+ (WebCore::FullScreenVideoQt::~FullScreenVideoQt):
+ * WebCoreSupport/FullScreenVideoQt.h:
+ * WebCoreSupport/NotificationPresenterClientQt.cpp:
+ (WebCore::NotificationWrapper::NotificationWrapper):
+ (WebCore::NotificationPresenterClientQt::displayNotification):
+ * WebCoreSupport/PopupMenuQt.cpp:
+ (WebCore::PopupMenuQt::PopupMenuQt):
+ (WebCore::PopupMenuQt::~PopupMenuQt):
+ (WebCore::PopupMenuQt::show):
+ * WebCoreSupport/PopupMenuQt.h:
+ * WebCoreSupport/QtPlatformPlugin.cpp:
+ (WebCore::QtPlatformPlugin::createSelectInputMethod):
+ (WebCore::QtPlatformPlugin::createNotificationPresenter):
+ (WebCore::QtPlatformPlugin::createHapticFeedbackPlayer):
+ (WebCore::QtPlatformPlugin::createTouchModifier):
+ (WebCore::QtPlatformPlugin::createFullScreenVideoHandler):
+ * WebCoreSupport/QtPlatformPlugin.h:
+ (WebCore::QtPlatformPlugin::QtPlatformPlugin):
+2011-05-16 Adam Barth <abarth@webkit.org>
+
+ [Qt] QtPlatformPlugin create methods should use PassOwnPtr
+ https://bugs.webkit.org/show_bug.cgi?id=60873
+
+ * plugins/qt/PluginViewQt.cpp:
+ (WebCore::PluginView::platformStart):
+
+------------------------------------------------------------------------
+r86538 | abarth@webkit.org | 2011-05-16 10:27:51 +0300 (Mon, 16 May 2011) | 6 lines
+
+2011-05-16 Adam Barth <abarth@webkit.org>
+
+ Missing include.
+
+ * WebCoreSupport/PopupMenuQt.h:
+
+------------------------------------------------------------------------
+r86540 | abarth@webkit.org | 2011-05-16 10:43:22 +0300 (Mon, 16 May 2011) | 10 lines
+
+2011-05-16 Adam Barth <abarth@webkit.org>
+
+ Attempt to fix Qt build. (Strict PassOwnPtr fix.)
+
+ This patch requires some slightly fancy footwork.
+
+ * WebCoreSupport/InspectorClientQt.cpp:
+ (WebCore::InspectorClientQt::openInspectorFrontend):
+ (WebCore::InspectorFrontendClientQt::InspectorFrontendClientQt):
+
+------------------------------------------------------------------------
+r86541 | abarth@webkit.org | 2011-05-16 10:51:04 +0300 (Mon, 16 May 2011) | 7 lines
+
+2011-05-16 Adam Barth <abarth@webkit.org>
+
+ Sigh. This code is somewhat crazy.
+
+ * WebCoreSupport/InspectorClientQt.cpp:
+ (WebCore::InspectorClientQt::openInspectorFrontend):
+
+------------------------------------------------------------------------
+r86550 | abarth@webkit.org | 2011-05-16 12:30:40 +0300 (Mon, 16 May 2011) | 13 lines
+
+2011-05-16 Adam Barth <abarth@webkit.org>
+
+ Partial revert of r86537. FullScreenVideoQt.h can't depend on OwnPtr.h
+ because moc_FullScreenVideoQt.cpp fails to include config.h.
+ Apparently, having moc_FullScreenVideoQt.cpp properly include config.h
+ is hard, so we're going back to manual new and delete for this class.
+ Bad times.
+
+ * WebCoreSupport/FullScreenVideoQt.cpp:
+ (WebCore::FullScreenVideoQt::FullScreenVideoQt):
+ (WebCore::FullScreenVideoQt::~FullScreenVideoQt):
+ * WebCoreSupport/FullScreenVideoQt.h:
+
+------------------------------------------------------------------------
+r90915 | andersca@apple.com | 2011-07-13 17:11:49 +0300 (Wed, 13 Jul 2011) | 7 lines
+
+If a compiler has nullptr support, include <cstddef> to get the nullptr_t definition
+https://bugs.webkit.org/show_bug.cgi?id=64429
+
+Include the cstddef which has the nullptr_t typedef according to the C++0x standard.
+
+* wtf/NullPtr.h:
+
+------------------------------------------------------------------------
+r92556 | darin@apple.com | 2011-08-06 23:17:26 +0300 (Sat, 06 Aug 2011) | 17 lines
+
+Fix Timer heap implementation to work with more libraries (other versions of STL)
+https://bugs.webkit.org/show_bug.cgi?id=65782
+
+Reviewed by Anders Carlsson.
+
+No behavior change, so no tests needed. Existing tests pass.
+
+* platform/Timer.cpp: Added TimerHeapPointer and TimerHeapReference class
+alongside the TimerHeapIterator class. Also added a swap function. Also
+added a TimerHeapLessThanFunction class.
+(WebCore::TimerBase::heapDecreaseKey): Pass pointers in to the TimerHeapIterator
+since that's how the class works now. Pass a TimerHeapLessThanFunction object
+instead of letting the library use the < operator directly.
+(WebCore::TimerBase::heapPopMin): Ditto.
+
+* platform/Timer.h: Updated for above changes.
+
+------------------------------------------------------------------------
+r107489 | weinig@apple.com | 2012-02-12 01:10:24 +0200 (Sun, 12 Feb 2012) | 9 lines
+
+Prepare JavaScriptCore to build with libc++
+<rdar://problem/10426673>
+https://bugs.webkit.org/show_bug.cgi?id=78424
+
+Reviewed by Anders Carlsson.
+
+* wtf/NullPtr.cpp:
+* wtf/NullPtr.h:
+libc++ provides std::nullptr emulation, so we don't have to.
+
+------------------------------------------------------------------------
+--- src/3rdparty/webkit/Source/JavaScriptCore/wtf/NullPtr.h
++++ src/3rdparty/webkit/Source/JavaScriptCore/wtf/NullPtr.h
+@@ -35,10 +35,14 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ #define __has_feature(feature) 0
+ #endif
+
+-#if __has_feature(cxx_nullptr) || (GCC_VERSION_AT_LEAST(4, 6, 0) && defined(__GXX_EXPERIMENTAL_CXX0X__)) || (defined(_MSC_VER) && _MSC_VER >= 1600 && !COMPILER(INTEL)) || defined(_LIBCPP_VERSION)
++#include <ciso646>
++
++#if __has_feature(cxx_nullptr) || (GCC_VERSION_AT_LEAST(4, 6, 0) && defined(__GXX_EXPERIMENTAL_CXX0X__)) || (defined(_MSC_VER) && _MSC_VER >= 1600 && !COMPILER(INTEL)) || defined(_LIBCPP_VERSION)
+
+ #define HAVE_NULLPTR 1
+
++#include <cstddef>
++
+ #else
+
+ namespace std {
+--- src/3rdparty/webkit/Source/WebCore/dom/XMLDocumentParserQt.cpp (revision 86528)
++++ src/3rdparty/webkit/Source/WebCore/dom/XMLDocumentParserQt.cpp (revision 86529)
+@@ -215,7 +215,7 @@
+ {
+ #if ENABLE(XSLT)
+ if (m_sawXSLTransform) {
+- document()->setTransformSource(new TransformSource(m_originalSourceForTransform));
++ document()->setTransformSource(adoptPtr(new TransformSource(m_originalSourceForTransform)));
+ document()->setParsing(false); // Make the doc think it's done, so it will apply xsl sheets.
+ document()->styleSelectorChanged(RecalcStyleImmediately);
+ document()->setParsing(true);
+--- src/3rdparty/webkit/Source/WebCore/loader/icon/IconRecord.h
++++ src/3rdparty/webkit/Source/WebCore/loader/icon/IconRecord.h
+@@ -38,7 +38,7 @@
+ #include <wtf/OwnPtr.h>
+ #include <wtf/text/StringHash.h>
+
+-#if OS(SOLARIS)
++#if OS(FREEBSD) || OS(SOLARIS)
+ #include <sys/types.h> // For time_t structure.
+ #endif
+
+--- src/3rdparty/webkit/Source/WebCore/page/Page.h
++++ src/3rdparty/webkit/Source/WebCore/page/Page.h
+@@ -29,7 +29,7 @@
+ #include <wtf/HashSet.h>
+ #include <wtf/Noncopyable.h>
+
+-#if OS(SOLARIS)
++#if OS(FREEBSD) || OS(SOLARIS)
+ #include <sys/time.h> // For time_t structure.
+ #endif
+
+--- src/3rdparty/webkit/Source/WebCore/platform/network/ResourceResponseBase.h
++++ src/3rdparty/webkit/Source/WebCore/platform/network/ResourceResponseBase.h
+@@ -35,7 +35,7 @@
+ #include <wtf/PassOwnPtr.h>
+ #include <wtf/RefPtr.h>
+
+-#if OS(SOLARIS)
++#if OS(FREEBSD) || OS(SOLARIS)
+ #include <sys/time.h> // For time_t structure.
+ #endif
+
+--- src/3rdparty/webkit/Source/WebCore/platform/network/qt/QNetworkReplyHandler.cpp (revision 86529)
++++ src/3rdparty/webkit/Source/WebCore/platform/network/qt/QNetworkReplyHandler.cpp (revision 86530)
+@@ -285,7 +285,7 @@
+
+ Q_ASSERT(!m_sniffer);
+
+- m_sniffer = new QtMIMETypeSniffer(m_reply, m_advertisedMIMEType, isSupportedImageType);
++ m_sniffer = adoptPtr(new QtMIMETypeSniffer(m_reply, m_advertisedMIMEType, isSupportedImageType));
+
+ if (m_sniffer->isFinished()) {
+ receiveSniffedMIMEType();
+@@ -666,7 +666,7 @@
+ if (!reply)
+ return;
+
+- m_replyWrapper = new QNetworkReplyWrapper(&m_queue, reply, m_resourceHandle->shouldContentSniff() && d->m_context->mimeSniffingEnabled(), this);
++ m_replyWrapper = adoptPtr(new QNetworkReplyWrapper(&m_queue, reply, m_resourceHandle->shouldContentSniff() && d->m_context->mimeSniffingEnabled(), this));
+
+ if (m_loadType == SynchronousLoad) {
+ m_replyWrapper->synchronousLoad();
+===================================================================
+--- src/3rdparty/webkit/Source/WebCore/platform/text/qt/TextCodecQt.cpp (revision 86530)
++++ src/3rdparty/webkit/Source/WebCore/platform/text/qt/TextCodecQt.cpp (revision 86531)
+@@ -64,7 +64,7 @@
+
+ static PassOwnPtr<TextCodec> newTextCodecQt(const TextEncoding& encoding, const void*)
+ {
+- return new TextCodecQt(encoding);
++ return adoptPtr(new TextCodecQt(encoding));
+ }
+
+ void TextCodecQt::registerCodecs(TextCodecRegistrar registrar)
+
+--- src/3rdparty/webkit/Source/WebKit/qt/Api/qgraphicswebview.cpp (revision 86532)
++++ src/3rdparty/webkit/Source/WebKit/qt/Api/qgraphicswebview.cpp (revision 86533)
+@@ -504,7 +504,7 @@
+ if (!d->page)
+ return;
+
+- d->page->d->client = new PageClientQGraphicsWidget(this, page); // set the page client
++ d->page->d->client = adoptPtr(new PageClientQGraphicsWidget(this, page));
+
+ if (d->overlay())
+ d->overlay()->prepareGraphicsItemGeometryChange();
+--- src/3rdparty/webkit/Source/WebKit/qt/Api/qwebpage.cpp (revision 86532)
++++ src/3rdparty/webkit/Source/WebKit/qt/Api/qwebpage.cpp (revision 86550)
+@@ -1319,7 +1319,7 @@
+ void QWebPagePrivate::adjustPointForClicking(QGraphicsSceneMouseEvent* ev)
+ {
+ QtPlatformPlugin platformPlugin;
+- QWebTouchModifier* touchModifier = platformPlugin.createTouchModifier();
++ OwnPtr<QWebTouchModifier> touchModifier = platformPlugin.createTouchModifier();
+ if (!touchModifier)
+ return;
+
+@@ -1328,8 +1328,7 @@
+ unsigned bottomPadding = touchModifier->hitTestPaddingForTouch(QWebTouchModifier::Down);
+ unsigned leftPadding = touchModifier->hitTestPaddingForTouch(QWebTouchModifier::Left);
+
+- delete touchModifier;
+- touchModifier = 0;
++ touchModifier = nullptr;
+
+ if (!topPadding && !rightPadding && !bottomPadding && !leftPadding)
+ return;
+@@ -2044,7 +2044,7 @@
+ }
+
+ if (view)
+- d->client = new PageClientQWidget(view, this);
++ d->client = adoptPtr(new PageClientQWidget(view, this));
+ }
+
+ /*!
+--- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/PopupMenuQt.h (revision 86536)
++++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/PopupMenuQt.h (revision 86550)
+@@ -22,6 +22,8 @@
+
+ #include "PopupMenu.h"
+ #include <QObject>
++#include <wtf/OwnPtr.h>
++#include <wtf/PassOwnPtr.h>
+
+ class QWebSelectData;
+ class QWebSelectMethod;
+@@ -49,8 +51,8 @@
+
+ private:
+ PopupMenuClient* m_popupClient;
+- QWebSelectMethod* m_popup;
+- QWebSelectData* m_selectData;
++ OwnPtr<QWebSelectMethod> m_popup;
++ OwnPtr<QWebSelectData> m_selectData;
+ const ChromeClientQt* m_chromeClient;
+ };
+
+--- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/QtPlatformPlugin.h (revision 86536)
++++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/QtPlatformPlugin.h (revision 86550)
+@@ -22,6 +22,7 @@
+ #define QtPlatformPlugin_h
+
+ #include <QPluginLoader>
++#include <wtf/PassOwnPtr.h>
+
+ class QWebSelectMethod;
+ class QWebKitPlatformPlugin;
+@@ -37,15 +38,20 @@
+
+ class QtPlatformPlugin {
+ public:
+- QtPlatformPlugin() : m_loaded(false), m_plugin(0) {}
++ QtPlatformPlugin()
++ : m_loaded(false)
++ , m_plugin(0)
++ {
++ }
++
+ ~QtPlatformPlugin();
+
+- QWebSelectMethod* createSelectInputMethod();
+- QWebNotificationPresenter* createNotificationPresenter();
+- QWebHapticFeedbackPlayer* createHapticFeedbackPlayer();
+- QWebTouchModifier* createTouchModifier();
++ PassOwnPtr<QWebSelectMethod> createSelectInputMethod();
++ PassOwnPtr<QWebNotificationPresenter> createNotificationPresenter();
++ PassOwnPtr<QWebHapticFeedbackPlayer> createHapticFeedbackPlayer();
++ PassOwnPtr<QWebTouchModifier> createTouchModifier();
+ #if ENABLE(VIDEO) && USE(QT_MULTIMEDIA)
+- QWebFullScreenVideoHandler* createFullScreenVideoHandler();
++ PassOwnPtr<QWebFullScreenVideoHandler> createFullScreenVideoHandler();
+ #endif
+
+ QWebKitPlatformPlugin* plugin();
+--- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp (revision 86536)
++++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp (revision 86550)
+@@ -696,18 +696,18 @@
+ }
+ #endif
+
+-QWebSelectMethod* ChromeClientQt::createSelectPopup() const
++PassOwnPtr<QWebSelectMethod> ChromeClientQt::createSelectPopup() const
+ {
+- QWebSelectMethod* result = m_platformPlugin.createSelectInputMethod();
++ OwnPtr<QWebSelectMethod> result = m_platformPlugin.createSelectInputMethod();
+ if (result)
+- return result;
++ return result.release();
+
+ #if defined(Q_WS_MAEMO_5)
+- return new QtMaemoWebPopup;
++ return adoptPtr(new QtMaemoWebPopup);
+ #elif !defined(QT_NO_COMBOBOX)
+- return new QtFallbackWebPopup(this);
++ return adoptPtr(new QtFallbackWebPopup(this));
+ #else
+- return 0;
++ return nullptr;
+ #endif
+ }
+
+--- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/PopupMenuQt.cpp (revision 86536)
++++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/PopupMenuQt.cpp (revision 86550)
+@@ -82,8 +82,6 @@
+
+ PopupMenuQt::PopupMenuQt(PopupMenuClient* client, const ChromeClientQt* chromeClient)
+ : m_popupClient(client)
+- , m_popup(0)
+- , m_selectData(0)
+ , m_chromeClient(chromeClient)
+ {
+ }
+@@ -90,8 +88,6 @@
+
+ PopupMenuQt::~PopupMenuQt()
+ {
+- delete m_selectData;
+- delete m_popup;
+ }
+
+ void PopupMenuQt::disconnectClient()
+@@ -107,11 +103,11 @@
+
+ if (!m_popup) {
+ m_popup = m_chromeClient->createSelectPopup();
+- connect(m_popup, SIGNAL(didHide()), this, SLOT(didHide()));
+- connect(m_popup, SIGNAL(selectItem(int, bool, bool)), this, SLOT(selectItem(int, bool, bool)));
++ connect(m_popup.get(), SIGNAL(didHide()), this, SLOT(didHide()));
++ connect(m_popup.get(), SIGNAL(selectItem(int, bool, bool)), this, SLOT(selectItem(int, bool, bool)));
+ }
+
+- if (QtFallbackWebPopup* fallback = qobject_cast<QtFallbackWebPopup*>(m_popup)) {
++ if (QtFallbackWebPopup* fallback = qobject_cast<QtFallbackWebPopup*>(m_popup.get())) {
+ QRect geometry(rect);
+ geometry.moveTopLeft(view->contentsToWindow(rect.location()));
+ fallback->setGeometry(geometry);
+@@ -118,10 +114,8 @@
+ fallback->setFont(m_popupClient->menuStyle().font().font());
+ }
+
+- if (m_selectData)
+- delete m_selectData;
+- m_selectData = new SelectData(m_popupClient);
+- m_popup->show(*m_selectData);
++ m_selectData = adoptPtr(new SelectData(m_popupClient));
++ m_popup->show(*m_selectData.get());
+ #endif
+ }
+
+--- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/FullScreenVideoQt.cpp (revision 86536)
++++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/FullScreenVideoQt.cpp (revision 86550)
+@@ -136,7 +136,7 @@
+ Q_ASSERT(m_chromeClient);
+
+ #if USE(QT_MULTIMEDIA)
+- m_FullScreenVideoHandler = m_chromeClient->m_platformPlugin.createFullScreenVideoHandler();
++ m_FullScreenVideoHandler = m_chromeClient->m_platformPlugin.createFullScreenVideoHandler().leakPtr();
+ if (!m_FullScreenVideoHandler)
+ m_FullScreenVideoHandler = new DefaultFullScreenVideoHandler;
+
+--- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/QtPlatformPlugin.cpp (revision 86536)
++++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/QtPlatformPlugin.cpp (revision 86550)
+@@ -102,36 +102,35 @@
+ return m_plugin;
+ }
+
+-QWebSelectMethod* QtPlatformPlugin::createSelectInputMethod()
++PassOwnPtr<QWebSelectMethod> QtPlatformPlugin::createSelectInputMethod()
+ {
+ QWebKitPlatformPlugin* p = plugin();
+- return p ? static_cast<QWebSelectMethod*>(p->createExtension(QWebKitPlatformPlugin::MultipleSelections)) : 0;
++ return adoptPtr(p ? static_cast<QWebSelectMethod*>(p->createExtension(QWebKitPlatformPlugin::MultipleSelections)) : 0);
+ }
+
+-
+-QWebNotificationPresenter* QtPlatformPlugin::createNotificationPresenter()
++PassOwnPtr<QWebNotificationPresenter> QtPlatformPlugin::createNotificationPresenter()
+ {
+ QWebKitPlatformPlugin* p = plugin();
+- return p ? static_cast<QWebNotificationPresenter*>(p->createExtension(QWebKitPlatformPlugin::Notifications)) : 0;
++ return adoptPtr(p ? static_cast<QWebNotificationPresenter*>(p->createExtension(QWebKitPlatformPlugin::Notifications)) : 0);
+ }
+
+-QWebHapticFeedbackPlayer* QtPlatformPlugin::createHapticFeedbackPlayer()
++PassOwnPtr<QWebHapticFeedbackPlayer> QtPlatformPlugin::createHapticFeedbackPlayer()
+ {
+ QWebKitPlatformPlugin* p = plugin();
+- return p ? static_cast<QWebHapticFeedbackPlayer*>(p->createExtension(QWebKitPlatformPlugin::Haptics)) : 0;
++ return adoptPtr(p ? static_cast<QWebHapticFeedbackPlayer*>(p->createExtension(QWebKitPlatformPlugin::Haptics)) : 0);
+ }
+
+-QWebTouchModifier* QtPlatformPlugin::createTouchModifier()
++PassOwnPtr<QWebTouchModifier> QtPlatformPlugin::createTouchModifier()
+ {
+ QWebKitPlatformPlugin* p = plugin();
+- return p ? static_cast<QWebTouchModifier*>(p->createExtension(QWebKitPlatformPlugin::TouchInteraction)) : 0;
++ return adoptPtr(p ? static_cast<QWebTouchModifier*>(p->createExtension(QWebKitPlatformPlugin::TouchInteraction)) : 0);
+ }
+
+ #if ENABLE(VIDEO) && USE(QT_MULTIMEDIA)
+-QWebFullScreenVideoHandler* QtPlatformPlugin::createFullScreenVideoHandler()
++PassOwnPtr<QWebFullScreenVideoHandler> QtPlatformPlugin::createFullScreenVideoHandler()
+ {
+ QWebKitPlatformPlugin* p = plugin();
+- return p ? static_cast<QWebFullScreenVideoHandler*>(p->createExtension(QWebKitPlatformPlugin::FullScreenVideoPlayer)) : 0;
++ return adoptPtr(p ? static_cast<QWebFullScreenVideoHandler*>(p->createExtension(QWebKitPlatformPlugin::FullScreenVideoPlayer)) : 0);
+ }
+ #endif
+
+--- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp (revision 86536)
++++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp (revision 86550)
+@@ -203,8 +203,9 @@
+ void InspectorClientQt::openInspectorFrontend(WebCore::InspectorController* inspectorController)
+ {
+ #if ENABLE(INSPECTOR)
+- QWebView* inspectorView = new QWebView;
+- InspectorClientWebPage* inspectorPage = new InspectorClientWebPage(inspectorView);
++ OwnPtr<QWebView> inspectorView = adoptPtr(new QWebView);
++ // FIXME: Where does inspectorPage get deleted?
++ InspectorClientWebPage* inspectorPage = new InspectorClientWebPage(inspectorView.get());
+ inspectorView->setPage(inspectorPage);
+
+ QWebInspector* inspector = m_inspectedWebPage->d->getOrCreateInspector();
+@@ -229,11 +230,14 @@
+ inspectorPage->setProperty("_q_inspectorJavaScriptWindowObjects", inspectorJavaScriptWindowObjects);
+ #endif
+ inspectorView->page()->mainFrame()->load(inspectorUrl);
+- m_inspectedWebPage->d->inspectorFrontend = inspectorView;
+- inspector->d->setFrontend(inspectorView);
++ m_inspectedWebPage->d->inspectorFrontend = inspectorView.get();
++ inspector->d->setFrontend(inspectorView.get());
+
+- m_frontendClient = new InspectorFrontendClientQt(m_inspectedWebPage, inspectorView, this);
+- inspectorView->page()->d->page->inspectorController()->setInspectorFrontendClient(m_frontendClient);
++ // Is 'controller' the same object as 'inspectorController' (which appears to be unused)?
++ InspectorController* controller = inspectorView->page()->d->page->inspectorController();
++ OwnPtr<InspectorFrontendClientQt> frontendClient = adoptPtr(new InspectorFrontendClientQt(m_inspectedWebPage, inspectorView.release(), this));
++ m_frontendClient = frontendClient.get();
++ controller->setInspectorFrontendClient(frontendClient.release());
+ m_frontendWebPage = inspectorPage;
+ #endif
+ }
+@@ -297,7 +301,7 @@
+
+ #if ENABLE(INSPECTOR)
+ InspectorFrontendClientQt::InspectorFrontendClientQt(QWebPage* inspectedWebPage, PassOwnPtr<QWebView> inspectorView, InspectorClientQt* inspectorClient)
+- : InspectorFrontendClientLocal(inspectedWebPage->d->page->inspectorController(), inspectorView->page()->d->page, new InspectorFrontendSettingsQt())
++ : InspectorFrontendClientLocal(inspectedWebPage->d->page->inspectorController(), inspectorView->page()->d->page, adoptPtr(new InspectorFrontendSettingsQt()))
+ , m_inspectedWebPage(inspectedWebPage)
+ , m_inspectorView(inspectorView)
+ , m_destroyingInspectorView(false)
+--- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.cpp (revision 86536)
++++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.cpp (revision 86550)
+@@ -211,9 +211,9 @@
+ QPixmap pixmap;
+ if (bytes.length() && pixmap.loadFromData(bytes)) {
+ QIcon icon(pixmap);
+- wrapper->m_notificationIcon = new QSystemTrayIcon(icon);
++ wrapper->m_notificationIcon = adoptPtr(new QSystemTrayIcon(icon));
+ } else
+- wrapper->m_notificationIcon = new QSystemTrayIcon();
++ wrapper->m_notificationIcon = adoptPtr(new QSystemTrayIcon());
+ #endif
+ }
+
+--- src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/ChromeClientQt.h (revision 86536)
++++ src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/ChromeClientQt.h (revision 86550)
+@@ -34,6 +34,7 @@
+ #include "KURL.h"
+ #include "PlatformString.h"
+ #include "QtPlatformPlugin.h"
++#include <wtf/PassOwnPtr.h>
+ #include <wtf/RefCounted.h>
+
+ QT_BEGIN_NAMESPACE
+@@ -189,7 +190,7 @@
+ virtual PassRefPtr<SearchPopupMenu> createSearchPopupMenu(PopupMenuClient*) const;
+ virtual void populateVisitedLinks();
+
+- QWebSelectMethod* createSelectPopup() const;
++ PassOwnPtr<QWebSelectMethod> createSelectPopup() const;
+
+ virtual void dispatchViewportDataDidChange(const ViewportArguments&) const;
+
+--- src/3rdparty/webkit/Source/WebCore/plugins/qt/PluginViewQt.cpp (revision 86536)
++++ src/3rdparty/webkit/Source/WebCore/plugins/qt/PluginViewQt.cpp (revision 86550)
+@@ -950,7 +950,7 @@ bool PluginView::platformStart()
+
+ #if USE(ACCELERATED_COMPOSITING) && !USE(TEXTURE_MAPPER)
+ if (shouldUseAcceleratedCompositing()) {
+- m_platformLayer = new PluginGraphicsLayerQt(this);
++ m_platformLayer = adoptPtr(new PluginGraphicsLayerQt(this));
+ // Trigger layer computation in RenderLayerCompositor
+ m_element->setNeedsStyleRecalc(SyntheticStyleChange);
+ }
Property changes on: head/www/qt4-webkit/files/patch-libcxx
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Atomics.h
===================================================================
--- head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Atomics.h (nonexistent)
+++ head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Atomics.h (revision 434380)
@@ -0,0 +1,34 @@
+--- src/3rdparty/webkit/Source/JavaScriptCore/wtf/Atomics.h.orig 2014-04-10 20:37:11.000000000 +0200
++++ src/3rdparty/webkit/Source/JavaScriptCore/wtf/Atomics.h 2014-04-24 16:11:40.000000000 +0200
+@@ -63,18 +63,10 @@
+
+ #if OS(WINDOWS)
+ #include <windows.h>
+-#elif OS(DARWIN)
+-#include <libkern/OSAtomic.h>
+ #elif OS(ANDROID)
+ #include <cutils/atomic.h>
+ #elif OS(QNX)
+ #include <atomic.h>
+-#elif COMPILER(GCC) && !OS(SYMBIAN)
+-#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 2))
+-#include <ext/atomicity.h>
+-#else
+-#include <bits/atomicity.h>
+-#endif
+ #endif
+
+ namespace WTF {
+@@ -90,12 +82,6 @@
+ inline int atomicDecrement(int volatile* addend) { return InterlockedDecrement(reinterpret_cast<long volatile*>(addend)); }
+ #endif
+
+-#elif OS(DARWIN)
+-#define WTF_USE_LOCKFREE_THREADSAFESHARED 1
+-
+-inline int atomicIncrement(int volatile* addend) { return OSAtomicIncrement32Barrier(const_cast<int*>(addend)); }
+-inline int atomicDecrement(int volatile* addend) { return OSAtomicDecrement32Barrier(const_cast<int*>(addend)); }
+-
+ #elif OS(ANDROID)
+
+ inline int atomicIncrement(int volatile* addend) { return android_atomic_inc(addend); }
Property changes on: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Atomics.h
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt4-webkit/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp
===================================================================
--- head/www/qt4-webkit/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp (nonexistent)
+++ head/www/qt4-webkit/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp (revision 434380)
@@ -0,0 +1,11 @@
+--- ./src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp.orig 2011-12-08 06:06:02.000000000 +0100
++++ ./src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp 2012-01-08 17:18:52.511348683 +0100
+@@ -80,7 +80,7 @@
+ #define THUMB_FUNC_PARAM(name)
+ #endif
+
+-#if OS(LINUX) && CPU(X86_64)
++#if (OS(LINUX) || OS(FREEBSD)) && CPU(X86_64)
+ #define SYMBOL_STRING_RELOCATION(name) #name "@plt"
+ #else
+ #define SYMBOL_STRING_RELOCATION(name) SYMBOL_STRING(name)
Property changes on: head/www/qt4-webkit/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h
===================================================================
--- head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h (nonexistent)
+++ head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h (revision 434380)
@@ -0,0 +1,26 @@
+--- ./src/3rdparty/webkit/Source/JavaScriptCore/runtime/JSValueInlineMethods.h.orig 2011-12-08 06:06:02.000000000 +0100
++++ ./src/3rdparty/webkit/Source/JavaScriptCore/runtime/JSValueInlineMethods.h 2012-01-08 17:18:52.511348683 +0100
+@@ -227,7 +227,11 @@
+ u.asBits.tag = CellTag;
+ else
+ u.asBits.tag = EmptyValueTag;
++#if defined(__sparc64__)
++ u.asBits.payload = reinterpret_cast<int64_t>(ptr);
++#else
+ u.asBits.payload = reinterpret_cast<int32_t>(ptr);
++#endif
+ #if ENABLE(JSC_ZOMBIES)
+ ASSERT(!isZombie());
+ #endif
+@@ -239,7 +243,11 @@
+ u.asBits.tag = CellTag;
+ else
+ u.asBits.tag = EmptyValueTag;
++#if defined(__sparc64__)
++ u.asBits.payload = reinterpret_cast<int64_t>(const_cast<JSCell*>(ptr));
++#else
+ u.asBits.payload = reinterpret_cast<int32_t>(const_cast<JSCell*>(ptr));
++#endif
+ #if ENABLE(JSC_ZOMBIES)
+ ASSERT(!isZombie());
+ #endif
Property changes on: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro
===================================================================
--- head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro (nonexistent)
+++ head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro (revision 434380)
@@ -0,0 +1,11 @@
+--- ./src/3rdparty/webkit/Source/WebKit/qt/QtWebKit.pro.orig 2011-12-08 06:06:03.000000000 +0100
++++ ./src/3rdparty/webkit/Source/WebKit/qt/QtWebKit.pro 2012-01-08 17:18:52.521346053 +0100
+@@ -84,7 +84,7 @@
+ }
+
+ moduleFile=$$PWD/qt_webkit_version.pri
+-isEmpty(QT_BUILD_TREE):include($$moduleFile)
++include($$moduleFile)
+ VERSION = $${QT_WEBKIT_MAJOR_VERSION}.$${QT_WEBKIT_MINOR_VERSION}.$${QT_WEBKIT_PATCH_VERSION}
+
+ symbian {
Property changes on: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt4-webkit/pkg-plist
===================================================================
--- head/www/qt4-webkit/pkg-plist (nonexistent)
+++ head/www/qt4-webkit/pkg-plist (revision 434380)
@@ -0,0 +1,68 @@
+%%QT_INCDIR%%/Qt/QtWebKit
+%%QT_INCDIR%%/Qt/qgraphicswebview.h
+%%QT_INCDIR%%/Qt/qwebdatabase.h
+%%QT_INCDIR%%/Qt/qwebelement.h
+%%QT_INCDIR%%/Qt/qwebframe.h
+%%QT_INCDIR%%/Qt/qwebhistory.h
+%%QT_INCDIR%%/Qt/qwebhistoryinterface.h
+%%QT_INCDIR%%/Qt/qwebinspector.h
+%%QT_INCDIR%%/Qt/qwebkitglobal.h
+%%QT_INCDIR%%/Qt/qwebkitplatformplugin.h
+%%QT_INCDIR%%/Qt/qwebkitversion.h
+%%QT_INCDIR%%/Qt/qwebpage.h
+%%QT_INCDIR%%/Qt/qwebpluginfactory.h
+%%QT_INCDIR%%/Qt/qwebscriptworld.h
+%%QT_INCDIR%%/Qt/qwebsecurityorigin.h
+%%QT_INCDIR%%/Qt/qwebsettings.h
+%%QT_INCDIR%%/Qt/qwebview.h
+%%QT_INCDIR%%/QtWebKit/QGraphicsWebView
+%%QT_INCDIR%%/QtWebKit/QWebDatabase
+%%QT_INCDIR%%/QtWebKit/QWebElement
+%%QT_INCDIR%%/QtWebKit/QWebElementCollection
+%%QT_INCDIR%%/QtWebKit/QWebFrame
+%%QT_INCDIR%%/QtWebKit/QWebFullScreenVideoHandler
+%%QT_INCDIR%%/QtWebKit/QWebHapticFeedbackPlayer
+%%QT_INCDIR%%/QtWebKit/QWebHistory
+%%QT_INCDIR%%/QtWebKit/QWebHistoryInterface
+%%QT_INCDIR%%/QtWebKit/QWebHistoryItem
+%%QT_INCDIR%%/QtWebKit/QWebHitTestResult
+%%QT_INCDIR%%/QtWebKit/QWebInspector
+%%QT_INCDIR%%/QtWebKit/QWebKitPlatformPlugin
+%%QT_INCDIR%%/QtWebKit/QWebNotificationData
+%%QT_INCDIR%%/QtWebKit/QWebNotificationPresenter
+%%QT_INCDIR%%/QtWebKit/QWebPage
+%%QT_INCDIR%%/QtWebKit/QWebPluginFactory
+%%QT_INCDIR%%/QtWebKit/QWebScriptWorld
+%%QT_INCDIR%%/QtWebKit/QWebSecurityOrigin
+%%QT_INCDIR%%/QtWebKit/QWebSelectData
+%%QT_INCDIR%%/QtWebKit/QWebSelectMethod
+%%QT_INCDIR%%/QtWebKit/QWebSettings
+%%QT_INCDIR%%/QtWebKit/QWebTouchModifier
+%%QT_INCDIR%%/QtWebKit/QWebView
+%%QT_INCDIR%%/QtWebKit/QtWebKit
+%%QT_INCDIR%%/QtWebKit/qgraphicswebview.h
+%%QT_INCDIR%%/QtWebKit/qwebdatabase.h
+%%QT_INCDIR%%/QtWebKit/qwebelement.h
+%%QT_INCDIR%%/QtWebKit/qwebframe.h
+%%QT_INCDIR%%/QtWebKit/qwebhistory.h
+%%QT_INCDIR%%/QtWebKit/qwebhistoryinterface.h
+%%QT_INCDIR%%/QtWebKit/qwebinspector.h
+%%QT_INCDIR%%/QtWebKit/qwebkitglobal.h
+%%QT_INCDIR%%/QtWebKit/qwebkitplatformplugin.h
+%%QT_INCDIR%%/QtWebKit/qwebkitversion.h
+%%QT_INCDIR%%/QtWebKit/qwebpage.h
+%%QT_INCDIR%%/QtWebKit/qwebpluginfactory.h
+%%QT_INCDIR%%/QtWebKit/qwebscriptworld.h
+%%QT_INCDIR%%/QtWebKit/qwebsecurityorigin.h
+%%QT_INCDIR%%/QtWebKit/qwebsettings.h
+%%QT_INCDIR%%/QtWebKit/qwebview.h
+%%QT_IMPORTDIR%%/QtWebKit/libqmlwebkitplugin.so
+%%DEBUG%%%%QT_IMPORTDIR%%/QtWebKit/libqmlwebkitplugin.so.debug
+%%QT_IMPORTDIR%%/QtWebKit/qmldir
+%%QT_LIBDIR%%/libQtWebKit.prl
+%%QT_LIBDIR%%/libQtWebKit.so
+%%QT_LIBDIR%%/libQtWebKit.so.4
+%%QT_LIBDIR%%/libQtWebKit.so.4.9
+%%QT_LIBDIR%%/libQtWebKit.so.4.9.4
+libdata/pkgconfig/QtWebKit.pc
+%%QT_MKSPECDIR%%/modules/qt_webkit_version.pri
Property changes on: head/www/qt4-webkit/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webchannel/pkg-plist
===================================================================
--- head/www/qt5-webchannel/pkg-plist (revision 434379)
+++ head/www/qt5-webchannel/pkg-plist (revision 434380)
@@ -1,31 +1,31 @@
%%QT_INCDIR%%/QtWebChannel/%%FULLVER%%/QtWebChannel/private/qmetaobjectpublisher_p.h
%%QT_INCDIR%%/QtWebChannel/%%FULLVER%%/QtWebChannel/private/qqmlwebchannelattached_p.h
%%QT_INCDIR%%/QtWebChannel/%%FULLVER%%/QtWebChannel/private/qwebchannel_p.h
%%QT_INCDIR%%/QtWebChannel/%%FULLVER%%/QtWebChannel/private/signalhandler_p.h
%%QT_INCDIR%%/QtWebChannel/%%FULLVER%%/QtWebChannel/private/variantargument_p.h
%%QT_INCDIR%%/QtWebChannel/QQmlWebChannel
%%QT_INCDIR%%/QtWebChannel/QWebChannel
%%QT_INCDIR%%/QtWebChannel/QWebChannelAbstractTransport
%%QT_INCDIR%%/QtWebChannel/QtWebChannel
%%QT_INCDIR%%/QtWebChannel/QtWebChannelDepends
%%QT_INCDIR%%/QtWebChannel/QtWebChannelVersion
%%QT_INCDIR%%/QtWebChannel/qqmlwebchannel.h
%%QT_INCDIR%%/QtWebChannel/qtwebchannelversion.h
%%QT_INCDIR%%/QtWebChannel/qwebchannel.h
%%QT_INCDIR%%/QtWebChannel/qwebchannelabstracttransport.h
%%QT_INCDIR%%/QtWebChannel/qwebchannelglobal.h
-%%QT_LIBDIR%%/cmake/Qt5WebChannel/Qt5WebChannelConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5WebChannel/Qt5WebChannelConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5WebChannel/Qt5WebChannelConfig.cmake
+%%QT_CMAKEDIR%%/Qt5WebChannel/Qt5WebChannelConfigVersion.cmake
%%QT_LIBDIR%%/libQt5WebChannel.prl
%%QT_LIBDIR%%/libQt5WebChannel.so
%%QT_LIBDIR%%/libQt5WebChannel.so.5
%%QT_LIBDIR%%/libQt5WebChannel.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5WebChannel.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5WebChannel.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_webchannel.pri
%%QT_MKSPECDIR%%/modules/qt_lib_webchannel_private.pri
%%QT_QMLDIR%%/QtWebChannel/libdeclarative_webchannel.so
%%DEBUG%%%%QT_QMLDIR%%/QtWebChannel/libdeclarative_webchannel.so.debug
%%QT_QMLDIR%%/QtWebChannel/plugins.qmltypes
%%QT_QMLDIR%%/QtWebChannel/qmldir
libdata/pkgconfig/Qt5WebChannel.pc
Index: head/www/qt5-webkit/Makefile
===================================================================
--- head/www/qt5-webkit/Makefile (nonexistent)
+++ head/www/qt5-webkit/Makefile (revision 434380)
@@ -0,0 +1,80 @@
+# $FreeBSD$
+
+PORTNAME= webkit
+DISTVERSION= ${QT5_VERSION}
+CATEGORIES= www
+MASTER_SITE_SUBDIR= community_releases/${QT5_VERSION:R}/${QT5_VERSION}/
+PKGNAMEPREFIX= qt5-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt WebKit implementation
+
+LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
+ libicui18n.so:devel/icu \
+ libleveldb.so:databases/leveldb \
+ libpng.so:graphics/png \
+ libwebp.so:graphics/webp
+BUILD_DEPENDS= ${LOCALBASE}/bin/flex:textproc/flex
+
+DISTINFO_FILE= ${MASTERDIR}/distinfo
+
+BROKEN_sparc64= cannot build: uses i386 assembler
+
+USE_GL= gl
+USE_GNOME= libxml2 libxslt
+USE_PERL5= build
+USE_QT5= core gui network opengl printsupport qml quick sql \
+ widgets buildtools_build
+QT_DIST= ${PORTNAME}
+USE_RUBY= yes
+RUBY_NO_RUN_DEPENDS= yes
+USE_XORG= x11 xcomposite xrender
+USES= bison gperf jpeg perl5 pkgconfig python:build qmake:outsource \
+ sqlite
+# Use flex(1) from ports.
+MAKE_ENV= PATH="${LOCALBASE}/bin:${PATH}"
+# "all" builds many more targets. The default one is called "first" in
+# QtWebKit, and is invoked by default when make is called without arguments.
+ALL_TARGET= first
+USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
+
+QT_DEFINES= ACCESSIBILITY
+QT_CONFIG= accessibility accessibility-atspi-bridge
+
+OPTIONS_DEFINE= GSTREAMER
+OPTIONS_DEFAULT=GSTREAMER
+
+GSTREAMER_USE= GNOME=glib20 GSTREAMER1=yes
+
+.include <bsd.port.pre.mk>
+
+# Base ld(1) segfaults on PowerPC (inherited from Qt 4):
+# http://bugs.freebsd.org/173042
+.if ${ARCH} == "powerpc"
+BUILD_DEPENDS+= ${LOCALBASE}/bin/ld:devel/binutils
+.endif
+
+post-patch:
+ ${REINPLACE_CMD} -e 's,python,${PYTHON_VERSION},g' \
+ -e 's,$$$${PYTHON},${PYTHON_VERSION},g' \
+ ${WRKSRC}/Source/WebCore/DerivedSources.make \
+ ${WRKSRC}/Source/WebCore/DerivedSources.pri \
+ ${WRKSRC}/Source/WebKit2/DerivedSources.make \
+ ${WRKSRC}/Source/WebKit2/DerivedSources.pri \
+ ${WRKSRC}/Source/JavaScriptCore/DerivedSources.make \
+ ${WRKSRC}/Source/JavaScriptCore/DerivedSources.pri \
+ ${WRKSRC}/Tools/qmake/mkspecs/features/configure.prf
+
+pre-configure:
+ @${REINPLACE_CMD} -Ee 's|linux-?\*|unix|g' \
+ ${WRKSRC}/Source/JavaScriptCore/DerivedSources.pri \
+ ${WRKSRC}/Source/JavaScriptCore/JavaScriptCore.pri \
+ ${WRKSRC}/Source/JavaScriptCore/Target.pri \
+ ${WRKSRC}/Source/WebCore/WebCore.pri \
+ ${WRKSRC}/Tools/qmake/mkspecs/features/features.prf
+.if ! ${PORT_OPTIONS:MGSTREAMER}
+ @${REINPLACE_CMD} -e 's|packagesExist.*gstreamer.*|false {|' \
+ ${WRKSRC}/Tools/qmake/mkspecs/features/features.prf
+.endif
+
+.include <bsd.port.post.mk>
Property changes on: head/www/qt5-webkit/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/distinfo
===================================================================
--- head/www/qt5-webkit/distinfo (nonexistent)
+++ head/www/qt5-webkit/distinfo (revision 434380)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1484659684
+SHA256 (KDE/Qt/5.7.1/qtwebkit-opensource-src-5.7.1.tar.xz) = a46cf7c89339645f94a5777e8ae5baccf75c5fc87ab52c9dafc25da3327b5f03
+SIZE (KDE/Qt/5.7.1/qtwebkit-opensource-src-5.7.1.tar.xz) = 35298736
Property changes on: head/www/qt5-webkit/distinfo
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/files/patch-Source_WebCore_platform_leveldb_LevelDBDatabase.cpp
===================================================================
--- head/www/qt5-webkit/files/patch-Source_WebCore_platform_leveldb_LevelDBDatabase.cpp (nonexistent)
+++ head/www/qt5-webkit/files/patch-Source_WebCore_platform_leveldb_LevelDBDatabase.cpp (revision 434380)
@@ -0,0 +1,13 @@
+databases/leveldb installs the memenv.h header into a different location.
+
+--- Source/WebCore/platform/leveldb/LevelDBDatabase.cpp.orig 2016-09-26 15:03:55 UTC
++++ Source/WebCore/platform/leveldb/LevelDBDatabase.cpp
+@@ -38,7 +38,7 @@
+ #include <leveldb/comparator.h>
+ #include <leveldb/db.h>
+ #include <leveldb/env.h>
+-#include <helpers/memenv/memenv.h>
++#include <memenv/memenv.h>
+ #include <leveldb/slice.h>
+ #include <string>
+ #include <wtf/PassOwnPtr.h>
Property changes on: head/www/qt5-webkit/files/patch-Source_WebCore_platform_leveldb_LevelDBDatabase.cpp
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_glx_glx.pro
===================================================================
--- head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_glx_glx.pro (nonexistent)
+++ head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_glx_glx.pro (revision 434380)
@@ -0,0 +1,13 @@
+Setting OBJECTS_DIR to "obj" causes problems with make(1), as "obj" is one of
+the directories make tries to enter in case it exists (because of .OBJDIR).
+Since qmake will create it because of OBJECTS_DIR, make will invoke the
+compiler from there and fail because it's trying to pass "-o obj/foo.o" while
+already in obj/.
+
+--- Tools/qmake/config.tests/glx/glx.pro.orig 2016-09-26 14:56:31 UTC
++++ Tools/qmake/config.tests/glx/glx.pro
+@@ -1,4 +1,3 @@
+ SOURCES = glx.cpp
+-OBJECTS_DIR = obj
+ LIBS += -lX11 -lGL
+
Property changes on: head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_glx_glx.pro
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_leveldb_leveldb.cpp
===================================================================
--- head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_leveldb_leveldb.cpp (nonexistent)
+++ head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_leveldb_leveldb.cpp (revision 434380)
@@ -0,0 +1,13 @@
+databases/leveldb installs the memenv.h header into a different location.
+
+--- Tools/qmake/config.tests/leveldb/leveldb.cpp.orig 2016-09-26 15:03:32 UTC
++++ Tools/qmake/config.tests/leveldb/leveldb.cpp
+@@ -19,7 +19,7 @@
+
+ #include <leveldb/db.h>
+ #include <leveldb/env.h>
+-#include <helpers/memenv/memenv.h>
++#include <memenv/memenv.h>
+
+ int main(int, char**)
+ {
Property changes on: head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_leveldb_leveldb.cpp
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_leveldb_leveldb.pro
===================================================================
--- head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_leveldb_leveldb.pro (nonexistent)
+++ head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_leveldb_leveldb.pro (revision 434380)
@@ -0,0 +1,14 @@
+Setting OBJECTS_DIR to "obj" causes problems with make(1), as "obj" is one of
+the directories make tries to enter in case it exists (because of .OBJDIR).
+Since qmake will create it because of OBJECTS_DIR, make will invoke the
+compiler from there and fail because it's trying to pass "-o obj/foo.o" while
+already in obj/.
+
+--- Tools/qmake/config.tests/leveldb/leveldb.pro.orig 2016-09-26 14:57:15 UTC
++++ Tools/qmake/config.tests/leveldb/leveldb.pro
+@@ -1,5 +1,4 @@
+ SOURCES = leveldb.cpp
+-OBJECTS_DIR = obj
+ LIBS += -lleveldb -lmemenv
+
+ load(qt_build_config)
Property changes on: head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_leveldb_leveldb.pro
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_libXcomposite_libXcomposite.pro
===================================================================
--- head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_libXcomposite_libXcomposite.pro (nonexistent)
+++ head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_libXcomposite_libXcomposite.pro (revision 434380)
@@ -0,0 +1,12 @@
+Setting OBJECTS_DIR to "obj" causes problems with make(1), as "obj" is one of
+the directories make tries to enter in case it exists (because of .OBJDIR).
+Since qmake will create it because of OBJECTS_DIR, make will invoke the
+compiler from there and fail because it's trying to pass "-o obj/foo.o" while
+already in obj/.
+
+--- Tools/qmake/config.tests/libXcomposite/libXcomposite.pro.orig 2016-09-26 14:56:58 UTC
++++ Tools/qmake/config.tests/libXcomposite/libXcomposite.pro
+@@ -1,3 +1,2 @@
+ SOURCES = libXcomposite.cpp
+-OBJECTS_DIR = obj
+ LIBS += -lXcomposite -lX11
Property changes on: head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_libXcomposite_libXcomposite.pro
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_libXrender_libXrender.pro
===================================================================
--- head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_libXrender_libXrender.pro (nonexistent)
+++ head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_libXrender_libXrender.pro (revision 434380)
@@ -0,0 +1,12 @@
+Setting OBJECTS_DIR to "obj" causes problems with make(1), as "obj" is one of
+the directories make tries to enter in case it exists (because of .OBJDIR).
+Since qmake will create it because of OBJECTS_DIR, make will invoke the
+compiler from there and fail because it's trying to pass "-o obj/foo.o" while
+already in obj/.
+
+--- Tools/qmake/config.tests/libXrender/libXrender.pro.orig 2016-09-26 14:56:47 UTC
++++ Tools/qmake/config.tests/libXrender/libXrender.pro
+@@ -1,3 +1,2 @@
+ SOURCES = libXrender.cpp
+-OBJECTS_DIR = obj
+ LIBS += -lXrender -lX11
Property changes on: head/www/qt5-webkit/files/patch-Tools_qmake_config.tests_libXrender_libXrender.pro
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/files/patch-Source_JavaScriptCore_assembler_ARMAssembler.h
===================================================================
--- head/www/qt5-webkit/files/patch-Source_JavaScriptCore_assembler_ARMAssembler.h (nonexistent)
+++ head/www/qt5-webkit/files/patch-Source_JavaScriptCore_assembler_ARMAssembler.h (revision 434380)
@@ -0,0 +1,11 @@
+--- Source/JavaScriptCore/assembler/ARMAssembler.h
++++ Source/JavaScriptCore/assembler/ARMAssembler.h
+@@ -1064,6 +1064,8 @@
+ linuxPageFlush(current, end);
+ #elif OS(WINCE)
+ CacheRangeFlush(code, size, CACHE_SYNC_ALL);
++#elif CPU(ARM_TRADITIONAL) && OS(FREEBSD) && COMPILER(CLANG)
++ __clear_cache(code, reinterpret_cast<char*>(code) + size);
+ #elif OS(QNX) && ENABLE(ASSEMBLER_WX_EXCLUSIVE)
+ UNUSED_PARAM(code);
+ UNUSED_PARAM(size);
Property changes on: head/www/qt5-webkit/files/patch-Source_JavaScriptCore_assembler_ARMAssembler.h
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/files/patch-Source__QtWebKit.pro
===================================================================
--- head/www/qt5-webkit/files/patch-Source__QtWebKit.pro (nonexistent)
+++ head/www/qt5-webkit/files/patch-Source__QtWebKit.pro (revision 434380)
@@ -0,0 +1,17 @@
+Do not go into the examples/ directory, which contains only platformplugin/.
+
+Even though it is not part of the default target, it is included in `make
+install', and platformplugin's .pro file has a DESTDIR setting that causes the
+file system to be touched even though there is nothing to build or install.
+--- Source/QtWebKit.pro
++++ Source/QtWebKit.pro
+@@ -38,9 +38,4 @@ build?(webkit1) {
+ tests.file = tests.pri
+ SUBDIRS += tests
+ }
+-
+- examples.file = WebKit/qt/examples/examples.pro
+- examples.CONFIG += no_default_target
+- examples.makefile = Makefile
+- SUBDIRS += examples
+ }
Property changes on: head/www/qt5-webkit/files/patch-Source__QtWebKit.pro
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/files/patch-Source__JavaScriptCore__runtime__JSCJSValueInlines.h
===================================================================
--- head/www/qt5-webkit/files/patch-Source__JavaScriptCore__runtime__JSCJSValueInlines.h (nonexistent)
+++ head/www/qt5-webkit/files/patch-Source__JavaScriptCore__runtime__JSCJSValueInlines.h (revision 434380)
@@ -0,0 +1,26 @@
+--- ./Source/JavaScriptCore/runtime/JSCJSValueInlines.h.orig 2013-10-22 01:49:45.000000000 -0700
++++ ./Source/JavaScriptCore/runtime/JSCJSValueInlines.h 2013-11-08 00:51:34.238960064 -0800
+@@ -198,7 +198,11 @@
+ u.asBits.tag = CellTag;
+ else
+ u.asBits.tag = EmptyValueTag;
++#if defined(__sparc64__)
++ u.asBits.payload = reinterpret_cast<int64_t>(ptr);
++#else
+ u.asBits.payload = reinterpret_cast<int32_t>(ptr);
++#endif
+ }
+
+ inline JSValue::JSValue(const JSCell* ptr)
+@@ -207,7 +211,11 @@
+ u.asBits.tag = CellTag;
+ else
+ u.asBits.tag = EmptyValueTag;
++#if defined(__sparc64__)
++ u.asBits.payload = reinterpret_cast<int64_t>(const_cast<JSCell*>(ptr));
++#else
+ u.asBits.payload = reinterpret_cast<int32_t>(const_cast<JSCell*>(ptr));
++#endif
+ }
+
+ inline JSValue::operator bool() const
Property changes on: head/www/qt5-webkit/files/patch-Source__JavaScriptCore__runtime__JSCJSValueInlines.h
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/files/patch-Source__WebCore__page__NavigatorBase.cpp
===================================================================
--- head/www/qt5-webkit/files/patch-Source__WebCore__page__NavigatorBase.cpp (nonexistent)
+++ head/www/qt5-webkit/files/patch-Source__WebCore__page__NavigatorBase.cpp (revision 434380)
@@ -0,0 +1,20 @@
+--- ./Source/WebCore/page/NavigatorBase.cpp.orig 2012-12-18 20:04:33.000000000 +0100
++++ ./Source/WebCore/page/NavigatorBase.cpp 2013-01-07 04:01:53.177339022 +0100
+@@ -30,7 +30,7 @@
+ #include "NetworkStateNotifier.h"
+ #include <wtf/text/WTFString.h>
+
+-#if OS(LINUX)
++#if OS(LINUX) || OS(FREEBSD)
+ #include "sys/utsname.h"
+ #include <wtf/StdLibExtras.h>
+ #endif
+@@ -86,7 +86,7 @@
+
+ String NavigatorBase::platform() const
+ {
+-#if OS(LINUX)
++#if OS(LINUX) || OS(FREEBSD)
+ if (!String(WEBCORE_NAVIGATOR_PLATFORM).isEmpty())
+ return WEBCORE_NAVIGATOR_PLATFORM;
+ struct utsname osname;
Property changes on: head/www/qt5-webkit/files/patch-Source__WebCore__page__NavigatorBase.cpp
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurface.h
===================================================================
--- head/www/qt5-webkit/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurface.h (nonexistent)
+++ head/www/qt5-webkit/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurface.h (revision 434380)
@@ -0,0 +1,11 @@
+--- ./Source/WebCore/platform/graphics/surfaces/GraphicsSurface.h.orig 2012-12-18 20:04:31.000000000 +0100
++++ ./Source/WebCore/platform/graphics/surfaces/GraphicsSurface.h 2012-12-28 13:00:05.846909692 +0100
+@@ -36,7 +36,7 @@
+ typedef IOSurfaceRef PlatformGraphicsSurface;
+ #endif
+
+-#if OS(LINUX)
++#if OS(LINUX) || OS(FREEBSD)
+ typedef uint32_t PlatformGraphicsSurface;
+ #endif
+
Property changes on: head/www/qt5-webkit/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurface.h
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurfaceToken.h
===================================================================
--- head/www/qt5-webkit/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurfaceToken.h (nonexistent)
+++ head/www/qt5-webkit/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurfaceToken.h (revision 434380)
@@ -0,0 +1,11 @@
+--- ./Source/WebCore/platform/graphics/surfaces/GraphicsSurfaceToken.h.orig 2012-12-18 20:04:31.000000000 +0100
++++ ./Source/WebCore/platform/graphics/surfaces/GraphicsSurfaceToken.h 2012-12-28 13:02:03.566975217 +0100
+@@ -35,7 +35,7 @@
+
+ #if OS(DARWIN)
+ typedef mach_port_t BufferHandle;
+-#elif OS(LINUX)
++#elif OS(LINUX) || OS(FREEBSD)
+ typedef uint32_t BufferHandle;
+ #elif OS(WINDOWS)
+ typedef HANDLE BufferHandle;
Property changes on: head/www/qt5-webkit/files/patch-Source__WebCore__platform__graphics__surfaces__GraphicsSurfaceToken.h
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-webkit/pkg-plist
===================================================================
--- head/www/qt5-webkit/pkg-plist (nonexistent)
+++ head/www/qt5-webkit/pkg-plist (revision 434380)
@@ -0,0 +1,112 @@
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/bytearraytestdata.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qhttpheader_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquicknetworkreply_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquicknetworkrequest_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquickurlschemedelegate_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquickwebpage_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquickwebpage_p_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquickwebview_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qquickwebview_p_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qrawwebview_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qrawwebview_p_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qtwebsecurityorigin_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebchannelwebkittransport_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebdatabase_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebdownloaditem_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebdownloaditem_p_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebelement_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebhistory_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebiconimageprovider_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebkittest_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebloadrequest_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebnavigationhistory_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebnavigationhistory_p_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebnavigationrequest_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebpermissionrequest_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebplugindatabase_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebpreferences_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebpreferences_p_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebscriptworld.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebscriptworld_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/qwebsecurityorigin_p.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/testwindow.h
+%%QT_INCDIR%%/QtWebKit/%%FULLVER%%/QtWebKit/private/util.h
+%%QT_INCDIR%%/QtWebKit/QWebDatabase
+%%QT_INCDIR%%/QtWebKit/QWebElement
+%%QT_INCDIR%%/QtWebKit/QWebElementCollection
+%%QT_INCDIR%%/QtWebKit/QWebFullScreenVideoHandler
+%%QT_INCDIR%%/QtWebKit/QWebHapticFeedbackPlayer
+%%QT_INCDIR%%/QtWebKit/QWebHistory
+%%QT_INCDIR%%/QtWebKit/QWebHistoryInterface
+%%QT_INCDIR%%/QtWebKit/QWebHistoryItem
+%%QT_INCDIR%%/QtWebKit/QWebKitPlatformPlugin
+%%QT_INCDIR%%/QtWebKit/QWebNotificationData
+%%QT_INCDIR%%/QtWebKit/QWebNotificationPresenter
+%%QT_INCDIR%%/QtWebKit/QWebPluginFactory
+%%QT_INCDIR%%/QtWebKit/QWebSecurityOrigin
+%%QT_INCDIR%%/QtWebKit/QWebSelectData
+%%QT_INCDIR%%/QtWebKit/QWebSelectMethod
+%%QT_INCDIR%%/QtWebKit/QWebSettings
+%%QT_INCDIR%%/QtWebKit/QWebSpellChecker
+%%QT_INCDIR%%/QtWebKit/QWebTouchModifier
+%%QT_INCDIR%%/QtWebKit/QtWebKit
+%%QT_INCDIR%%/QtWebKit/QtWebKitDepends
+%%QT_INCDIR%%/QtWebKit/QtWebKitVersion
+%%QT_INCDIR%%/QtWebKit/qtwebkitversion.h
+%%QT_INCDIR%%/QtWebKit/qwebdatabase.h
+%%QT_INCDIR%%/QtWebKit/qwebelement.h
+%%QT_INCDIR%%/QtWebKit/qwebhistory.h
+%%QT_INCDIR%%/QtWebKit/qwebhistoryinterface.h
+%%QT_INCDIR%%/QtWebKit/qwebkitglobal.h
+%%QT_INCDIR%%/QtWebKit/qwebkitplatformplugin.h
+%%QT_INCDIR%%/QtWebKit/qwebpluginfactory.h
+%%QT_INCDIR%%/QtWebKit/qwebsecurityorigin.h
+%%QT_INCDIR%%/QtWebKit/qwebsettings.h
+%%QT_INCDIR%%/QtWebKitWidgets/%%FULLVER%%/QtWebKitWidgets/private/qwebframe_p.h
+%%QT_INCDIR%%/QtWebKitWidgets/%%FULLVER%%/QtWebKitWidgets/private/qwebinspector_p.h
+%%QT_INCDIR%%/QtWebKitWidgets/%%FULLVER%%/QtWebKitWidgets/private/qwebpage_p.h
+%%QT_INCDIR%%/QtWebKitWidgets/%%FULLVER%%/QtWebKitWidgets/private/qwebviewaccessible_p.h
+%%QT_INCDIR%%/QtWebKitWidgets/QGraphicsWebView
+%%QT_INCDIR%%/QtWebKitWidgets/QWebFrame
+%%QT_INCDIR%%/QtWebKitWidgets/QWebHitTestResult
+%%QT_INCDIR%%/QtWebKitWidgets/QWebInspector
+%%QT_INCDIR%%/QtWebKitWidgets/QWebPage
+%%QT_INCDIR%%/QtWebKitWidgets/QWebView
+%%QT_INCDIR%%/QtWebKitWidgets/QtWebKitWidgets
+%%QT_INCDIR%%/QtWebKitWidgets/QtWebKitWidgetsDepends
+%%QT_INCDIR%%/QtWebKitWidgets/QtWebKitWidgetsVersion
+%%QT_INCDIR%%/QtWebKitWidgets/qgraphicswebview.h
+%%QT_INCDIR%%/QtWebKitWidgets/qtwebkitwidgetsversion.h
+%%QT_INCDIR%%/QtWebKitWidgets/qwebframe.h
+%%QT_INCDIR%%/QtWebKitWidgets/qwebinspector.h
+%%QT_INCDIR%%/QtWebKitWidgets/qwebpage.h
+%%QT_INCDIR%%/QtWebKitWidgets/qwebview.h
+%%QT_CMAKEDIR%%/Qt5WebKit/Qt5WebKitConfig.cmake
+%%QT_CMAKEDIR%%/Qt5WebKit/Qt5WebKitConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5WebKitWidgets/Qt5WebKitWidgetsConfig.cmake
+%%QT_CMAKEDIR%%/Qt5WebKitWidgets/Qt5WebKitWidgetsConfigVersion.cmake
+%%QT_LIBDIR%%/libQt5WebKit.prl
+%%QT_LIBDIR%%/libQt5WebKit.so
+%%QT_LIBDIR%%/libQt5WebKit.so.5
+%%QT_LIBDIR%%/libQt5WebKit.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQt5WebKit.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQt5WebKit.so.%%FULLVER%%.debug
+%%QT_LIBDIR%%/libQt5WebKitWidgets.prl
+%%QT_LIBDIR%%/libQt5WebKitWidgets.so
+%%QT_LIBDIR%%/libQt5WebKitWidgets.so.5
+%%QT_LIBDIR%%/libQt5WebKitWidgets.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQt5WebKitWidgets.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQt5WebKitWidgets.so.%%FULLVER%%.debug
+%%QT_MKSPECDIR%%/modules/qt_lib_webkit.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_webkit_private.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_webkitwidgets.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_webkitwidgets_private.pri
+%%QT_QMLDIR%%/QtWebKit/experimental/libqmlwebkitexperimentalplugin.so
+%%QT_QMLDIR%%/QtWebKit/experimental/qmldir
+%%QT_QMLDIR%%/QtWebKit/libqmlwebkitplugin.so
+%%QT_QMLDIR%%/QtWebKit/plugins.qmltypes
+%%QT_QMLDIR%%/QtWebKit/qmldir
+libdata/pkgconfig/Qt5WebKit.pc
+libdata/pkgconfig/Qt5WebKitWidgets.pc
+%%QT_LIBEXECDIR%%/QtWebPluginProcess
+%%QT_LIBEXECDIR%%/QtWebProcess
Property changes on: head/www/qt5-webkit/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/www/qt5-websockets/pkg-plist
===================================================================
--- head/www/qt5-websockets/pkg-plist (revision 434379)
+++ head/www/qt5-websockets/pkg-plist (revision 434380)
@@ -1,40 +1,40 @@
%%QT_INCDIR%%/QtWebSockets/%%FULLVER%%/QtWebSockets/private/qdefaultmaskgenerator_p.h
%%QT_INCDIR%%/QtWebSockets/%%FULLVER%%/QtWebSockets/private/qsslserver_p.h
%%QT_INCDIR%%/QtWebSockets/%%FULLVER%%/QtWebSockets/private/qwebsocket_p.h
%%QT_INCDIR%%/QtWebSockets/%%FULLVER%%/QtWebSockets/private/qwebsocketcorsauthenticator_p.h
%%QT_INCDIR%%/QtWebSockets/%%FULLVER%%/QtWebSockets/private/qwebsocketdataprocessor_p.h
%%QT_INCDIR%%/QtWebSockets/%%FULLVER%%/QtWebSockets/private/qwebsocketframe_p.h
%%QT_INCDIR%%/QtWebSockets/%%FULLVER%%/QtWebSockets/private/qwebsockethandshakerequest_p.h
%%QT_INCDIR%%/QtWebSockets/%%FULLVER%%/QtWebSockets/private/qwebsockethandshakeresponse_p.h
%%QT_INCDIR%%/QtWebSockets/%%FULLVER%%/QtWebSockets/private/qwebsocketprotocol_p.h
%%QT_INCDIR%%/QtWebSockets/%%FULLVER%%/QtWebSockets/private/qwebsocketserver_p.h
%%QT_INCDIR%%/QtWebSockets/QMaskGenerator
%%QT_INCDIR%%/QtWebSockets/QWebSocket
%%QT_INCDIR%%/QtWebSockets/QWebSocketCorsAuthenticator
%%QT_INCDIR%%/QtWebSockets/QWebSocketServer
%%QT_INCDIR%%/QtWebSockets/QtWebSockets
%%QT_INCDIR%%/QtWebSockets/QtWebSocketsDepends
%%QT_INCDIR%%/QtWebSockets/QtWebSocketsVersion
%%QT_INCDIR%%/QtWebSockets/qmaskgenerator.h
%%QT_INCDIR%%/QtWebSockets/qtwebsocketsversion.h
%%QT_INCDIR%%/QtWebSockets/qwebsocket.h
%%QT_INCDIR%%/QtWebSockets/qwebsocketcorsauthenticator.h
%%QT_INCDIR%%/QtWebSockets/qwebsocketprotocol.h
%%QT_INCDIR%%/QtWebSockets/qwebsockets_global.h
%%QT_INCDIR%%/QtWebSockets/qwebsocketserver.h
-%%QT_LIBDIR%%/cmake/Qt5WebSockets/Qt5WebSocketsConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5WebSockets/Qt5WebSocketsConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5WebSockets/Qt5WebSocketsConfig.cmake
+%%QT_CMAKEDIR%%/Qt5WebSockets/Qt5WebSocketsConfigVersion.cmake
%%QT_LIBDIR%%/libQt5WebSockets.prl
%%QT_LIBDIR%%/libQt5WebSockets.so
%%QT_LIBDIR%%/libQt5WebSockets.so.5
%%QT_LIBDIR%%/libQt5WebSockets.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5WebSockets.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5WebSockets.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_websockets.pri
%%QT_MKSPECDIR%%/modules/qt_lib_websockets_private.pri
%%QT_QMLDIR%%/QtWebSockets/libdeclarative_qmlwebsockets.so
%%DEBUG%%%%QT_QMLDIR%%/QtWebSockets/libdeclarative_qmlwebsockets.so.debug
%%QT_QMLDIR%%/QtWebSockets/plugins.qmltypes
%%QT_QMLDIR%%/QtWebSockets/qmldir
%%QT_QMLDIR%%/Qt/WebSockets/qmldir
libdata/pkgconfig/Qt5WebSockets.pc
Index: head/x11/qt4-graphicssystems-opengl/Makefile
===================================================================
--- head/x11/qt4-graphicssystems-opengl/Makefile (revision 434379)
+++ head/x11/qt4-graphicssystems-opengl/Makefile (revision 434380)
@@ -1,42 +1,43 @@
# $FreeBSD$
PORTNAME= graphicssystems
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= x11
PKGNAMEPREFIX= qt4-
PKGNAMESUFFIX= -opengl
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt OpenGL rendering engine (experimental)
USE_QT4= qmake_build opengl
QT_DIST= yes
HAS_CONFIGURE= yes
USE_GL= glu
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/multimedia src/network src/openvg \
src/phonon src/qt3support src/s60installs src/s60main \
src/script src/scripttools src/sql src/svg src/testlib \
src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/plugins/${PORTNAME}/opengl
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
.include <bsd.port.mk>
Index: head/x11/qt4-inputmethods/Makefile
===================================================================
--- head/x11/qt4-inputmethods/Makefile (revision 434379)
+++ head/x11/qt4-inputmethods/Makefile (revision 434380)
@@ -1,42 +1,43 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= inputmethods
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= x11
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt input methods
USE_QT4= qmake_build moc_build corelib gui
QT_DIST= yes
HAS_CONFIGURE= yes
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/svg \
src/testlib src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/plugins/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
.include <bsd.port.mk>
Index: head/x11/qt5-x11extras/pkg-plist
===================================================================
--- head/x11/qt5-x11extras/pkg-plist (revision 434379)
+++ head/x11/qt5-x11extras/pkg-plist (revision 434380)
@@ -1,18 +1,18 @@
%%QT_INCDIR%%/QtX11Extras/QX11Info
%%QT_INCDIR%%/QtX11Extras/QtX11Extras
%%QT_INCDIR%%/QtX11Extras/QtX11ExtrasDepends
%%QT_INCDIR%%/QtX11Extras/QtX11ExtrasVersion
%%QT_INCDIR%%/QtX11Extras/qtx11extrasglobal.h
%%QT_INCDIR%%/QtX11Extras/qtx11extrasversion.h
%%QT_INCDIR%%/QtX11Extras/qx11info_x11.h
-%%QT_LIBDIR%%/cmake/Qt5X11Extras/Qt5X11ExtrasConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5X11Extras/Qt5X11ExtrasConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5X11Extras/Qt5X11ExtrasConfig.cmake
+%%QT_CMAKEDIR%%/Qt5X11Extras/Qt5X11ExtrasConfigVersion.cmake
%%QT_LIBDIR%%/libQt5X11Extras.prl
%%QT_LIBDIR%%/libQt5X11Extras.so
%%QT_LIBDIR%%/libQt5X11Extras.so.5
%%QT_LIBDIR%%/libQt5X11Extras.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5X11Extras.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5X11Extras.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_x11extras.pri
%%QT_MKSPECDIR%%/modules/qt_lib_x11extras_private.pri
libdata/pkgconfig/Qt5X11Extras.pc
Index: head/x11-toolkits/Makefile
===================================================================
--- head/x11-toolkits/Makefile (revision 434379)
+++ head/x11-toolkits/Makefile (revision 434380)
@@ -1,298 +1,302 @@
# $FreeBSD$
#
COMMENT = X11 toolkits
SUBDIR += SoXt
SUBDIR += Xaw3d
SUBDIR += Xmt
SUBDIR += attica
SUBDIR += bakery
SUBDIR += blt
SUBDIR += bwidget
SUBDIR += c++-gtk-utils
SUBDIR += diorite
SUBDIR += flowcanvas
SUBDIR += fltk
SUBDIR += fltk-devel
SUBDIR += fox14
SUBDIR += fox16
SUBDIR += fox17
SUBDIR += fpc-gtk2
SUBDIR += fpc-xforms
SUBDIR += fxscintilla
SUBDIR += gai
SUBDIR += gal2
SUBDIR += gal2-reference
SUBDIR += gdl
SUBDIR += girara
SUBDIR += gnocl
SUBDIR += gnome-pty-helper
SUBDIR += gnome-sharp20
SUBDIR += gnomemm
SUBDIR += gnustep-back
SUBDIR += gnustep-gui
SUBDIR += granite
SUBDIR += gstreamer-plugins-pango
SUBDIR += gstreamer1-plugins-gtksink
SUBDIR += gstreamer1-plugins-pango
SUBDIR += gtk-sharp-beans
SUBDIR += gtk-sharp20
SUBDIR += gtk-sharp30
SUBDIR += gtk12
SUBDIR += gtk20
SUBDIR += gtk20-reference
SUBDIR += gtk30
SUBDIR += gtk30-reference
SUBDIR += gtkada
SUBDIR += gtkada3
SUBDIR += gtkdatabox
SUBDIR += gtkextra2
SUBDIR += gtkglarea2
SUBDIR += gtkglext
SUBDIR += gtkglextmm
SUBDIR += gtkimageview
SUBDIR += gtkmathview
SUBDIR += gtkmm20
SUBDIR += gtkmm20-reference
SUBDIR += gtkmm24
SUBDIR += gtkmm24-reference
SUBDIR += gtkmm30
SUBDIR += gtkmm30-reference
SUBDIR += gtksourceview
SUBDIR += gtksourceview-reference
SUBDIR += gtksourceview2
SUBDIR += gtksourceview2-reference
SUBDIR += gtksourceview3
SUBDIR += gtksourceview3-reference
SUBDIR += gtksourceviewmm3
SUBDIR += hippo-canvas
SUBDIR += hs-GLURaw
SUBDIR += hs-GLUT
SUBDIR += hs-OpenGL
SUBDIR += hs-OpenGLRaw
SUBDIR += hs-gtk
SUBDIR += hs-gtk2hs
SUBDIR += hs-gtksourceview2
SUBDIR += hs-pango
SUBDIR += hs-vte
SUBDIR += hs-wx
SUBDIR += hs-wxc
SUBDIR += hs-wxcore
SUBDIR += hs-wxdirect
SUBDIR += irrlicht
SUBDIR += itk
SUBDIR += iwidgets
SUBDIR += kf5-attica
SUBDIR += kf5-kcompletion
SUBDIR += kf5-kconfigwidgets
SUBDIR += kf5-kdesignerplugin
SUBDIR += kf5-kguiaddons
SUBDIR += kf5-kitemviews
SUBDIR += kf5-kjobwidgets
SUBDIR += kf5-ktextwidgets
SUBDIR += kf5-kwidgetsaddons
SUBDIR += kf5-kxmlgui
SUBDIR += kirigami
SUBDIR += lesstif
SUBDIR += libXaw
SUBDIR += libXmu
SUBDIR += libXt
SUBDIR += libbonoboui
SUBDIR += libbonoboui-reference
SUBDIR += libgdiplus
SUBDIR += libgnomeprintui
SUBDIR += libgnomeprintuimm
SUBDIR += libgnomeui
SUBDIR += libgnomeui-reference
SUBDIR += libgnomeuimm26
SUBDIR += libgtksourceviewmm
SUBDIR += libsexy
SUBDIR += libsexymm
SUBDIR += libunique3
SUBDIR += libwnck
SUBDIR += libwnck-reference
SUBDIR += libwnck3
SUBDIR += libxaw3dxft
SUBDIR += libxfce4gui
SUBDIR += linux-c6-gtk2
SUBDIR += linux-c6-openmotif
SUBDIR += linux-c6-pango
SUBDIR += linux-c6-qt47-x11
SUBDIR += linux-c6-tk85
SUBDIR += linux-c7-gtk2
SUBDIR += linux-c7-openmotif
SUBDIR += linux-c7-pango
SUBDIR += linux-c7-qt-x11
SUBDIR += linux-c7-tk85
SUBDIR += movingmotif
SUBDIR += mowitz
SUBDIR += mygui
SUBDIR += mygui-dummy
SUBDIR += mygui-ogre
SUBDIR += mygui-opengl
SUBDIR += neXtaw
SUBDIR += nucleo
SUBDIR += ocaml-lablgtk2
SUBDIR += ocaml-labltk
SUBDIR += open-motif
SUBDIR += osm-gps-map
SUBDIR += otk
SUBDIR += p5-Alien-wxWidgets
SUBDIR += p5-Glade2
SUBDIR += p5-Gnome2
SUBDIR += p5-Gnome2-Canvas
SUBDIR += p5-Gnome2-VFS
SUBDIR += p5-Gnome2-Wnck
SUBDIR += p5-Gtk
SUBDIR += p5-Gtk2
SUBDIR += p5-Gtk2-Chmod
SUBDIR += p5-Gtk2-Ex-Dialogs
SUBDIR += p5-Gtk2-Ex-FormFactory
SUBDIR += p5-Gtk2-Ex-PodViewer
SUBDIR += p5-Gtk2-Ex-Simple-List
SUBDIR += p5-Gtk2-Ex-Utils
SUBDIR += p5-Gtk2-GladeXML
SUBDIR += p5-Gtk2-Html2
SUBDIR += p5-Gtk2-ImageView
SUBDIR += p5-Gtk2-PathButtonBar
SUBDIR += p5-Gtk2-TrayIcon
SUBDIR += p5-Gtk2-Unique
SUBDIR += p5-Gtk3
SUBDIR += p5-Pango
SUBDIR += p5-Prima
SUBDIR += p5-Tk
SUBDIR += p5-Tk-Action
SUBDIR += p5-Tk-Autoscroll
SUBDIR += p5-Tk-ColourChooser
SUBDIR += p5-Tk-Contrib
SUBDIR += p5-Tk-CursorControl
SUBDIR += p5-Tk-DKW
SUBDIR += p5-Tk-Date
SUBDIR += p5-Tk-DynaTabFrame
SUBDIR += p5-Tk-Enscript
SUBDIR += p5-Tk-FileDialog
SUBDIR += p5-Tk-FontDialog
SUBDIR += p5-Tk-GBARR
SUBDIR += p5-Tk-Getopt
SUBDIR += p5-Tk-HistEntry
SUBDIR += p5-Tk-JComboBox
SUBDIR += p5-Tk-ResizeButton
SUBDIR += p5-Tk-Role-Dialog
SUBDIR += p5-Tk-Role-HasWidgets
SUBDIR += p5-Tk-Splashscreen
SUBDIR += p5-Tk-Sugar
SUBDIR += p5-Tk-TableMatrix
SUBDIR += p5-Tk-ToolBar
SUBDIR += p5-Tk-WaitBox
SUBDIR += p5-Wx
SUBDIR += p5-Wx-Perl-ProcessStream
SUBDIR += pango
SUBDIR += pango-reference
SUBDIR += pangomm
SUBDIR += pangox-compat
SUBDIR += pangoxsl
SUBDIR += phat
SUBDIR += plib
SUBDIR += pure-gtk
SUBDIR += pure-tk
SUBDIR += py-Pmw
SUBDIR += py-SquareMap
SUBDIR += py-fltk
SUBDIR += py-gnome2
SUBDIR += py-gtk2
SUBDIR += py-gtkglext
SUBDIR += py-gtksourceview
SUBDIR += py-gui
SUBDIR += py-kivy
SUBDIR += py-kiwi-gtk
SUBDIR += py-qt4-gui
SUBDIR += py-qt5-gui
SUBDIR += py-qt5-quick
SUBDIR += py-qt5-widgets
SUBDIR += py-sexy
SUBDIR += py-tkinter
SUBDIR += py-tktreectrl
SUBDIR += py-vte
SUBDIR += py-wax
SUBDIR += py-wxPython-common
SUBDIR += py-wxPython28
SUBDIR += py-wxPython28-common
SUBDIR += py-wxPython30
SUBDIR += py-xlib
SUBDIR += py33-tkinter
SUBDIR += py34-tkinter
SUBDIR += py35-tkinter
SUBDIR += py36-tkinter
SUBDIR += pypy-tkinter
SUBDIR += qt4-declarative
SUBDIR += qt4-gui
SUBDIR += qt4pas
SUBDIR += qt5-canvas3d
SUBDIR += qt5-charts
+ SUBDIR += qt5-datavis3d
SUBDIR += qt5-declarative
+ SUBDIR += qt5-declarative-render2d
+ SUBDIR += qt5-gamepad
SUBDIR += qt5-gui
SUBDIR += qt5-quick
SUBDIR += qt5-quickcontrols
SUBDIR += qt5-quickcontrols2
SUBDIR += qt5-uiplugin
+ SUBDIR += qt5-virtualkeyboard
SUBDIR += qt5-widgets
SUBDIR += qtermwidget
SUBDIR += qwt5
SUBDIR += qwt5-designerplugin
SUBDIR += qwt6
SUBDIR += qwt6-designerplugin
SUBDIR += rep-gtk2
SUBDIR += rubygem-gdk3
SUBDIR += rubygem-gtk2
SUBDIR += rubygem-gtk3
SUBDIR += rubygem-gtksourceview2
SUBDIR += rubygem-gtksourceview3
SUBDIR += rubygem-pango
SUBDIR += rubygem-poppler
SUBDIR += rubygem-uh
SUBDIR += rubygem-vte
SUBDIR += rubygem-vte3
SUBDIR += scintilla
SUBDIR += sdl_pango
SUBDIR += shared-desktop-ontologies
SUBDIR += skinlf
SUBDIR += slingshot
SUBDIR += soqt
SUBDIR += swt
SUBDIR += swt-devel
SUBDIR += termit
SUBDIR += tile
SUBDIR += tix
SUBDIR += tk-wrapper
SUBDIR += tk84
SUBDIR += tk85
SUBDIR += tk86
SUBDIR += tkdnd
SUBDIR += tkshape
SUBDIR += tktable
SUBDIR += tktray
SUBDIR += tktreectrl
SUBDIR += unique
SUBDIR += v
SUBDIR += vdk
SUBDIR += viewklass
SUBDIR += vte
SUBDIR += vte-reference
SUBDIR += vte290
SUBDIR += vte3
SUBDIR += vtkfox
SUBDIR += wlc
SUBDIR += wmapp
SUBDIR += wxgtk28
SUBDIR += wxgtk28-common
SUBDIR += wxgtk28-contrib
SUBDIR += wxgtk28-contrib-common
SUBDIR += wxgtk30
SUBDIR += xbae
SUBDIR += xforms
SUBDIR += xmhtml
SUBDIR += xview
SUBDIR += xview-clients
.include <bsd.port.subdir.mk>
Index: head/x11-toolkits/qt4-declarative/Makefile
===================================================================
--- head/x11-toolkits/qt4-declarative/Makefile (revision 434379)
+++ head/x11-toolkits/qt4-declarative/Makefile (revision 434380)
@@ -1,51 +1,52 @@
# $FreeBSD$
PORTNAME= declarative
DISTVERSION= ${QT4_VERSION}
+PORTREVISION= 1
CATEGORIES= x11-toolkits
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt declarative framework for dynamic user interfaces
USE_QT4= qmake_build moc_build rcc_build uic_build corelib gui network \
opengl script sql svg xml xmlpatterns
QT_DIST= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/multimedia src/opengl src/openvg \
src/phonon src/qt3support src/s60installs src/s60main \
src/scripttools src/svg src/testlib src/tools src/winmain \
src/xml src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${UIC} ${WRKSRC}/bin/uic
post-configure:
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
-E -e 's|(.*location=).*uic|\1${PREFIX}/${QT_BINDIR_REL}/${UIC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtDeclarative.pc
.include <bsd.port.mk>
Index: head/x11-toolkits/qt4-gui/Makefile
===================================================================
--- head/x11-toolkits/qt4-gui/Makefile (revision 434379)
+++ head/x11-toolkits/qt4-gui/Makefile (revision 434380)
@@ -1,99 +1,99 @@
# Created by: lofi@FreeBSD.org
# $FreeBSD$
PORTNAME= gui
DISTVERSION= ${QT4_VERSION}
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= x11-toolkits
PKGNAMEPREFIX= qt4-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt graphical user interface module
LIB_DEPENDS= libpng.so:graphics/png \
libfontconfig.so:x11-fonts/fontconfig
RUN_DEPENDS= xdg-open:devel/xdg-utils
USE_QT4= qmake_build moc_build rcc_build uic_build corelib
QT_DIST= yes
USES= pkgconfig
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
USE_XORG= xrender xrandr xinerama inputproto xfixes \
sm xcursor xext x11 ice xi xt
ALL_TARGET= first
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
PATH=${WRKSRC}/bin:$$PATH
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
src/activeqt src/dbus src/multimedia src/network src/opengl \
src/openvg src/phonon src/qt3support src/s60installs \
src/s60main src/script src/scripttools src/sql src/svg \
src/testlib src/tools src/winmain src/xml src/xmlpatterns \
src/3rdparty/clucene src/3rdparty/freetype \
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
.for dne in ${DO_NOT_EXTRACT}
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
.endfor
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
CONFIGURE_ARGS+= -I../../include/QtCore -I../../include/QtGui \
-I../../include/Qt -I../../include
FONTSCALE= ${LOCALBASE}/share/fonts/TTF/luximb.ttf
FONTENCOD= ${LOCALBASE}/share/fonts/encodings/encodings.dir
.include "${.CURDIR:H:H}/devel/qt4/files/Makefile.options"
.if ${QT4_OPTIONS:MCUPS}
LIB_DEPENDS+= libcups.so:print/cups
CONFIGURE_ARGS+=-cups -L${LOCALBASE}/lib -I. -I${LOCALBASE}/include
.endif
.if ${QT4_OPTIONS:MNAS}
LIB_DEPENDS+= libaudio.so:audio/nas
CONFIGURE_ARGS+=-system-nas-sound
.else
CONFIGURE_ARGS+=-no-nas-sound
.endif
.if ${QT4_OPTIONS:MQGTKSTYLE}
USE_GNOME= gtk20
CONFIGURE_ARGS+=-gtkstyle
.else
CONFIGURE_ARGS+=-no-gtkstyle
.endif
.if defined(PACKAGE_BUILDING)
RUN_DEPENDS+= xorg-fonts-truetype>0:x11-fonts/xorg-fonts-truetype \
${FONTENCOD}:x11-fonts/encodings
.endif
CFLAGS_powerpc64= -mminimal-toc
pre-configure:
${MKDIR} ${WRKSRC}/mkspecs
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
${LN} -sf ${UIC} ${WRKSRC}/bin/uic
post-configure:
${REINPLACE_CMD} -e 's|${PREFIX}/${QT_LIBDIR_REL}/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
-e 's|.*$$(QMAKE).*||g' ${BUILD_WRKSRC}/Makefile
${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \
-E -e 's|(.*location=).*moc|\1${PREFIX}/${QT_BINDIR_REL}/${MOC:T}|g' \
-E -e 's|(.*location=).*uic|\1${PREFIX}/${QT_BINDIR_REL}/${UIC:T}|g' \
${WRKSRC}/lib/pkgconfig/QtGui.pc
post-install:
${INSTALL_DATA} ${BUILD_WRKSRC}/dialogs/images/qtlogo-64.png \
${STAGEDIR}${PREFIX}/share/pixmaps/qtlogo.png
.include <bsd.port.mk>
Index: head/x11-toolkits/qt5-charts/distinfo
===================================================================
--- head/x11-toolkits/qt5-charts/distinfo (revision 434379)
+++ head/x11-toolkits/qt5-charts/distinfo (nonexistent)
@@ -1,3 +0,0 @@
-TIMESTAMP = 1479839713
-SHA256 (qt-qtcharts-release-2.1.0_GH0.tar.gz) = 9be63f66f7a70cc09f884604eccbb6e72babd2282682eaae2c0a8a84c875dac6
-SIZE (qt-qtcharts-release-2.1.0_GH0.tar.gz) = 4504716
Property changes on: head/x11-toolkits/qt5-charts/distinfo
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/x11-toolkits/qt5-charts/files/patch-src_charts_charts.pro
===================================================================
--- head/x11-toolkits/qt5-charts/files/patch-src_charts_charts.pro (revision 434379)
+++ head/x11-toolkits/qt5-charts/files/patch-src_charts_charts.pro (nonexistent)
@@ -1,14 +0,0 @@
-Fix the pkgconfig install path.
-
---- src/charts/charts.pro.orig 2016-12-01 12:57:55 UTC
-+++ src/charts/charts.pro
-@@ -17,6 +17,9 @@ load(qt_module)
- QMAKE_TARGET_PRODUCT = "Qt Charts (Qt $$QT_VERSION)"
- QMAKE_TARGET_DESCRIPTION = "Charts component for Qt."
-
-+# Properly set up the pkgconfig install path -- relative to lib/
-+QMAKE_PKGCONFIG_DESTDIR = ../libdata/pkgconfig
-+
- ############################# SOURCES ##########################################
-
- SOURCES += \
Property changes on: head/x11-toolkits/qt5-charts/files/patch-src_charts_charts.pro
___________________________________________________________________
Deleted: fbsd:nokeywords
## -1 +0,0 ##
-yes
\ No newline at end of property
Deleted: svn:eol-style
## -1 +0,0 ##
-native
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: head/x11-toolkits/qt5-charts/Makefile
===================================================================
--- head/x11-toolkits/qt5-charts/Makefile (revision 434379)
+++ head/x11-toolkits/qt5-charts/Makefile (revision 434380)
@@ -1,30 +1,16 @@
# $FreeBSD$
PORTNAME= charts
-DISTVERSIONPREFIX= release-
-DISTVERSION= 2.1.0
-PORTREVISION= 1
+DISTVERSION= ${QT5_VERSION}
CATEGORIES= x11-toolkits
PKGNAMEPREFIX= qt5-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt 5 charts module
-USES= qmake
-USE_GL= gl
+USES= qmake tar:xz
USE_QT5= core network gui widgets qml quick designer \
buildtools_build qmake_build
-
-DESCR= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/pkg-descr
-
-USE_GITHUB= yes
-GH_ACCOUNT= qt
-GH_PROJECT= qtcharts
-
-pre-configure:
-# Manually run syncqt. This can be dropped with the update to 5.7.0 as syncqt
-# is run upstream when creating the tarball.
- ${MKDIR} ${CONFIGURE_WRKSRC}
- cd ${CONFIGURE_WRKSRC} && ${QT_BINDIR}/syncqt.pl -version ${PORTVERSION}
+QT_DIST= ${PORTNAME}
.include <bsd.port.mk>
Index: head/x11-toolkits/qt5-charts/pkg-plist
===================================================================
--- head/x11-toolkits/qt5-charts/pkg-plist (revision 434379)
+++ head/x11-toolkits/qt5-charts/pkg-plist (revision 434380)
@@ -1,290 +1,292 @@
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/abstractbarchartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/abstractchartlayout_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/abstractdomain_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/areachartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/axisanimation_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/bar_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/baranimation_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/barchartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/boxplotanimation_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/boxplotchartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/boxwhiskers_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/boxwhiskersanimation_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/boxwhiskersdata_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/cartesianchartaxis_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/cartesianchartlayout_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartanimation_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartaxiselement_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartbackground_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartbarcategoryaxisx_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartbarcategoryaxisy_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartcategoryaxisx_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartcategoryaxisy_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartconfig_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartdataset_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartdatetimeaxisx_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartdatetimeaxisy_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartelement_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/charthelpers_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartlogvalueaxisx_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartlogvalueaxisy_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartpresenter_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/charttheme_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartthemebluecerulean_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartthemeblueicy_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartthemebluencs_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartthemebrownsand_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartthemedark_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartthemehighcontrast_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartthemelight_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartthememanager_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartthemeqt_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartthemesystem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/charttitle_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartvalueaxisx_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/chartvalueaxisy_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/glwidget_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/glxyseriesdata_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/horizontalaxis_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/horizontalbarchartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/horizontalpercentbarchartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/horizontalstackedbarchartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/legendlayout_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/legendmarkeritem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/legendscroller_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/linearrowitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/linechartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/logxlogydomain_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/logxlogypolardomain_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/logxydomain_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/logxypolardomain_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/percentbarchartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/pieanimation_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/piechartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/piesliceanimation_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/pieslicedata_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/piesliceitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polarchartaxis_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polarchartaxisangular_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polarchartaxisradial_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polarchartcategoryaxisangular_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polarchartcategoryaxisradial_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polarchartdatetimeaxisangular_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polarchartdatetimeaxisradial_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polarchartlayout_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polarchartlogvalueaxisangular_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polarchartlogvalueaxisradial_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polarchartvalueaxisangular_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polarchartvalueaxisradial_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/polardomain_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qabstractaxis_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qabstractbarseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qabstractseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qarealegendmarker_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qareaseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qbarcategoryaxis_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qbarlegendmarker_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qbarmodelmapper_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qbarseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qbarset_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qboxplotlegendmarker_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qboxplotmodelmapper_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qboxplotseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qboxset_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qcategoryaxis_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qchart_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qchartview_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qdatetimeaxis_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qhorizontalbarseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qhorizontalpercentbarseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qhorizontalstackedbarseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qlegend_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qlegendmarker_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qlineseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qlogvalueaxis_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qpercentbarseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qpielegendmarker_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qpiemodelmapper_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qpieseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qpieslice_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qscatterseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qsplineseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qstackedbarseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qvalueaxis_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qxylegendmarker_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qxymodelmapper_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/qxyseries_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/scatteranimation_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/scatterchartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/scroller_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/splineanimation_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/splinechartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/stackedbarchartitem_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/verticalaxis_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/xlogydomain_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/xlogypolardomain_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/xyanimation_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/xychart_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/xydomain_p.h
-%%QT_INCDIR%%/QtCharts/2.1.0/QtCharts/private/xypolardomain_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/abstractbarchartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/abstractchartlayout_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/abstractdomain_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/areachartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/axisanimation_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/bar_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/baranimation_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/barchartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/boxplotanimation_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/boxplotchartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/boxwhiskers_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/boxwhiskersanimation_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/boxwhiskersdata_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/cartesianchartaxis_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/cartesianchartlayout_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartanimation_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartaxiselement_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartbackground_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartbarcategoryaxisx_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartbarcategoryaxisy_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartcategoryaxisx_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartcategoryaxisy_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartconfig_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartdataset_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartdatetimeaxisx_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartdatetimeaxisy_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartelement_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/charthelpers_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartlogvalueaxisx_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartlogvalueaxisy_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartpresenter_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/charttheme_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartthemebluecerulean_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartthemeblueicy_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartthemebluencs_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartthemebrownsand_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartthemedark_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartthemehighcontrast_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartthemelight_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartthememanager_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartthemeqt_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartthemesystem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/charttitle_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartvalueaxisx_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/chartvalueaxisy_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/glwidget_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/glxyseriesdata_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/horizontalaxis_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/horizontalbarchartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/horizontalpercentbarchartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/horizontalstackedbarchartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/legendlayout_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/legendmarkeritem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/legendscroller_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/linearrowitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/linechartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/logxlogydomain_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/logxlogypolardomain_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/logxydomain_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/logxypolardomain_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/percentbarchartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/pieanimation_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/piechartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/piesliceanimation_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/pieslicedata_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/piesliceitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polarchartaxis_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polarchartaxisangular_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polarchartaxisradial_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polarchartcategoryaxisangular_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polarchartcategoryaxisradial_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polarchartdatetimeaxisangular_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polarchartdatetimeaxisradial_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polarchartlayout_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polarchartlogvalueaxisangular_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polarchartlogvalueaxisradial_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polarchartvalueaxisangular_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polarchartvalueaxisradial_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/polardomain_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qabstractaxis_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qabstractbarseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qabstractseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qarealegendmarker_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qareaseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qbarcategoryaxis_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qbarlegendmarker_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qbarmodelmapper_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qbarseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qbarset_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qboxplotlegendmarker_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qboxplotmodelmapper_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qboxplotseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qboxset_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qcategoryaxis_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qchart_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qchartview_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qdatetimeaxis_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qhorizontalbarseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qhorizontalpercentbarseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qhorizontalstackedbarseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qlegend_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qlegendmarker_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qlineseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qlogvalueaxis_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qpercentbarseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qpielegendmarker_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qpiemodelmapper_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qpieseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qpieslice_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qscatterseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qsplineseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qstackedbarseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qvalueaxis_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qxylegendmarker_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qxymodelmapper_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/qxyseries_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/scatteranimation_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/scatterchartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/scroller_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/splineanimation_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/splinechartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/stackedbarchartitem_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/verticalaxis_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/xlogydomain_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/xlogypolardomain_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/xyanimation_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/xychart_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/xydomain_p.h
+%%QT_INCDIR%%/QtCharts/%%FULLVER%%/QtCharts/private/xypolardomain_p.h
%%QT_INCDIR%%/QtCharts/QAbstractAxis
%%QT_INCDIR%%/QtCharts/QAbstractBarSeries
%%QT_INCDIR%%/QtCharts/QAbstractSeries
%%QT_INCDIR%%/QtCharts/QAreaLegendMarker
%%QT_INCDIR%%/QtCharts/QAreaSeries
%%QT_INCDIR%%/QtCharts/QBarCategoryAxis
%%QT_INCDIR%%/QtCharts/QBarLegendMarker
%%QT_INCDIR%%/QtCharts/QBarModelMapper
%%QT_INCDIR%%/QtCharts/QBarSeries
%%QT_INCDIR%%/QtCharts/QBarSet
%%QT_INCDIR%%/QtCharts/QBoxPlotLegendMarker
%%QT_INCDIR%%/QtCharts/QBoxPlotModelMapper
%%QT_INCDIR%%/QtCharts/QBoxPlotSeries
%%QT_INCDIR%%/QtCharts/QBoxSet
%%QT_INCDIR%%/QtCharts/QCategoryAxis
%%QT_INCDIR%%/QtCharts/QChart
%%QT_INCDIR%%/QtCharts/QChartGlobal
%%QT_INCDIR%%/QtCharts/QChartView
%%QT_INCDIR%%/QtCharts/QDateTimeAxis
%%QT_INCDIR%%/QtCharts/QHBarModelMapper
%%QT_INCDIR%%/QtCharts/QHPieModelMapper
%%QT_INCDIR%%/QtCharts/QHXYModelMapper
%%QT_INCDIR%%/QtCharts/QHorizontalBarSeries
%%QT_INCDIR%%/QtCharts/QHorizontalPercentBarSeries
%%QT_INCDIR%%/QtCharts/QHorizontalStackedBarSeries
%%QT_INCDIR%%/QtCharts/QLegend
%%QT_INCDIR%%/QtCharts/QLegendMarker
%%QT_INCDIR%%/QtCharts/QLineSeries
%%QT_INCDIR%%/QtCharts/QLogValueAxis
%%QT_INCDIR%%/QtCharts/QPercentBarSeries
%%QT_INCDIR%%/QtCharts/QPieLegendMarker
%%QT_INCDIR%%/QtCharts/QPieModelMapper
%%QT_INCDIR%%/QtCharts/QPieSeries
%%QT_INCDIR%%/QtCharts/QPieSlice
%%QT_INCDIR%%/QtCharts/QPolarChart
%%QT_INCDIR%%/QtCharts/QScatterSeries
%%QT_INCDIR%%/QtCharts/QSplineSeries
%%QT_INCDIR%%/QtCharts/QStackedBarSeries
%%QT_INCDIR%%/QtCharts/QVBarModelMapper
%%QT_INCDIR%%/QtCharts/QVBoxPlotModelMapper
%%QT_INCDIR%%/QtCharts/QVPieModelMapper
%%QT_INCDIR%%/QtCharts/QVXYModelMapper
%%QT_INCDIR%%/QtCharts/QValueAxis
%%QT_INCDIR%%/QtCharts/QXYLegendMarker
%%QT_INCDIR%%/QtCharts/QXYModelMapper
%%QT_INCDIR%%/QtCharts/QXYSeries
%%QT_INCDIR%%/QtCharts/QtCharts
%%QT_INCDIR%%/QtCharts/QtChartsDepends
%%QT_INCDIR%%/QtCharts/QtChartsVersion
%%QT_INCDIR%%/QtCharts/chartsnamespace.h
%%QT_INCDIR%%/QtCharts/qabstractaxis.h
%%QT_INCDIR%%/QtCharts/qabstractbarseries.h
%%QT_INCDIR%%/QtCharts/qabstractseries.h
%%QT_INCDIR%%/QtCharts/qarealegendmarker.h
%%QT_INCDIR%%/QtCharts/qareaseries.h
%%QT_INCDIR%%/QtCharts/qbarcategoryaxis.h
%%QT_INCDIR%%/QtCharts/qbarlegendmarker.h
%%QT_INCDIR%%/QtCharts/qbarmodelmapper.h
%%QT_INCDIR%%/QtCharts/qbarseries.h
%%QT_INCDIR%%/QtCharts/qbarset.h
%%QT_INCDIR%%/QtCharts/qboxplotlegendmarker.h
%%QT_INCDIR%%/QtCharts/qboxplotmodelmapper.h
%%QT_INCDIR%%/QtCharts/qboxplotseries.h
%%QT_INCDIR%%/QtCharts/qboxset.h
%%QT_INCDIR%%/QtCharts/qcategoryaxis.h
%%QT_INCDIR%%/QtCharts/qchart.h
%%QT_INCDIR%%/QtCharts/qchartglobal.h
%%QT_INCDIR%%/QtCharts/qchartview.h
%%QT_INCDIR%%/QtCharts/qdatetimeaxis.h
%%QT_INCDIR%%/QtCharts/qhbarmodelmapper.h
%%QT_INCDIR%%/QtCharts/qhorizontalbarseries.h
%%QT_INCDIR%%/QtCharts/qhorizontalpercentbarseries.h
%%QT_INCDIR%%/QtCharts/qhorizontalstackedbarseries.h
%%QT_INCDIR%%/QtCharts/qhpiemodelmapper.h
%%QT_INCDIR%%/QtCharts/qhxymodelmapper.h
%%QT_INCDIR%%/QtCharts/qlegend.h
%%QT_INCDIR%%/QtCharts/qlegendmarker.h
%%QT_INCDIR%%/QtCharts/qlineseries.h
%%QT_INCDIR%%/QtCharts/qlogvalueaxis.h
%%QT_INCDIR%%/QtCharts/qpercentbarseries.h
%%QT_INCDIR%%/QtCharts/qpielegendmarker.h
%%QT_INCDIR%%/QtCharts/qpiemodelmapper.h
%%QT_INCDIR%%/QtCharts/qpieseries.h
%%QT_INCDIR%%/QtCharts/qpieslice.h
%%QT_INCDIR%%/QtCharts/qpolarchart.h
%%QT_INCDIR%%/QtCharts/qscatterseries.h
%%QT_INCDIR%%/QtCharts/qsplineseries.h
%%QT_INCDIR%%/QtCharts/qstackedbarseries.h
%%QT_INCDIR%%/QtCharts/qtchartsversion.h
%%QT_INCDIR%%/QtCharts/qvalueaxis.h
%%QT_INCDIR%%/QtCharts/qvbarmodelmapper.h
%%QT_INCDIR%%/QtCharts/qvboxplotmodelmapper.h
%%QT_INCDIR%%/QtCharts/qvpiemodelmapper.h
%%QT_INCDIR%%/QtCharts/qvxymodelmapper.h
%%QT_INCDIR%%/QtCharts/qxylegendmarker.h
%%QT_INCDIR%%/QtCharts/qxymodelmapper.h
%%QT_INCDIR%%/QtCharts/qxyseries.h
-lib/cmake/Qt5Charts/Qt5ChartsConfig.cmake
-lib/cmake/Qt5Charts/Qt5ChartsConfigVersion.cmake
-lib/libQt5Charts.prl
-lib/libQt5Charts.so
-lib/libQt5Charts.so.2
-lib/libQt5Charts.so.2.1
-lib/libQt5Charts.so.2.1.0
+%%QT_CMAKEDIR%%/Qt5Charts/Qt5ChartsConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Charts/Qt5ChartsConfigVersion.cmake
+%%QT_LIBDIR%%/libQt5Charts.prl
+%%QT_LIBDIR%%/libQt5Charts.so
+%%QT_LIBDIR%%/libQt5Charts.so.5
+%%QT_LIBDIR%%/libQt5Charts.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQt5Charts.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQt5Charts.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_charts.pri
%%QT_MKSPECDIR%%/modules/qt_lib_charts_private.pri
%%QT_QMLDIR%%/QtCharts/designer/ChartViewSpecifics.qml
%%QT_QMLDIR%%/QtCharts/designer/default/AreaSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/BarSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/BoxPlotSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/HorizontalBarSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/HorizontalPercentBarSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/HorizontalStackedBarSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/LineSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/PercentBarSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/PieSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/PolarAreaSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/PolarLineSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/PolarScatterSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/PolarSplineSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/ScatterSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/SplineSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/default/StackedBarSeries.qml
%%QT_QMLDIR%%/QtCharts/designer/images/areaseries-chart-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/areaseries-chart-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/areaseries-polar-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/areaseries-polar-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/barseries-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/barseries-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/boxplotseries-chart-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/boxplotseries-chart-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/horizontalbarseries-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/horizontalbarseries-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/horizontalpercentbarseries-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/horizontalpercentbarseries-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/horizontalstackedbarseries-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/horizontalstackedbarseries-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/lineseries-chart-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/lineseries-chart-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/lineseries-polar-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/lineseries-polar-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/percentbarseries-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/percentbarseries-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/pieseries-chart-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/pieseries-chart-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/scatterseries-chart-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/scatterseries-chart-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/scatterseries-polar-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/scatterseries-polar-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/splineseries-chart-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/splineseries-chart-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/splineseries-polar-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/splineseries-polar-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/images/stackedbarseries-icon.png
%%QT_QMLDIR%%/QtCharts/designer/images/stackedbarseries-icon16.png
%%QT_QMLDIR%%/QtCharts/designer/qtcharts.metainfo
%%QT_QMLDIR%%/QtCharts/libqtchartsqml2.so
+%%DEBUG%%%%QT_QMLDIR%%/QtCharts/libqtchartsqml2.so.debug
%%QT_QMLDIR%%/QtCharts/plugins.qmltypes
%%QT_QMLDIR%%/QtCharts/qmldir
libdata/pkgconfig/Qt5Charts.pc
Index: head/x11-toolkits/qt5-datavis3d/Makefile
===================================================================
--- head/x11-toolkits/qt5-datavis3d/Makefile (nonexistent)
+++ head/x11-toolkits/qt5-datavis3d/Makefile (revision 434380)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME= datavis3d
+DISTVERSION= ${QT5_VERSION}
+CATEGORIES= x11-toolkits
+PKGNAMEPREFIX= qt5-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt 5 3D data visualization module
+
+USE_QT5= core network gui widgets qml quick designer buildtools_build
+QT_DIST= ${PORTNAME}
+
+USES= qmake
+USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
+
+.include <bsd.port.mk>
Property changes on: head/x11-toolkits/qt5-datavis3d/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/x11-toolkits/qt5-datavis3d/pkg-plist
===================================================================
--- head/x11-toolkits/qt5-datavis3d/pkg-plist (nonexistent)
+++ head/x11-toolkits/qt5-datavis3d/pkg-plist (revision 434380)
@@ -0,0 +1,176 @@
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/abstract3dcontroller_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/abstract3drenderer_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/abstractitemmodelhandler_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/abstractobjecthelper_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/abstractrenderitem_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/axisrendercache_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/baritemmodelhandler_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/barrenderitem_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/bars3dcontroller_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/bars3drenderer_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/barseriesrendercache_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/camerahelper_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/customrenderitem_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/datavisualizationglobal_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/drawer_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/labelitem_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/meshloader_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/objecthelper_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/q3dbars_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/q3dcamera_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/q3dinputhandler_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/q3dlight_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/q3dobject_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/q3dscatter_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/q3dscene_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/q3dsurface_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/q3dtheme_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qabstract3daxis_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qabstract3dgraph_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qabstract3dinputhandler_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qabstract3dseries_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qabstractdataproxy_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qbar3dseries_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qbardataitem_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qbardataproxy_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qcategory3daxis_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qcustom3ditem_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qcustom3dlabel_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qcustom3dvolume_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qheightmapsurfacedataproxy_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qitemmodelbardataproxy_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qitemmodelscatterdataproxy_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qitemmodelsurfacedataproxy_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qlogvalue3daxisformatter_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qscatter3dseries_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qscatterdataitem_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qscatterdataproxy_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qsurface3dseries_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qsurfacedataitem_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qsurfacedataproxy_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qtouch3dinputhandler_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qvalue3daxis_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/qvalue3daxisformatter_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/scatter3dcontroller_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/scatter3drenderer_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/scatteritemmodelhandler_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/scatterobjectbufferhelper_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/scatterpointbufferhelper_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/scatterrenderitem_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/scatterseriesrendercache_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/selectionpointer_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/seriesrendercache_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/shaderhelper_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/surface3dcontroller_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/surface3drenderer_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/surfaceitemmodelhandler_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/surfaceobject_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/surfaceseriesrendercache_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/texturehelper_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/thememanager_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/utils_p.h
+%%QT_INCDIR%%/QtDataVisualization/%%FULLVER%%/QtDataVisualization/private/vertexindexer_p.h
+%%QT_INCDIR%%/QtDataVisualization/Q3DBars
+%%QT_INCDIR%%/QtDataVisualization/Q3DCamera
+%%QT_INCDIR%%/QtDataVisualization/Q3DInputHandler
+%%QT_INCDIR%%/QtDataVisualization/Q3DLight
+%%QT_INCDIR%%/QtDataVisualization/Q3DObject
+%%QT_INCDIR%%/QtDataVisualization/Q3DScatter
+%%QT_INCDIR%%/QtDataVisualization/Q3DScene
+%%QT_INCDIR%%/QtDataVisualization/Q3DSurface
+%%QT_INCDIR%%/QtDataVisualization/Q3DTheme
+%%QT_INCDIR%%/QtDataVisualization/QAbstract3DAxis
+%%QT_INCDIR%%/QtDataVisualization/QAbstract3DGraph
+%%QT_INCDIR%%/QtDataVisualization/QAbstract3DInputHandler
+%%QT_INCDIR%%/QtDataVisualization/QAbstract3DSeries
+%%QT_INCDIR%%/QtDataVisualization/QAbstractDataProxy
+%%QT_INCDIR%%/QtDataVisualization/QBar3DSeries
+%%QT_INCDIR%%/QtDataVisualization/QBarDataItem
+%%QT_INCDIR%%/QtDataVisualization/QBarDataProxy
+%%QT_INCDIR%%/QtDataVisualization/QCategory3DAxis
+%%QT_INCDIR%%/QtDataVisualization/QCustom3DItem
+%%QT_INCDIR%%/QtDataVisualization/QCustom3DLabel
+%%QT_INCDIR%%/QtDataVisualization/QCustom3DVolume
+%%QT_INCDIR%%/QtDataVisualization/QHeightMapSurfaceDataProxy
+%%QT_INCDIR%%/QtDataVisualization/QItemModelBarDataProxy
+%%QT_INCDIR%%/QtDataVisualization/QItemModelScatterDataProxy
+%%QT_INCDIR%%/QtDataVisualization/QItemModelSurfaceDataProxy
+%%QT_INCDIR%%/QtDataVisualization/QLogValue3DAxisFormatter
+%%QT_INCDIR%%/QtDataVisualization/QScatter3DSeries
+%%QT_INCDIR%%/QtDataVisualization/QScatterDataItem
+%%QT_INCDIR%%/QtDataVisualization/QScatterDataProxy
+%%QT_INCDIR%%/QtDataVisualization/QSurface3DSeries
+%%QT_INCDIR%%/QtDataVisualization/QSurfaceDataItem
+%%QT_INCDIR%%/QtDataVisualization/QSurfaceDataProxy
+%%QT_INCDIR%%/QtDataVisualization/QTouch3DInputHandler
+%%QT_INCDIR%%/QtDataVisualization/QValue3DAxis
+%%QT_INCDIR%%/QtDataVisualization/QValue3DAxisFormatter
+%%QT_INCDIR%%/QtDataVisualization/QtDataVisualization
+%%QT_INCDIR%%/QtDataVisualization/QtDataVisualizationDepends
+%%QT_INCDIR%%/QtDataVisualization/QtDataVisualizationVersion
+%%QT_INCDIR%%/QtDataVisualization/q3dbars.h
+%%QT_INCDIR%%/QtDataVisualization/q3dcamera.h
+%%QT_INCDIR%%/QtDataVisualization/q3dinputhandler.h
+%%QT_INCDIR%%/QtDataVisualization/q3dlight.h
+%%QT_INCDIR%%/QtDataVisualization/q3dobject.h
+%%QT_INCDIR%%/QtDataVisualization/q3dscatter.h
+%%QT_INCDIR%%/QtDataVisualization/q3dscene.h
+%%QT_INCDIR%%/QtDataVisualization/q3dsurface.h
+%%QT_INCDIR%%/QtDataVisualization/q3dtheme.h
+%%QT_INCDIR%%/QtDataVisualization/qabstract3daxis.h
+%%QT_INCDIR%%/QtDataVisualization/qabstract3dgraph.h
+%%QT_INCDIR%%/QtDataVisualization/qabstract3dinputhandler.h
+%%QT_INCDIR%%/QtDataVisualization/qabstract3dseries.h
+%%QT_INCDIR%%/QtDataVisualization/qabstractdataproxy.h
+%%QT_INCDIR%%/QtDataVisualization/qbar3dseries.h
+%%QT_INCDIR%%/QtDataVisualization/qbardataitem.h
+%%QT_INCDIR%%/QtDataVisualization/qbardataproxy.h
+%%QT_INCDIR%%/QtDataVisualization/qcategory3daxis.h
+%%QT_INCDIR%%/QtDataVisualization/qcustom3ditem.h
+%%QT_INCDIR%%/QtDataVisualization/qcustom3dlabel.h
+%%QT_INCDIR%%/QtDataVisualization/qcustom3dvolume.h
+%%QT_INCDIR%%/QtDataVisualization/qdatavisualizationglobal.h
+%%QT_INCDIR%%/QtDataVisualization/qheightmapsurfacedataproxy.h
+%%QT_INCDIR%%/QtDataVisualization/qitemmodelbardataproxy.h
+%%QT_INCDIR%%/QtDataVisualization/qitemmodelscatterdataproxy.h
+%%QT_INCDIR%%/QtDataVisualization/qitemmodelsurfacedataproxy.h
+%%QT_INCDIR%%/QtDataVisualization/qlogvalue3daxisformatter.h
+%%QT_INCDIR%%/QtDataVisualization/qscatter3dseries.h
+%%QT_INCDIR%%/QtDataVisualization/qscatterdataitem.h
+%%QT_INCDIR%%/QtDataVisualization/qscatterdataproxy.h
+%%QT_INCDIR%%/QtDataVisualization/qsurface3dseries.h
+%%QT_INCDIR%%/QtDataVisualization/qsurfacedataitem.h
+%%QT_INCDIR%%/QtDataVisualization/qsurfacedataproxy.h
+%%QT_INCDIR%%/QtDataVisualization/qtdatavisualizationversion.h
+%%QT_INCDIR%%/QtDataVisualization/qtouch3dinputhandler.h
+%%QT_INCDIR%%/QtDataVisualization/qutils.h
+%%QT_INCDIR%%/QtDataVisualization/qvalue3daxis.h
+%%QT_INCDIR%%/QtDataVisualization/qvalue3daxisformatter.h
+%%QT_CMAKEDIR%%/Qt5DataVisualization/Qt5DataVisualizationConfig.cmake
+%%QT_CMAKEDIR%%/Qt5DataVisualization/Qt5DataVisualizationConfigVersion.cmake
+%%QT_LIBDIR%%/libQt5DataVisualization.prl
+%%QT_LIBDIR%%/libQt5DataVisualization.so
+%%QT_LIBDIR%%/libQt5DataVisualization.so.5
+%%QT_LIBDIR%%/libQt5DataVisualization.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQt5DataVisualization.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQt5DataVisualization.so.%%FULLVER%%.debug
+%%QT_MKSPECDIR%%/modules/qt_lib_datavisualization.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_datavisualization_private.pri
+%%QT_QMLDIR%%/QtDataVisualization/designer/Bars3DSpecifics.qml
+%%QT_QMLDIR%%/QtDataVisualization/designer/Scatter3DSpecifics.qml
+%%QT_QMLDIR%%/QtDataVisualization/designer/Surface3DSpecifics.qml
+%%QT_QMLDIR%%/QtDataVisualization/designer/default/Bars3D.qml
+%%QT_QMLDIR%%/QtDataVisualization/designer/default/Scatter3D.qml
+%%QT_QMLDIR%%/QtDataVisualization/designer/default/Surface3D.qml
+%%QT_QMLDIR%%/QtDataVisualization/designer/images/bars3d-icon.png
+%%QT_QMLDIR%%/QtDataVisualization/designer/images/bars3d-icon16.png
+%%QT_QMLDIR%%/QtDataVisualization/designer/images/scatter3d-icon.png
+%%QT_QMLDIR%%/QtDataVisualization/designer/images/scatter3d-icon16.png
+%%QT_QMLDIR%%/QtDataVisualization/designer/images/surface3d-icon.png
+%%QT_QMLDIR%%/QtDataVisualization/designer/images/surface3d-icon16.png
+%%QT_QMLDIR%%/QtDataVisualization/designer/qtdatavisualization.metainfo
+%%QT_QMLDIR%%/QtDataVisualization/libdatavisualizationqml2.so
+%%DEBUG%%%%QT_QMLDIR%%/QtDataVisualization/libdatavisualizationqml2.so.debug
+%%QT_QMLDIR%%/QtDataVisualization/plugins.qmltypes
+%%QT_QMLDIR%%/QtDataVisualization/qmldir
+libdata/pkgconfig/Qt5DataVisualization.pc
Property changes on: head/x11-toolkits/qt5-datavis3d/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/x11-toolkits/qt5-declarative/files/patch-git_26229cf
===================================================================
--- head/x11-toolkits/qt5-declarative/files/patch-git_26229cf (nonexistent)
+++ head/x11-toolkits/qt5-declarative/files/patch-git_26229cf (revision 434380)
@@ -0,0 +1,38 @@
+QtQuick1 does no longer get released since 5.5.1.
+
+Pull in a patch from git to make it build against the changed api in newer
+Qt versions.
+
+From 26229cfa0b729313893af5674d604e8692dbb946 Mon Sep 17 00:00:00 2001
+From: Richard Moe Gustavsen <richard.gustavsen@theqtcompany.com>
+Date: Tue, 26 Apr 2016 15:08:34 +0200
+Subject: [PATCH] QDeclarativeTextInput: update API to use
+ setBlinkingCursorEnabled
+
+QWidgetLineControl::setCursorBlinkPeriod was renamed to
+QWidgetLineControl::setBlinkingCursorEnabled in qtbase:1b5bc97.
+This patch will update QDeclarativeTextInput to use the new API.
+
+Change-Id: If88c0d44f2ab29c9bc00f5a0226a28d45976ed43
+Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
+URL: https://codereview.qt-project.org/#/c/157118
+---
+ src/declarative/graphicsitems/qdeclarativetextinput.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/declarative/graphicsitems/qdeclarativetextinput.cpp b/src/declarative/graphicsitems/qdeclarativetextinput.cpp
+index 3ff75fd..e39d1af 100644
+--- src/declarative/graphicsitems/qdeclarativetextinput.cpp
++++ src/declarative/graphicsitems/qdeclarativetextinput.cpp
+@@ -514,7 +514,7 @@ void QDeclarativeTextInput::setCursorVisible(bool on)
+ if (d->cursorVisible == on)
+ return;
+ d->cursorVisible = on;
+- d->control->setCursorBlinkPeriod(on?QApplication::cursorFlashTime():0);
++ d->control->setBlinkingCursorEnabled(on);
+ QRect r = d->control->cursorRect();
+ if (d->control->inputMask().isEmpty())
+ updateRect(r);
+--
+2.8.1
+
Property changes on: head/x11-toolkits/qt5-declarative/files/patch-git_26229cf
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/x11-toolkits/qt5-declarative/pkg-plist
===================================================================
--- head/x11-toolkits/qt5-declarative/pkg-plist (revision 434379)
+++ head/x11-toolkits/qt5-declarative/pkg-plist (revision 434380)
@@ -1,258 +1,258 @@
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qbitfield_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeanchors_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeanchors_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeanimatedimage_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeanimatedimage_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeanimation_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeanimation_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeapplication_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativebehavior_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativebind_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativebinding_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativebinding_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeborderimage_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeborderimage_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeboundsignal_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativecleanup_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativecompiledbindings_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativecompiler_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativecomponent_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeconnections_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativecontext_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativecontextscriptclass_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativecustomparser_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativecustomparser_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativedata_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativedebugclient_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativedebuggerstatus_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativedebughelper_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativedebugserver_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativedebugserverconnection_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativedebugservice_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativedebugservice_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativedebugtrace_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativedirparser_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativedom_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativedom_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeengine_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeenginedebug_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeenginedebugservice_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeevents_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeexpression_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativefastproperties_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeflickable_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeflickable_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeflipable_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativefocuspanel_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativefocusscope_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativefontloader_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeglobal_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeglobalscriptclass_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativegraphicswidget_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativegridview_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeguard_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeimage_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeimage_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeimagebase_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeimagebase_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeimplicitsizeitem_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeimplicitsizeitem_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeimport_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeinclude_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeinspectorinterface_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeinspectorservice_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeinstruction_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeintegercache_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeitem_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeitemchangelistener_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeitemsmodule_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativejsast_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativejsastfwd_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativejsastvisitor_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativejsengine_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativejsglobal_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativejsgrammar_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativejslexer_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativejsmemorypool_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativejsnodepool_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativejsparser_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativelayoutitem_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativelist_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativelistaccessor_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativelistmodel_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativelistmodel_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativelistmodelworkeragent_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativelistscriptclass_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativelistview_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeloader_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeloader_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativemetatype_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativemousearea_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativemousearea_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativenotifier_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativenullablevalue_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeobjectscriptclass_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeopenmetaobject_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepackage_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepainteditem_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepainteditem_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeparser_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepath_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepath_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepathview_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepathview_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepincharea_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepincharea_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepixmapcache_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepositioners_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepositioners_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeproperty_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepropertycache_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativepropertychanges_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeproxymetaobject_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativerectangle_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativerectangle_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativerefcount_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativerepeater_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativerepeater_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativerewrite_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativescalegrid_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativescriptparser_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativesmoothedanimation_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativesmoothedanimation_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativespringanimation_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativesqldatabase_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativestate_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativestate_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativestategroup_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativestateoperations_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativestringconverters_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativestyledtext_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativesystempalette_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetext_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetext_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetextedit_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetextedit_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetextinput_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetextinput_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetextlayout_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetimeline_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetimer_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetransition_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetransitionmanager_p_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetranslate_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetypeloader_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetypenamecache_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetypenamescriptclass_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativetypenotavailable_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeutilmodule_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativevaluetype_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativevaluetypescriptclass_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativevisualitemmodel_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativevme_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativevmemetaobject_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativewatcher_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativeworkerscript_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativexmlhttprequest_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qdeclarativexmllistmodel_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qjsdebuggeragent_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qjsdebugservice_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qlistmodelinterface_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qpacketprotocol_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qpodvector_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/qtdeclarativeglobal_p.h
%%QT_INCDIR%%/QtDeclarative/%%FULLVER%%/QtDeclarative/private/textwriter_p.h
%%QT_INCDIR%%/QtDeclarative/QDeclarativeAttachedPropertiesFunc
%%QT_INCDIR%%/QtDeclarative/QDeclarativeComponent
%%QT_INCDIR%%/QtDeclarative/QDeclarativeContext
%%QT_INCDIR%%/QtDeclarative/QDeclarativeDebuggingEnabler
%%QT_INCDIR%%/QtDeclarative/QDeclarativeEngine
%%QT_INCDIR%%/QtDeclarative/QDeclarativeError
%%QT_INCDIR%%/QtDeclarative/QDeclarativeExpression
%%QT_INCDIR%%/QtDeclarative/QDeclarativeExtensionInterface
%%QT_INCDIR%%/QtDeclarative/QDeclarativeExtensionPlugin
%%QT_INCDIR%%/QtDeclarative/QDeclarativeImageProvider
%%QT_INCDIR%%/QtDeclarative/QDeclarativeInfo
%%QT_INCDIR%%/QtDeclarative/QDeclarativeItem
%%QT_INCDIR%%/QtDeclarative/QDeclarativeListProperty
%%QT_INCDIR%%/QtDeclarative/QDeclarativeListReference
%%QT_INCDIR%%/QtDeclarative/QDeclarativeNetworkAccessManagerFactory
%%QT_INCDIR%%/QtDeclarative/QDeclarativeParserStatus
%%QT_INCDIR%%/QtDeclarative/QDeclarativeProperties
%%QT_INCDIR%%/QtDeclarative/QDeclarativeProperty
%%QT_INCDIR%%/QtDeclarative/QDeclarativePropertyMap
%%QT_INCDIR%%/QtDeclarative/QDeclarativePropertyValueInterceptor
%%QT_INCDIR%%/QtDeclarative/QDeclarativePropertyValueSource
%%QT_INCDIR%%/QtDeclarative/QDeclarativeScriptString
%%QT_INCDIR%%/QtDeclarative/QDeclarativeTypeInfo
%%QT_INCDIR%%/QtDeclarative/QDeclarativeView
%%QT_INCDIR%%/QtDeclarative/QtDeclarative
%%QT_INCDIR%%/QtDeclarative/QtDeclarativeDepends
%%QT_INCDIR%%/QtDeclarative/QtDeclarativeVersion
%%QT_INCDIR%%/QtDeclarative/qdeclarative.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativecomponent.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativecontext.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativedebug.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativeengine.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativeerror.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativeexpression.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativeextensioninterface.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativeextensionplugin.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativeimageprovider.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativeinfo.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativeitem.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativelist.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativenetworkaccessmanagerfactory.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativeparserstatus.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativeprivate.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativeproperty.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativepropertymap.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativepropertyvalueinterceptor.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativepropertyvaluesource.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativescriptstring.h
%%QT_INCDIR%%/QtDeclarative/qdeclarativeview.h
%%QT_INCDIR%%/QtDeclarative/qtdeclarativeglobal.h
%%QT_INCDIR%%/QtDeclarative/qtdeclarativeversion.h
-%%QT_LIBDIR%%/cmake/Qt5Declarative/Qt5DeclarativeConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Declarative/Qt5DeclarativeConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5Declarative/Qt5Declarative_QTcpServerConnection.cmake
-%%QT_LIBDIR%%/cmake/Qt5Declarative/Qt5Declarative_QtQuick1Plugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Designer/Qt5Designer_QDeclarativeViewPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Declarative/Qt5DeclarativeConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Declarative/Qt5DeclarativeConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Declarative/Qt5Declarative_QTcpServerConnection.cmake
+%%QT_CMAKEDIR%%/Qt5Declarative/Qt5Declarative_QtQuick1Plugin.cmake
+%%QT_CMAKEDIR%%/Qt5Designer/Qt5Designer_QDeclarativeViewPlugin.cmake
%%QT_LIBDIR%%/libQt5Declarative.prl
%%QT_LIBDIR%%/libQt5Declarative.so
%%QT_LIBDIR%%/libQt5Declarative.so.5
%%QT_LIBDIR%%/libQt5Declarative.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Declarative.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Declarative.so.%%FULLVER%%.debug
%%QT_BINDIR%%/qml1plugindump
%%QT_BINDIR%%/qmlviewer
%%QT_IMPORTDIR%%/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.so
%%DEBUG%%%%QT_IMPORTDIR%%/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.so.debug
%%QT_IMPORTDIR%%/Qt/labs/folderlistmodel/plugins.qmltypes
%%QT_IMPORTDIR%%/Qt/labs/folderlistmodel/qmldir
%%QT_IMPORTDIR%%/Qt/labs/gestures/libqmlgesturesplugin.so
%%DEBUG%%%%QT_IMPORTDIR%%/Qt/labs/gestures/libqmlgesturesplugin.so.debug
%%QT_IMPORTDIR%%/Qt/labs/gestures/plugins.qmltypes
%%QT_IMPORTDIR%%/Qt/labs/gestures/qmldir
%%QT_IMPORTDIR%%/Qt/labs/particles/libqmlparticlesplugin.so
%%DEBUG%%%%QT_IMPORTDIR%%/Qt/labs/particles/libqmlparticlesplugin.so.debug
%%QT_IMPORTDIR%%/Qt/labs/particles/plugins.qmltypes
%%QT_IMPORTDIR%%/Qt/labs/particles/qmldir
%%QT_IMPORTDIR%%/Qt/labs/shaders/libqmlshadersplugin.so
%%DEBUG%%%%QT_IMPORTDIR%%/Qt/labs/shaders/libqmlshadersplugin.so.debug
%%QT_IMPORTDIR%%/Qt/labs/shaders/plugins.qmltypes
%%QT_IMPORTDIR%%/Qt/labs/shaders/qmldir
%%QT_IMPORTDIR%%/QtWebKit/libqmlwebkitplugin.so
%%DEBUG%%%%QT_IMPORTDIR%%/QtWebKit/libqmlwebkitplugin.so.debug
%%QT_IMPORTDIR%%/QtWebKit/plugins.qmltypes
%%QT_IMPORTDIR%%/QtWebKit/qmldir
%%QT_IMPORTDIR%%/builtins.qmltypes
%%QT_MKSPECDIR%%/modules/qt_lib_declarative.pri
%%QT_MKSPECDIR%%/modules/qt_lib_declarative_private.pri
%%QT_PLUGINDIR%%/designer/libqdeclarativeview.so
%%DEBUG%%%%QT_PLUGINDIR%%/designer/libqdeclarativeview.so.debug
%%QT_PLUGINDIR%%/qml1tooling/libqmldbg_inspector.so
%%DEBUG%%%%QT_PLUGINDIR%%/qml1tooling/libqmldbg_inspector.so.debug
%%QT_PLUGINDIR%%/qml1tooling/libqmldbg_tcp_qtdeclarative.so
%%DEBUG%%%%QT_PLUGINDIR%%/qml1tooling/libqmldbg_tcp_qtdeclarative.so.debug
libdata/pkgconfig/Qt5Declarative.pc
Index: head/x11-toolkits/qt5-declarative-render2d/Makefile
===================================================================
--- head/x11-toolkits/qt5-declarative-render2d/Makefile (nonexistent)
+++ head/x11-toolkits/qt5-declarative-render2d/Makefile (revision 434380)
@@ -0,0 +1,16 @@
+# $FreeBSD$
+
+PORTNAME= declarative-render2d
+DISTVERSION= ${QT5_VERSION}
+CATEGORIES= x11-toolkits
+PKGNAMEPREFIX= qt5-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt 5 Quick 2D Rendering Plugin Module
+
+USE_QT5= core gui qml quick buildtools_build
+QT_DIST= ${PORTNAME}
+
+USES= qmake
+
+.include <bsd.port.mk>
Property changes on: head/x11-toolkits/qt5-declarative-render2d/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/x11-toolkits/qt5-declarative-render2d/pkg-plist
===================================================================
--- head/x11-toolkits/qt5-declarative-render2d/pkg-plist (nonexistent)
+++ head/x11-toolkits/qt5-declarative-render2d/pkg-plist (revision 434380)
@@ -0,0 +1,3 @@
+%%QT_CMAKEDIR%%/Qt5Quick/Qt5Quick_ContextPlugin.cmake
+%%QT_PLUGINDIR%%/scenegraph/libsoftwarecontext.so
+%%DEBUG%%%%QT_PLUGINDIR%%/scenegraph/libsoftwarecontext.so.debug
Property changes on: head/x11-toolkits/qt5-declarative-render2d/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/x11-toolkits/qt5-gamepad/Makefile
===================================================================
--- head/x11-toolkits/qt5-gamepad/Makefile (nonexistent)
+++ head/x11-toolkits/qt5-gamepad/Makefile (revision 434380)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME= gamepad
+DISTVERSION= ${QT5_VERSION}
+CATEGORIES= x11-toolkits
+PKGNAMEPREFIX= qt5-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt 5 Gamepad Module
+
+USE_QT5= core gui qml quick buildtools_build
+QT_DIST= ${PORTNAME}
+
+USES= qmake
+USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
+
+.include <bsd.port.mk>
Property changes on: head/x11-toolkits/qt5-gamepad/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/x11-toolkits/qt5-gamepad/pkg-plist
===================================================================
--- head/x11-toolkits/qt5-gamepad/pkg-plist (nonexistent)
+++ head/x11-toolkits/qt5-gamepad/pkg-plist (revision 434380)
@@ -0,0 +1,29 @@
+%%QT_INCDIR%%/QtGamepad/%%FULLVER%%/QtGamepad/private/qgamepadbackend_p.h
+%%QT_INCDIR%%/QtGamepad/%%FULLVER%%/QtGamepad/private/qgamepadbackendfactory_p.h
+%%QT_INCDIR%%/QtGamepad/%%FULLVER%%/QtGamepad/private/qgamepadbackendplugin_p.h
+%%QT_INCDIR%%/QtGamepad/QGamepad
+%%QT_INCDIR%%/QtGamepad/QGamepadKeyNavigation
+%%QT_INCDIR%%/QtGamepad/QGamepadManager
+%%QT_INCDIR%%/QtGamepad/QtGamepad
+%%QT_INCDIR%%/QtGamepad/QtGamepadDepends
+%%QT_INCDIR%%/QtGamepad/QtGamepadVersion
+%%QT_INCDIR%%/QtGamepad/qgamepad.h
+%%QT_INCDIR%%/QtGamepad/qgamepadkeynavigation.h
+%%QT_INCDIR%%/QtGamepad/qgamepadmanager.h
+%%QT_INCDIR%%/QtGamepad/qtgamepadglobal.h
+%%QT_INCDIR%%/QtGamepad/qtgamepadversion.h
+%%QT_CMAKEDIR%%/Qt5Gamepad/Qt5GamepadConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Gamepad/Qt5GamepadConfigVersion.cmake
+%%QT_LIBDIR%%/libQt5Gamepad.prl
+%%QT_LIBDIR%%/libQt5Gamepad.so
+%%QT_LIBDIR%%/libQt5Gamepad.so.5
+%%QT_LIBDIR%%/libQt5Gamepad.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQt5Gamepad.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQt5Gamepad.so.%%FULLVER%%.debug
+%%QT_MKSPECDIR%%/modules/qt_lib_gamepad.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_gamepad_private.pri
+%%QT_QMLDIR%%/QtGamepad/libdeclarative_gamepad.so
+%%DEBUG%%%%QT_QMLDIR%%/QtGamepad/libdeclarative_gamepad.so.debug
+%%QT_QMLDIR%%/QtGamepad/plugins.qmltypes
+%%QT_QMLDIR%%/QtGamepad/qmldir
+libdata/pkgconfig/Qt5Gamepad.pc
Property changes on: head/x11-toolkits/qt5-gamepad/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/x11-toolkits/qt5-gui/Makefile
===================================================================
--- head/x11-toolkits/qt5-gui/Makefile (revision 434379)
+++ head/x11-toolkits/qt5-gui/Makefile (revision 434380)
@@ -1,100 +1,86 @@
# $FreeBSD$
PORTNAME= gui
DISTVERSION= ${QT5_VERSION}
-PORTREVISION= 1
CATEGORIES= x11-toolkits graphics
PKGNAMEPREFIX= qt5-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt graphical user interface module
LIB_DEPENDS= libdbus-1.so:devel/dbus \
libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libharfbuzz.so:print/harfbuzz \
libpng.so:graphics/png \
libxcb.so:x11/libxcb \
libxcb-image.so:x11/xcb-util-image \
libxcb-keysyms.so:x11/xcb-util-keysyms \
libxcb-render-util.so:x11/xcb-util-renderutil \
libxcb-icccm.so:x11/xcb-util-wm \
libxkbcommon.so:x11/libxkbcommon
RUN_DEPENDS= xdg-open:devel/xdg-utils
-USES= compiler:features jpeg
+USES= jpeg
USE_GL= gl egl
USE_GNOME= glib20
USE_QT5= core dbus network qmake_build buildtools_build
QT_DIST= base
USE_XORG= ice sm x11 xi xrender
HAS_CONFIGURE= yes
CONFIGURE_ARGS= -no-eglfs \
-no-evdev \
-system-harfbuzz
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
# Build and install QtPlatformSupport and default QPA plugins (XCB,
# minimal and offscreen). QtGui won't work without (one of) them, but
# they depend on QtGui itself, so they can't be added as dependencies.
# QtPlatformSupport doesn't need to be installed (it's a static
# library), but might be needed by people porting Qt on new platforms.
MORE_WRKSRCS= src/platformheaders \
src/platformsupport \
src/plugins/platforms \
src/plugins/generic
# Image formats are split through different tarballs, these are the
# main ones; input contexts require no additional dependency.
MORE_WRKSRCS+= src/plugins/imageformats \
src/plugins/platforminputcontexts
# openglextensions is the static library to use for further things like qtcanvas3d
MORE_WRKSRCS+= src/openglextensions
QT_DEFINES= ACCESSIBILITY DBUS FONTCONFIG FREETYPE GLIB \
IMAGEFORMAT_PNG OPENGL SHAPE XCB XKB XKBCOMMON XRENDER
QT_CONFIG= accessibility accessibility-atspi-bridge dbus \
fontconfig glib opengl png system-freetype \
system-jpeg system-png xcb xcb-glx xcb-render \
xcb-xlib xinput2 xlib xrender
# Inherited from Qt 4.
.if defined(PACKAGE_BUILDING)
RUN_DEPENDS+= ${LOCALBASE}/share/fonts/encodings/encodings.dir:x11-fonts/encodings \
xorg-fonts-truetype>0:x11-fonts/xorg-fonts-truetype
.endif
CFLAGS_powerpc64= -mminimal-toc
-.include <bsd.port.pre.mk>
-
-# Base GCC fails to build qdrawhelper.cpp:
-# painting/qdrawhelper.cpp: In function 'void qConvertARGB64PMToA2RGB30PM_sse2(uint*, const QRgba64*, int)':
-# painting/qdrawhelper.cpp:1276: note: use -flax-vector-conversions to permit conversions between vectors with differing element types or numbers of subparts
-# painting/qdrawhelper.cpp:1276: error: cannot convert 'int __vector__' to 'long long int __vector__' for argument '1' to 'long long int __vector__ __builtin_ia32_psrlqi128(long long int __vector__, int)'
-# painting/qdrawhelper.cpp:1277: error: cannot convert 'int __vector__' to 'long long int __vector__' for argument '1' to 'long long int __vector__ __builtin_ia32_psrlqi128(long long int __vector__, int)'
-# painting/qdrawhelper.cpp:1278: error: cannot convert 'int __vector__' to 'long long int __vector__' for argument '1' to 'long long int __vector__ __builtin_ia32_psrlqi128(long long int __vector__, int)'
-# painting/qdrawhelper.cpp:1282: error: cannot convert 'int __vector__' to 'long long int __vector__' for argument '1' to 'long long int __vector__ __builtin_ia32_psrlqi128(long long int __vector__, int)'
-.if ${COMPILER_TYPE} == gcc && ${COMPILER_VERSION} <= 42
-CXXFLAGS+= -flax-vector-conversions
-.endif
-
post-build:
.for d in ${MORE_WRKSRCS}
@cd ${WRKSRC}/${d} && \
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \
${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET}
.endfor
post-install:
.for d in ${MORE_WRKSRCS}
@cd ${WRKSRC}/${d} && \
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \
${MAKE_ARGS} ${INSTALL_TARGET}
.endfor
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
Index: head/x11-toolkits/qt5-gui/pkg-plist
===================================================================
--- head/x11-toolkits/qt5-gui/pkg-plist (revision 434379)
+++ head/x11-toolkits/qt5-gui/pkg-plist (revision 434380)
@@ -1,702 +1,709 @@
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstractlayoutstyleinfo_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstracttextdocumentlayout_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qaccessiblecache_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qbezier_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qblendfunctions_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qblittable_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qbmphandler_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolor_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcosmeticstroker_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcssparser_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcssutil_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcursor_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdatabuffer_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdistancefield_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdnd_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_mips_dsp_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_neon_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_x86_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawingprimitive_sse2_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qemulationpaintengine_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qevent_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfixed_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfont_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengine_ft_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengine_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengine_qpf2_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengineglyphcache_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontsubset_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfragmentmap_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgifhandler_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qglyphrun_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgrayraster_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgridlayoutengine_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qguiapplication_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qharfbuzzng_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qhexstring_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qhighdpiscaling_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qicon_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qiconloader_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qimage_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qimagepixmapcleanuphooks_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qimagescale_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputdevicemanager_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputdevicemanager_p_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputmethod_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qjpeghandler_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qkeymapper_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qkeysequence_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qlayoutpolicy_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qmath_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qmemrotate_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qnativeimage_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengl2pexvertexarray_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengl_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglcontext_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglcustomshaderstage_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglengineshadermanager_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglengineshadersource_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglextensions_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglframebufferobject_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglgradientcache_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglpaintdevice_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglpaintengine_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglqueryhelper_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglshadercache_meego_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglshadercache_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengltexture_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengltextureblitter_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengltexturecache_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengltextureglyphcache_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengltexturehelper_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglversionfunctionsfactory_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglvertexarrayobject_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qoutlinemapper_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpagedpaintdevice_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintdevicewindow_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengine_blitter_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengine_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengine_pic_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengine_raster_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengineex_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpainter_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpainterpath_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpathclipper_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpathsimplifier_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpdf_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpen_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpicture_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpixmap_blitter_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpixmap_raster_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpixmapcache_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpnghandler_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpolygonclipper_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qppmhandler_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrasterdefs_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrasterizer_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrawfont_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrbtree_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrgba64_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qscreen_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qsessionmanager_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshapedpixmapdndwindow_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshortcutmap_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qsimpledrag_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstandarditemmodel_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstatictext_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstroker_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qt_gui_pch.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qt_mips_asm_dsp_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextcursor_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextdocument_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextdocumentfragment_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextdocumentlayout_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextengine_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextformat_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtexthtmlparser_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextimagehandler_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextobject_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextodfwriter_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtexttable_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextureglyphcache_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtouchdevice_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtriangulatingstroker_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtriangulator_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qvectorpath_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindow_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qxbmhandler_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qxpmhandler_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qzipreader_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qzipwriter_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformaccessibility.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformbackingstore.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformclipboard.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformcursor.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformdialoghelper.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformdrag.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformfontdatabase.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformgraphicsbuffer.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformgraphicsbufferhelper.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatforminputcontext.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatforminputcontext_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatforminputcontextfactory_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatforminputcontextplugin_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformintegration.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformintegrationfactory_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformintegrationplugin.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformmenu.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformnativeinterface.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformoffscreensurface.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformopenglcontext.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformpixmap.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformscreen.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformscreen_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformservices.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformsessionmanager.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformsharedgraphicscache.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformsurface.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformsystemtrayicon.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformtheme.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformtheme_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformthemefactory_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformthemeplugin.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformwindow.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformwindow_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qwindowsysteminterface.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qwindowsysteminterface_p.h
%%QT_INCDIR%%/QtGui/QAbstractTextDocumentLayout
%%QT_INCDIR%%/QtGui/QAbstractUndoItem
%%QT_INCDIR%%/QtGui/QAccessible
%%QT_INCDIR%%/QtGui/QAccessibleActionInterface
%%QT_INCDIR%%/QtGui/QAccessibleApplication
%%QT_INCDIR%%/QtGui/QAccessibleBridge
%%QT_INCDIR%%/QtGui/QAccessibleBridgePlugin
%%QT_INCDIR%%/QtGui/QAccessibleEditableTextInterface
%%QT_INCDIR%%/QtGui/QAccessibleEvent
%%QT_INCDIR%%/QtGui/QAccessibleImageInterface
%%QT_INCDIR%%/QtGui/QAccessibleInterface
%%QT_INCDIR%%/QtGui/QAccessibleObject
%%QT_INCDIR%%/QtGui/QAccessiblePlugin
%%QT_INCDIR%%/QtGui/QAccessibleStateChangeEvent
%%QT_INCDIR%%/QtGui/QAccessibleTableCellInterface
%%QT_INCDIR%%/QtGui/QAccessibleTableInterface
%%QT_INCDIR%%/QtGui/QAccessibleTableModelChangeEvent
%%QT_INCDIR%%/QtGui/QAccessibleTextCursorEvent
%%QT_INCDIR%%/QtGui/QAccessibleTextInsertEvent
%%QT_INCDIR%%/QtGui/QAccessibleTextInterface
%%QT_INCDIR%%/QtGui/QAccessibleTextRemoveEvent
%%QT_INCDIR%%/QtGui/QAccessibleTextSelectionEvent
%%QT_INCDIR%%/QtGui/QAccessibleTextUpdateEvent
%%QT_INCDIR%%/QtGui/QAccessibleValueChangeEvent
%%QT_INCDIR%%/QtGui/QAccessibleValueInterface
%%QT_INCDIR%%/QtGui/QActionEvent
%%QT_INCDIR%%/QtGui/QApplicationStateChangeEvent
%%QT_INCDIR%%/QtGui/QBackingStore
%%QT_INCDIR%%/QtGui/QBitmap
%%QT_INCDIR%%/QtGui/QBrush
%%QT_INCDIR%%/QtGui/QBrushData
%%QT_INCDIR%%/QtGui/QClipboard
%%QT_INCDIR%%/QtGui/QCloseEvent
%%QT_INCDIR%%/QtGui/QColor
%%QT_INCDIR%%/QtGui/QConicalGradient
%%QT_INCDIR%%/QtGui/QContextMenuEvent
%%QT_INCDIR%%/QtGui/QCursor
%%QT_INCDIR%%/QtGui/QDesktopServices
%%QT_INCDIR%%/QtGui/QDoubleValidator
%%QT_INCDIR%%/QtGui/QDrag
%%QT_INCDIR%%/QtGui/QDragEnterEvent
%%QT_INCDIR%%/QtGui/QDragLeaveEvent
%%QT_INCDIR%%/QtGui/QDragMoveEvent
%%QT_INCDIR%%/QtGui/QDropEvent
%%QT_INCDIR%%/QtGui/QEnterEvent
%%QT_INCDIR%%/QtGui/QExposeEvent
%%QT_INCDIR%%/QtGui/QFileOpenEvent
%%QT_INCDIR%%/QtGui/QFocusEvent
%%QT_INCDIR%%/QtGui/QFont
%%QT_INCDIR%%/QtGui/QFontDatabase
%%QT_INCDIR%%/QtGui/QFontInfo
%%QT_INCDIR%%/QtGui/QFontMetrics
%%QT_INCDIR%%/QtGui/QFontMetricsF
%%QT_INCDIR%%/QtGui/QGenericMatrix
%%QT_INCDIR%%/QtGui/QGenericPlugin
%%QT_INCDIR%%/QtGui/QGenericPluginFactory
%%QT_INCDIR%%/QtGui/QGlyphRun
%%QT_INCDIR%%/QtGui/QGradient
%%QT_INCDIR%%/QtGui/QGradientStop
%%QT_INCDIR%%/QtGui/QGradientStops
%%QT_INCDIR%%/QtGui/QGuiApplication
%%QT_INCDIR%%/QtGui/QHelpEvent
%%QT_INCDIR%%/QtGui/QHideEvent
%%QT_INCDIR%%/QtGui/QHoverEvent
%%QT_INCDIR%%/QtGui/QIcon
%%QT_INCDIR%%/QtGui/QIconDragEvent
%%QT_INCDIR%%/QtGui/QIconEngine
%%QT_INCDIR%%/QtGui/QIconEnginePlugin
%%QT_INCDIR%%/QtGui/QIconEngineV2
%%QT_INCDIR%%/QtGui/QImage
%%QT_INCDIR%%/QtGui/QImageCleanupFunction
%%QT_INCDIR%%/QtGui/QImageIOHandler
%%QT_INCDIR%%/QtGui/QImageIOPlugin
%%QT_INCDIR%%/QtGui/QImageReader
%%QT_INCDIR%%/QtGui/QImageTextKeyLang
%%QT_INCDIR%%/QtGui/QImageWriter
%%QT_INCDIR%%/QtGui/QInputEvent
%%QT_INCDIR%%/QtGui/QInputMethod
%%QT_INCDIR%%/QtGui/QInputMethodEvent
%%QT_INCDIR%%/QtGui/QInputMethodQueryEvent
%%QT_INCDIR%%/QtGui/QIntValidator
%%QT_INCDIR%%/QtGui/QKeyEvent
%%QT_INCDIR%%/QtGui/QKeySequence
%%QT_INCDIR%%/QtGui/QLinearGradient
%%QT_INCDIR%%/QtGui/QMatrix
%%QT_INCDIR%%/QtGui/QMatrix2x2
%%QT_INCDIR%%/QtGui/QMatrix2x3
%%QT_INCDIR%%/QtGui/QMatrix2x4
%%QT_INCDIR%%/QtGui/QMatrix3x2
%%QT_INCDIR%%/QtGui/QMatrix3x3
%%QT_INCDIR%%/QtGui/QMatrix3x4
%%QT_INCDIR%%/QtGui/QMatrix4x2
%%QT_INCDIR%%/QtGui/QMatrix4x3
%%QT_INCDIR%%/QtGui/QMatrix4x4
%%QT_INCDIR%%/QtGui/QMouseEvent
%%QT_INCDIR%%/QtGui/QMoveEvent
%%QT_INCDIR%%/QtGui/QMovie
%%QT_INCDIR%%/QtGui/QNativeGestureEvent
%%QT_INCDIR%%/QtGui/QOffscreenSurface
%%QT_INCDIR%%/QtGui/QOpenGLBuffer
%%QT_INCDIR%%/QtGui/QOpenGLContext
%%QT_INCDIR%%/QtGui/QOpenGLContextGroup
%%QT_INCDIR%%/QtGui/QOpenGLDebugLogger
%%QT_INCDIR%%/QtGui/QOpenGLDebugMessage
%%QT_INCDIR%%/QtGui/QOpenGLExtraFunctions
%%QT_INCDIR%%/QtGui/QOpenGLExtraFunctionsPrivate
%%QT_INCDIR%%/QtGui/QOpenGLFramebufferObject
%%QT_INCDIR%%/QtGui/QOpenGLFramebufferObjectFormat
%%QT_INCDIR%%/QtGui/QOpenGLFunctions
%%QT_INCDIR%%/QtGui/QOpenGLFunctionsPrivate
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_1_0
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_1_1
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_1_2
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_1_3
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_1_4
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_1_5
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_2_0
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_2_1
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_3_0
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_3_1
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_3_2_Compatibility
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_3_2_Core
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_3_3_Compatibility
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_3_3_Core
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_0_Compatibility
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_0_Core
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_1_Compatibility
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_1_Core
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_2_Compatibility
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_2_Core
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_3_Compatibility
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_3_Core
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_4_Compatibility
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_4_Core
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_5_Compatibility
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_5_Core
%%QT_INCDIR%%/QtGui/QOpenGLFunctions_ES2
%%QT_INCDIR%%/QtGui/QOpenGLPaintDevice
%%QT_INCDIR%%/QtGui/QOpenGLPixelTransferOptions
%%QT_INCDIR%%/QtGui/QOpenGLShader
%%QT_INCDIR%%/QtGui/QOpenGLShaderProgram
%%QT_INCDIR%%/QtGui/QOpenGLTexture
%%QT_INCDIR%%/QtGui/QOpenGLTimeMonitor
%%QT_INCDIR%%/QtGui/QOpenGLTimerQuery
%%QT_INCDIR%%/QtGui/QOpenGLVersionFunctions
%%QT_INCDIR%%/QtGui/QOpenGLVersionProfile
%%QT_INCDIR%%/QtGui/QOpenGLVertexArrayObject
%%QT_INCDIR%%/QtGui/QOpenGLWindow
%%QT_INCDIR%%/QtGui/QPageLayout
%%QT_INCDIR%%/QtGui/QPageSize
%%QT_INCDIR%%/QtGui/QPagedPaintDevice
%%QT_INCDIR%%/QtGui/QPaintDevice
%%QT_INCDIR%%/QtGui/QPaintDeviceWindow
%%QT_INCDIR%%/QtGui/QPaintEngine
%%QT_INCDIR%%/QtGui/QPaintEngineState
%%QT_INCDIR%%/QtGui/QPaintEvent
%%QT_INCDIR%%/QtGui/QPainter
%%QT_INCDIR%%/QtGui/QPainterPath
%%QT_INCDIR%%/QtGui/QPainterPathStroker
%%QT_INCDIR%%/QtGui/QPalette
%%QT_INCDIR%%/QtGui/QPdfWriter
%%QT_INCDIR%%/QtGui/QPen
%%QT_INCDIR%%/QtGui/QPicture
%%QT_INCDIR%%/QtGui/QPictureFormatPlugin
%%QT_INCDIR%%/QtGui/QPictureIO
%%QT_INCDIR%%/QtGui/QPixelFormat
%%QT_INCDIR%%/QtGui/QPixmap
%%QT_INCDIR%%/QtGui/QPixmapCache
%%QT_INCDIR%%/QtGui/QPlatformSurfaceEvent
%%QT_INCDIR%%/QtGui/QPolygon
%%QT_INCDIR%%/QtGui/QPolygonF
%%QT_INCDIR%%/QtGui/QQuaternion
%%QT_INCDIR%%/QtGui/QRadialGradient
%%QT_INCDIR%%/QtGui/QRasterWindow
%%QT_INCDIR%%/QtGui/QRawFont
%%QT_INCDIR%%/QtGui/QRegExpValidator
%%QT_INCDIR%%/QtGui/QRegion
%%QT_INCDIR%%/QtGui/QRegularExpressionValidator
%%QT_INCDIR%%/QtGui/QResizeEvent
%%QT_INCDIR%%/QtGui/QRgb
%%QT_INCDIR%%/QtGui/QRgba64
%%QT_INCDIR%%/QtGui/QScreen
%%QT_INCDIR%%/QtGui/QScreenOrientationChangeEvent
%%QT_INCDIR%%/QtGui/QScrollEvent
%%QT_INCDIR%%/QtGui/QScrollPrepareEvent
%%QT_INCDIR%%/QtGui/QSessionManager
%%QT_INCDIR%%/QtGui/QShortcutEvent
%%QT_INCDIR%%/QtGui/QShowEvent
%%QT_INCDIR%%/QtGui/QStandardItem
%%QT_INCDIR%%/QtGui/QStandardItemModel
%%QT_INCDIR%%/QtGui/QStaticText
%%QT_INCDIR%%/QtGui/QStatusTipEvent
%%QT_INCDIR%%/QtGui/QStyleHints
%%QT_INCDIR%%/QtGui/QSurface
%%QT_INCDIR%%/QtGui/QSurfaceFormat
%%QT_INCDIR%%/QtGui/QSyntaxHighlighter
%%QT_INCDIR%%/QtGui/QTabletEvent
%%QT_INCDIR%%/QtGui/QTextBlock
%%QT_INCDIR%%/QtGui/QTextBlockFormat
%%QT_INCDIR%%/QtGui/QTextBlockGroup
%%QT_INCDIR%%/QtGui/QTextBlockUserData
%%QT_INCDIR%%/QtGui/QTextCharFormat
%%QT_INCDIR%%/QtGui/QTextCursor
%%QT_INCDIR%%/QtGui/QTextDocument
%%QT_INCDIR%%/QtGui/QTextDocumentFragment
%%QT_INCDIR%%/QtGui/QTextDocumentWriter
%%QT_INCDIR%%/QtGui/QTextFormat
%%QT_INCDIR%%/QtGui/QTextFragment
%%QT_INCDIR%%/QtGui/QTextFrame
%%QT_INCDIR%%/QtGui/QTextFrameFormat
%%QT_INCDIR%%/QtGui/QTextFrameLayoutData
%%QT_INCDIR%%/QtGui/QTextImageFormat
%%QT_INCDIR%%/QtGui/QTextInlineObject
%%QT_INCDIR%%/QtGui/QTextItem
%%QT_INCDIR%%/QtGui/QTextLayout
%%QT_INCDIR%%/QtGui/QTextLength
%%QT_INCDIR%%/QtGui/QTextLine
%%QT_INCDIR%%/QtGui/QTextList
%%QT_INCDIR%%/QtGui/QTextListFormat
%%QT_INCDIR%%/QtGui/QTextObject
%%QT_INCDIR%%/QtGui/QTextObjectInterface
%%QT_INCDIR%%/QtGui/QTextOption
%%QT_INCDIR%%/QtGui/QTextTable
%%QT_INCDIR%%/QtGui/QTextTableCell
%%QT_INCDIR%%/QtGui/QTextTableCellFormat
%%QT_INCDIR%%/QtGui/QTextTableFormat
%%QT_INCDIR%%/QtGui/QToolBarChangeEvent
%%QT_INCDIR%%/QtGui/QTouchDevice
%%QT_INCDIR%%/QtGui/QTouchEvent
%%QT_INCDIR%%/QtGui/QTransform
%%QT_INCDIR%%/QtGui/QValidator
%%QT_INCDIR%%/QtGui/QVector2D
%%QT_INCDIR%%/QtGui/QVector3D
%%QT_INCDIR%%/QtGui/QVector4D
%%QT_INCDIR%%/QtGui/QWhatsThisClickedEvent
%%QT_INCDIR%%/QtGui/QWheelEvent
%%QT_INCDIR%%/QtGui/QWidgetList
%%QT_INCDIR%%/QtGui/QWidgetMapper
%%QT_INCDIR%%/QtGui/QWidgetSet
%%QT_INCDIR%%/QtGui/QWindow
%%QT_INCDIR%%/QtGui/QWindowList
%%QT_INCDIR%%/QtGui/QWindowStateChangeEvent
%%QT_INCDIR%%/QtGui/QtEvents
%%QT_INCDIR%%/QtGui/QtGui
%%QT_INCDIR%%/QtGui/QtGuiDepends
%%QT_INCDIR%%/QtGui/QtGuiVersion
%%QT_INCDIR%%/QtGui/qabstracttextdocumentlayout.h
%%QT_INCDIR%%/QtGui/qaccessible.h
%%QT_INCDIR%%/QtGui/qaccessiblebridge.h
%%QT_INCDIR%%/QtGui/qaccessibleobject.h
%%QT_INCDIR%%/QtGui/qaccessibleplugin.h
%%QT_INCDIR%%/QtGui/qbackingstore.h
%%QT_INCDIR%%/QtGui/qbitmap.h
%%QT_INCDIR%%/QtGui/qbrush.h
%%QT_INCDIR%%/QtGui/qclipboard.h
%%QT_INCDIR%%/QtGui/qcolor.h
%%QT_INCDIR%%/QtGui/qcursor.h
%%QT_INCDIR%%/QtGui/qdesktopservices.h
%%QT_INCDIR%%/QtGui/qdrag.h
%%QT_INCDIR%%/QtGui/qevent.h
%%QT_INCDIR%%/QtGui/qfont.h
%%QT_INCDIR%%/QtGui/qfontdatabase.h
%%QT_INCDIR%%/QtGui/qfontinfo.h
%%QT_INCDIR%%/QtGui/qfontmetrics.h
%%QT_INCDIR%%/QtGui/qgenericmatrix.h
%%QT_INCDIR%%/QtGui/qgenericplugin.h
%%QT_INCDIR%%/QtGui/qgenericpluginfactory.h
%%QT_INCDIR%%/QtGui/qglyphrun.h
%%QT_INCDIR%%/QtGui/qguiapplication.h
%%QT_INCDIR%%/QtGui/qicon.h
%%QT_INCDIR%%/QtGui/qiconengine.h
%%QT_INCDIR%%/QtGui/qiconengineplugin.h
%%QT_INCDIR%%/QtGui/qimage.h
%%QT_INCDIR%%/QtGui/qimageiohandler.h
%%QT_INCDIR%%/QtGui/qimagereader.h
%%QT_INCDIR%%/QtGui/qimagewriter.h
%%QT_INCDIR%%/QtGui/qinputmethod.h
%%QT_INCDIR%%/QtGui/qkeysequence.h
%%QT_INCDIR%%/QtGui/qmatrix.h
%%QT_INCDIR%%/QtGui/qmatrix4x4.h
%%QT_INCDIR%%/QtGui/qmovie.h
%%QT_INCDIR%%/QtGui/qoffscreensurface.h
%%QT_INCDIR%%/QtGui/qopengl.h
%%QT_INCDIR%%/QtGui/qopenglbuffer.h
%%QT_INCDIR%%/QtGui/qopenglcontext.h
%%QT_INCDIR%%/QtGui/qopengldebug.h
%%QT_INCDIR%%/QtGui/qopengles2ext.h
%%QT_INCDIR%%/QtGui/qopenglext.h
%%QT_INCDIR%%/QtGui/qopenglextrafunctions.h
%%QT_INCDIR%%/QtGui/qopenglframebufferobject.h
%%QT_INCDIR%%/QtGui/qopenglfunctions.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_1_0.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_1_1.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_1_2.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_1_3.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_1_4.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_1_5.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_2_0.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_2_1.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_3_0.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_3_1.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_3_2_compatibility.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_3_2_core.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_3_3_compatibility.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_3_3_core.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_4_0_compatibility.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_4_0_core.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_4_1_compatibility.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_4_1_core.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_4_2_compatibility.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_4_2_core.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_4_3_compatibility.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_4_3_core.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_4_4_compatibility.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_4_4_core.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_4_5_compatibility.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_4_5_core.h
%%QT_INCDIR%%/QtGui/qopenglfunctions_es2.h
%%QT_INCDIR%%/QtGui/qopenglpaintdevice.h
%%QT_INCDIR%%/QtGui/qopenglpixeltransferoptions.h
%%QT_INCDIR%%/QtGui/qopenglshaderprogram.h
%%QT_INCDIR%%/QtGui/qopengltexture.h
%%QT_INCDIR%%/QtGui/qopengltimerquery.h
%%QT_INCDIR%%/QtGui/qopenglversionfunctions.h
%%QT_INCDIR%%/QtGui/qopenglvertexarrayobject.h
%%QT_INCDIR%%/QtGui/qopenglwindow.h
%%QT_INCDIR%%/QtGui/qpagedpaintdevice.h
%%QT_INCDIR%%/QtGui/qpagelayout.h
%%QT_INCDIR%%/QtGui/qpagesize.h
%%QT_INCDIR%%/QtGui/qpaintdevice.h
%%QT_INCDIR%%/QtGui/qpaintdevicewindow.h
%%QT_INCDIR%%/QtGui/qpaintengine.h
%%QT_INCDIR%%/QtGui/qpainter.h
%%QT_INCDIR%%/QtGui/qpainterpath.h
%%QT_INCDIR%%/QtGui/qpalette.h
%%QT_INCDIR%%/QtGui/qpdfwriter.h
%%QT_INCDIR%%/QtGui/qpen.h
%%QT_INCDIR%%/QtGui/qpicture.h
%%QT_INCDIR%%/QtGui/qpictureformatplugin.h
%%QT_INCDIR%%/QtGui/qpixelformat.h
%%QT_INCDIR%%/QtGui/qpixmap.h
%%QT_INCDIR%%/QtGui/qpixmapcache.h
%%QT_INCDIR%%/QtGui/qpolygon.h
%%QT_INCDIR%%/QtGui/qquaternion.h
%%QT_INCDIR%%/QtGui/qrasterwindow.h
%%QT_INCDIR%%/QtGui/qrawfont.h
%%QT_INCDIR%%/QtGui/qregion.h
%%QT_INCDIR%%/QtGui/qrgb.h
%%QT_INCDIR%%/QtGui/qrgba64.h
%%QT_INCDIR%%/QtGui/qscreen.h
%%QT_INCDIR%%/QtGui/qsessionmanager.h
%%QT_INCDIR%%/QtGui/qstandarditemmodel.h
%%QT_INCDIR%%/QtGui/qstatictext.h
%%QT_INCDIR%%/QtGui/qstylehints.h
%%QT_INCDIR%%/QtGui/qsurface.h
%%QT_INCDIR%%/QtGui/qsurfaceformat.h
%%QT_INCDIR%%/QtGui/qsyntaxhighlighter.h
%%QT_INCDIR%%/QtGui/qtextcursor.h
%%QT_INCDIR%%/QtGui/qtextdocument.h
%%QT_INCDIR%%/QtGui/qtextdocumentfragment.h
%%QT_INCDIR%%/QtGui/qtextdocumentwriter.h
%%QT_INCDIR%%/QtGui/qtextformat.h
%%QT_INCDIR%%/QtGui/qtextlayout.h
%%QT_INCDIR%%/QtGui/qtextlist.h
%%QT_INCDIR%%/QtGui/qtextobject.h
%%QT_INCDIR%%/QtGui/qtextoption.h
%%QT_INCDIR%%/QtGui/qtexttable.h
%%QT_INCDIR%%/QtGui/qtguiversion.h
%%QT_INCDIR%%/QtGui/qtouchdevice.h
%%QT_INCDIR%%/QtGui/qtransform.h
%%QT_INCDIR%%/QtGui/qvalidator.h
%%QT_INCDIR%%/QtGui/qvector2d.h
%%QT_INCDIR%%/QtGui/qvector3d.h
%%QT_INCDIR%%/QtGui/qvector4d.h
%%QT_INCDIR%%/QtGui/qwindow.h
%%QT_INCDIR%%/QtGui/qwindowdefs.h
%%QT_INCDIR%%/QtGui/qwindowdefs_win.h
%%QT_INCDIR%%/QtOpenGLExtensions/QOpenGLExtensions
%%QT_INCDIR%%/QtOpenGLExtensions/QtOpenGLExtensions
%%QT_INCDIR%%/QtOpenGLExtensions/QtOpenGLExtensionsDepends
%%QT_INCDIR%%/QtOpenGLExtensions/QtOpenGLExtensionsVersion
%%QT_INCDIR%%/QtOpenGLExtensions/qopenglextensions.h
%%QT_INCDIR%%/QtOpenGLExtensions/qtopenglextensionsversion.h
%%QT_INCDIR%%/QtPlatformHeaders/QCocoaNativeContext
%%QT_INCDIR%%/QtPlatformHeaders/QCocoaWindowFunctions
%%QT_INCDIR%%/QtPlatformHeaders/QEGLNativeContext
%%QT_INCDIR%%/QtPlatformHeaders/QEglFSFunctions
%%QT_INCDIR%%/QtPlatformHeaders/QGLXNativeContext
%%QT_INCDIR%%/QtPlatformHeaders/QPlatformHeaderHelper
%%QT_INCDIR%%/QtPlatformHeaders/QWGLNativeContext
+%%QT_INCDIR%%/QtPlatformHeaders/QWaylandWindowFunctions
%%QT_INCDIR%%/QtPlatformHeaders/QWindowsWindowFunctions
%%QT_INCDIR%%/QtPlatformHeaders/QXcbIntegrationFunctions
%%QT_INCDIR%%/QtPlatformHeaders/QXcbScreenFunctions
%%QT_INCDIR%%/QtPlatformHeaders/QXcbWindowFunctions
%%QT_INCDIR%%/QtPlatformHeaders/QtPlatformHeaders
%%QT_INCDIR%%/QtPlatformHeaders/QtPlatformHeadersDepends
%%QT_INCDIR%%/QtPlatformHeaders/QtPlatformHeadersVersion
%%QT_INCDIR%%/QtPlatformHeaders/qcocoanativecontext.h
%%QT_INCDIR%%/QtPlatformHeaders/qcocoawindowfunctions.h
%%QT_INCDIR%%/QtPlatformHeaders/qeglfsfunctions.h
%%QT_INCDIR%%/QtPlatformHeaders/qeglnativecontext.h
%%QT_INCDIR%%/QtPlatformHeaders/qglxnativecontext.h
%%QT_INCDIR%%/QtPlatformHeaders/qplatformheaderhelper.h
%%QT_INCDIR%%/QtPlatformHeaders/qtplatformheadersversion.h
+%%QT_INCDIR%%/QtPlatformHeaders/qwaylandwindowfunctions.h
%%QT_INCDIR%%/QtPlatformHeaders/qwglnativecontext.h
%%QT_INCDIR%%/QtPlatformHeaders/qwindowswindowfunctions.h
%%QT_INCDIR%%/QtPlatformHeaders/qxcbintegrationfunctions.h
%%QT_INCDIR%%/QtPlatformHeaders/qxcbscreenfunctions.h
%%QT_INCDIR%%/QtPlatformHeaders/qxcbwindowfunctions.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/application_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/atspiadaptor_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/bridge_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/cache_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/cglconvenience_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/constant_mappings_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/dbusconnection_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qaccessiblebridgeutils_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qbasicfontdatabase_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qcoretextfontdatabase_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qdbusmenuadaptor_p.h
+%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qdbusmenubar_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qdbusmenuconnection_p.h
+%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qdbusmenuregistrarproxy_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qdbusmenutypes_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qdbusplatformmenu_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qdbustrayicon_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qdbustraytypes_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qdevicediscovery_dummy_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qdevicediscovery_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qdevicediscovery_static_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qdevicediscovery_udev_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qeglconvenience_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qeglpbuffer_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qeglplatformcontext_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qeglstreamconvenience_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qevdevkeyboard_defaultmap_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qevdevkeyboardhandler_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qevdevkeyboardmanager_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qevdevmousehandler_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qevdevmousemanager_p.h
-%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qevdevtablet_p.h
+%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qevdevtablethandler_p.h
+%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qevdevtabletmanager_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qevdevtouchhandler_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qevdevtouchmanager_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qeventdispatcher_glib_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qfbbackingstore_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qfbcursor_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qfbscreen_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qfbvthandler_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qfbwindow_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qfontconfigdatabase_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qfontengine_coretext_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qfontenginemultifontconfig_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qgenericunixeventdispatcher_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qgenericunixfontdatabase_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qgenericunixservices_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qgenericunixthemes_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qglxconvenience_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qlibinputhandler_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qlibinputkeyboard_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qlibinputpointer_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qlibinputtouch_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qmacmime_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qopenglcompositor_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qopenglcompositorbackingstore_p.h
+%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qrasterbackingstore_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qstatusnotifieritemadaptor_p.h
+%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qt_egl_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qtslib_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qunixeventdispatcher_qpa_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qwindowsguieventdispatcher_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qxdgnotificationproxy_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/qxlibeglintegration_p.h
%%QT_INCDIR%%/QtPlatformSupport/%%FULLVER%%/QtPlatformSupport/private/struct_marshallers_p.h
%%QT_INCDIR%%/QtPlatformSupport/QtPlatformSupport
%%QT_INCDIR%%/QtPlatformSupport/QtPlatformSupportDepends
%%QT_INCDIR%%/QtPlatformSupport/QtPlatformSupportVersion
%%QT_INCDIR%%/QtPlatformSupport/qtplatformsupportversion.h
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5GuiConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QIbusPlatformInputContextPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5GuiConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5GuiConfigExtras.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5GuiConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QGifPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QICOPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QIbusPlatformInputContextPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QJpegPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake
+%%QT_CMAKEDIR%%/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfig.cmake
+%%QT_CMAKEDIR%%/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfigVersion.cmake
%%QT_LIBDIR%%/libQt5Gui.prl
%%QT_LIBDIR%%/libQt5Gui.so
%%QT_LIBDIR%%/libQt5Gui.so.5
%%QT_LIBDIR%%/libQt5Gui.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Gui.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Gui.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt5OpenGLExtensions.a
%%QT_LIBDIR%%/libQt5OpenGLExtensions.prl
%%QT_LIBDIR%%/libQt5PlatformSupport.a
%%QT_LIBDIR%%/libQt5PlatformSupport.prl
%%QT_LIBDIR%%/libQt5XcbQpa.prl
%%QT_LIBDIR%%/libQt5XcbQpa.so
%%QT_LIBDIR%%/libQt5XcbQpa.so.5
%%QT_LIBDIR%%/libQt5XcbQpa.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5XcbQpa.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5XcbQpa.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_gui.pri
%%QT_MKSPECDIR%%/modules/qt_lib_gui_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_openglextensions.pri
%%QT_MKSPECDIR%%/modules/qt_lib_openglextensions_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_platformsupport_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_xcb_qpa_lib_private.pri
%%QT_PLUGINDIR%%/generic/libqtuiotouchplugin.so
%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqtuiotouchplugin.so.debug
%%QT_PLUGINDIR%%/imageformats/libqgif.so
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqgif.so.debug
%%QT_PLUGINDIR%%/imageformats/libqico.so
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqico.so.debug
%%QT_PLUGINDIR%%/imageformats/libqjpeg.so
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqjpeg.so.debug
%%QT_PLUGINDIR%%/platforminputcontexts/libcomposeplatforminputcontextplugin.so
%%DEBUG%%%%QT_PLUGINDIR%%/platforminputcontexts/libcomposeplatforminputcontextplugin.so.debug
%%QT_PLUGINDIR%%/platforminputcontexts/libibusplatforminputcontextplugin.so
%%DEBUG%%%%QT_PLUGINDIR%%/platforminputcontexts/libibusplatforminputcontextplugin.so.debug
%%QT_PLUGINDIR%%/platforms/libqminimal.so
%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqminimal.so.debug
%%QT_PLUGINDIR%%/platforms/libqoffscreen.so
%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqoffscreen.so.debug
%%QT_PLUGINDIR%%/platforms/libqxcb.so
%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqxcb.so.debug
%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-egl-integration.so
%%DEBUG%%%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-egl-integration.so.debug
%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-glx-integration.so
%%DEBUG%%%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-glx-integration.so.debug
libdata/pkgconfig/Qt5Gui.pc
libdata/pkgconfig/Qt5OpenGLExtensions.pc
Index: head/x11-toolkits/qt5-quick/pkg-plist
===================================================================
--- head/x11-toolkits/qt5-quick/pkg-plist (revision 434379)
+++ head/x11-toolkits/qt5-quick/pkg-plist (revision 434380)
@@ -1,398 +1,429 @@
+%%QT_INCDIR%%/QtPacketProtocol/%%FULLVER%%/QtPacketProtocol/private/qpacket_p.h
+%%QT_INCDIR%%/QtPacketProtocol/%%FULLVER%%/QtPacketProtocol/private/qpacketprotocol_p.h
+%%QT_INCDIR%%/QtPacketProtocol/QtPacketProtocol
+%%QT_INCDIR%%/QtPacketProtocol/QtPacketProtocolDepends
+%%QT_INCDIR%%/QtPacketProtocol/QtPacketProtocolVersion
+%%QT_INCDIR%%/QtPacketProtocol/qtpacketprotocolversion.h
+%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmldebugclient_p.h
+%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmldebugclient_p_p.h
+%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmldebugconnection_p.h
+%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlenginecontrolclient_p.h
+%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlenginecontrolclient_p_p.h
+%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmleventlocation_p.h
+%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilerclient_p.h
+%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilerclient_p_p.h
+%%QT_INCDIR%%/QtQmlDebug/QtQmlDebug
+%%QT_INCDIR%%/QtQmlDebug/QtQmlDebugDepends
+%%QT_INCDIR%%/QtQmlDebug/QtQmlDebugVersion
+%%QT_INCDIR%%/QtQmlDebug/qtqmldebugversion.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qaccessiblequickitem_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qaccessiblequickview_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qqmldesignermetaobject_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickaccessibleattached_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickaccessiblefactory_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanchors_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanchors_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatedimage_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatedimage_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatedsprite_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimation_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimation_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimationcontroller_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimator_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimator_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatorcontroller_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatorjob_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickapplication_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickbehavior_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickborderimage_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickborderimage_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcanvascontext_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcanvasitem_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickclipnode_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcontext2d_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcontext2dcommandbuffer_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcontext2dtexture_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcontext2dtile_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignercustomobjectdata_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupport_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportitems_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportmetainfo_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportproperties_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportpropertychanges_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportstates_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignerwindowmanager_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdrag_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdroparea_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickevents_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickflickable_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickflickable_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickflickablebehavior_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickflipable_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickfocusscope_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickfontloader_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickfontmetrics_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickgridview_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimage_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimage_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimagebase_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimagebase_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimplicitsizeitem_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimplicitsizeitem_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitem_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemanimation_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemanimation_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemchangelistener_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemsmodule_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemview_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemview_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemviewtransition_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicklistview_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickloader_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickloader_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickmousearea_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickmousearea_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickmultipointtoucharea_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickopenglinfo_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpainteditem_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpath_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpath_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpathinterpolator_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpathview_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpathview_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpincharea_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpincharea_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpixmapcache_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpositioners_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpositioners_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickprofiler_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpropertychanges_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrectangle_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrectangle_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrendercontrol_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrepeater_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrepeater_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickscalegrid_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickscreen_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshadereffect_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshadereffectmesh_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshadereffectnode_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshadereffectsource_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshortcut_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksmoothedanimation_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksmoothedanimation_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickspringanimation_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksprite_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickspriteengine_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickspritesequence_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstate_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstate_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstatechangescript_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstategroup_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstateoperations_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstyledtext_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksvgparser_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksystempalette_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktext_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktext_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextcontrol_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextcontrol_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextdocument_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextedit_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextedit_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextinput_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextinput_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextmetrics_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextnode_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextnodeengine_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextutil_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktimeline_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktransition_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktransitionmanager_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktranslate_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickutilmodule_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickvalidator_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickvaluetypes_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickview_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickwindow_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickwindowattached_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickwindowmodule_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgabstractrenderer_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgadaptationlayer_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgareaallocator_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgatlastexture_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgbatchrenderer_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgcontext_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgcontextplugin_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultdistancefieldglyphcache_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultglyphnode_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultglyphnode_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultimagenode_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultlayer_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultpainternode_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultrectanglenode_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdepthstencilbuffer_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdistancefieldglyphnode_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdistancefieldglyphnode_p_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdistancefieldutil_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgengine_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsggeometry_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgmaterialshader_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgnode_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgnodeupdater_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrenderer_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrenderloop_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrendernode_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgshadersourcebuilder_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgtexture_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgtexturematerial_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgthreadedrenderloop_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgwindowsrenderloop_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qtquick2_p.h
%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qtquickglobal_p.h
%%QT_INCDIR%%/QtQuick/QQuickAsyncImageProvider
%%QT_INCDIR%%/QtQuick/QQuickFramebufferObject
%%QT_INCDIR%%/QtQuick/QQuickImageProvider
%%QT_INCDIR%%/QtQuick/QQuickImageResponse
%%QT_INCDIR%%/QtQuick/QQuickItem
%%QT_INCDIR%%/QtQuick/QQuickItemGrabResult
%%QT_INCDIR%%/QtQuick/QQuickPaintedItem
%%QT_INCDIR%%/QtQuick/QQuickRenderControl
%%QT_INCDIR%%/QtQuick/QQuickTextDocument
%%QT_INCDIR%%/QtQuick/QQuickTextureFactory
%%QT_INCDIR%%/QtQuick/QQuickTransform
%%QT_INCDIR%%/QtQuick/QQuickView
%%QT_INCDIR%%/QtQuick/QQuickWindow
%%QT_INCDIR%%/QtQuick/QSGAbstractRenderer
%%QT_INCDIR%%/QtQuick/QSGBasicGeometryNode
%%QT_INCDIR%%/QtQuick/QSGClipNode
%%QT_INCDIR%%/QtQuick/QSGDynamicTexture
%%QT_INCDIR%%/QtQuick/QSGEngine
%%QT_INCDIR%%/QtQuick/QSGFlatColorMaterial
%%QT_INCDIR%%/QtQuick/QSGGeometry
%%QT_INCDIR%%/QtQuick/QSGGeometryNode
%%QT_INCDIR%%/QtQuick/QSGMaterial
%%QT_INCDIR%%/QtQuick/QSGMaterialShader
%%QT_INCDIR%%/QtQuick/QSGMaterialType
%%QT_INCDIR%%/QtQuick/QSGNode
%%QT_INCDIR%%/QtQuick/QSGNodeVisitor
%%QT_INCDIR%%/QtQuick/QSGOpacityNode
%%QT_INCDIR%%/QtQuick/QSGOpaqueTextureMaterial
%%QT_INCDIR%%/QtQuick/QSGRootNode
%%QT_INCDIR%%/QtQuick/QSGSimpleMaterial
%%QT_INCDIR%%/QtQuick/QSGSimpleMaterialComparableMaterial
%%QT_INCDIR%%/QtQuick/QSGSimpleMaterialShader
%%QT_INCDIR%%/QtQuick/QSGSimpleRectNode
%%QT_INCDIR%%/QtQuick/QSGSimpleTextureNode
%%QT_INCDIR%%/QtQuick/QSGTexture
%%QT_INCDIR%%/QtQuick/QSGTextureMaterial
%%QT_INCDIR%%/QtQuick/QSGTextureProvider
%%QT_INCDIR%%/QtQuick/QSGTransformNode
%%QT_INCDIR%%/QtQuick/QSGVertexColorMaterial
%%QT_INCDIR%%/QtQuick/QtQuick
%%QT_INCDIR%%/QtQuick/QtQuickDepends
%%QT_INCDIR%%/QtQuick/QtQuickVersion
%%QT_INCDIR%%/QtQuick/qquickframebufferobject.h
%%QT_INCDIR%%/QtQuick/qquickimageprovider.h
%%QT_INCDIR%%/QtQuick/qquickitem.h
%%QT_INCDIR%%/QtQuick/qquickitemgrabresult.h
%%QT_INCDIR%%/QtQuick/qquickpainteditem.h
%%QT_INCDIR%%/QtQuick/qquickrendercontrol.h
%%QT_INCDIR%%/QtQuick/qquicktextdocument.h
%%QT_INCDIR%%/QtQuick/qquickview.h
%%QT_INCDIR%%/QtQuick/qquickwindow.h
%%QT_INCDIR%%/QtQuick/qsgabstractrenderer.h
%%QT_INCDIR%%/QtQuick/qsgengine.h
%%QT_INCDIR%%/QtQuick/qsgflatcolormaterial.h
%%QT_INCDIR%%/QtQuick/qsggeometry.h
%%QT_INCDIR%%/QtQuick/qsgmaterial.h
%%QT_INCDIR%%/QtQuick/qsgnode.h
%%QT_INCDIR%%/QtQuick/qsgsimplematerial.h
%%QT_INCDIR%%/QtQuick/qsgsimplerectnode.h
%%QT_INCDIR%%/QtQuick/qsgsimpletexturenode.h
%%QT_INCDIR%%/QtQuick/qsgtexture.h
%%QT_INCDIR%%/QtQuick/qsgtexturematerial.h
%%QT_INCDIR%%/QtQuick/qsgtextureprovider.h
%%QT_INCDIR%%/QtQuick/qsgvertexcolormaterial.h
%%QT_INCDIR%%/QtQuick/qtquickglobal.h
%%QT_INCDIR%%/QtQuick/qtquickversion.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickage_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickangledirection_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickcumulativedirection_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickcustomaffector_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickcustomparticle_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickdirection_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickellipseextruder_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickfriction_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickgravity_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickgroupgoal_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickimageparticle_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickitemparticle_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquicklineextruder_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickmaskextruder_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticleaffector_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticleemitter_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticleextruder_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticlegroup_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticlepainter_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticlesmodule_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticlesystem_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickpointattractor_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickpointdirection_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickrectangleextruder_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickspritegoal_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquicktargetdirection_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquicktrailemitter_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickturbulence_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickv4particledata_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickwander_p.h
%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qtquickparticlesglobal_p.h
%%QT_INCDIR%%/QtQuickParticles/QtQuickParticles
%%QT_INCDIR%%/QtQuickParticles/QtQuickParticlesDepends
%%QT_INCDIR%%/QtQuickParticles/QtQuickParticlesVersion
%%QT_INCDIR%%/QtQuickParticles/qtquickparticlesversion.h
%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/qtestoptions_p.h
%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktestevent_p.h
%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktestresult_p.h
%%QT_INCDIR%%/QtQuickTest/QtQuickTest
%%QT_INCDIR%%/QtQuickTest/QtQuickTestDepends
%%QT_INCDIR%%/QtQuickTest/QtQuickTestVersion
%%QT_INCDIR%%/QtQuickTest/qtquicktestversion.h
%%QT_INCDIR%%/QtQuickTest/quicktest.h
%%QT_INCDIR%%/QtQuickTest/quicktestglobal.h
%%QT_INCDIR%%/QtQuickWidgets/%%FULLVER%%/QtQuickWidgets/private/qquickwidget_p.h
%%QT_INCDIR%%/QtQuickWidgets/QQuickWidget
%%QT_INCDIR%%/QtQuickWidgets/QtQuickWidgets
%%QT_INCDIR%%/QtQuickWidgets/QtQuickWidgetsDepends
%%QT_INCDIR%%/QtQuickWidgets/QtQuickWidgetsVersion
%%QT_INCDIR%%/QtQuickWidgets/qquickwidget.h
%%QT_INCDIR%%/QtQuickWidgets/qtquickwidgetsglobal.h
%%QT_INCDIR%%/QtQuickWidgets/qtquickwidgetsversion.h
-%%QT_LIBDIR%%/cmake/Qt5Qml/Qt5Qml_QLocalClientConnectionFactory.cmake
-%%QT_LIBDIR%%/cmake/Qt5Qml/Qt5Qml_QQmlDebugServerFactory.cmake
-%%QT_LIBDIR%%/cmake/Qt5Qml/Qt5Qml_QQmlDebuggerServiceFactory.cmake
-%%QT_LIBDIR%%/cmake/Qt5Qml/Qt5Qml_QQmlInspectorServiceFactory.cmake
-%%QT_LIBDIR%%/cmake/Qt5Qml/Qt5Qml_QQmlNativeDebugConnectorFactory.cmake
-%%QT_LIBDIR%%/cmake/Qt5Qml/Qt5Qml_QQmlProfilerServiceFactory.cmake
-%%QT_LIBDIR%%/cmake/Qt5Qml/Qt5Qml_QTcpServerConnectionFactory.cmake
-%%QT_LIBDIR%%/cmake/Qt5Quick/Qt5QuickConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Quick/Qt5QuickConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5QuickTest/Qt5QuickTestConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5QuickTest/Qt5QuickTestConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5QuickWidgets/Qt5QuickWidgetsConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5QuickWidgets/Qt5QuickWidgetsConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QLocalClientConnectionFactory.cmake
+%%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQmlDebugServerFactory.cmake
+%%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQmlDebuggerServiceFactory.cmake
+%%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQmlInspectorServiceFactory.cmake
+%%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQmlNativeDebugConnectorFactory.cmake
+%%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQmlProfilerServiceFactory.cmake
+%%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQuickProfilerAdapterFactory.cmake
+%%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QTcpServerConnectionFactory.cmake
+%%QT_CMAKEDIR%%/Qt5Quick/Qt5QuickConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Quick/Qt5QuickConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5QuickTest/Qt5QuickTestConfig.cmake
+%%QT_CMAKEDIR%%/Qt5QuickTest/Qt5QuickTestConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5QuickWidgets/Qt5QuickWidgetsConfig.cmake
+%%QT_CMAKEDIR%%/Qt5QuickWidgets/Qt5QuickWidgetsConfigVersion.cmake
+%%QT_LIBDIR%%/libQt5PacketProtocol.a
+%%QT_LIBDIR%%/libQt5PacketProtocol.prl
+%%QT_LIBDIR%%/libQt5QmlDebug.a
+%%QT_LIBDIR%%/libQt5QmlDebug.prl
%%QT_LIBDIR%%/libQt5Quick.prl
%%QT_LIBDIR%%/libQt5Quick.so
%%QT_LIBDIR%%/libQt5Quick.so.5
%%QT_LIBDIR%%/libQt5Quick.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Quick.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Quick.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt5QuickParticles.prl
%%QT_LIBDIR%%/libQt5QuickParticles.so
%%QT_LIBDIR%%/libQt5QuickParticles.so.5
%%QT_LIBDIR%%/libQt5QuickParticles.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5QuickParticles.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5QuickParticles.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt5QuickTest.prl
%%QT_LIBDIR%%/libQt5QuickTest.so
%%QT_LIBDIR%%/libQt5QuickTest.so.5
%%QT_LIBDIR%%/libQt5QuickTest.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5QuickTest.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5QuickTest.so.%%FULLVER%%.debug
%%QT_LIBDIR%%/libQt5QuickWidgets.prl
%%QT_LIBDIR%%/libQt5QuickWidgets.so
%%QT_LIBDIR%%/libQt5QuickWidgets.so.5
%%QT_LIBDIR%%/libQt5QuickWidgets.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5QuickWidgets.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5QuickWidgets.so.%%FULLVER%%.debug
%%QT_BINDIR%%/qml
%%QT_BINDIR%%/qmleasing
%%QT_BINDIR%%/qmlimportscanner
%%QT_BINDIR%%/qmllint
%%QT_BINDIR%%/qmlmin
%%QT_BINDIR%%/qmlplugindump
%%QT_BINDIR%%/qmlprofiler
%%QT_BINDIR%%/qmlscene
%%QT_BINDIR%%/qmltestrunner
+%%QT_MKSPECDIR%%/modules/qt_lib_packetprotocol_private.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_qmldebug_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_qmltest.pri
%%QT_MKSPECDIR%%/modules/qt_lib_qmltest_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_quick.pri
%%QT_MKSPECDIR%%/modules/qt_lib_quick_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_quickparticles_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_quickwidgets.pri
%%QT_MKSPECDIR%%/modules/qt_lib_quickwidgets_private.pri
%%QT_PLUGINDIR%%/qmltooling/libqmldbg_debugger.so
%%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_debugger.so.debug
%%QT_PLUGINDIR%%/qmltooling/libqmldbg_inspector.so
%%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_inspector.so.debug
%%QT_PLUGINDIR%%/qmltooling/libqmldbg_local.so
%%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_local.so.debug
%%QT_PLUGINDIR%%/qmltooling/libqmldbg_native.so
%%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_native.so.debug
%%QT_PLUGINDIR%%/qmltooling/libqmldbg_profiler.so
%%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_profiler.so.debug
+%%QT_PLUGINDIR%%/qmltooling/libqmldbg_quickprofiler.so
+%%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_quickprofiler.so.debug
%%QT_PLUGINDIR%%/qmltooling/libqmldbg_server.so
%%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_server.so.debug
%%QT_PLUGINDIR%%/qmltooling/libqmldbg_tcp.so
%%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_tcp.so.debug
%%QT_QMLDIR%%/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.so
%%DEBUG%%%%QT_QMLDIR%%/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.so.debug
%%QT_QMLDIR%%/Qt/labs/folderlistmodel/plugins.qmltypes
%%QT_QMLDIR%%/Qt/labs/folderlistmodel/qmldir
%%QT_QMLDIR%%/Qt/labs/settings/libqmlsettingsplugin.so
%%DEBUG%%%%QT_QMLDIR%%/Qt/labs/settings/libqmlsettingsplugin.so.debug
%%QT_QMLDIR%%/Qt/labs/settings/plugins.qmltypes
%%QT_QMLDIR%%/Qt/labs/settings/qmldir
%%QT_QMLDIR%%/QtQml/Models.2/libmodelsplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQml/Models.2/libmodelsplugin.so.debug
%%QT_QMLDIR%%/QtQml/Models.2/plugins.qmltypes
%%QT_QMLDIR%%/QtQml/Models.2/qmldir
%%QT_QMLDIR%%/QtQml/StateMachine/libqtqmlstatemachine.so
%%DEBUG%%%%QT_QMLDIR%%/QtQml/StateMachine/libqtqmlstatemachine.so.debug
%%QT_QMLDIR%%/QtQml/StateMachine/plugins.qmltypes
%%QT_QMLDIR%%/QtQml/StateMachine/qmldir
%%QT_QMLDIR%%/QtQml/plugins.qmltypes
%%QT_QMLDIR%%/QtQml/qmldir
%%QT_QMLDIR%%/QtQuick.2/libqtquick2plugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQuick.2/libqtquick2plugin.so.debug
%%QT_QMLDIR%%/QtQuick.2/plugins.qmltypes
%%QT_QMLDIR%%/QtQuick.2/qmldir
+%%QT_QMLDIR%%/QtQuick/Layouts/libqquicklayoutsplugin.so
+%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Layouts/libqquicklayoutsplugin.so.debug
+%%QT_QMLDIR%%/QtQuick/Layouts/plugins.qmltypes
+%%QT_QMLDIR%%/QtQuick/Layouts/qmldir
%%QT_QMLDIR%%/QtQuick/LocalStorage/libqmllocalstorageplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/LocalStorage/libqmllocalstorageplugin.so.debug
%%QT_QMLDIR%%/QtQuick/LocalStorage/plugins.qmltypes
%%QT_QMLDIR%%/QtQuick/LocalStorage/qmldir
%%QT_QMLDIR%%/QtQuick/Particles.2/libparticlesplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Particles.2/libparticlesplugin.so.debug
%%QT_QMLDIR%%/QtQuick/Particles.2/plugins.qmltypes
%%QT_QMLDIR%%/QtQuick/Particles.2/qmldir
%%QT_QMLDIR%%/QtQuick/Window.2/libwindowplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Window.2/libwindowplugin.so.debug
%%QT_QMLDIR%%/QtQuick/Window.2/plugins.qmltypes
%%QT_QMLDIR%%/QtQuick/Window.2/qmldir
%%QT_QMLDIR%%/QtQuick/XmlListModel/libqmlxmllistmodelplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/XmlListModel/libqmlxmllistmodelplugin.so.debug
%%QT_QMLDIR%%/QtQuick/XmlListModel/plugins.qmltypes
%%QT_QMLDIR%%/QtQuick/XmlListModel/qmldir
%%QT_QMLDIR%%/QtTest/SignalSpy.qml
%%QT_QMLDIR%%/QtTest/TestCase.qml
%%QT_QMLDIR%%/QtTest/libqmltestplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtTest/libqmltestplugin.so.debug
%%QT_QMLDIR%%/QtTest/plugins.qmltypes
%%QT_QMLDIR%%/QtTest/qmldir
%%QT_QMLDIR%%/QtTest/testlogger.js
%%QT_QMLDIR%%/builtins.qmltypes
libdata/pkgconfig/Qt5Quick.pc
libdata/pkgconfig/Qt5QuickTest.pc
libdata/pkgconfig/Qt5QuickWidgets.pc
Index: head/x11-toolkits/qt5-quickcontrols/pkg-plist
===================================================================
--- head/x11-toolkits/qt5-quickcontrols/pkg-plist (revision 434379)
+++ head/x11-toolkits/qt5-quickcontrols/pkg-plist (revision 434380)
@@ -1,241 +1,243 @@
%%QT_QMLDIR%%/QtQuick/Controls/ApplicationWindow.qml
%%QT_QMLDIR%%/QtQuick/Controls/BusyIndicator.qml
%%QT_QMLDIR%%/QtQuick/Controls/Button.qml
%%QT_QMLDIR%%/QtQuick/Controls/Calendar.qml
%%QT_QMLDIR%%/QtQuick/Controls/CheckBox.qml
%%QT_QMLDIR%%/QtQuick/Controls/ComboBox.qml
%%QT_QMLDIR%%/QtQuick/Controls/GroupBox.qml
%%QT_QMLDIR%%/QtQuick/Controls/Label.qml
%%QT_QMLDIR%%/QtQuick/Controls/Menu.qml
%%QT_QMLDIR%%/QtQuick/Controls/MenuBar.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/AbstractCheckable.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/BasicButton.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/BasicTableView.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/CalendarHeaderModel.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/CalendarUtils.js
%%QT_QMLDIR%%/QtQuick/Controls/Private/ColumnMenuContent.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/ContentItem.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/Control.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/EditMenu.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/EditMenu_base.qml
-%%QT_QMLDIR%%/QtQuick/Controls/Private/EditMenu_ios.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/FastGlow.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/FocusFrame.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/HoverButton.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/MenuContentItem.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/MenuContentScroller.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/MenuItemSubControls.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/ModalPopupBehavior.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/ScrollBar.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/ScrollViewHelper.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/SourceProxy.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/StackView.js
%%QT_QMLDIR%%/QtQuick/Controls/Private/StackViewSlideDelegate.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/Style.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/SystemPaletteSingleton.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/TabBar.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/TableViewItemDelegateLoader.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/TableViewSelection.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/TextHandle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/TextInputWithHandles.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/TextSingleton.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/ToolMenuButton.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/TreeViewItemDelegateLoader.qml
%%QT_QMLDIR%%/QtQuick/Controls/Private/qmldir
%%QT_QMLDIR%%/QtQuick/Controls/Private/style.js
%%QT_QMLDIR%%/QtQuick/Controls/ProgressBar.qml
%%QT_QMLDIR%%/QtQuick/Controls/RadioButton.qml
%%QT_QMLDIR%%/QtQuick/Controls/ScrollView.qml
%%QT_QMLDIR%%/QtQuick/Controls/Slider.qml
%%QT_QMLDIR%%/QtQuick/Controls/SpinBox.qml
%%QT_QMLDIR%%/QtQuick/Controls/SplitView.qml
%%QT_QMLDIR%%/QtQuick/Controls/StackView.qml
%%QT_QMLDIR%%/QtQuick/Controls/StackViewDelegate.qml
%%QT_QMLDIR%%/QtQuick/Controls/StackViewTransition.qml
%%QT_QMLDIR%%/QtQuick/Controls/StatusBar.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/ApplicationWindowStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/BasicTableViewStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/BusyIndicatorStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/ButtonStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/CalendarStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/CheckBoxStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/CircularButtonStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/CircularGaugeStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/CircularTickmarkLabelStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/ComboBoxStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/CommonStyleHelper.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/DelayButtonStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/DialStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/FocusFrameStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/GaugeStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/GroupBoxStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/HandleStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/HandleStyleHelper.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/MenuBarStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/MenuStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/PieMenuStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/ProgressBarStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/RadioButtonStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/ScrollViewStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/SliderStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/SpinBoxStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/StatusBarStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/StatusIndicatorStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/SwitchStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/TabViewStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/TableViewStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/TextAreaStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/TextFieldStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/ToggleButtonStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/ToolBarStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/ToolButtonStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/TreeViewStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/TumblerStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/arrow-down.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/arrow-down@2x.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/arrow-left.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/arrow-left@2x.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/arrow-right.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/arrow-right@2x.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/arrow-up.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/arrow-up@2x.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/button.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/button_down.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/check.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/check@2x.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/editbox.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/focusframe.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/groupbox.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/header.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/knob.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/leftanglearrow.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/needle.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/progress-indeterminate.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/rightanglearrow.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/scrollbar-handle-horizontal.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/scrollbar-handle-transient.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/scrollbar-handle-vertical.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/slider-groove.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/slider-handle.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/spinner_large.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/spinner_medium.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/spinner_small.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/tab.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Base/images/tab_selected.png
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/ApplicationWindowStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/BusyIndicatorStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/ButtonStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/CalendarStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/CheckBoxStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/ComboBoxStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/FocusFrameStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/GroupBoxStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/MenuBarStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/MenuStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/ProgressBarStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/RadioButtonStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/RowItemSingleton.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/ScrollViewStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/SliderStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/SpinBoxStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/StatusBarStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/SwitchStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/TabViewStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/TableViewStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/TextAreaStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/TextFieldStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/ToolBarStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/ToolButtonStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/TreeViewStyle.qml
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Desktop/qmldir
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Flat/libqtquickextrasflatplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Controls/Styles/Flat/libqtquickextrasflatplugin.so.debug
%%QT_QMLDIR%%/QtQuick/Controls/Styles/Flat/qmldir
%%QT_QMLDIR%%/QtQuick/Controls/Styles/qmldir
%%QT_QMLDIR%%/QtQuick/Controls/Switch.qml
%%QT_QMLDIR%%/QtQuick/Controls/Tab.qml
%%QT_QMLDIR%%/QtQuick/Controls/TabView.qml
%%QT_QMLDIR%%/QtQuick/Controls/TableView.qml
%%QT_QMLDIR%%/QtQuick/Controls/TableViewColumn.qml
%%QT_QMLDIR%%/QtQuick/Controls/TextArea.qml
%%QT_QMLDIR%%/QtQuick/Controls/TextField.qml
%%QT_QMLDIR%%/QtQuick/Controls/ToolBar.qml
%%QT_QMLDIR%%/QtQuick/Controls/ToolButton.qml
%%QT_QMLDIR%%/QtQuick/Controls/TreeView.qml
%%QT_QMLDIR%%/QtQuick/Controls/libqtquickcontrolsplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Controls/libqtquickcontrolsplugin.so.debug
%%QT_QMLDIR%%/QtQuick/Controls/plugins.qmltypes
%%QT_QMLDIR%%/QtQuick/Controls/qmldir
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/DefaultColorDialog.qml
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/DefaultDialogWrapper.qml
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/DefaultFileDialog.qml
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/DefaultFontDialog.qml
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/DefaultMessageDialog.qml
%%QT_QMLDIR%%/QtQuick/Dialogs/Private/libdialogsprivateplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/Private/libdialogsprivateplugin.so.debug
%%QT_QMLDIR%%/QtQuick/Dialogs/Private/plugins.qmltypes
%%QT_QMLDIR%%/QtQuick/Dialogs/Private/qmldir
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/WidgetColorDialog.qml
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/WidgetFileDialog.qml
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/WidgetFontDialog.qml
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/WidgetMessageDialog.qml
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/images/checkers.png
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/images/checkmark.png
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/images/copy.png
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/images/critical.png
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/images/crosshairs.png
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/images/information.png
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/images/question.png
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/images/slider_handle.png
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/images/sunken_frame.png
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/images/warning.png
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/images/window_border.png
%%QT_QMLDIR%%/QtQuick/Dialogs/libdialogplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/libdialogplugin.so.debug
%%QT_QMLDIR%%/QtQuick/Dialogs/plugins.qmltypes
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/qml/ColorSlider.qml
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/qml/DefaultWindowDecoration.qml
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/qml/IconButtonStyle.qml
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/qml/IconGlyph.qml
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/qml/icons.ttf
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Dialogs/qml/qmldir
%%QT_QMLDIR%%/QtQuick/Dialogs/qmldir
+%%QT_QMLDIR%%/QtQuick/Extras/Private/CircularButton.qml
+%%QT_QMLDIR%%/QtQuick/Extras/Private/CircularButtonStyleHelper.qml
+%%QT_QMLDIR%%/QtQuick/Extras/Private/CircularTickmarkLabel.qml
+%%QT_QMLDIR%%/QtQuick/Extras/Private/Handle.qml
+%%QT_QMLDIR%%/QtQuick/Extras/Private/PieMenuIcon.qml
+%%QT_QMLDIR%%/QtQuick/Extras/Private/TextSingleton.qml
+%%QT_QMLDIR%%/QtQuick/Extras/Private/qmldir
%%QT_QMLDIR%%/QtQuick/Extras/designer/CircularGaugeSpecifics.qml
%%QT_QMLDIR%%/QtQuick/Extras/designer/DelayButtonSpecifics.qml
%%QT_QMLDIR%%/QtQuick/Extras/designer/DialSpecifics.qml
%%QT_QMLDIR%%/QtQuick/Extras/designer/GaugeSpecifics.qml
%%QT_QMLDIR%%/QtQuick/Extras/designer/PictureSpecifics.qml
%%QT_QMLDIR%%/QtQuick/Extras/designer/PieMenuSpecifics.qml
%%QT_QMLDIR%%/QtQuick/Extras/designer/StatusIndicatorSpecifics.qml
%%QT_QMLDIR%%/QtQuick/Extras/designer/ToggleButtonSpecifics.qml
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/circulargauge-icon.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/circulargauge-icon16.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/delaybutton-icon.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/delaybutton-icon16.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/dial-icon.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/dial-icon16.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/gauge-icon.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/gauge-icon16.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/picture-icon.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/picture-icon16.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/piemenu-icon.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/piemenu-icon16.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/statusindicator-icon.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/statusindicator-icon16.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/togglebutton-icon.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/togglebutton-icon16.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/tumbler-icon.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/images/tumbler-icon16.png
%%QT_QMLDIR%%/QtQuick/Extras/designer/qtquickextras.metainfo
%%QT_QMLDIR%%/QtQuick/Extras/libqtquickextrasplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Extras/libqtquickextrasplugin.so.debug
%%QT_QMLDIR%%/QtQuick/Extras/plugins.qmltypes
%%QT_QMLDIR%%/QtQuick/Extras/qmldir
-%%QT_QMLDIR%%/QtQuick/Layouts/libqquicklayoutsplugin.so
-%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Layouts/libqquicklayoutsplugin.so.debug
-%%QT_QMLDIR%%/QtQuick/Layouts/plugins.qmltypes
-%%QT_QMLDIR%%/QtQuick/Layouts/qmldir
%%QT_QMLDIR%%/QtQuick/PrivateWidgets/libwidgetsplugin.so
%%DEBUG%%%%QT_QMLDIR%%/QtQuick/PrivateWidgets/libwidgetsplugin.so.debug
%%QT_QMLDIR%%/QtQuick/PrivateWidgets/plugins.qmltypes
%%QT_QMLDIR%%/QtQuick/PrivateWidgets/qmldir
Index: head/x11-toolkits/qt5-quickcontrols2/pkg-plist
===================================================================
--- head/x11-toolkits/qt5-quickcontrols2/pkg-plist (revision 434379)
+++ head/x11-toolkits/qt5-quickcontrols2/pkg-plist (revision 434380)
@@ -1,312 +1,378 @@
-%%QT_INCDIR%%/QtLabsControls/%%FULLVER%%/QtLabsControls/private/qquickpaddedrectangle_p.h
-%%QT_INCDIR%%/QtLabsControls/%%FULLVER%%/QtLabsControls/private/qquickproxytheme_p.h
-%%QT_INCDIR%%/QtLabsControls/%%FULLVER%%/QtLabsControls/private/qquickstyle_p.h
-%%QT_INCDIR%%/QtLabsControls/%%FULLVER%%/QtLabsControls/private/qquickstyleselector_p.h
-%%QT_INCDIR%%/QtLabsControls/%%FULLVER%%/QtLabsControls/private/qquickstyleselector_p_p.h
-%%QT_INCDIR%%/QtLabsControls/QtLabsControls
-%%QT_INCDIR%%/QtLabsControls/QtLabsControlsDepends
-%%QT_INCDIR%%/QtLabsControls/QtLabsControlsVersion
-%%QT_INCDIR%%/QtLabsControls/qtlabscontrolsversion.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickabstractbutton_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickabstractbutton_p_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickapplicationwindow_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickbusyindicator_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickbutton_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickbuttongroup_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickcheckbox_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickcombobox_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickcontainer_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickcontainer_p_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickcontrol_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickcontrol_p_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickdial_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickdrawer_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickframe_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickframe_p_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickgroupbox_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickitemdelegate_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquicklabel_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquicklabel_p_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickmenu_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickmenu_p_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickmenuitem_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickoverlay_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickpage_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickpageindicator_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickpane_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickpane_p_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickpopup_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickpopup_p_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickpressandholdhelper_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickprogressbar_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickradiobutton_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickrangeslider_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickscrollbar_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickscrollindicator_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickslider_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickspinbox_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickstackview_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickstackview_p_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickswipeview_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquickswitch_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquicktabbar_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquicktabbutton_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquicktextarea_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquicktextarea_p_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquicktextfield_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquicktextfield_p_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquicktoolbar_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquicktoolbutton_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qquicktumbler_p.h
-%%QT_INCDIR%%/QtLabsTemplates/%%FULLVER%%/QtLabsTemplates/private/qtlabstemplatesglobal_p.h
-%%QT_INCDIR%%/QtLabsTemplates/QtLabsTemplates
-%%QT_INCDIR%%/QtLabsTemplates/QtLabsTemplatesDepends
-%%QT_INCDIR%%/QtLabsTemplates/QtLabsTemplatesVersion
-%%QT_INCDIR%%/QtLabsTemplates/qtlabstemplatesversion.h
-%%QT_LIBDIR%%/libQt5LabsControls.a
-%%QT_LIBDIR%%/libQt5LabsControls.prl
-%%QT_LIBDIR%%/libQt5LabsTemplates.prl
-%%QT_LIBDIR%%/libQt5LabsTemplates.so
-%%QT_LIBDIR%%/libQt5LabsTemplates.so.5
-%%QT_LIBDIR%%/libQt5LabsTemplates.so.%%SHORTVER%%
-%%QT_LIBDIR%%/libQt5LabsTemplates.so.%%FULLVER%%
-%%DEBUG%%%%QT_LIBDIR%%/libQt5LabsTemplates.so.%%FULLVER%%.debug
-%%QT_MKSPECDIR%%/modules/qt_lib_labscontrols_private.pri
-%%QT_MKSPECDIR%%/modules/qt_lib_labstemplates_private.pri
+%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickcolorimageprovider_p.h
+%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickpaddedrectangle_p.h
+%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickproxytheme_p.h
+%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickstyleattached_p.h
+%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickstyleplugin_p.h
+%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickstyleselector_p.h
+%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickstyleselector_p_p.h
+%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qtquickcontrols2global_p.h
+%%QT_INCDIR%%/QtQuickControls2/QQuickStyle
+%%QT_INCDIR%%/QtQuickControls2/QtQuickControls2
+%%QT_INCDIR%%/QtQuickControls2/QtQuickControls2Depends
+%%QT_INCDIR%%/QtQuickControls2/QtQuickControls2Version
+%%QT_INCDIR%%/QtQuickControls2/qquickstyle.h
+%%QT_INCDIR%%/QtQuickControls2/qtquickcontrols2global.h
+%%QT_INCDIR%%/QtQuickControls2/qtquickcontrols2version.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickabstractbutton_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickabstractbutton_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickapplicationwindow_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickbusyindicator_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickbutton_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickbuttongroup_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcheckbox_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcheckdelegate_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcombobox_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontainer_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontainer_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontrol_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontrol_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdial_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdrawer_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdrawer_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickframe_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickframe_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickgroupbox_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickitemdelegate_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickitemdelegate_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicklabel_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicklabel_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenu_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenu_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenuitem_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickoverlay_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickoverlay_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpage_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpageindicator_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpane_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpane_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopup_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopup_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpresshandler_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickprogressbar_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickradiobutton_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickradiodelegate_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickrangeslider_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickscrollbar_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickscrollindicator_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickslider_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickspinbox_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickstackview_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickstackview_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswipedelegate_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswipeview_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswitch_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswitchdelegate_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktabbar_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktabbutton_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktextarea_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktextarea_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktextfield_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktextfield_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktoolbar_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktoolbutton_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktooltip_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktumbler_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickvelocitycalculator_p_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qtquicktemplates2global_p.h
+%%QT_INCDIR%%/QtQuickTemplates2/QtQuickTemplates2
+%%QT_INCDIR%%/QtQuickTemplates2/QtQuickTemplates2Depends
+%%QT_INCDIR%%/QtQuickTemplates2/QtQuickTemplates2Version
+%%QT_INCDIR%%/QtQuickTemplates2/qtquicktemplates2version.h
+%%QT_CMAKEDIR%%/Qt5QuickControls2/Qt5QuickControls2Config.cmake
+%%QT_CMAKEDIR%%/Qt5QuickControls2/Qt5QuickControls2ConfigVersion.cmake
+%%QT_LIBDIR%%/libQt5QuickControls2.prl
+%%QT_LIBDIR%%/libQt5QuickControls2.so
+%%QT_LIBDIR%%/libQt5QuickControls2.so.5
+%%QT_LIBDIR%%/libQt5QuickControls2.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQt5QuickControls2.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQt5QuickControls2.so.%%FULLVER%%.debug
+%%QT_LIBDIR%%/libQt5QuickTemplates2.prl
+%%QT_LIBDIR%%/libQt5QuickTemplates2.so
+%%QT_LIBDIR%%/libQt5QuickTemplates2.so.5
+%%QT_LIBDIR%%/libQt5QuickTemplates2.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQt5QuickTemplates2.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQt5QuickTemplates2.so.%%FULLVER%%.debug
+%%QT_MKSPECDIR%%/modules/qt_lib_quickcontrols2.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_quickcontrols2_private.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_quicktemplates2_private.pri
%%QT_QMLDIR%%/Qt/labs/calendar/DayOfWeekRow.qml
%%QT_QMLDIR%%/Qt/labs/calendar/MonthGrid.qml
%%QT_QMLDIR%%/Qt/labs/calendar/WeekNumberColumn.qml
%%QT_QMLDIR%%/Qt/labs/calendar/libqtlabscalendarplugin.so
%%DEBUG%%%%QT_QMLDIR%%/Qt/labs/calendar/libqtlabscalendarplugin.so.debug
%%QT_QMLDIR%%/Qt/labs/calendar/plugins.qmltypes
%%QT_QMLDIR%%/Qt/labs/calendar/qmldir
-%%QT_QMLDIR%%/Qt/labs/controls/ApplicationWindow.qml
-%%QT_QMLDIR%%/Qt/labs/controls/BusyIndicator.qml
-%%QT_QMLDIR%%/Qt/labs/controls/Button.qml
-%%QT_QMLDIR%%/Qt/labs/controls/CheckBox.qml
-%%QT_QMLDIR%%/Qt/labs/controls/ComboBox.qml
-%%QT_QMLDIR%%/Qt/labs/controls/Dial.qml
-%%QT_QMLDIR%%/Qt/labs/controls/Drawer.qml
-%%QT_QMLDIR%%/Qt/labs/controls/Frame.qml
-%%QT_QMLDIR%%/Qt/labs/controls/GroupBox.qml
-%%QT_QMLDIR%%/Qt/labs/controls/ItemDelegate.qml
-%%QT_QMLDIR%%/Qt/labs/controls/Label.qml
-%%QT_QMLDIR%%/Qt/labs/controls/Menu.qml
-%%QT_QMLDIR%%/Qt/labs/controls/MenuItem.qml
-%%QT_QMLDIR%%/Qt/labs/controls/Page.qml
-%%QT_QMLDIR%%/Qt/labs/controls/PageIndicator.qml
-%%QT_QMLDIR%%/Qt/labs/controls/Pane.qml
-%%QT_QMLDIR%%/Qt/labs/controls/Popup.qml
-%%QT_QMLDIR%%/Qt/labs/controls/ProgressBar.qml
-%%QT_QMLDIR%%/Qt/labs/controls/RadioButton.qml
-%%QT_QMLDIR%%/Qt/labs/controls/RangeSlider.qml
-%%QT_QMLDIR%%/Qt/labs/controls/ScrollBar.qml
-%%QT_QMLDIR%%/Qt/labs/controls/ScrollIndicator.qml
-%%QT_QMLDIR%%/Qt/labs/controls/Slider.qml
-%%QT_QMLDIR%%/Qt/labs/controls/SpinBox.qml
-%%QT_QMLDIR%%/Qt/labs/controls/StackView.qml
-%%QT_QMLDIR%%/Qt/labs/controls/SwipeView.qml
-%%QT_QMLDIR%%/Qt/labs/controls/Switch.qml
-%%QT_QMLDIR%%/Qt/labs/controls/TabBar.qml
-%%QT_QMLDIR%%/Qt/labs/controls/TabButton.qml
-%%QT_QMLDIR%%/Qt/labs/controls/TextArea.qml
-%%QT_QMLDIR%%/Qt/labs/controls/TextField.qml
-%%QT_QMLDIR%%/Qt/labs/controls/ToolBar.qml
-%%QT_QMLDIR%%/Qt/labs/controls/ToolButton.qml
-%%QT_QMLDIR%%/Qt/labs/controls/Tumbler.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/BusyIndicatorSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/ButtonSection.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/ButtonSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/CheckBoxSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/ComboBoxSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/ControlSection.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/ControlSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/DialSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/FrameSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/GroupBoxSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/ItemDelegateSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/LabelSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/PaddingSection.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/PageIndicatorSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/PaneSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/ProgressBarSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/RadioButtonSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/SliderSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/SpinBoxSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/SwitchSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/TextAreaSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/TextFieldSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/ToolBarSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/ToolButtonSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/TumblerSpecifics.qml
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/busyindicator-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/busyindicator-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/busyindicator-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/busyindicator-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/button-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/button-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/button-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/button-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/checkbox-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/checkbox-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/checkbox-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/checkbox-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/combobox-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/combobox-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/combobox-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/combobox-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/dial-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/dial-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/dial-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/dial-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/frame-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/frame-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/frame-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/frame-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/groupbox-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/groupbox-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/groupbox-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/groupbox-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/itemdelegate-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/itemdelegate-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/itemdelegate-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/itemdelegate-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/label-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/label-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/label-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/label-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/pageindicator-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/pageindicator-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/pageindicator-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/pageindicator-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/pane-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/pane-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/pane-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/pane-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/placeholder-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/placeholder-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/placeholder-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/placeholder-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/progressbar-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/progressbar-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/progressbar-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/progressbar-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/radiobutton-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/radiobutton-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/radiobutton-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/radiobutton-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/slider-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/slider-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/slider-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/slider-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/spinbox-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/spinbox-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/spinbox-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/spinbox-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/switch-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/switch-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/switch-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/switch-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/textarea-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/textarea-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/textarea-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/textarea-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/textfield-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/textfield-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/textfield-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/textfield-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/toolbar-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/toolbar-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/toolbar-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/toolbar-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/toolbutton-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/toolbutton-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/toolbutton-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/toolbutton-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/tumbler-icon.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/tumbler-icon16.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/tumbler-icon16@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/images/tumbler-icon@2x.png
-%%QT_QMLDIR%%/Qt/labs/controls/designer/qtlabscontrols.metainfo
-%%QT_QMLDIR%%/Qt/labs/controls/libqtlabscontrolsplugin.so
-%%DEBUG%%%%QT_QMLDIR%%/Qt/labs/controls/libqtlabscontrolsplugin.so.debug
-%%QT_QMLDIR%%/Qt/labs/controls/material/ApplicationWindow.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/BusyIndicator.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Button.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/CheckBox.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/ComboBox.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Dial.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Drawer.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Frame.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/GroupBox.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/ItemDelegate.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Label.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Menu.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/MenuItem.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Page.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/PageIndicator.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Pane.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Popup.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/ProgressBar.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/RadioButton.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/RangeSlider.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Ripple.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/ScrollBar.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/ScrollIndicator.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Slider.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/SliderHandle.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/SpinBox.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/StackView.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/SwipeView.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Switch.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/TabBar.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/TabButton.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/TextArea.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/TextField.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/ToolBar.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/ToolButton.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/Tumbler.qml
-%%QT_QMLDIR%%/Qt/labs/controls/material/libqtlabsmaterialstyleplugin.so
-%%DEBUG%%%%QT_QMLDIR%%/Qt/labs/controls/material/libqtlabsmaterialstyleplugin.so.debug
-%%QT_QMLDIR%%/Qt/labs/controls/material/qmldir
-%%QT_QMLDIR%%/Qt/labs/controls/plugins.qmltypes
-%%QT_QMLDIR%%/Qt/labs/controls/qmldir
-%%QT_QMLDIR%%/Qt/labs/controls/universal/ApplicationWindow.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/BusyIndicator.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/Button.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/CheckBox.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/ComboBox.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/Dial.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/Frame.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/GroupBox.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/ItemDelegate.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/Label.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/Menu.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/MenuItem.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/Page.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/PageIndicator.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/Pane.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/Popup.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/ProgressBar.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/RadioButton.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/RangeSlider.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/ScrollBar.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/ScrollIndicator.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/Slider.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/SpinBox.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/StackView.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/Switch.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/TabBar.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/TabButton.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/TextArea.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/TextField.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/ToolBar.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/ToolButton.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/Tumbler.qml
-%%QT_QMLDIR%%/Qt/labs/controls/universal/libqtlabsuniversalstyleplugin.so
-%%DEBUG%%%%QT_QMLDIR%%/Qt/labs/controls/universal/libqtlabsuniversalstyleplugin.so.debug
-%%QT_QMLDIR%%/Qt/labs/controls/universal/qmldir
-%%QT_QMLDIR%%/Qt/labs/templates/libqtlabstemplatesplugin.so
-%%DEBUG%%%%QT_QMLDIR%%/Qt/labs/templates/libqtlabstemplatesplugin.so.debug
-%%QT_QMLDIR%%/Qt/labs/templates/plugins.qmltypes
-%%QT_QMLDIR%%/Qt/labs/templates/qmldir
+%%QT_QMLDIR%%/QtQuick/Controls.2/ApplicationWindow.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/BusyIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Button.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/CheckBox.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/CheckDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/CheckIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/ComboBox.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Dial.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Drawer.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Frame.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/GroupBox.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/ItemDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Label.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/AbstractButton.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Container.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Control.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/ApplicationWindow.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/BoxShadow.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/BusyIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Button.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/CheckBox.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/CheckDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/CheckIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/ComboBox.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Dial.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Drawer.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/ElevationEffect.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Frame.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/GroupBox.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/ItemDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Label.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Menu.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/MenuItem.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Page.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/PageIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Pane.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Popup.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/ProgressBar.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/RadioButton.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/RadioDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/RadioIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/RangeSlider.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Ripple.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/ScrollBar.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/ScrollIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Slider.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/SliderHandle.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/SpinBox.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/StackView.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/SwipeDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/SwipeView.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Switch.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/SwitchDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/SwitchIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/TabBar.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/TabButton.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/TextArea.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/TextField.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/ToolBar.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/ToolButton.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/ToolTip.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/Tumbler.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/libqtquickcontrols2materialstyleplugin.so
+%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Controls.2/Material/libqtquickcontrols2materialstyleplugin.so.debug
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/plugins.qmltypes
+%%QT_QMLDIR%%/QtQuick/Controls.2/Material/qmldir
+%%QT_QMLDIR%%/QtQuick/Controls.2/Menu.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/MenuItem.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Page.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/PageIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Pane.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Popup.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/ProgressBar.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/RadioButton.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/RadioDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/RadioIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/RangeSlider.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/ScrollBar.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/ScrollIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Slider.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/SpinBox.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/StackView.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/SwipeDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/SwipeView.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Switch.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/SwitchDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/SwitchIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/TabBar.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/TabButton.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/TextArea.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/TextField.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/ToolBar.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/ToolButton.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/ToolTip.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Tumbler.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ApplicationWindow.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/BusyIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Button.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/CheckBox.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/CheckDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/CheckIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ComboBox.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Dial.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Drawer.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Frame.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/GroupBox.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ItemDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Label.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Menu.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/MenuItem.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Page.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/PageIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Pane.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Popup.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ProgressBar.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/RadioButton.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/RadioDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/RadioIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/RangeSlider.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ScrollBar.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ScrollIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Slider.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/SpinBox.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/StackView.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/SwipeDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Switch.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/SwitchDelegate.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/SwitchIndicator.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/TabBar.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/TabButton.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/TextArea.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/TextField.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ToolBar.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ToolButton.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ToolTip.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Tumbler.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/libqtquickcontrols2universalstyleplugin.so
+%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/libqtquickcontrols2universalstyleplugin.so.debug
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/plugins.qmltypes
+%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/qmldir
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/BusyIndicatorSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/ButtonSection.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/ButtonSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/CheckBoxSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/CheckDelegateSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/ComboBoxSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/ControlSection.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/ControlSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/DialSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/FrameSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/GroupBoxSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/ItemDelegateSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/LabelSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/PaddingSection.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/PageIndicatorSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/PaneSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/ProgressBarSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/RadioButtonSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/RadioDelegateSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/SliderSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/SpinBoxSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/SwipeDelegateSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/SwitchSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/TextAreaSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/TextFieldSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/ToolBarSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/ToolButtonSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/TumblerSpecifics.qml
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/busyindicator-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/busyindicator-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/busyindicator-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/busyindicator-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/button-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/button-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/button-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/button-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/checkbox-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/checkbox-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/checkbox-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/checkbox-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/combobox-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/combobox-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/combobox-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/combobox-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/dial-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/dial-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/dial-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/dial-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/frame-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/frame-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/frame-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/frame-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/groupbox-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/groupbox-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/groupbox-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/groupbox-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/itemdelegate-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/itemdelegate-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/itemdelegate-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/itemdelegate-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/label-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/label-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/label-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/label-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/page-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/page-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/page-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/page-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/rangeslider-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/rangeslider-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/rangeslider-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/rangeslider-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pageindicator-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pageindicator-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pageindicator-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pageindicator-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pane-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pane-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pane-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pane-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/placeholder-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/placeholder-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/placeholder-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/placeholder-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/progressbar-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/progressbar-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/progressbar-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/progressbar-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/radiobutton-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/radiobutton-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/radiobutton-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/radiobutton-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/slider-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/slider-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/slider-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/slider-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/spinbox-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/spinbox-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/spinbox-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/spinbox-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/switch-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/switch-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/switch-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/switch-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textarea-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textarea-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textarea-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textarea-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textfield-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textfield-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textfield-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textfield-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbar-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbar-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbar-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbar-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbutton-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbutton-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbutton-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbutton-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/tumbler-icon.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/tumbler-icon16.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/tumbler-icon16@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/tumbler-icon@2x.png
+%%QT_QMLDIR%%/QtQuick/Controls.2/designer/qtquickcontrols2.metainfo
+%%QT_QMLDIR%%/QtQuick/Controls.2/libqtquickcontrols2plugin.so
+%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Controls.2/libqtquickcontrols2plugin.so.debug
+%%QT_QMLDIR%%/QtQuick/Controls.2/plugins.qmltypes
+%%QT_QMLDIR%%/QtQuick/Controls.2/qmldir
+%%QT_QMLDIR%%/QtQuick/Templates.2/libqtquicktemplates2plugin.so
+%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Templates.2/libqtquicktemplates2plugin.so.debug
+%%QT_QMLDIR%%/QtQuick/Templates.2/plugins.qmltypes
+%%QT_QMLDIR%%/QtQuick/Templates.2/qmldir
+libdata/pkgconfig/Qt5QuickControls2.pc
Index: head/x11-toolkits/qt5-uiplugin/pkg-plist
===================================================================
--- head/x11-toolkits/qt5-uiplugin/pkg-plist (revision 434379)
+++ head/x11-toolkits/qt5-uiplugin/pkg-plist (revision 434380)
@@ -1,12 +1,12 @@
%%QT_INCDIR%%/QtUiPlugin/QDesignerCustomWidgetCollectionInterface
%%QT_INCDIR%%/QtUiPlugin/QDesignerCustomWidgetInterface
%%QT_INCDIR%%/QtUiPlugin/QDesignerExportWidget
%%QT_INCDIR%%/QtUiPlugin/QtUiPlugin
%%QT_INCDIR%%/QtUiPlugin/QtUiPluginDepends
%%QT_INCDIR%%/QtUiPlugin/QtUiPluginVersion
%%QT_INCDIR%%/QtUiPlugin/customwidget.h
%%QT_INCDIR%%/QtUiPlugin/qdesignerexportwidget.h
%%QT_INCDIR%%/QtUiPlugin/qtuipluginversion.h
-%%QT_LIBDIR%%/cmake/Qt5UiPlugin/Qt5UiPluginConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5UiPlugin/Qt5UiPluginConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5UiPlugin/Qt5UiPluginConfig.cmake
+%%QT_CMAKEDIR%%/Qt5UiPlugin/Qt5UiPluginConfigVersion.cmake
%%QT_MKSPECDIR%%/modules/qt_lib_uiplugin.pri
Index: head/x11-toolkits/qt5-virtualkeyboard/Makefile
===================================================================
--- head/x11-toolkits/qt5-virtualkeyboard/Makefile (nonexistent)
+++ head/x11-toolkits/qt5-virtualkeyboard/Makefile (revision 434380)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME= virtualkeyboard
+DISTVERSION= ${QT5_VERSION}
+CATEGORIES= x11-toolkits
+PKGNAMEPREFIX= qt5-
+
+MAINTAINER= kde@FreeBSD.org
+COMMENT= Qt 5 Virtual Keyboard Module
+
+USE_QT5= core network gui widgets svg qml quick buildtools_build
+QT_DIST= ${PORTNAME}
+
+USES= qmake
+USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
+
+.include <bsd.port.mk>
Property changes on: head/x11-toolkits/qt5-virtualkeyboard/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/x11-toolkits/qt5-virtualkeyboard/pkg-plist
===================================================================
--- head/x11-toolkits/qt5-virtualkeyboard/pkg-plist (nonexistent)
+++ head/x11-toolkits/qt5-virtualkeyboard/pkg-plist (revision 434380)
@@ -0,0 +1,9 @@
+%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake
+%%QT_PLUGINDIR%%/platforminputcontexts/libqtvirtualkeyboardplugin.so
+%%DEBUG%%%%QT_PLUGINDIR%%/platforminputcontexts/libqtvirtualkeyboardplugin.so.debug
+%%QT_QMLDIR%%/QtQuick/VirtualKeyboard/Styles/libqtvirtualkeyboardstylesplugin.so
+%%DEBUG%%%%QT_QMLDIR%%/QtQuick/VirtualKeyboard/Styles/libqtvirtualkeyboardstylesplugin.so.debug
+%%QT_QMLDIR%%/QtQuick/VirtualKeyboard/plugins.qmltypes
+%%QT_QMLDIR%%/QtQuick/VirtualKeyboard/qmldir
+%%QT_QMLDIR%%/QtQuick/VirtualKeyboard/Styles/plugins.qmltypes
+%%QT_QMLDIR%%/QtQuick/VirtualKeyboard/Styles/qmldir
Property changes on: head/x11-toolkits/qt5-virtualkeyboard/pkg-plist
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: head/x11-toolkits/qt5-widgets/Makefile
===================================================================
--- head/x11-toolkits/qt5-widgets/Makefile (revision 434379)
+++ head/x11-toolkits/qt5-widgets/Makefile (revision 434380)
@@ -1,63 +1,63 @@
# $FreeBSD$
PORTNAME= widgets
DISTVERSION= ${QT5_VERSION}
CATEGORIES= x11-toolkits
PKGNAMEPREFIX= qt5-
MAINTAINER= kde@FreeBSD.org
COMMENT= Qt C++ widgets module
USE_QT5= core gui qmake_build buildtools_build
QT_DIST= base
USE_XORG= x11
HAS_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
-MORE_WRKSRCS= src/tools/uic \
- src/plugins/platformthemes
+MORE_WRKSRCS= src/tools/uic
QT_DEFINES= ACCESSIBILITY WIDGETS XSYNC
QT_CONFIG= accessibility accessibility-atspi-bridge xlib
-OPTIONS_DEFINE= GTK2
-OPTIONS_SUB= yes
+OPTIONS_DEFINE= GTK3
+OPTIONS_SUB= YES
-GTK2_DESC= GTK+-based Qt theme
-GTK2_USE= GNOME=gtk20
-GTK2_CONFIGURE_ON= -gtkstyle
-GTK2_CONFIGURE_OFF= -no-gtkstyle
+GTK3_DESC= GTK+-based Qt theme
+GTK3_USE= GNOME=gtk30 QT5=dbus
+GTK3_CONFIGURE_ON= -gtk
+GTK3_CONFIGURE_OFF= -no-gtk
.include <bsd.port.options.mk>
-.if ${PORT_OPTIONS:MGTK2}
+.if ${PORT_OPTIONS:MGTK3}
QT_DEFINES+= STYLE_GTK
-QT_CONFIG+= gtkstyle
+QT_CONFIG+= gtk
+MORE_WRKSRCS+= src/plugins/platformthemes
.else
QT_DEFINES+= -STYLE_GTK
-QT_CONFIG+= -gtkstyle
+QT_CONFIG+= -gtk
.endif
# libQt5PlatformSupport.a is installed by qt5-core but needed for the gtk style plugin
post-configure:
${LN} -s ${QT_LIBDIR}/libQt5PlatformSupport.a \
${WRKSRC}/lib/libQt5PlatformSupport.a
pre-build:
@cd ${WRKSRC}/src/tools/uic && \
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \
${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET}
post-install:
.for d in ${MORE_WRKSRCS}
@cd ${WRKSRC}/${d} && \
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \
${MAKE_ARGS} ${INSTALL_TARGET}
.endfor
${INSTALL_DATA} ${BUILD_WRKSRC}/dialogs/images/qtlogo-64.png \
${STAGEDIR}${PREFIX}/share/pixmaps/qt5logo.png
.include <bsd.port.mk>
Index: head/x11-toolkits/qt5-widgets/pkg-plist
===================================================================
--- head/x11-toolkits/qt5-widgets/pkg-plist (revision 434379)
+++ head/x11-toolkits/qt5-widgets/pkg-plist (revision 434380)
@@ -1,506 +1,503 @@
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/complexwidgets_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/itemviews_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractbutton_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractitemdelegate_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractitemview_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractscrollarea_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractslider_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractspinbox_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qaccessiblemenu_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qaccessiblewidgetfactory_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qaccessiblewidgets_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qaction_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qandroidstyle_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qapplication_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qbasickeyeventtransition_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qbasicmouseeventtransition_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qbsptree_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qbuttongroup_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qcolumnview_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qcolumnviewgrip_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qcombobox_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qcommonstyle_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qcommonstylepixmaps_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qcompleter_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qdatetimeedit_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qdesktopwidget_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qdialog_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qdockarealayout_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qdockwidget_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qeffects_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfiledialog_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfileiconprovider_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfileinfogatherer_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfilesystemmodel_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qflickgesture_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfontdialog_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qframe_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfscompleter_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfusionstyle_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfusionstyle_p_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgesture_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgesturemanager_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraph_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsanchorlayout_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicseffect_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsgridlayoutengine_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsitem_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicslayout_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicslayoutitem_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicslayoutstyleinfo_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsproxywidget_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsscene_bsp_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsscene_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsscenebsptreeindex_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicssceneindex_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsscenelinearindex_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicstransform_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsview_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicswidget_p.h
-%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgtk2painter_p.h
-%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgtkglobal_p.h
-%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgtkpainter_p.h
-%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgtkstyle_p.h
-%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgtkstyle_p_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qheaderview_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qitemeditorfactory_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qkeysequenceedit_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qlabel_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qlayout_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qlayoutengine_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qlineedit_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qlistview_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qlistwidget_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmacgesturerecognizer_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmacstyle_mac_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmacstyle_mac_p_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmainwindowlayout_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmdiarea_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmdisubwindow_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmenu_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmenu_wince_resource_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmenubar_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qpixmapfilter_p.h
+%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qpixmapstyle_p.h
+%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qpixmapstyle_p_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qplaintextedit_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qproxystyle_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qpushbutton_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qscrollarea_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qscrollbar_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qscroller_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qscrollerproperties_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qsidebar_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qsimplex_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qsplitter_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qstandardgestures_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qstyle_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qstyleanimation_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qstylehelper_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qstylesheetstyle_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qsystemtrayicon_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qt_widgets_pch.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtabbar_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtableview_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtablewidget_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtextedit_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtoolbar_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtoolbararealayout_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtoolbarextension_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtoolbarlayout_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtoolbarseparator_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtreeview_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtreewidget_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtreewidgetitemiterator_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qundostack_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidget_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetaction_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetanimator_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetbackingstore_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetitemdata_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetlinecontrol_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetresizehandler_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgettextcontrol_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgettextcontrol_p_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetwindow_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowcontainer_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowscestyle_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowscestyle_p_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowsmobilestyle_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowsmobilestyle_p_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowsstyle_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowsstyle_p_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowsvistastyle_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowsvistastyle_p_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowsxpstyle_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowsxpstyle_p_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwizard_win_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/rangecontrols_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/simplewidgets_p.h
%%QT_INCDIR%%/QtWidgets/QAbstractButton
%%QT_INCDIR%%/QtWidgets/QAbstractGraphicsShapeItem
%%QT_INCDIR%%/QtWidgets/QAbstractItemDelegate
%%QT_INCDIR%%/QtWidgets/QAbstractItemView
%%QT_INCDIR%%/QtWidgets/QAbstractScrollArea
%%QT_INCDIR%%/QtWidgets/QAbstractSlider
%%QT_INCDIR%%/QtWidgets/QAbstractSpinBox
%%QT_INCDIR%%/QtWidgets/QAccessibleWidget
%%QT_INCDIR%%/QtWidgets/QAction
%%QT_INCDIR%%/QtWidgets/QActionGroup
%%QT_INCDIR%%/QtWidgets/QApplication
%%QT_INCDIR%%/QtWidgets/QBoxLayout
%%QT_INCDIR%%/QtWidgets/QButtonGroup
%%QT_INCDIR%%/QtWidgets/QCalendarWidget
%%QT_INCDIR%%/QtWidgets/QCheckBox
%%QT_INCDIR%%/QtWidgets/QColorDialog
%%QT_INCDIR%%/QtWidgets/QColormap
%%QT_INCDIR%%/QtWidgets/QColumnView
%%QT_INCDIR%%/QtWidgets/QComboBox
%%QT_INCDIR%%/QtWidgets/QCommandLinkButton
%%QT_INCDIR%%/QtWidgets/QCommonStyle
%%QT_INCDIR%%/QtWidgets/QCompleter
%%QT_INCDIR%%/QtWidgets/QDataWidgetMapper
%%QT_INCDIR%%/QtWidgets/QDateEdit
%%QT_INCDIR%%/QtWidgets/QDateTimeEdit
%%QT_INCDIR%%/QtWidgets/QDesktopWidget
%%QT_INCDIR%%/QtWidgets/QDial
%%QT_INCDIR%%/QtWidgets/QDialog
%%QT_INCDIR%%/QtWidgets/QDialogButtonBox
%%QT_INCDIR%%/QtWidgets/QDirModel
%%QT_INCDIR%%/QtWidgets/QDockWidget
%%QT_INCDIR%%/QtWidgets/QDoubleSpinBox
%%QT_INCDIR%%/QtWidgets/QErrorMessage
%%QT_INCDIR%%/QtWidgets/QFileDialog
%%QT_INCDIR%%/QtWidgets/QFileIconProvider
%%QT_INCDIR%%/QtWidgets/QFileSystemModel
%%QT_INCDIR%%/QtWidgets/QFocusFrame
%%QT_INCDIR%%/QtWidgets/QFontComboBox
%%QT_INCDIR%%/QtWidgets/QFontDialog
%%QT_INCDIR%%/QtWidgets/QFormLayout
%%QT_INCDIR%%/QtWidgets/QFrame
%%QT_INCDIR%%/QtWidgets/QGesture
%%QT_INCDIR%%/QtWidgets/QGestureEvent
%%QT_INCDIR%%/QtWidgets/QGestureRecognizer
%%QT_INCDIR%%/QtWidgets/QGraphicsAnchor
%%QT_INCDIR%%/QtWidgets/QGraphicsAnchorLayout
%%QT_INCDIR%%/QtWidgets/QGraphicsBlurEffect
%%QT_INCDIR%%/QtWidgets/QGraphicsColorizeEffect
%%QT_INCDIR%%/QtWidgets/QGraphicsDropShadowEffect
%%QT_INCDIR%%/QtWidgets/QGraphicsEffect
%%QT_INCDIR%%/QtWidgets/QGraphicsEllipseItem
%%QT_INCDIR%%/QtWidgets/QGraphicsGridLayout
%%QT_INCDIR%%/QtWidgets/QGraphicsItem
%%QT_INCDIR%%/QtWidgets/QGraphicsItemAnimation
%%QT_INCDIR%%/QtWidgets/QGraphicsItemGroup
%%QT_INCDIR%%/QtWidgets/QGraphicsLayout
%%QT_INCDIR%%/QtWidgets/QGraphicsLayoutItem
%%QT_INCDIR%%/QtWidgets/QGraphicsLineItem
%%QT_INCDIR%%/QtWidgets/QGraphicsLinearLayout
%%QT_INCDIR%%/QtWidgets/QGraphicsObject
%%QT_INCDIR%%/QtWidgets/QGraphicsOpacityEffect
%%QT_INCDIR%%/QtWidgets/QGraphicsPathItem
%%QT_INCDIR%%/QtWidgets/QGraphicsPixmapItem
%%QT_INCDIR%%/QtWidgets/QGraphicsPolygonItem
%%QT_INCDIR%%/QtWidgets/QGraphicsProxyWidget
%%QT_INCDIR%%/QtWidgets/QGraphicsRectItem
%%QT_INCDIR%%/QtWidgets/QGraphicsRotation
%%QT_INCDIR%%/QtWidgets/QGraphicsScale
%%QT_INCDIR%%/QtWidgets/QGraphicsScene
%%QT_INCDIR%%/QtWidgets/QGraphicsSceneContextMenuEvent
%%QT_INCDIR%%/QtWidgets/QGraphicsSceneDragDropEvent
%%QT_INCDIR%%/QtWidgets/QGraphicsSceneEvent
%%QT_INCDIR%%/QtWidgets/QGraphicsSceneHelpEvent
%%QT_INCDIR%%/QtWidgets/QGraphicsSceneHoverEvent
%%QT_INCDIR%%/QtWidgets/QGraphicsSceneMouseEvent
%%QT_INCDIR%%/QtWidgets/QGraphicsSceneMoveEvent
%%QT_INCDIR%%/QtWidgets/QGraphicsSceneResizeEvent
%%QT_INCDIR%%/QtWidgets/QGraphicsSceneWheelEvent
%%QT_INCDIR%%/QtWidgets/QGraphicsSimpleTextItem
%%QT_INCDIR%%/QtWidgets/QGraphicsTextItem
%%QT_INCDIR%%/QtWidgets/QGraphicsTransform
%%QT_INCDIR%%/QtWidgets/QGraphicsView
%%QT_INCDIR%%/QtWidgets/QGraphicsWidget
%%QT_INCDIR%%/QtWidgets/QGridLayout
%%QT_INCDIR%%/QtWidgets/QGroupBox
%%QT_INCDIR%%/QtWidgets/QHBoxLayout
%%QT_INCDIR%%/QtWidgets/QHeaderView
%%QT_INCDIR%%/QtWidgets/QInputDialog
%%QT_INCDIR%%/QtWidgets/QItemDelegate
%%QT_INCDIR%%/QtWidgets/QItemEditorCreator
%%QT_INCDIR%%/QtWidgets/QItemEditorCreatorBase
%%QT_INCDIR%%/QtWidgets/QItemEditorFactory
%%QT_INCDIR%%/QtWidgets/QKeyEventTransition
%%QT_INCDIR%%/QtWidgets/QKeySequenceEdit
%%QT_INCDIR%%/QtWidgets/QLCDNumber
%%QT_INCDIR%%/QtWidgets/QLabel
%%QT_INCDIR%%/QtWidgets/QLayout
%%QT_INCDIR%%/QtWidgets/QLayoutItem
%%QT_INCDIR%%/QtWidgets/QLineEdit
%%QT_INCDIR%%/QtWidgets/QListView
%%QT_INCDIR%%/QtWidgets/QListWidget
%%QT_INCDIR%%/QtWidgets/QListWidgetItem
%%QT_INCDIR%%/QtWidgets/QMacCocoaViewContainer
%%QT_INCDIR%%/QtWidgets/QMacNativeWidget
%%QT_INCDIR%%/QtWidgets/QMainWindow
%%QT_INCDIR%%/QtWidgets/QMdiArea
%%QT_INCDIR%%/QtWidgets/QMdiSubWindow
%%QT_INCDIR%%/QtWidgets/QMenu
%%QT_INCDIR%%/QtWidgets/QMenuBar
%%QT_INCDIR%%/QtWidgets/QMessageBox
%%QT_INCDIR%%/QtWidgets/QMouseEventTransition
%%QT_INCDIR%%/QtWidgets/QOpenGLWidget
%%QT_INCDIR%%/QtWidgets/QPanGesture
%%QT_INCDIR%%/QtWidgets/QPinchGesture
%%QT_INCDIR%%/QtWidgets/QPlainTextDocumentLayout
%%QT_INCDIR%%/QtWidgets/QPlainTextEdit
%%QT_INCDIR%%/QtWidgets/QProgressBar
%%QT_INCDIR%%/QtWidgets/QProgressDialog
%%QT_INCDIR%%/QtWidgets/QProxyStyle
%%QT_INCDIR%%/QtWidgets/QPushButton
%%QT_INCDIR%%/QtWidgets/QRadioButton
%%QT_INCDIR%%/QtWidgets/QRubberBand
%%QT_INCDIR%%/QtWidgets/QScrollArea
%%QT_INCDIR%%/QtWidgets/QScrollBar
%%QT_INCDIR%%/QtWidgets/QScroller
%%QT_INCDIR%%/QtWidgets/QScrollerProperties
%%QT_INCDIR%%/QtWidgets/QShortcut
%%QT_INCDIR%%/QtWidgets/QSizeGrip
%%QT_INCDIR%%/QtWidgets/QSizePolicy
%%QT_INCDIR%%/QtWidgets/QSlider
%%QT_INCDIR%%/QtWidgets/QSpacerItem
%%QT_INCDIR%%/QtWidgets/QSpinBox
%%QT_INCDIR%%/QtWidgets/QSplashScreen
%%QT_INCDIR%%/QtWidgets/QSplitter
%%QT_INCDIR%%/QtWidgets/QSplitterHandle
%%QT_INCDIR%%/QtWidgets/QStackedLayout
%%QT_INCDIR%%/QtWidgets/QStackedWidget
%%QT_INCDIR%%/QtWidgets/QStandardItemEditorCreator
%%QT_INCDIR%%/QtWidgets/QStatusBar
%%QT_INCDIR%%/QtWidgets/QStyle
%%QT_INCDIR%%/QtWidgets/QStyleFactory
%%QT_INCDIR%%/QtWidgets/QStyleHintReturn
%%QT_INCDIR%%/QtWidgets/QStyleHintReturnMask
%%QT_INCDIR%%/QtWidgets/QStyleHintReturnVariant
%%QT_INCDIR%%/QtWidgets/QStyleOption
%%QT_INCDIR%%/QtWidgets/QStyleOptionButton
%%QT_INCDIR%%/QtWidgets/QStyleOptionComboBox
%%QT_INCDIR%%/QtWidgets/QStyleOptionComplex
%%QT_INCDIR%%/QtWidgets/QStyleOptionDockWidget
%%QT_INCDIR%%/QtWidgets/QStyleOptionDockWidgetV2
%%QT_INCDIR%%/QtWidgets/QStyleOptionFocusRect
%%QT_INCDIR%%/QtWidgets/QStyleOptionFrame
%%QT_INCDIR%%/QtWidgets/QStyleOptionFrameV2
%%QT_INCDIR%%/QtWidgets/QStyleOptionFrameV3
%%QT_INCDIR%%/QtWidgets/QStyleOptionGraphicsItem
%%QT_INCDIR%%/QtWidgets/QStyleOptionGroupBox
%%QT_INCDIR%%/QtWidgets/QStyleOptionHeader
%%QT_INCDIR%%/QtWidgets/QStyleOptionMenuItem
%%QT_INCDIR%%/QtWidgets/QStyleOptionProgressBar
%%QT_INCDIR%%/QtWidgets/QStyleOptionProgressBarV2
%%QT_INCDIR%%/QtWidgets/QStyleOptionRubberBand
%%QT_INCDIR%%/QtWidgets/QStyleOptionSizeGrip
%%QT_INCDIR%%/QtWidgets/QStyleOptionSlider
%%QT_INCDIR%%/QtWidgets/QStyleOptionSpinBox
%%QT_INCDIR%%/QtWidgets/QStyleOptionTab
%%QT_INCDIR%%/QtWidgets/QStyleOptionTabBarBase
%%QT_INCDIR%%/QtWidgets/QStyleOptionTabBarBaseV2
%%QT_INCDIR%%/QtWidgets/QStyleOptionTabV2
%%QT_INCDIR%%/QtWidgets/QStyleOptionTabV3
%%QT_INCDIR%%/QtWidgets/QStyleOptionTabWidgetFrame
%%QT_INCDIR%%/QtWidgets/QStyleOptionTabWidgetFrameV2
%%QT_INCDIR%%/QtWidgets/QStyleOptionTitleBar
%%QT_INCDIR%%/QtWidgets/QStyleOptionToolBar
%%QT_INCDIR%%/QtWidgets/QStyleOptionToolBox
%%QT_INCDIR%%/QtWidgets/QStyleOptionToolBoxV2
%%QT_INCDIR%%/QtWidgets/QStyleOptionToolButton
%%QT_INCDIR%%/QtWidgets/QStyleOptionViewItem
%%QT_INCDIR%%/QtWidgets/QStyleOptionViewItemV2
%%QT_INCDIR%%/QtWidgets/QStyleOptionViewItemV3
%%QT_INCDIR%%/QtWidgets/QStyleOptionViewItemV4
%%QT_INCDIR%%/QtWidgets/QStylePainter
%%QT_INCDIR%%/QtWidgets/QStylePlugin
%%QT_INCDIR%%/QtWidgets/QStyledItemDelegate
%%QT_INCDIR%%/QtWidgets/QSwipeGesture
%%QT_INCDIR%%/QtWidgets/QSystemTrayIcon
%%QT_INCDIR%%/QtWidgets/QTabBar
%%QT_INCDIR%%/QtWidgets/QTabWidget
%%QT_INCDIR%%/QtWidgets/QTableView
%%QT_INCDIR%%/QtWidgets/QTableWidget
%%QT_INCDIR%%/QtWidgets/QTableWidgetItem
%%QT_INCDIR%%/QtWidgets/QTableWidgetSelectionRange
%%QT_INCDIR%%/QtWidgets/QTapAndHoldGesture
%%QT_INCDIR%%/QtWidgets/QTapGesture
%%QT_INCDIR%%/QtWidgets/QTextBrowser
%%QT_INCDIR%%/QtWidgets/QTextEdit
%%QT_INCDIR%%/QtWidgets/QTileRules
%%QT_INCDIR%%/QtWidgets/QTimeEdit
%%QT_INCDIR%%/QtWidgets/QToolBar
%%QT_INCDIR%%/QtWidgets/QToolBox
%%QT_INCDIR%%/QtWidgets/QToolButton
%%QT_INCDIR%%/QtWidgets/QToolTip
%%QT_INCDIR%%/QtWidgets/QTreeView
%%QT_INCDIR%%/QtWidgets/QTreeWidget
%%QT_INCDIR%%/QtWidgets/QTreeWidgetItem
%%QT_INCDIR%%/QtWidgets/QTreeWidgetItemIterator
%%QT_INCDIR%%/QtWidgets/QUndoCommand
%%QT_INCDIR%%/QtWidgets/QUndoGroup
%%QT_INCDIR%%/QtWidgets/QUndoStack
%%QT_INCDIR%%/QtWidgets/QUndoView
%%QT_INCDIR%%/QtWidgets/QVBoxLayout
%%QT_INCDIR%%/QtWidgets/QWhatsThis
%%QT_INCDIR%%/QtWidgets/QWidget
%%QT_INCDIR%%/QtWidgets/QWidgetAction
%%QT_INCDIR%%/QtWidgets/QWidgetData
%%QT_INCDIR%%/QtWidgets/QWidgetItem
%%QT_INCDIR%%/QtWidgets/QWidgetItemV2
%%QT_INCDIR%%/QtWidgets/QWizard
%%QT_INCDIR%%/QtWidgets/QWizardPage
%%QT_INCDIR%%/QtWidgets/QtWidgets
%%QT_INCDIR%%/QtWidgets/QtWidgetsDepends
%%QT_INCDIR%%/QtWidgets/QtWidgetsVersion
%%QT_INCDIR%%/QtWidgets/qabstractbutton.h
%%QT_INCDIR%%/QtWidgets/qabstractitemdelegate.h
%%QT_INCDIR%%/QtWidgets/qabstractitemview.h
%%QT_INCDIR%%/QtWidgets/qabstractscrollarea.h
%%QT_INCDIR%%/QtWidgets/qabstractslider.h
%%QT_INCDIR%%/QtWidgets/qabstractspinbox.h
%%QT_INCDIR%%/QtWidgets/qaccessiblewidget.h
%%QT_INCDIR%%/QtWidgets/qaction.h
%%QT_INCDIR%%/QtWidgets/qactiongroup.h
%%QT_INCDIR%%/QtWidgets/qapplication.h
%%QT_INCDIR%%/QtWidgets/qboxlayout.h
%%QT_INCDIR%%/QtWidgets/qbuttongroup.h
%%QT_INCDIR%%/QtWidgets/qcalendarwidget.h
%%QT_INCDIR%%/QtWidgets/qcheckbox.h
%%QT_INCDIR%%/QtWidgets/qcolordialog.h
%%QT_INCDIR%%/QtWidgets/qcolormap.h
%%QT_INCDIR%%/QtWidgets/qcolumnview.h
%%QT_INCDIR%%/QtWidgets/qcombobox.h
%%QT_INCDIR%%/QtWidgets/qcommandlinkbutton.h
%%QT_INCDIR%%/QtWidgets/qcommonstyle.h
%%QT_INCDIR%%/QtWidgets/qcompleter.h
%%QT_INCDIR%%/QtWidgets/qdatawidgetmapper.h
%%QT_INCDIR%%/QtWidgets/qdatetimeedit.h
%%QT_INCDIR%%/QtWidgets/qdesktopwidget.h
%%QT_INCDIR%%/QtWidgets/qdial.h
%%QT_INCDIR%%/QtWidgets/qdialog.h
%%QT_INCDIR%%/QtWidgets/qdialogbuttonbox.h
%%QT_INCDIR%%/QtWidgets/qdirmodel.h
%%QT_INCDIR%%/QtWidgets/qdockwidget.h
%%QT_INCDIR%%/QtWidgets/qdrawutil.h
%%QT_INCDIR%%/QtWidgets/qerrormessage.h
%%QT_INCDIR%%/QtWidgets/qfiledialog.h
%%QT_INCDIR%%/QtWidgets/qfileiconprovider.h
%%QT_INCDIR%%/QtWidgets/qfilesystemmodel.h
%%QT_INCDIR%%/QtWidgets/qfocusframe.h
%%QT_INCDIR%%/QtWidgets/qfontcombobox.h
%%QT_INCDIR%%/QtWidgets/qfontdialog.h
%%QT_INCDIR%%/QtWidgets/qformlayout.h
%%QT_INCDIR%%/QtWidgets/qframe.h
%%QT_INCDIR%%/QtWidgets/qgesture.h
%%QT_INCDIR%%/QtWidgets/qgesturerecognizer.h
%%QT_INCDIR%%/QtWidgets/qgraphicsanchorlayout.h
%%QT_INCDIR%%/QtWidgets/qgraphicseffect.h
%%QT_INCDIR%%/QtWidgets/qgraphicsgridlayout.h
%%QT_INCDIR%%/QtWidgets/qgraphicsitem.h
%%QT_INCDIR%%/QtWidgets/qgraphicsitemanimation.h
%%QT_INCDIR%%/QtWidgets/qgraphicslayout.h
%%QT_INCDIR%%/QtWidgets/qgraphicslayoutitem.h
%%QT_INCDIR%%/QtWidgets/qgraphicslinearlayout.h
%%QT_INCDIR%%/QtWidgets/qgraphicsproxywidget.h
%%QT_INCDIR%%/QtWidgets/qgraphicsscene.h
%%QT_INCDIR%%/QtWidgets/qgraphicssceneevent.h
%%QT_INCDIR%%/QtWidgets/qgraphicstransform.h
%%QT_INCDIR%%/QtWidgets/qgraphicsview.h
%%QT_INCDIR%%/QtWidgets/qgraphicswidget.h
%%QT_INCDIR%%/QtWidgets/qgridlayout.h
%%QT_INCDIR%%/QtWidgets/qgroupbox.h
%%QT_INCDIR%%/QtWidgets/qheaderview.h
%%QT_INCDIR%%/QtWidgets/qinputdialog.h
%%QT_INCDIR%%/QtWidgets/qitemdelegate.h
%%QT_INCDIR%%/QtWidgets/qitemeditorfactory.h
%%QT_INCDIR%%/QtWidgets/qkeyeventtransition.h
%%QT_INCDIR%%/QtWidgets/qkeysequenceedit.h
%%QT_INCDIR%%/QtWidgets/qlabel.h
%%QT_INCDIR%%/QtWidgets/qlayout.h
%%QT_INCDIR%%/QtWidgets/qlayoutitem.h
%%QT_INCDIR%%/QtWidgets/qlcdnumber.h
%%QT_INCDIR%%/QtWidgets/qlineedit.h
%%QT_INCDIR%%/QtWidgets/qlistview.h
%%QT_INCDIR%%/QtWidgets/qlistwidget.h
%%QT_INCDIR%%/QtWidgets/qmaccocoaviewcontainer_mac.h
%%QT_INCDIR%%/QtWidgets/qmacnativewidget_mac.h
%%QT_INCDIR%%/QtWidgets/qmainwindow.h
%%QT_INCDIR%%/QtWidgets/qmdiarea.h
%%QT_INCDIR%%/QtWidgets/qmdisubwindow.h
%%QT_INCDIR%%/QtWidgets/qmenu.h
%%QT_INCDIR%%/QtWidgets/qmenubar.h
%%QT_INCDIR%%/QtWidgets/qmessagebox.h
%%QT_INCDIR%%/QtWidgets/qmouseeventtransition.h
%%QT_INCDIR%%/QtWidgets/qopenglwidget.h
%%QT_INCDIR%%/QtWidgets/qplaintextedit.h
%%QT_INCDIR%%/QtWidgets/qprogressbar.h
%%QT_INCDIR%%/QtWidgets/qprogressdialog.h
%%QT_INCDIR%%/QtWidgets/qproxystyle.h
%%QT_INCDIR%%/QtWidgets/qpushbutton.h
%%QT_INCDIR%%/QtWidgets/qradiobutton.h
%%QT_INCDIR%%/QtWidgets/qrubberband.h
%%QT_INCDIR%%/QtWidgets/qscrollarea.h
%%QT_INCDIR%%/QtWidgets/qscrollbar.h
%%QT_INCDIR%%/QtWidgets/qscroller.h
%%QT_INCDIR%%/QtWidgets/qscrollerproperties.h
%%QT_INCDIR%%/QtWidgets/qshortcut.h
%%QT_INCDIR%%/QtWidgets/qsizegrip.h
%%QT_INCDIR%%/QtWidgets/qsizepolicy.h
%%QT_INCDIR%%/QtWidgets/qslider.h
%%QT_INCDIR%%/QtWidgets/qspinbox.h
%%QT_INCDIR%%/QtWidgets/qsplashscreen.h
%%QT_INCDIR%%/QtWidgets/qsplitter.h
%%QT_INCDIR%%/QtWidgets/qstackedlayout.h
%%QT_INCDIR%%/QtWidgets/qstackedwidget.h
%%QT_INCDIR%%/QtWidgets/qstatusbar.h
%%QT_INCDIR%%/QtWidgets/qstyle.h
%%QT_INCDIR%%/QtWidgets/qstyleditemdelegate.h
%%QT_INCDIR%%/QtWidgets/qstylefactory.h
%%QT_INCDIR%%/QtWidgets/qstyleoption.h
%%QT_INCDIR%%/QtWidgets/qstylepainter.h
%%QT_INCDIR%%/QtWidgets/qstyleplugin.h
%%QT_INCDIR%%/QtWidgets/qsystemtrayicon.h
%%QT_INCDIR%%/QtWidgets/qtabbar.h
%%QT_INCDIR%%/QtWidgets/qtableview.h
%%QT_INCDIR%%/QtWidgets/qtablewidget.h
%%QT_INCDIR%%/QtWidgets/qtabwidget.h
%%QT_INCDIR%%/QtWidgets/qtextbrowser.h
%%QT_INCDIR%%/QtWidgets/qtextedit.h
%%QT_INCDIR%%/QtWidgets/qtoolbar.h
%%QT_INCDIR%%/QtWidgets/qtoolbox.h
%%QT_INCDIR%%/QtWidgets/qtoolbutton.h
%%QT_INCDIR%%/QtWidgets/qtooltip.h
%%QT_INCDIR%%/QtWidgets/qtreeview.h
%%QT_INCDIR%%/QtWidgets/qtreewidget.h
%%QT_INCDIR%%/QtWidgets/qtreewidgetitemiterator.h
%%QT_INCDIR%%/QtWidgets/qtwidgetsversion.h
%%QT_INCDIR%%/QtWidgets/qundogroup.h
%%QT_INCDIR%%/QtWidgets/qundostack.h
%%QT_INCDIR%%/QtWidgets/qundoview.h
%%QT_INCDIR%%/QtWidgets/qwhatsthis.h
%%QT_INCDIR%%/QtWidgets/qwidget.h
%%QT_INCDIR%%/QtWidgets/qwidgetaction.h
%%QT_INCDIR%%/QtWidgets/qwidgetsfunctions_wince.h
%%QT_INCDIR%%/QtWidgets/qwizard.h
-%%GTK2%%%%QT_LIBDIR%%/cmake/Qt5Gui/Qt5Gui_QGtk2ThemePlugin.cmake
-%%QT_LIBDIR%%/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake
-%%QT_LIBDIR%%/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake
-%%QT_LIBDIR%%/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake
-%%QT_LIBDIR%%/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake
+%%GTK3%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QGtk3ThemePlugin.cmake
+%%QT_CMAKEDIR%%/Qt5Widgets/Qt5WidgetsConfig.cmake
+%%QT_CMAKEDIR%%/Qt5Widgets/Qt5WidgetsConfigExtras.cmake
+%%QT_CMAKEDIR%%/Qt5Widgets/Qt5WidgetsConfigVersion.cmake
+%%QT_CMAKEDIR%%/Qt5Widgets/Qt5WidgetsMacros.cmake
%%QT_LIBDIR%%/libQt5Widgets.prl
%%QT_LIBDIR%%/libQt5Widgets.so
%%QT_LIBDIR%%/libQt5Widgets.so.5
%%QT_LIBDIR%%/libQt5Widgets.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5Widgets.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5Widgets.so.%%FULLVER%%.debug
%%QT_BINDIR%%/uic
%%QT_MKSPECDIR%%/modules/qt_lib_widgets.pri
-%%GTK2%%%%QT_PLUGINDIR%%/platformthemes/libqgtk2.so
-%%GTK2%%%%DEBUG%%%%QT_PLUGINDIR%%/platformthemes/libqgtk2.so.debug
%%QT_MKSPECDIR%%/modules/qt_lib_widgets_private.pri
+%%GTK3%%%%QT_PLUGINDIR%%/platformthemes/libqgtk3.so
+%%GTK3%%%%DEBUG%%%%QT_PLUGINDIR%%/platformthemes/libqgtk3.so.debug
libdata/pkgconfig/Qt5Widgets.pc
share/pixmaps/qt5logo.png
Index: head/x11-wm/qlwm/files/patch-Makefile
===================================================================
--- head/x11-wm/qlwm/files/patch-Makefile (nonexistent)
+++ head/x11-wm/qlwm/files/patch-Makefile (revision 434380)
@@ -0,0 +1,11 @@
+--- Makefile.orig 2017-01-18 20:51:09 UTC
++++ Makefile
+@@ -4,7 +4,7 @@ SHELL = /bin/sh
+ DEST = /usr/local/lib/qlwm
+ MANPATH = /usr/local/man
+ # MANPATH = /usr/local/share/man
+-QMAKE = qmake-qt4
++QMAKE = qmake
+ # QMAKE = /usr/local/qt/bin/qmake
+
+ DVERSION = 4.3
Property changes on: head/x11-wm/qlwm/files/patch-Makefile
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property

File Metadata

Mime Type
application/octet-stream
Expires
Thu, Apr 25, 8:02 AM (1 d, 23 h)
Storage Engine
chunks
Storage Format
Chunks
Storage Handle
FhjvkqcK52Fz
Default Alt Text
(4 MB)

Event Timeline