summaryrefslogtreecommitdiff
path: root/x11/qt4-libs
AgeCommit message (Collapse)AuthorFilesLines
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz2-4/+4
2011-01-12On second thought, forget about libphonon; there is one in multimedia.adam3-7/+7
2011-01-12* Install libphonon.adam11-69/+210
* On Mac OS X build Qt with Cocoa, but don't install as a framework.
2011-01-01* Replace patch-ab with SUBST to enable LIBTOOL in gui.pro; fixes the problemadam5-199/+10
with ssse3 extension and other future additions to gui.pro. * Use CONFIGURE_ARGS instead of 'license-acceptance' file to enable open source licence. * qmake.conf for Interix (patch-ai) is no longer needed since PkgSrc's qmake.conf replaces all mkspecs in pre-configure.
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty2-4/+4
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-11-18Remove addition of ${QTDIR} to BUILDLINK_PASSTHRU_DIRS.obache1-2/+1
Directories in LOCALBASE must not be added, or break build of some qt packages. For examples, mis-pick up old header files of itself, or introduce hidden dependency.
2010-11-15PKGREVISION bumps for changes to gtk2, librsvg, libbonobo and libgnomeabs2-3/+4
2010-11-15Better patch-beadam2-6/+7
2010-11-15Changes 4.7.1:adam25-173/+320
Qt 4.7.1 is a bug-fix release. It maintains both forward and backward compatibility (source and binary) with Qt 4.7.0. For more details, refer to the online documentation included in this distribution. The documentation is also available online: http://qt.nokia.com/doc/4.7 The Qt version 4.7 series is binary compatible with the 4.6.x series. Applications compiled for 4.6 will continue to run with 4.7. Changes 4.7.0: Qt 4.7 introduces many new features and improvements as well as bugfixes over the 4.6.x series. For more details, refer to the online documentation included in this distribution. The documentation is also available online: http://qt.nokia.com/doc/4.7 The Qt version 4.7 series is binary compatible with the 4.6.x series. Applications compiled for 4.6 will continue to run with 4.7.
2010-09-14More PKGREVISION bumps for pixman update.wiz1-1/+2
2010-09-14Bump dependency on pixman to 0.18.4 because cairo-1.10 needs thatwiz1-2/+2
version, and bump all depends. Per discussion on pkgsrc-changes.
2010-09-03make that the "silent" qmake feature flag is silently ignored, it isdrochner2-1/+20
incompatible with the way libtool support was hacked in (we were getting something like "libtool --mode=compile echo compiling foo && cc foo.c ...") bump PKGREVISION
2010-07-04Changes 4.6.3:adam10-43/+51
* Added Spectrum analyzer demo application. * Added exit softkey to Wiggly example. * Added close button to Anomaly demo. * Fixed Anomaly demo controlstrip icon placement for very small screens. * Ensure history configuration is cleared when a state machine is restarted. For more read: http://qt.nokia.com/developer/changes/changes-4.6.3
2010-06-13Bump PKGREVISION for libpng shlib name change.wiz2-4/+4
Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
2010-05-29Fix building on DragonflyBSD as described in PR#43368adam4-6/+42
2010-04-16Add patch from upstream, fixing a core dump in amarok.wiz3-2/+19
2010-03-12copy patch-au to apply to the almost same file elsewhere in the tree..mrg2-1/+24
this lets qt4-libs build on sparc64. also tested on amd64.
2010-03-11Sync src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.hwiz2-6/+6
(which we patch in pkgsrc) with src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h which works fine without patches. From Sverre Froyen in private mail.
2010-02-16Changes 4.6.2:adam2-6/+5
This is a bug-fix release. It maintains both forward and backward compatibility (source and binary) with Qt 4.6.0 and 4.6.1.
2010-02-08Add RCS Id to patch-ay, and bump PKGREVISION for the bugfix in that patch.wiz3-4/+6
2010-02-08Fix crashing on amd64; courtesy of Sverre Froyenadam2-1/+13
2010-02-03Bump PKGREVISION for xmlpatterns fix.wiz1-3/+3
2010-02-03Fix: script includes were installed twice, insted of xmlpattersadam1-2/+2
2010-02-02Add more "# used by" lines.wiz1-2/+8
2010-02-02* Exceptions enabledadam4-31/+20
* Build and install XmlPatters * MNG moved to qt4-mng
2010-01-30Add QtMultimedia.pc to PLIST, bump PKGREVISION.wiz2-2/+4
2010-01-29Changes 4.6.1:adam24-458/+196
* Optimized empty QUrl creation * Improve performance of getting the canonical filename on Linux and Symbian by using realpath() system call. * Avoid stat() when opening a file. * Do not look at the Qt patch-level version embedded in plugins' buildkeys when trying to determine if the plugin is compatible * Bug-fixes * load() and loadFromData() can now support compressed GL textures in the DDS, ETC1, PVRTC2, and PVRTC4 formats if the OpenGL graphics system is active and the appropriate extensions are present in the GL implementation. * Fixed a small leak when using the new QPixmapCache::Key based API.
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz2-4/+4
2010-01-08ass patches from webkit CVS to fix security problemsdrochner4-3/+290
(CVE-2009-2816, CVE-2009-3384), bump PKGREVISION
2009-10-23Fix qt4-tools build on Linux by adding -ldl to LDFLAGS.tnn1-1/+3
From Ondrej Tuma in PR pkg/37688 XXX I think -ldl should go into the generated libQtCore.la instead, but I lack sufficient clue how to make that happen.
2009-10-19Add the required buildlink foo for the gtk2 options, some stuff wantsahoka1-1/+8
to link against gobject it seems.
2009-10-18Add option for gtk2 support. (allows qt to draw native gtk2 widgets)ahoka1-2/+10
2009-10-13Unbreak it with making it install Qt<subsystem>/<class> headers again. Bumphasso1-2/+3
PKGREVISION.
2009-10-11Changes 4.5.3:adam19-143/+83
* This is a bug-fix release.
2009-10-01add patch from upstream to fix certificate check flaw (CVE-2009-2700),drochner3-5/+14
bump PKGREVISION
2009-09-29Give unsigned char argument to toupper.wiz3-3/+17
Fixes coredumps in Sigil when pressing "CTRL" or "BACKSPACE". Bump PKGREVISION.
2009-08-26bump revision because of graphics/jpeg updatesno2-3/+4
2009-07-24deal with incompatibilities of newer openssl to make it builddrochner4-1/+51
on NetBSD-current again, fixes PR pkg/41770 by Ryo HAYASAKA
2009-07-22Mark as used by qt4-docs.wiz1-1/+2
2009-07-10Add http://get.qtsoftware.com/qt/source/ as a preferred MASTER_SITEabs1-2/+3
Suggested by Louis Guillaume
2009-07-07update to 4.5.2drochner4-37/+5
changes: bugfixes and optimizations
2009-07-02Install QtScriptTools, and script and scripttools headers.wiz2-5/+7
Needed (indirectly) for amarok. Bump PKGREVISION.
2009-06-29add two patches from upstream to fix rendering problems whichdrochner4-2/+34
garble the KDE4 desktop, from Sverre Froyen bump PKGREVISION
2009-06-14Remove @dirrm entries from PLISTsjoerg1-21/+1
2009-06-13Update to 4.5.1. Most of work done by Matthias Drochner. Upstream changeloghasso14-152/+178
is too massive, see http://doc.qtsoftware.com/4.5/qt4-5-intro.html as starting point.
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2009-02-28We are forcing an installation on MacOS X to behave just like a generic UNIXschwarz2-1/+24
installation (cf. patch-ar). However, MacOS X does not have clock_gettime(). This patch therefore ensures that for that functionality the MacOS X specific code is used.
2009-02-11Add RCS Id.wiz2-2/+4
2009-02-11Add patch from qt-copy. Fixes random crashes seen in kde4's kmail.markd3-3/+44
Bump PKGREVISION.
2008-12-17Install libqsvg.la as well. Bump PKGREVISION.wiz2-4/+5