Problems found locating distfiles:
Package modular-xorg-server: missing distfile xorg-server-1.17.4.tar.bz2
Package py-qt4: missing distfile PyQt-mac-gpl-4.11.1.tar.gz
Package xservers: missing distfile xservers-3.3.6.5.tar.bz2
Package xview-clients: missing distfile xview3.2p1-X11R6.tar.gz
Package xview-lib: missing distfile xview3.2p1-X11R6.tar.gz
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
to address issues with NetBSD-6(and earlier)'s fontconfig not being
new enough for pango.
While doing that, also bump freetype2 dependency to current pkgsrc
version.
Suggested by tron in PR 47882
change: Fixed CVE-2003-0070 again
(possibility to put arbitrary input onto the user's command line
by combination of set/get window title escape sequences)
0.22.4
=======
- Fix a regression introduced in 0.22.4
- Bugs fixed in this release:
Revert "Bug 591648 - Don't clear the screen when switching to the alternate screen"
changes:
-bugfixes
-Rework mouse selection to be more robust. In particular, PRIMARY
selection now only changes when mouse button is released, not upon every
motion when selecting
Shared directories can now be created independently by the pacakges
needing them and will be removed automatically by pkg_delete when empty.
Packages needing empty directories can use the @pkgdir command in PLIST.
Discussed and ok'd in thread starting at
http://mail-index.netbsd.org/tech-pkg/2009/06/30/msg003546.html
0.20.3
=======
- Bugs fixed in this release:
Bug 583129 - [python] allow passing None as command or directory option
Bug 583078 - [python] allow passing of environment as a dictionary
0.20.2
=======
- Bugs fixed in this release:
Bug 567064 - Work around buggy iconv
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.