--
This is a small sample cross-platform networking library, with a
sample chat client and server application. The chat client uses the
GUIlib GUI framework library.
This is a simple library to load images of various formats as SDL
surfaces. This library supports BMP, PPM, PCX, GIF, JPEG, PNG, TGA,
and TIFF formats.
API:
#include "SDL_image.h"
SDL_Surface *IMG_Load(const char *file);
or
SDL_Surface *IMG_Load_RW(SDL_RWops *src, int freesrc);
or
SDL_Surface *IMG_Load_RW(SDL_RWops *src, int freesrc, char
*type);
where type is a string specifying the format (i.e. "PNG" or "pcx").
Note that IMG_Load_RW cannot load TGA images.
An example program 'showimage' is included, with source in showimage.c
--
SDL_mixer is a sample multi-channel audio mixer library. It supports
any number of simultaneously playing channels of 16 bit stereo audio,
plus a single channel of music, mixed by the popular MikMod MOD, Timidity
MIDI and SMPEG MP3 libraries.
--
This is a very simple GUI framework, for use with SDL.
It is very flexible, but is by no means a complete windowing system.
It contains a C++ GUI class with a very rudimentary C interface,
and a set of useful widget classes.
pthreads flags for other OS's that have nothing todo with compilation on
OpenBSD.
- change linker flag from "-Wl,-R" to "-Wl,-rpath," so that this will
possibly even get through a compile on our ELF archs (tested on sparc, not
tested on an ELF arch but this is definately a first step in the right
direction).
--
Ok'd by: maintainer
--
libtai is a library for storing and manipulating dates and times.
libtai supports two time scales: (1) TAI64, covering a few hundred
billion years with 1-second precision; (2) TAI64NA, covering the
same period with 1-attosecond precision. Both scales are defined
in terms of TAI, the current international real time standard.
Submitted by Brian J. Kifiak <bk@rt.fm>
checked by wilfried@ (thanks!)
o old patch and COMMENT going away
o fix a symbollic link problem
o integrate COMMENT into the Makefile
o take over maintinership
o no longer marked broken
Hats off to Jeff Squyres <jsquyres@lsc.nd.edu> (a LAM developer) for
testing on/hammering an OpenBSD machine in preparation for this release
version.
MySQL++ is a C++ API for MySQL (and other SQL Databases Soon). The
goal of this API is to make working with queries as easy as working
with other STL Containers.
from DESCR:
perltidy is a Perl script which indents and reformats Perl scripts
to make them easier to read. If you write Perl scripts, or spend
much time reading them, you will probably find it useful.
Submitted by: Pete Fritchman <petef@databits.net>
- Clean up URI parser.
- Workaround thttpd's buggy SCRIPT_NAME / PATH_INFO parser.
- Allow downloading a single port/pkgsrc in tarball by default.
- Remove an obsolete notice: CVSWEB_CONFIG is disused.
- One leftover substitution: "cvs" -> $CMD{cvs}.
- Use a fixed-width font in the colored diff view.
- Do closedir() properly.
- Encode colons in file names properly.
--
Artistic Style is a reindenter and reformatter of C++, C and Java
source code.
When indenting source code, we as programmers have a tendency to
use both spaces and tab characters to create the wanted indentation.
Moreover, some editors by default insert spaces instead of tabs
when pressing the tab key, and other editors (Emacs for example)
have the ability to "pretty up" lines by automatically setting up
the white space before the code on the line, possibly inserting
spaces in a code that up to now used only tabs for indentation.
Based on a tarball by Shell Hung <i@shellhung.org>
--
asp2php is a program which converts Microsoft's ASP code to PHP.
It supports multiple database drivers, sessions, both PHP3 and PHP4,
and also provides a graphical front end to do all this.
traditional and object-oriented i/o) on things *other* than normal
filehandles; in particular, IO::Scalar, IO::ScalarArray, and
IO::Lines.
Port orignally created by Shell Hung <i@shellhung.org>. Moved from textproc/
to devel/.
object can be attached to a string, and will make it possible to use
the normal file operations for reading or writing data, as well as
seeking to various locations of the string. The main reason you might
want to do this, is if you have some other library module that only
provide an interface to file handles, and you want to keep all the
stuff in memory.
Originally created by Shell Hung <i@shellhung.org>. I have moved it from
textproc/ to devel/