Share patches and distinfo, overwrite for gnuradio-howto as the only
exception.
Fix gnuradio-core-docs to do something useful and mark it as user-destdir
ready.
Changelog for version xdx (2.4.2)
* German translations added.
* Improved gnuplot script for proper use of time format for the x-axis.
* Both contributions by Tom DL1JBE, Thanks!
Changelog for version xdx (2.4.1)
* This fixes compilation against version 2.14 of GTK+. Thanks to Tom,
DL1JBE for notifying me.
Changelog for version xdx (2.4)
* Added automatic country lookup by Emanuele IZ0ETE. In order for this to
work you need to enable the country column in the preferences dialog.
* With this release visible columns need to be reconfigured.
* Portuguese translation added. Thanks to David, CT1DRB.
Changelog for version xdx (2.3)
* Compilation fixes for MAC OS X. Thanks to IZ0ETE.
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.