summaryrefslogtreecommitdiff
path: root/x11/qt3-libs
AgeCommit message (Collapse)AuthorFilesLines
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
2003-10-05Replace -lpthread with ${PTHREAD_LDFLAGS}. (Fixes my build on FreeBSD 5.x).xtraeme2-4/+5
Ok'ed by skrll@
2003-09-28only pass gcc specific flags if we are using gcc.grant4-6/+22
2003-09-28add a test for CC_VERSION to correctly choose SunPro. fix anothergrant1-3/+6
gcc version test.
2003-09-18require gcc 2.95.3 so this can be built on NetBSD 1.5.x.grant1-1/+2
closes PR pkg/19189 from hclsmith@yahoo.ca.
2003-08-06fix BUILDLINK_PREFIX defaults to build w/o xpkgwedgedrochner1-2/+2
2003-08-02use USE_GNU_TOOLS+= so we can co-exist with a user's setting.grant1-2/+2
2003-08-02USE_GNU_TOOLS=awkgrant1-1/+3
2003-08-01Don't USE_X11BASE; there is no reason to install there.drochner3-6/+6
Bump PKGREVISION on everything which installs into the QTDIR tree. (Applications which just use qt3 shouldn't be affected because each program using qt3 has an RPATH into both LOCALBASE and X11BASE.)
2003-07-22Build, install and use a shared libqassistantclient.drochner3-1/+29
This is primarily needed by PyQt.
2003-05-29s/USE_CXX/USE_GCC_SHLIB/grant1-2/+2
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv2-5/+5
2003-05-02Move PKGREVISION from Makefile.common to Makefile.wiz2-3/+3
2003-05-02Dependency bumps, needed because of devel/pth's major bump, and relatedwiz2-3/+4
dependency bumps.
2003-03-19Add header files invented by latest QT 3.x version.tron1-1/+7
2003-03-19Remove some header files which are not installed any more.tron1-4/+1
2003-03-18Update qt3 to 3.1.2. This update fixes a large number of bugs.skrll9-24/+42
2003-03-14(1) Publicly export the value of _OPSYS_RPATH_NAME as RPATH_FLAG;jlam1-3/+4
Makefiles simply need to use this value often, for better or for worse. (2) Create a new variable FIX_RPATH that lists variables that should be cleansed of -R or -rpath values if ${_USE_RPATH} is "no". By default, FIX_RPATH contains LIBS, X11_LDFLAGS, and LDFLAGS, and additional variables may be appended from package Makefiles.
2003-03-14Add include of freetype2/buildlink2.mk to match the one in the Makefile.markd1-1/+2
Should fix PR 20693 from John Fisher.
2003-03-12More updates from Mesa:jschauma1-2/+3
As with the Makefiles, only include Mesa's buildlink when necessary, otherwise include MesaLib's and/or glu's buildlink.
2003-03-11Update qt to 3.1.1.markd8-88/+123
Qt 3.1 introduces many significant new features and many improvements over the 3.0.x series. Also lots of bugfixes. The Qt version 3.1 series is binary compatible with the 3.0.x series: applications compiled for 3.0 will continue to run with 3.1.
2003-03-09Bump PKGREVISION due to upgrade of Mesa and friends.jschauma1-2/+3
Only include Mesa/buildlink2.mk if the package requires all three of MesaLib, glu and glut - else only include the necessary buildlink2s.
2003-02-18Substitute "LIBQT" by something sensible at build time instead of leavingdrochner3-8/+10
it an environment variable. So we get a "qmake.conf" installed which is usable ouside the pkgsrc/qt3* context.
2003-02-04Update qt to 3.0.7 - the final maintenance release of qt 3.0.skrll5-25/+21
Lots of bugfixes including one for the ListView expansion problem. Fix kwin in kdebase after a QT global was renamed.
2003-01-25Note that qt3 requires C++.jlam1-1/+2
2003-01-07Correctly define some variables that qmake expects to be defined:jlam1-4/+5
QMAKE_SYMBOLIC_LINK, QMAKE_DEL_FILE, QMAKE_DEL_DIR. This suppresses some ignored build errors when building qt3-* packages. Bump PKGREVISION of qt3-tools (which installs the qmake.conf file) to 2.
2002-12-24Bump PKGREVISION because of dependency on latest freetype2 or glib2wiz2-3/+4
package and library major bumps therein. Also match dependency in corresponding buildlink2.mk's for the same reason. Mmmm, binary packages.
2002-10-28give the postgesql database adapter a chance to compiledrochner3-1/+40
(not in this pkg) (centralized patches suck)
2002-10-28Update to Qt 3.0.6, change PKGLIBTOOL to LIBTOOL in one place and do a bit ofskrll4-13/+12
PLIST sorting. Qt 3.0.6 is a bugfix release. It maintains both forward and backward compatibility (source and binary) with Qt 3.0.5 Binary compatibility warning: Qt 3.0.6 is backward and forward binary compatible with Qt 3.0.5, and is planned to be binary compatible with Qt 3.1. Unfortunately Qt 3.0.5 is not 100% backward binary compatible with Qt 3.0.3 (a class got a few bytes smaller), meaning executables compiled with 3.0.5 may not run properly when linked dynamically to 3.0.3. at runtime. Note that this is not a problem on MS-Windows. Due to its wide distributed in various GNU/Linux distributions, we have decided to stick with 3.0.5's ABI. If you ship dynamically linked executables, we suggest putting a QT_REQUIRE_VERSION macro at the beginning of your main function: ... #include <qmessagebox.h> ... int main( int argc, char**argv ) { QT_REQUIRE_VERSION( argc, argv, "3.0.5" ) ... } The macro will show a message box with a warning message and then abort the application gracefully with exit(1). For a full buglist see the Trolltech web site.
2002-10-09Don't hardcode the buildlink paths to the C/C++ compiler and to libtooljlam1-4/+4
otherwise packages that use qmake will want to use the wrong ones.
2002-10-08Unused.jlam1-56/+0
2002-10-02Bracket passing QTDIR to the make and configure environments so that theyjlam1-3/+6
aren't used when building Qt3 itself, as Qt3 expects QTDIR=${WRKSRC}, which is handled by qt3-libs/Makefile.common.
2002-10-01Fix RCS Id.jlam1-1/+1
2002-10-01Remove dependency on egcs for Solaris.markd2-6/+6
Add capability to specify additional system libraries in the qmake.conf and use it in the Solaris case to add -lresolv -lsocket -lnsl
2002-09-24Complete standardization of messages according to latest pkglint.wiz1-3/+3
2002-09-24BUILDLINK_CPPFLAGS and BUILDLINK_LDFLAGS for finding qt3-libs headersjlam1-0/+3
and libraries.
2002-09-20Fix pkg/18211 from Hume Smithskrll1-10/+22
Reverse the change to how templates are handled, made between 3.0.4 and 3.0.5, for older toolchains. Removing inline for newer toolchains produces smaller code. Removing inline for older toolchains produces buggy code. Do some reorganisation while I'm here.
2002-08-28Avoid creating a .qt directory in the users home directory.skrll1-1/+5
2002-08-27Update to 3.0.5.skrll5-13/+16
Qt 3.0.5 is a bugfix release. It maintains both forward and backward compatibility (source and binary) with Qt 3.0.4. To avoid problems with loading plugins which link against different Qt libraries, the semantics of plugin loading has been changed. While I'm here add the PTHREAD_OPTS+=require thing to the buildlink files. TODO: check qt3-{tools,docs} wrt buildlink2.
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam8-34/+67
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
2002-08-08These packages install libraries that differ from previous versions if theyjlam2-3/+3
are built using the hard-syscall-enabled pth. Bump the PKGREVISION so we can distinguish these packages from the previous ones.
2002-08-01Adjust to new pthread.buildlink.mk: remove USE_PTHREAD and replace withjlam1-3/+2
appropriate PTHREAD_OPTS incantation, and move the checks for the value of PTHREAD_TYPE below the inclusion of pthread.buildlink.mk.
2002-05-30Fix the detection of freetype 2 and opengl. Thanks to Chris Gilbert forskrll4-5/+20
this. While I'm here fix the qt3-libs dependency in qt3-tools and the fact that the qt library was being built (needlessly) in qt3-tools.
2002-05-29Various changes to help with KDE3.skrll8-32/+76
o Enable thread support using pth-syscall and nathanw_sa. The later has problems which are being worked on. o Restructure the build of certain plugins so that qt3-libs comes with jpeg and mng support. o Introduce a BUILDLINK_DEPENDS_METHOD.qt3-tools variable that when set to build means we don't get a full dependency on qt3-tools.
2002-05-24unlimit datasize. fixes build problem on sparcdmcmahill1-1/+3
2002-05-04update to 3.0.4drochner5-24/+24
"Qt 3.0.4 is a bugfix release. It maintains both forward and backward compatibility (source and binary) with Qt 3.0.3."