Commit graph

33 commits

Author SHA1 Message Date
sno
6f7368d4db bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
rillig
87ee15b97a Fixed some pkglint warnings for qt3-docs. 2009-07-11 09:11:13 +00:00
joerg
3864ca7103 user-destdir support 2009-07-07 18:10:38 +00:00
joerg
b02a0f888e Remove @dirrm entries from PLISTs 2009-06-14 18:24:43 +00:00
adam
e95c1cfe64 Changes 3.3.7:
* Fixed security flaw in the way Qt handles pixmap images
2006-10-23 14:54:11 +00:00
wiz
02f8f7c52d Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
drochner
e4b3aea5b4 update to 3.3.6
changes:
-bugfixes
-gcc-4.1 support
-translation updates
2006-03-31 14:38:02 +00:00
joerg
5911def816 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
wiz
768c589c29 Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 because
of the shlib major bump.
PKGREVISION++ for the dependencies.
2006-01-24 07:31:52 +00:00
rillig
b71a1d488b Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in

    http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-12-05 20:49:47 +00:00
adam
67668b30e5 Changes 3.3.5:
* Over 200 bug-fixes were incorporated
* Platform support was added for Mac OS X 10.4 (Tiger), VS2005, and GCC 4.
2005-09-27 08:01:28 +00:00
tron
e9d31c6c85 Make necessary package list changes after "qt3" has been updated to
version 3.3.4.
2005-02-14 08:22:56 +00:00
gavan
2bc4048a48 Move USE_BUILDLINK3 into Makefile.common.
This change ensures that USE_BUILDLINK3 is defined before compiler.mk is
included.
2004-10-28 10:32:23 +00:00
tv
c487cb967a Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10
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-10-03 00:12:51 +00:00
snj
7959e3eebe Convert to buildlink3. 2004-05-10 02:10:14 +00:00
recht
ec23ce840d update to 3.3.1
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-04-16 14:30:44 +00:00
skrll
ad3f9a41d8 Update QT3 to 3.2.3.
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-19 15:43:31 +00:00
drochner
61b9e4e88d Don't USE_X11BASE; there is no reason to install there.
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-08-01 15:31:07 +00:00
wiz
28a4483bc7 NO_PATCH is deprecated, says pkglint. Remove it. 2003-03-28 21:14:10 +00:00
skrll
72d9db4b42 Update qt3 to 3.1.2. This update fixes a large number of bugs. 2003-03-18 08:36:22 +00:00
markd
615f21ac50 Update qt to 3.1.1.
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-11 13:02:06 +00:00
skrll
d2aff0e543 Update qt to 3.0.7 - the final maintenance release of qt 3.0.
Lots of bugfixes including one for the ListView expansion problem.

Fix kwin in kdebase after a QT global was renamed.
2003-02-04 18:06:48 +00:00
wiz
d8262452c1 Bump PKGREVISION because of dependency on latest freetype2 or glib2
package and library major bumps therein.
Also match dependency in corresponding buildlink2.mk's for the same reason.
Mmmm, binary packages.
2002-12-24 06:09:44 +00:00
skrll
3c976743bf Update to Qt 3.0.6, change PKGLIBTOOL to LIBTOOL in one place and do a bit of
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-28 08:46:43 +00:00
jlam
f83f0a6091 Note that this package is part of a Qt3 build. 2002-10-02 07:27:41 +00:00
skrll
56528490e8 Don't mix buildlink1 and buildlink2... 2002-08-28 14:41:59 +00:00
skrll
53576b7959 Update to 3.0.5.
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-27 09:13:48 +00:00
skrll
7ecf22bc65 Rely on the BUILDLINK_DEPENDS in qt3-libs/buildlink.mk.
This fixes pkg/17120 from <reed@reedmedia.net>
2002-06-01 10:59:22 +00:00
wiz
c971ca6386 It's USE_BUILDLINK_ONLY, not NO_BUILDLINK_ONLY :-) 2002-06-01 09:06:37 +00:00
drochner
3754f3fbd0 update to 3.0.4
"Qt 3.0.4 is a bugfix release. It maintains both forward and backward
compatibility (source and binary) with Qt 3.0.3."
2002-05-04 13:30:09 +00:00
drochner
38e427917b update to 3.0.2
"Qt 3.0.2 is a bugfix release. It maintains both forward and backward
compatibility (source and binary) with Qt 3.0.1."
2002-03-19 17:54:33 +00:00
fredb
b48eba1112 Give all packages which depend on "png" a version bump, and update
all dependencies on packages depending on "png" which contain shared
libraries, all for the (imminent) update to the "png" package.
[List courtesy of John Darrow, courtesy of "bulk-build".]
2002-03-13 17:36:35 +00:00
skrll
aa57c2214f Initial import of qt3-docs-3.0.1. The documentation from QT3. 2002-01-07 08:10:34 +00:00