while here, add gtk3 option and enabled by default.
News
Fri 18 Feb 2011:
Version 0.27 released; Gtk+ 3.x fixes; add new tool to implement
boot-up sounds when used with systemd; other fixes
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
* Gtk+ 3.x fixes.
Changes 0.25:
* Optionally build with Gtk+ 3.x in addition to Gtk+ 2.x.
Changes 0.24:
* GTK code is now fine with GSEAL. Minor fixes in the PulseAudio backend,
other fixes.
Changes 0.23:
* various minor fixes in the pulse and gstreamer backends as well in the Vala
API. Support for the recently standardized Vorbis 6.1/7.1 multichannel modes.
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
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.