summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2001-05-14Add and enable eelrh1-1/+2
2001-05-14Initial import of eel-1.0, the Eazel Extensions Library for GNOME.rh4-0/+160
2001-05-14Update pcre to version 3.4zuntum5-28/+104
Version 3.4 22-Aug-00 --------------------- 1. Fixed typo in pcre.h: unsigned const char * changed to const unsigned char *. 2. Diagnose condition (?(0) as an error instead of crashing on matching. Version 3.3 01-Aug-00 --------------------- 1. If an octal character was given, but the value was greater than \377, it was not getting masked to the least significant bits, as documented. This could lead to crashes in some systems. 2. Perl 5.6 (if not earlier versions) accepts classes like [a-\d] and treats the hyphen as a literal. PCRE used to give an error; it now behaves like Perl. 3. Added the functions pcre_free_substring() and pcre_free_substring_list(). These just pass their arguments on to (pcre_free)(), but they are provided because some uses of PCRE bind it to non-C systems that can call its functions, but cannot call free() or pcre_free() directly. 4. Add "make test" as a synonym for "make check". Corrected some comments in the Makefile. 5. Add $(DESTDIR)/ in front of all the paths in the "install" target in the Makefile. 6. Changed the name of pgrep to pcregrep, because Solaris has introduced a command called pgrep for grepping around the active processes. 7. Added the beginnings of support for UTF-8 character strings. 8. Arranged for the Makefile to pass over the settings of CC, CFLAGS, and RANLIB to ./ltconfig so that they are used by libtool. I think these are all the relevant ones. (AR is not passed because ./ltconfig does its own figuring out for the ar command.) Version 3.2 12-May-00 --------------------- This is purely a bug fixing release. 1. If the pattern /((Z)+|A)*/ was matched agained ZABCDEFG it matched Z instead of ZA. This was just one example of several cases that could provoke this bug, which was introduced by change 9 of version 2.00. The code for breaking infinite loops after an iteration that matches an empty string was't working correctly. 2. The pcretest program was not imitating Perl correctly for the pattern /a*/g when matched against abbab (for example). After matching an empty string, it wasn't forcing anchoring when setting PCRE_NOTEMPTY for the next attempt; this caused it to match further down the string than it should. 3. The code contained an inclusion of sys/types.h. It isn't clear why this was there because it doesn't seem to be needed, and it causes trouble on some systems, as it is not a Standard C header. It has been removed. 4. Made 4 silly changes to the source to avoid stupid compiler warnings that were reported on the Macintosh. The changes were from while ((c = *(++ptr)) != 0 && c != '\n'); to while ((c = *(++ptr)) != 0 && c != '\n') ; Totally extraordinary, but if that's what it takes... 5. PCRE is being used in one environment where neither memmove() nor bcopy() is available. Added HAVE_BCOPY and an autoconf test for it; if neither HAVE_MEMMOVE nor HAVE_BCOPY is set, use a built-in emulation function which assumes the way PCRE uses memmove() (always moving upwards). 6. PCRE is being used in one environment where strchr() is not available. There was only one use in pcre.c, and writing it out to avoid strchr() probably gives faster code anyway. Version 3.1 09-Feb-00 --------------------- The only change in this release is the fixing of some bugs in Makefile.in for the "install" target: (1) It was failing to install pcreposix.h. (2) It was overwriting the pcre.3 man page with the pcreposix.3 man page. Version 3.0 01-Feb-00 --------------------- 1. Add support for the /+ modifier to perltest (to output $` like it does in pcretest). 2. Add support for the /g modifier to perltest. 3. Fix pcretest so that it behaves even more like Perl for /g when the pattern matches null strings. 4. Fix perltest so that it doesn't do unwanted things when fed an empty pattern. Perl treats empty patterns specially - it reuses the most recent pattern, which is not what we want. Replace // by /(?#)/ in order to avoid this effect. 5. The POSIX interface was broken in that it was just handing over the POSIX captured string vector to pcre_exec(), but (since release 2.00) PCRE has required a bigger vector, with some working space on the end. This means that the POSIX wrapper now has to get and free some memory, and copy the results. 6. Added some simple autoconf support, placing the test data and the documentation in separate directories, re-organizing some of the information files, and making it build pcre-config (a GNU standard). Also added libtool support for building PCRE as a shared library, which is now the default. 7. Got rid of the leading zero in the definition of PCRE_MINOR because 08 and 09 are not valid octal constants. Single digits will be used for minor values less than 10. 8. Defined REG_EXTENDED and REG_NOSUB as zero in the POSIX header, so that existing programs that set these in the POSIX interface can use PCRE without modification. 9. Added a new function, pcre_fullinfo() with an extensible interface. It can return all that pcre_info() returns, plus additional data. The pcre_info() function is retained for compatibility, but is considered to be obsolete. 10. Added experimental recursion feature (?R) to handle one common case that Perl 5.6 will be able to do with (?p{...}). 11. Added support for POSIX character classes like [:alpha:], which Perl is adopting.
2001-05-14add & enable SDL_ttfzuntum1-1/+2
2001-05-14Initial import of SDL_ttf-1.2.2zuntum4-0/+35
This is a sample library which allows you to use TrueType fonts in your SDL applications.
2001-05-12Fix build problem under NetBSD-current.tron1-2/+2
2001-05-12Install "h5tools" library so that the include tools will actually work.tron2-2/+11
2001-05-11correct version number in DEPENDS on plirc to be valid dewey number.dillo1-2/+2
2001-05-11Wildcard depends on gtk+.wiz1-2/+2
2001-05-11update to 2.8.4dillo4-76/+188
pilrcui (ui previewer) is broken in 2.8, but we get support for LP64. What's new in 2.8 (Tue, 1 May 2001) ----------------- o added new resources - WORDLIST, GRAFITTIINPUTAREA, COLORTABLE, KEYBOARD, COUNTRYLOCALIZATION etc - [MOST ARE SYSTEM USE ONLY], see doc/manual.html for more information o ID generation consistancy fixes - ie: VERSION ID 1 "1.0", VERSION 1 "1.0" and VERSION "1.0" should work - restore's old behaviour to maintain compatibility in older sample code o SLIDER changes - fix warnings for sliders, no longer complain when legal :)) o error message fix - adjust include file messing error to have line # printed :) o DATA change - such that the data file can be found in include directories specified o added -LE32 flag, generate little endian 32bit compatible resources (ARM, NT) o various bugfixes et al :P o recursive includes (32-level deep) now supported o added src2unix.sh script to strip ^M chars for UN*X users o fixed strdup complaints o updated documentation (POPUPLIST example) o added "-R output.ro -prc" option - resources are bundled into a prc database (instead of .bin) !yay! - DEFAULT: cr8r: 'pRES' type: 'data' name: "PilRC resources" - (can be installed on device) o ability to custom specify the above using -creator -type and -name o added srcindent.sh script to indent all source files using indent tool o VC++ error/warning message syntax fix o added creationDate/modificationDate chunks o added support for non-32bit operating systems (alpha etc)
2001-05-09Use SHA1, and add size.wiz1-2/+3
2001-05-09If a tag has not been given, and we're using a compiler which is not oneagc3-11/+61
of the ones with which libtool was built, attempt to infer the compiler from the first word of the command line passed to libtool. We only reach this test if libtool is about to die with a message about lacking a specific tag, so this change is the least intrusive that can be made. This means that different CC options can now be recognised when compiling. Bump version number to nb6
2001-05-08Fix problem where CXX and CXXFLAGS were incorrectly used when --tag=CC isskrll2-4/+4
specified.
2001-05-08add missing PLIST entries.dmcmahill1-1/+3
2001-05-08Don't keep re-evaluating GCC_BINDIR -- preserve its value in MAKEFLAGS andjlam1-5/+3
don't compute its value if it's already defined.
2001-05-07LP64 patch to make this work on alpha.dmcmahill2-1/+99
2001-05-06Don't let SDL randomly pick up NAS support. Add SDL_USE_NAS variable that,rh1-1/+7
if present, causes SDL to depend on NAS. Disable NAS support if SDL_USE_NAS is not defined. Fixes PR 12784 by Eric Mumpower <nocturne@arepa.co>
2001-05-06Use a DIST_SUBDIR for the distfile (which has no version no.).jtb2-9/+12
Use the file on the haskell.org site rather than keeping a copy in LOCAL_PORTS.
2001-05-05Mechanical changes of tk DEPENDS:jlam1-2/+2
tk-8.3.2 -> tk>=8.3.2 tk-[0-9]* -> tk>=8.0 tk-8.* -> tk>=8.0
2001-05-05Make SDL compile under a.out systems: only use "-f elf" on ELF systems.rh3-7/+27
2001-05-04Deal with "unix no longer predefined" warning. Modify Makefile so we don'tjlam4-46/+44
need to pass in various variables through MAKE_ENV, and honor CFLAGS passed in from environment during build.
2001-05-03Add defaults for all instances of EVAL_PREFIX.jtb1-1/+2
2001-05-03fix for powerpc.dmcmahill4-16/+37
2001-05-03add missing USE_PERL5 (called by one of the scripts)dmcmahill1-1/+2
2001-05-02o ${MKDIR} -> ${INSTALL_DATA_DIR}zuntum1-10/+7
o simplify docs installation o simplify WRKSRC -- it's now WRKDIR/PKGNAME
2001-04-30Make 'missing' executable, in the hope that it helps (see bulk build).wiz1-1/+2
2001-04-30Fix --tag errors associated with building with the latest libtool.jlam3-35/+36
2001-04-30Add 'P' to enumeration of possible letters for 'cvs update' in cvs.1.wiz2-8/+11
(sync with -current)
2001-04-30This needs autoconf, says the bulk build.wiz1-1/+2
2001-04-30Back out changes to build *_pic.a libraries. This change was thought to bejlam3-32/+2
needed for the xerces-p package, but ended up not being necessary. By removing this hack, we reduce the number of places in pkgsrc where we depend upon libtool internals.
2001-04-30Change build dependency from perl-5.* to perl>=${PERL5_REQD}. Also changejlam2-4/+4
dependency from libperl-5.* to libperl>=${PERL5_REQD}.
2001-04-30Update of hdf5 to 1.4.1. Also, added German mirror.jtb3-94/+153
New Features ============ * XML output option for h5dump utility. A new option --xml to output data in XML format has been added. The XML output contains a complete description of the file, marked up in XML. The XML conforms to the HDF5 Document Type Definition (DTD), which is available at: http://hdf.ncsa.uiuc.edu/DTDs/HDF5-File.dtd The XML output is suitable for use with other tools, including the Java Tools: http://hdf.ncsa.uiuc.edu/java-hdf5-html Bug Fixes since HDF5-1.4.0 Release ================================== * h4toh5 utility: conversion of images is fixed Earlier releases of the h4toh5 utility produced images that did not correctly conform to the HDF5 Image and Palette Specification. http://hdf.ncsa.uiuc.edu/HDF5/doc/ImageSpec.html Several required HDF5 attributes are omitted, and the dataspace is reversed (i.e., the ht. and width of the image dataset is incorrectly described.) For more information, please see: http://hdf.ncsa.uiuc.edu/HDF5/H5Image/ImageDetails.htm * Fixed bug with contiguous hyperslabs not being detected, causing slower I/O than necessary. * Fixed bug where non-aligned hyperslab I/O on chunked datasets was causing errors during I/O * The RCSID string in H5public.h was causing the C++ compiling problem because when it was included multiple times, C++ did not like multiple definitions of the same static variable. All occurance of RCSID definition are removed since we have not used it consistently before.
2001-04-29Oops. Make this build again. (Must have not made clean when I tested mydanw2-1/+18
previous patch.)
2001-04-29Document 'P file' output for 'cvs update'. Same patch as for cvs.1 inwiz2-1/+18
-current in response to bin/12785.
2001-04-29use the boehm-gc package instead of the one included with sdcc.dmcmahill22-27/+222
this fixes sdcc on alpha, and probably sparc and others. also include a slew of missing headers.
2001-04-29Added installation of user's manualwulf2-2/+6
2001-04-28Remove redundant echoing, quoting, and input redirection to sed.jtb2-15/+8
2001-04-28Add '--tag' for hermes nasm statements to Makefile.am as well. This shouldrh2-1/+15
fix bulk building and PR 12746.
2001-04-28Add missing man page file(s) to PLIST.jtb1-1/+2
2001-04-28Add an "@exec mktexlsr" to the PLIST so that mktexlsr gets run afterjtb1-1/+2
a cweb binary package is installed. This fixes the i386 bulk build problem for emulators/mmix where TeX couldn't find cwebmac.tex.
2001-04-27cvsup binary uses X libraries, so add 'USE_X11'; addresses pkg/12531wiz1-1/+2
by Masao Uebayashi.
2001-04-27Set USE_GMAKE and remove the patch to generate monikers/*.oaf atdanw3-15/+6
configure-time. There are rules to build them (different from what configure would do) in the Makefile, they just use gmake-specific syntax. Bumped version to 1.0.2nb1 on general principles, but AFAIK nothing currently in pkgsrc is badly affected by the behavior of the 1.0.2 package, so I'm not updating any DEPENDS.
2001-04-27Update to a newer version, 1.10. (1.11 is out but containsphil3-13/+13
mostly changes for MacOS X builds. No changes for NetBSD.)
2001-04-27Update to a much newer version, 1.3. (1.4 is out, but mostly hasphil3-18/+18
changes to support MacOS X and virtually no changes for NetBSD.)
2001-04-27Update to a much more current version, 1.6. (1.7 is out but hasphil4-26/+10
changes mostly to support Mac OS and shouldn't be different for NetBSD.)
2001-04-27Update to 1.10, requested by zuntum.wiz2-5/+5
Changes are bugfixes and support for more languages and zones.
2001-04-27Add and enable eXdbmagc1-1/+2
2001-04-27Initial import of eXdbm-1.0b1 into the NetBSD packages collection.agc5-0/+71
This package was provided by Shelby <snoonan@vmlabs.com> in PR 12489. Modified slightly by myself to put the documentation in the correct directory, and to use mkdep, ignoring any errors. eXdbm provides configuration database routines for the eXode environment
2001-04-27Add and enable libmemmgragc1-1/+2
2001-04-27Initial import of libmemmgr-1.04 into the packages collection.agc5-0/+119
Provided in PR 12581 by Ben Collver (collver@linuxfreemail.com) MemMgr is a fairly trivial memory management library. There is little it does that cannot be done using routines in the C library. (In fact, allocation and disposal is implemented using C library routines.) The purposes of MemMgr are two- fold. (i) Minimize configuration burden on applications that dynamically allocate memory. For instance, malloc() on some systems returns a char pointer; on others it returns a void pointer. The MemMgr library routines encapsulate system-specific configuration differences and exports a fixed interface which is system-indepen- dent. Once you compile and install it, you just use it without thinking about whether your UNIX is System V or BSD inspired. (ii) Provide two parallel sets of allocation routines which either return NULL (for applications which want to check) or panic (for applications which simply want to die) on allocation failures. Panicking is implemented using the ETM library, which introduces a dependency on the ETM distribution. So be it. I use ETM for all my programs anyway