variables so that the default INSTALL/DEINSTALL scripts from the
pkginstall framework do the right thing. Where possible, move some
post-install directions for package setup into MESSAGE files so that
they may be re-inspected by querying the installed package using
"pkg_info -D ...".
INSTALL/DEINSTALL script creation within pkgsrc.
If an INSTALL or DEINSTALL script is found in the package directory,
it is automatically used as a template for the pkginstall-generated
scripts. If instead, they should be used simply as the full scripts,
then the package Makefile should set INSTALL_SRC or DEINSTALL_SRC
explicitly, e.g.:
INSTALL_SRC= ${PKGDIR}/INSTALL
DEINSTALL_SRC= # emtpy
As part of the restructuring of the pkginstall framework internals,
we now *always* generate temporary INSTALL or DEINSTALL scripts. By
comparing these temporary scripts with minimal INSTALL/DEINSTALL
scripts formed from only the base templates, we determine whether or
not the INSTALL/DEINSTALL scripts are actually needed by the package
(see the generate-install-scripts target in bsd.pkginstall.mk).
In addition, more variables in the framework have been made private.
The *_EXTRA_TMPL variables have been renamed to *_TEMPLATE, which are
more sensible names given the very few exported variables in this
framework. The only public variables relating to the templates are:
INSTALL_SRC INSTALL_TEMPLATE
DEINSTALL_SRC DEINSTALL_TEMPLATE
HEADER_TEMPLATE
The packages in pkgsrc have been modified to reflect the changes in
the pkginstall framework.
which actually contains the right up-to-date file versions, and thus:
* compilation fixes for 2.0 and -curren
* adaptation to the device cloner changes in -current
Changes since previous version:
* make compilable with kernel >1.6V - the proc->lwp change was backed
off
* included files.vmware to distribution, to help easily compile
the modules into kernel, rather than compiling than as LKM
The proc->lwp backout fix for >1.6V contributed in pkg/22538
by Juergen Hannken-Illjes.
change the package version to 3.2.1.1 to accomodate introduction of teeny
version number by VMware
list of changes isn't available, presumably bugfixes only
with -current. Also drop -Werror from compilation, which migh have
caused problems for 1.6.
Switch to bzip2 for distribution - this shrinks archive by about 20k.