summaryrefslogtreecommitdiff
path: root/x11/qt3-libs
AgeCommit message (Collapse)AuthorFilesLines
2013-02-16Recursive bump for png-1.6.wiz2-4/+4
2013-02-06PKGREVISION bumps for the security/openssl 1.0.1d update.jperkin1-2/+2
2013-01-26Revbump after graphics/jpeg and textproc/icuadam2-4/+4
2012-10-29Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-07-15Add missing #include <cstddef> for ptrdiff_t.alnsn4-1/+43
2012-06-12Add inet6 to default suggested options. It's 2012.wiz1-1/+2
2012-05-07Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=)dholland1-2/+2
It turns out there were a lot of these.
2012-02-06Revbump forwiz1-2/+2
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd2-4/+4
2011-07-21Don't enumerate evil. Pass down -L* and -l* only from LDFLAGS.joerg1-2/+2
2011-03-25Fix sbit handling in png patch.wiz3-19/+18
From Marko Schütz Schmuck on pkgsrc-users, fixing core dumps in kmymoney and kphotoalbum. Bump PKGREVISION.
2011-03-18Bump PKGREVISION for patch-as (compress/uncompress) fix.wiz1-2/+2
2011-03-18Fix compress/uncompress handling correctly.wiz2-29/+25
2011-03-06Improve png-1.5 patch. Bump PKGREVISION.wiz3-14/+14
2011-03-06Add "# used by x11/qt3-libs/Makefile" for pkglint.wiz1-1/+2
2011-01-16Attempt to fix png-1.5 fallout. Only build tested.tnn2-10/+206
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz2-4/+4
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-08-09Fix build failure on NetBSD/arm.tsutsui3-9/+32
patch-ad: src/tools/qglobal.h mentionss about Q_NO_PACKED_REFERENCE: --- /* ARM gcc pads structs to 32 bits, even when they contain a single char, or short. We tell gcc to pack QChars to 16 bits, to avoid QString bloat. However, gcc 3.4 doesn't allow us to create references to members of a packed struct. (Pointers are OK, because then you supposedly know what you are doing.) */ # if (defined(__arm__) || defined(__ARMEL__)) && !defined(QT_MOC_CPP) # define Q_PACKED __attribute__ ((packed)) # if __GNUC__ == 3 && __GNUC_MINOR__ >= 4 # define Q_NO_PACKED_REFERENCE --- but it seems we also have to define it on gcc4. patch-ch: Furthermore, it looks gcc4 also rejects implicit pointer casts, so add an explicit cast where the above Q_NO_PACKED_REFERENCE is referred.
2010-06-15used by x11/qt3-tools/Makefileobache1-1/+2
2010-06-13Bump PKGREVISION for libpng shlib name change.wiz4-5/+28
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-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz2-4/+4
2010-01-17Recursive PKGREVISION bump for jpeg update to 8.wiz1-2/+2
2009-08-26bump revision because of graphics/jpeg updatesno2-4/+4
2009-07-11Fixed some pkglint warnings for qt3-docs.rillig9-28/+17
2009-06-14Remove @dirrm entries from PLISTsjoerg1-8/+1
2009-05-20Apply patch reported by Gary Duzan in PR 37347 to fix finance/kmymoney2wiz3-9/+18
after ld.elf_so fix from December 2007. Bump PKGREVISION.
2009-04-07Make it compile on DragonFly master.hasso2-7/+17
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.
2008-10-08Fix qmake.conf to handle shared libraries correctly.wiz1-4/+4
Bump qt3-tools PKGREVISION.
2008-02-16fix hpux platform detection.tnn1-1/+7
2008-01-18Per the process outlined in revbump(1), perform a recursive revbumptnn1-2/+2
on packages that are affected by the switch from the openssl 0.9.7 branch to the 0.9.8 branch. ok jlam@
2007-12-17Fix build problems caused by Mac OS X Leopard linker work around intron1-3/+3
the "MesaLib" package.
2007-12-16Fix broken (or non-portable at best) shell code.tron2-4/+4
2007-10-24Change qmake to not add the target directory as rpath.joerg3-9/+30
This would leak rpath references to the build directory and libtool should take care of this already. Non-libtool builds might be broken by this, but they shouldn't use -Wl,-R either, but -Wl,-rpath. Bump revision of qt3-libs (rpath changes) and qt3-tools (qmake changes).
2007-10-15Update to qt3-libs-3.3.8nb6: Explicitly pass inet6 setting to configure - ↵abs2-3/+10
from Yakovetsky Vladimir
2007-09-15Fix security vulnerability reported in CVE-2007-4137.tron3-9/+16
Bump package revision.
2007-09-08Revert 1.61. Restores PKGCONFIG_OVERRIDE line that was probablywiz1-2/+4
removed by accident. Bump PKGREVISION.
2007-08-08Add DESTDIR support.joerg1-15/+14
2007-08-01Add patches provided by Trolltech to fix CVE-2007-3388.tron9-3/+213
Bump package revision.
2007-07-02Raymond Meyer reports on pkgsrc-users@ that graphics corruption is notnn1-3/+1
longer an issue on Solaris, so re-enable Xrender.
2007-06-15Fix conditional to also work for xorg.joerg1-2/+2
2007-04-06Fix for CVE-2007-0242. Bump PKGREVISION.markd4-3/+110
2007-04-05don't try to explicitly include the shell name in the CONFIGURE_SCRIPTdmcmahill1-2/+1
variable on SunOS. That leads to things like /bin/ksh /bin/ksh ./configure This is needed after rev 1.16 of pkgsrc/mk/configure/configure.mk
2007-03-19Add an HTTP mirror, for FTP-less sites.dsainty1-2/+3
2007-03-18Add patches from Dirk Mueller of KDE to fix font selection issuesmarkd4-2/+90
with Asian fonts. Bump PKGREVISION.
2007-03-18Update to qt 3.3.8markd1-4/+4
This maintenance release incorporates bugfixes and optimizations.
2007-03-17Fixed the separation of CONFIGURE_SCRIPT and CONFIG_SHELL.rillig1-3/+1
2007-02-22Whitespace cleanup, courtesy of pkglint.wiz1-2/+2
Patch provided by Sergey Svishchev in private mail.