are replaced with .include "../../devel/readline/buildlink3.mk", and
USE_GNU_READLINE are removed,
* .include "../../devel/readline/buildlink3.mk" without USE_GNU_READLINE
are replaced with .include "../../mk/readline.buildlink3.mk".
makeinfo if no native makeinfo executable exists. Honor TEXINFO_REQD
when determining whether the native makeinfo can be used.
* Remove USE_MAKEINFO and replace it with USE_TOOLS+=makeinfo.
* Get rid of all the "split" argument deduction for makeinfo since
the PLIST module already handles varying numbers of split info files
correctly.
NOTE: Platforms that have "makeinfo" in the base system should check
that the makeinfo entries of pkgsrc/mk/tools.${OPSYS}.mk are
correct.
developer is officially maintaining the package.
The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list). Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
under share/examples/rc.d. The variable name already was named
RCD_SCRIPTS_EXAMPLEDIR.
This is from ideas from Greg Woods and others.
Also bumped PKGREVISION for all packages using RCD_SCRIPTS mechanism
(as requested by wiz).
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.
XXX Only one of RPLAY.info and rplay.info info files is registered
in the Info directory file. This is because install-info(1)
is case insensitive when dealing with info file filenames.
Unless RPLAY.{info,texi} are renamed I do not see a clean way
to get around this...
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set
to "YES". This enforces the requirement that bsd.pkg.install.mk be
included at the end of a package Makefile. Idea suggested by Julio M.
Merino Vidal <jmmv at menta.net>.
Summary of changes:
- removal of USE_GTEXINFO
- addition of mk/texinfo.mk
- inclusion of this file in package Makefiles requiring it
- `install-info' substituted by `${INSTALL_INFO}' in PLISTs
- tuning of mk/bsd.pkg.mk:
removal of USE_GTEXINFO
INSTALL_INFO added to PLIST_SUBST
`${INSTALL_INFO}' replace `install-info' in target rules
print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info'
- a couple of new patch files added for a handful of packages
- setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it
- devel/cssc marked requiring texinfo 4.0
- a couple of packages Makefiles were tuned with respect of INFO_FILES and
makeinfo command usage
See -newly added by this commit- section 10.24 of Packages.txt for
further information.
This value may be customized in various ways:
PKG_SYSCONFBASE is the main config directory under which all package
configuration files are to be found.
PKG_SYSCONFSUBDIR is the subdirectory of PKG_SYSCONFBASE under which the
configuration files for a particular package may be found.
PKG_SYSCONFDIR.${PKGBASE} overrides the value of ${PKG_SYSCONFDIR} for a
particular package.
Users will typically want to set PKG_SYSCONFBASE to /etc, or accept the
default location of ${PREFIX}/etc.
This obsoletes the use of CONFDIR, which was active for only 6 days, so no
need to have a workaround to still accept old CONFDIR settings.
first component is now a package name+version/pattern, no more
executable/patchname/whatnot.
While there, introduce BUILD_USES_MSGFMT as shorthand to pull in
devel/gettext unless /usr/bin/msgfmt exists (i.e. on post-1.5 -current).
Patch by Alistair Crooks <agc@netbsd.org>
Add a new USE_LIBTOOL definition that uses the libtool package instead of
pkglibtool which is now considered outdated.
USE_PKGLIBTOOL is available for backwards compatibility with old packages
but is deprecated for new packages.
* Libtoolize build.
* Teach rplay to look for libedit readline emulation if it exists.
* Add dependency on rx-1.5.
Changes since rplay 3.3.1:
* Added devrplay.so which can be used with LD_PRELOAD to add rplay support
to audio applications use /dev/dsp. devrplay is known to work with rvplayer,
xmp, mpg123, freeamp, s3mod, esd (Enlightenment Sound Daemon) and even
rplayd itself. devrplay.so should be installed in your LD_LIBRARY_PATH.
Example usage:
bash$ LD_PRELOAD=devrplay.so rvplayer
bash$ LD_PRELOAD=devrplay.so /usr/X11R6/lib/X11/rvplayer/rvplayer
bash$ LD_PRELOAD=devrplay.so dd if=/foo/bar/sound.wav of=/dev/dsp
bash$ LD_PRELOAD=devrplay.so xxmp sound.mod
bash$ LD_PRELOAD=devrplay.so mpg123 sound.mp3
tcsh users will probably need to `setenv LD_PRELOAD devrplay.so; command'
instead of using the `LD_PRELOAD=devrplay.so command' syntax.
devrplay has only been tested on Linux, but it should be possible to
get it working on other systems.
* Added rptp "set" command. This can be used to set rplayd
variables. One important use of this is to set the audio-close
variable. Examples:
Tell rplayd to close the audio device:
$ rptp set audio-close 1
Tell rplayd *not* to close the audio device:
$ rptp set audio-close 0
* Added rplayd monitor support which allows rptp clients to monitor
audio data that is written to the audio device. rptp clients can
now issue the "monitor" command to start receiving audio data.
One use of this feature is to pipe the audio data to a program
for visual display.
* rptp includes support for GNU readline and also displays progress
information when doing get, put, and monitor.
* Fixed several potential rplayd buffer overflows.
Changes since rplay 3.2:
* Improved Linux support, including playing sounds directly
from ATAPI CDROM. Tested with the following:
Linux 2.0.34
Debian 2.0
ESS ES1688 AudioDrive (rev 6) (3.1)
TOSHIBA CD-ROM XM-1502B, ATAPI CDROM drive
This also includes a new --audio-fragsize rplayd option. See
README.linux for more information.
* Support for external helper applications used to convert
unsupported audio formats. Helpers can be configured to
support formats such as MPEG (using mpg123), modules
(using xmp), and any other format that can be converted
using a stdin -> stdout filter.
* --fork and --no-fork rplayd options. When not in debug or inetd
mode, rplayd will fork to put itself in the background.
* rplayd is now installed in $prefix/sbin/rplayd instead of
$prefix/bin/rplayd.
* Running rplayd from inetd now requires the --inetd option.
* --enable-rplayd-user=USER and --enable-rplayd-group=GROUP
configure options.
* --user=USER and --group=GROUP rplayd options.
* Lots of bug fixes.