summaryrefslogtreecommitdiff
path: root/x11/qt3-libs
AgeCommit message (Collapse)AuthorFilesLines
2005-04-18adam volunteered to maintain this package.wiz1-1/+2
2005-04-13qt3 build system makes a difference between MacOS X and Darwin: it willbouyer2-5/+17
build with X11 support on Darwin and MacOS X native interface on MacOS X. But the Free qt3 only includes X11 support, and so the build fails on MacOS X. Change the build defines to use the same options on MacOS X and Darwin.
2005-04-12Nuke USE_BUILDLINK3 (some files missed in megacommit).tv1-2/+1
2005-02-23Add RMD160 checksums to the SHA1 ones.wiz1-1/+2
2005-02-10Changes 3.3.4:adam4-15/+13
Installation --------------- Added support for DragonFly BSD. Fixed compilation for 64-bit Linux. Compilation fixes for OpenBSD configured with -thread. Windows Installer ----------------- Add option to set environment variables. Fixed problem propagating PATH environment variable. Make sure the PostgreSQL and MySQL libraries are shown correctly. Compilers --------- Work around a bug in HP-UX aCC. Support IRIX with 7.4.x compiler. Fixed moc compilation when Bison is installed. Fixed compilation with Intel compiler on Windows. Qt Designer ----------- Fixed bug that could corrupt the .pro file. Fixed bug that would remove source files from project when using a statically linked designer. Fixed handling of custom widget plugins which subclass QWidgetStack. Raise and give focus to source files when clicking on them in the project overview. Fixed bug where empty variable declarations in .ui file would generate improper C++ code. Fixed crash when deleting action while changing its name. Fixed crash when using third party plugins that create tabwidgets without any pages. Fixed bug renaming slots in edit custom widgets dialog where old slot name would not get removed. Make sure uic-generated code compiles when QT_NO_CAST_ASCII is defined. Fixed bug showing wrong status indicators in connection table after sorting the list. Prevent templates based on unsupported widgets (like QScrollView) from being created. Qt Linguist ----------- Fixed bug where spaces at the beginning or at the end of the source text would not be displayed. Qt Assistant ------------ Fixed bug in printing that sometimes caused the last page to be skipped. Fixed invalid font size error on startup. qmake ------- Work around bug in Visual Studio 2003 Custom Build Steps. Handle path names with spaces properly. Handle file names containing '&' characters correctly. Create dependencies on .ui.h files. Fixed crash on Solaris when error() string contains single quote. Make it possible to specify a RES file for the vcproj file. Fixed bug in make install on Linux Various improvements for XCode. Fixed bug in shadow builds. for more information see 'changes-3.3.4'
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz1-2/+2
Suggested by Roland Illig, ok'd by various.
2004-11-24Correct pasto.gavan1-2/+2
2004-11-22Disable XRender on Solaris. Workaround for graphics corruption problemsgavan1-1/+3
experienced on Solaris 10.
2004-11-12Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're addedjlam2-4/+5
automatically by pthread.buildlink3.mk. Also, factor out the pthread library out of PTHREAD_LDFLAGS into a standalone variable PTHREAD_LIBS and use it in packages where necessary (usually the ones that don't have a GNU configure script).
2004-10-30remove patch backup files in mkspecs/ so they don't get mistakenlygrant1-1/+2
installed.
2004-10-28Move USE_BUILDLINK3 into Makefile.common.gavan2-3/+3
This change ensures that USE_BUILDLINK3 is defined before compiler.mk is included.
2004-10-28Pay attention to LDFLAGS when building qmake. This allows qmake to linkgavan2-5/+11
correctly against pkgsrc gcc.
2004-10-19Bring the qmake.conf we use in line with those from qt 3.3.3.markd2-4/+6
Bump PKGREVISION of qt3-tools. Noted by Christoph Badura.
2004-10-13INSTALL_DATA -> INSTALL_LIB, where appropriate.tv1-11/+11
2004-10-13Another Interix-only fix: add -ldb, and since Qt incorrectly #includestv4-9/+12
system C headers without extern "C", add extern "C" protection.
2004-10-13Fix library linkage for Interix.tv3-7/+8
2004-10-13Add Interix 3.5 support. (Will be contributed back to Trolltech as well.)tv8-2/+256
2004-10-07Extra PKGREVISION bump to cover the libtool/compiler-wrapper problems.tv2-4/+4
Since dependencies were actually failing to build, they fortunately don't require PKGREVISION bumps themselves.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-3/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-9/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-08-27Change to use COMPILER_RPATH_FLAG.jlam2-6/+5
2004-08-27Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG,jlam1-2/+2
which are the full option names used to set rpath directives for the linker and the compiler, respectively. In places were we are invoking the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is inserted in case the flag is a word, e.g. -rpath. The default values of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the compiler that you use. They may be overridden on a ${OPSYS}-specific basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG, respectively. Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
2004-08-25Bump PKGREVISION for patch to use modern resolver lib.markd1-1/+2
Noted by wiz.
2004-08-24Use modern resolver api on recent NetBSD systems that have it.markd2-1/+15
From Love in PR 26638. Fixes problems in threaded programs. eg psi and kde3.3's cups support.
2004-08-12Changes 3.3.3:adam4-36/+8
* Bug-fix release
2004-08-11Fix whitespace.markd1-4/+4
2004-07-31Set QMAKE_LFLAGS based on the value of LDFLAGS at the point that qmake ismarkd1-3/+3
run rather than when the qmake.conf was generated. Should be effectively equivalent to what was happening under buildlink2 and fixes linking problems of audio/kmp and other qmake using packages.
2004-07-13Be explicit about enabling or disabling cups support based on value ofmarkd1-1/+9
USE_CUPS. Patch similar to that described by Bob Bernstein and Jeremy C. Reed in tech-pkg@. Fixes PR 26261 from Ian Zagorskih.
2004-07-06Unused.wiz1-49/+0
2004-07-06Fix include paths for postgresql header files (for qt3-psql).wiz2-7/+7
2004-07-06Convert qt3-libs to use BUILDLINK3. Based on patches from Joachimreed3-20/+21
Kuebart in PR#25753. Tested by myself on Linux and NetBSD 1.6.2_STABLE. (Also tested on NetBSD 2.0_BETA by wiz@. And tested by jschauma under Linux.)
2004-05-10Force building X11 version (not Carbon) under MacOSXadam3-1/+29
2004-05-07whitespace nitscjep1-2/+2
2004-04-30Optimize qmake for speed-upadam2-1/+15
2004-04-29Update to qt3 3.3.2.markd2-100/+3
Qt 3.3.2 is a bugfix release. It maintains both forward and backward compatibility (source and binary) with Qt 3.3.1 and Qt 3.3.0. X11 specific fixes: Fixed crash bug when using X Input Method Chinput. - Drag and Drop Ignores accelerator events when dragging. - QClipboard Fixed bug where data()->format() would return the wrong value. Fixed potential crashes with regards to iterators. - QFont Avoids badly scaled fonts, and prefers exact matches. Made sure symbol fonts get loaded correctly. Made it possible to load Latin fonts that do not contain the Euro symbol. Fixed glyph width bug observed with some Khmer fonts. Fixed crash with misconfigured Xft. Fixed problem with font selection for Xft2 when having Latin text with non-Latin locale. Respects custom dpi settings for Xft. Does not use Xft if we have FreeType1 but no XRender. Fixed memory leak in the font engine when drawing transformed fonts. - QGL Fixed crash when rendering text in GL widgets. - QLocale Tru64: Fixed crash when INFINITY is compared to another double. Tru64: Uses DBL_INFINITY for Compaq C++ compiler. - QMimeSource Does not re-enter the event loop in provides(). - QPainter Fixed rendering of anti-aliased text on non-XRender enabled displays. - QPrinter Fixed setFromTo(). Fixed printing of Arabic text with XLFD fonts. - QTextEdit Fixed bug with extremely long lines. - QThread Fixed bug that made program require superuser privileges on some Linux machines. - QWidget Fixed showFullScreen() and showMaximized() for window managers that do not support extended window manager hints (EWMH).
2004-04-24Add QTDIR to BUILDLINK_PASSTHRU_DIRS in buildlink3.mk, so that bl3recht1-1/+2
packages could actually link against the qt libs.
2004-04-16update to 3.3.1recht8-45/+134
changes (among many others): - New QLocale Class - The ActiveQt framework, first available in Qt 3.1, has been enhanced in lots of ways in Qt 3.3. - Semi-Transparent Windows Other Improvements - The network module now supports IPv6 in addition to IPv4. - New 64-bit platforms are supported: Itanium on Linux (Intel compiler) and Windows (MSVC and Intel). - QCursor now provides the BusyCursor shape, which combines an hourglass with an arrow. - Qt's DOM classes are now reentrant when Qt is built with multithread support enabled. See http://www.trolltech.com/products/qt/whatsnew.html for more details.
2004-03-30Teach qt's configure to find libraries/headers inside BUILDLINK_DIR, whichxtraeme1-2/+4
is mandatory if you want Xft2/Xrender support when using X11_TYPE=XFree86.
2004-03-30Add buildlink3.mkrecht1-0/+46
2004-03-29Add missing Xrandr and xcursor buildlink2.mks.recht2-3/+8
Patch PKGREVISION to 1.
2004-02-18Include "../../mk/compiler.mk" to get the value of CC_VERSION beforejlam1-2/+2
testing it.
2004-02-08We no longer need to explicitly call ${BUILDLINK_*} for CC, CXX, LIBTOOL,jlam1-4/+4
etc. because the bare variables will point to the correct executables.
2004-02-02These packages need a C++ compiler.jlam1-2/+2
2004-02-01In the new compiler selection framework, GCC_REQD is appended to, notjlam1-2/+2
overridden.
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2004-01-11Add -lrt to SYS_LIBS for Solaris.markd1-2/+2
Resolves sched_get_priority_{max,min}().
2003-12-19Update QT3 to 3.2.3.skrll11-96/+67
Far too many new features and bug fixes to list here. Includes a fix for Hangul (Korean character) handling from Bang Jun-Young <junyoung at netbsd dot org>. Thanks. "Better late than never"
2003-12-10Don't force -O2 any more, use CFLAGS insteadadam1-3/+3
2003-11-30As pointed out by jlam:jschauma1-2/+2
bump PKGREVISION on packages depending on graphics/glu due to latest shlib changes there.
2003-10-23G/c unnecessary patch.junyoung2-13/+3