Commit graph

27833 commits

Author SHA1 Message Date
atatat
6e199eb33b Add xplanet package, currently at 0.93 (the recent 0.94 release is
rather broken).
2002-03-25 16:08:07 +00:00
briggs
d58d53e602 Adjust syscalls-powerpc-netbsd.S so it will build correctly again.
Problem reported on port-macppc by Ryan La Riviere <larz@cbis.ece.drexel.edu>.
2002-03-25 15:19:30 +00:00
cjep
0e5fd032fb On arm32 pull in gcc-2.95.3 to build. 2002-03-25 14:45:25 +00:00
cjep
30e8a9e879 On arm32, pull in gcc-2.95.3 (to avoid egcs internal compiler error --
after a discussion with abs (the commit,
				not the compiler error :-)).
2002-03-25 14:45:05 +00:00
cjep
cf0e9086ab Use the gcc-2.95.3 FORTRAN (after discussion with abs). 2002-03-25 14:43:35 +00:00
cjep
9b43b2d9dc Build for arm32 as well (after discussion with abs). 2002-03-25 14:43:00 +00:00
rh
6392ce05c0 Update netsaint-plugin-snmp to 1.2.9.4. Package provided in PR pkg/15992
by Murray Armfield <murray@river-styx.org>.  This is part of the netsaint
update to 0.0.7, please see the update for netsaint-base to 0.0.7 for an
overview of changes.
2002-03-25 13:01:10 +00:00
rh
f16685bbb4 Update netsaint-plugins to 1.2.9.4. Provided in PR pkg/15992 by Murray
Armfield <murray@river-styx.org>.  This is part of the netsaint update
to 0.0.7. Please see the previous commit message on netsaint-0.0.7 for
a summary of changes.
2002-03-25 12:58:46 +00:00
rh
f9a2c69fe5 Update netsaint-base to 0.0.7. Package provided in PR pkg/15992 by
Murray Armfield <murray@river-styx.org>, thanks!

Changes include:
	- several new CGIs
	- WAP interface
	- forced service checks
	- acks w/o notifications
	- custom intervals for notification escalations
	- passive check submissions via web interface
	- auto-save of retention data
	- extended service information
	- scheduled downtime
	- service dependencies
	- flap detection
	- aggregated status updates
	- new macros
	- user-supplied coordinates in status map
	- minor bug fixes and tuning
2002-03-25 12:54:17 +00:00
grant
d691c88b42 update to 1.4.5 (bug fixes, macosx and cygwin improvements).
1.4.4 no longer on master site.
use bz2 file.
2002-03-25 12:30:09 +00:00
grant
83c47125e8 update for 1.4.5 (bug fixes, macosx and cygwin improvements).
1.4.4 no longer on master site.
use bz2 file.
2002-03-25 12:25:29 +00:00
drochner
c0750174ae add gnometoaster 2002-03-25 11:26:30 +00:00
drochner
b58bc60e1c initial import of gnometoaster, another cd recording frontend 2002-03-25 11:24:28 +00:00
skrll
fcf54a7295 Workaround a problem in old versions of ld.elf_so that stops kded modules
from working. The most obvious example of this is being able to print.

The workaround is to not use kdeinit to load/open kded, but instead
launch it as a separate process. From Marcello Balduccini
<marcello.balduccini@ttu.edu> in pkg/15806.

Thanks to Stoned Elipot <seb@netbsd.org> for testing the fix and to
Antti Kantee <pooka@netbsd.org> for help with sed(1).
2002-03-25 11:02:36 +00:00
fredb
8a935a1c4c Add a convenience target to run the INSTALL script, and update the
post-install message accordingly. We have to do it manually after
`make package', as explained in the comment.
2002-03-25 09:17:55 +00:00
fredb
ad4d98f3fa Update wwwoffle to 2.7a (2.7.1). From the NEWS file:
Bug Fixes:
 Ensure that the -put or -post options to wwwoffle have one URL.  Fix IPv6
 checking (configure fails if IPv6 not available).  Fix conditional request
 problem (304 reply for non-conditional requests).  Make the socket binding
 errors less confusing.  Fix requesting of compressed data.  Handle NULL strings
 in FTP code and parsing requests.  Speed up wildcard matching of '/*' paths.
 When search script fails give an error not a blank page.  The content-length
 header is not removed unless compression is being used.  Fix core dump with
 configuration page adding first item to DontGet/DontCache section.  Preserve
 cache file timestamps when compressing them.  Handle relative URLs that start
 with '//'.  Fix Solaris compilation problem with statfs/statvfs.  Bug fix for
 failure to censor some headers.  Remove the 'alt' attribute from disabled
 images when modifying HTML.

New Features:
 Re-instate the old configuration editing web pages due to user demand.
 Allow wildcards to have more than two '*' in them.
 The upgrade-config.pl script warns about URL-SPECs with path='/' not '/*'.
2002-03-25 08:49:59 +00:00
martti
628c7dc15d Added VIM_EXTRA_OPTS 2002-03-25 08:04:04 +00:00
martti
be5d9d861f Added support for VIM_EXTRA_OPTS (requested by Katsuhiko Fujii in pkg/15990) 2002-03-25 08:04:02 +00:00
lukem
550ed9d642 fix minor memory leak in ogg123_comment_set() introduced in previous 2002-03-25 06:24:59 +00:00
cjs
40fb300e82 Add p5-Module-Dependency. 2002-03-25 05:56:54 +00:00
cjs
b21c71917d Build and use index of perl module dependencies. 2002-03-25 05:55:52 +00:00
lukem
c13b5c0e0f Add back patch-ac containing various ogg123 playback fixes (different
from the last set), making ogg playback useful:
- implement ogg123_pipe_open() which opens a pipe and runs the command
  supplied in the char **, returning the child pid and fd array from pipe(2).
  based on code from ogg123_child_run().
- replace popen() with ogg123_pipe_open() in ogg123_info_get(),
  ogg123_comment_get(), and ogg123_comment_set().  now info actually
  works for file names which contain wacky shell characters (where
  surrounding the file name with quotes just Isn't Enough)
- parse_bitrate(): current bitrate in ogg123 output is now "(NNN.MM kbps)",
  so look for that rather than "Bitrate: NNNN"
- when setting the initial bit_rate for a song, use "bitrate_average / 1000"
  rather than "bitrate_nominal", since bit_rate is in kbps and bitrate_*
  is in bps and bitrate_average is more appropriate that bitrate_nominal.
2002-03-25 05:44:48 +00:00
rh
e515a9150f Remove a bogus #ifdef around standard include files. 2002-03-25 04:47:47 +00:00
dmcmahill
62beb2544b remove unneeded patches. pkg-info adds -Wl,-R${path} automatically, no
need to add it explicitly.
2002-03-25 02:05:47 +00:00
dmcmahill
ce170c4cc7 add missing @dirrm 2002-03-25 02:05:04 +00:00
dmcmahill
b1d6c8fc17 remove unneeded patches. pkg-info adds -Wl,-R${path} automatically, no
need to add it explicitly.
2002-03-25 02:04:48 +00:00
jmc
8eda3519a2 Add buildlink for tcl 2002-03-25 01:49:04 +00:00
jmc
ead4288a3b Remove commented out gcc dependency that happened in 1.4 version. This really
does need gcc 2.95 or greater to work
2002-03-25 01:41:04 +00:00
jmc
f751704145 Turn off debugging when building 2002-03-25 01:19:50 +00:00
hubertf
c78cc2de87 Update ddclient to 3.6.2. Changes:
- add support for Xsense Aero
- add support for Alcatel Speedtouch Pro
- do authentication when either the login or password are defined.
- fix parsing of web status pages

Updated contributed by Amitai Schlair <schmonz@schmonz.com> in private mail.
2002-03-25 01:18:50 +00:00
jmc
0c5474356d Make this require bison 1.34 or greater as the syntax for --outputfile changed
during bison upgrades and detecting which syntax is in use is far harder than
simply making Makefile.in do the right thing for 1.34
2002-03-25 01:04:46 +00:00
jmc
5b615520d6 Fix typo in BUILD_DEPENDS line 2002-03-25 00:34:12 +00:00
wiz
dc41591fd2 Make it compile with SASL_USE_GSSAPI=YES. Closes pkg/16040 by
Rodolphe de SAINT LEGER.
2002-03-24 23:30:18 +00:00
rh
94f276f56c Reorder link line for GLE example programs so linking works again. Fixes
provided in PR pkg/14240 by Rafal <rafal@netbsd.org>.
2002-03-24 22:27:41 +00:00
dmcmahill
c420d3ed35 s/pth/ptl2 2002-03-24 22:21:26 +00:00
deberg
9e7d558594 solaris install can only create one directory at a time 2002-03-24 22:17:22 +00:00
wiz
f3f1c5fecd Update to 0.2.3.
Changes since 0.2.1:
Fixed a bug involving the processing of 24-bit audio data on
little-endian systems.
Added support for IMA and MS ADPCM.
Added support for the IRCAM file format.
Added support for AF_QUERYTYPE_COMPRESSION.
Added support for floating-point data in the AIFF-C and WAVE file
formats.
Improved support for compressed data formats in AIFF-C, WAVE, and NeXT
.snd file formats.
Cleaned up code for 64-bit systems.
Cleaned up some compiler warnings.
Added many new tests.
Fixed several small bugs.
Cleaned up code in many places.
2002-03-24 21:38:25 +00:00
rh
91dbd02c56 Buildlinkify gnome-- by applying the patches provided by Eric Gillespie,
Jr., in PR pkg/14205.
2002-03-24 21:23:57 +00:00
dmcmahill
a5b764a391 add gtk2 2002-03-24 20:35:47 +00:00
dmcmahill
a8658b04a9 import gtk2-2.0.0
The Gimp Tool Kit.

GTK+ is a multi-platform toolkit for creating graphical user
interfaces. Offering a complete set of widgets, GTK+ is
suitable for projects ranging from small one-off projects to
complete application suites.
2002-03-24 20:34:36 +00:00
dmcmahill
309c25d3a2 add atk, glib2, and pango 2002-03-24 20:31:40 +00:00
magick
0ac9f086b9 Add and enable mew-xemacs 2002-03-24 20:30:19 +00:00
dmcmahill
648690365b import pango-1.0.0
Pango is a library for layout and rendering of text, with an emphasis
on internationalization. Pango can be used anywhere that text layout
is needed; however, most of the work on Pango-1.0 was done using the
GTK+ widget toolkit as a test platform. Pango forms the core of text
and font handling for GTK+-2.0.

Pango is designed to be modular; the core Pango layout can be used
with four different font backends:

 - Core X windowing system fonts
 - Client-side fonts on X using the Xft library
 - Direct rendering of scalable fonts using the FreeType library
 - Native fonts on Microsoft backends

Dynamically loaded modules then handle text layout for particular
combinations of script and font backend.

As well as the low level layout rendering routines, Pango includes
PangoLayout, a high level driver for laying out entire blocks of text,
and routines to assist in editing internationalized text.
2002-03-24 20:29:35 +00:00
magick
06544f4905 Initial import of Mew for XEmacs. This closes pkg/14405
contributed by Ogata Hiroshi with update to 2.2 via private mail.

Mew is an interface to integrate

   - Email
   - NetNews
   - MIME(Multipurpose Internet Mail Extensions)
   - PGP(Pretty Good Privacy)
2002-03-24 20:29:28 +00:00
dmcmahill
99f08f8f69 import atk-1.0.0
The ATK library provides a set of interfaces for accessibility.
By supporting the ATK interfaces, an application or toolkit can
be used with such tools as screen readers, magnifiers,
and alternative input devices.

Atk provides a core set of interfaces which are common to all
widgets and "additional" interfaces that are appropriate to certain
classes of widgets and whose existence can be queried at run time.
It also provides interfaces which an application can use to provide
additional accessibility information to assistive technology tools.
2002-03-24 20:28:05 +00:00
dmcmahill
37b479265b import glib2-2.0.0
GLib is a library which includes routines for C, providing lists,
trees, hashes, memory allocation functionality and many other things.

glib2 will coexist with glib-1.2.*
2002-03-24 20:27:12 +00:00
wiz
de7977e54a Add and enable SDL_gfx. 2002-03-24 20:20:09 +00:00
wiz
39f710869b Initial import of SDL_gfx, provided by Ben Collver in pkg/16015.
DESCR:
The SDL_gfx library evolved out of the SDL_gfxPrimitives code which
provided basic drawing routines such as lines, circles or polygons for
SDL Surfaces.

The current components of the SDL_gfx library are:
- Graphic Primitives (SDL_gfxPrimitves.h)
- Rotozoomer (SDL_rotozoom.h)
- Framerate control (SDL_framerate.h)
- MMX image filters (SDL_imageFilter.h)
2002-03-24 20:14:36 +00:00
rh
68dbcf889f Fix PLIST. 2002-03-24 20:04:32 +00:00
rh
e1a7fb7b44 Update gnome-core to 1.4.0.6. Changes are bugfixes only.
While at it, fix localstatedir to prevent scrollkeeper files from being
installed in /var/gnome (PR pkg/13057).
2002-03-24 20:03:34 +00:00