summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2002-11-19Update to Nov. 17 release. From the changelog:schmonz4-22/+12
* dlfcn.c: Patch from Max Horn applied. Fixes some path issues, and code cleanup. * dlfcn.c: Lookup the NSAddImage etc stuff that was added in OS 10.1, so that the binary can be used on 10.0. It may or may not work, don't have a 10.0 system to try it. * dlfcn.c: Moving things around. * dlfcn.c: bugfixes * Makefile, README: Removed any and all finkisms. * dlfcn.c, Makefile: Prepend the underscore by default for dlsym. * Makefile: Made Makefile bsdmake compatible. * dlfcn.c dlfcn.h: First attempt at adding dladdr Not in the changelog: * added configure script * added manual pages
2002-11-18Add and enable aap.cjep1-1/+2
2002-11-18Initial import of A-A-P 0.104 into the NetBSD packages collectioncjep5-0/+216
as devel/aap. A-A-P is a replacement for make. It makes it easy to locate, download, build and install software. It also supports browsing source code, developing programs, managing different versions and distribution of software and documentation. A-A-P is currently under development and as such not everything works yet. Use with care. A-A-P is maintained by Bram Moolenaar.
2002-11-18The USB API found in FreeBSD originated in NetBSD. Correct theschmonz2-1/+15
publicity statement in the configure script.
2002-11-18Update to 0.1.7. Changes from 0.1.6a:schmonz4-11/+10
Fix up error codes for darwin port. Make sure short transfers are allowed on BSD port. Fix bug when finding new busses during usb_find_busses(). Added two new functions: usb_get_string() and usb_get_string_simple(). Documentation updates. Added LICENSE file. Various other cleanups.
2002-11-17fix shared library names on FreeBSD to be like NetBSD and Solaris ingrant3-10/+34
preparation for FreeBSD pkgsrc support. bump PKGREVISION. ok'd by nick.
2002-11-17Fix TERMINFODIR handling on Solaris. Closes pkg/18622salo1-4/+10
2002-11-17Update to version 4.3.seb10-32/+51
Package changes: fix PKGLOCALEDIR botch reported by various people. Many thanks to Lubomir Sedlacik <salo at Xtrmntr dot org> for the patches in PR 18616! Changes in version 4.3: 4.3 (14 November 2002) * Language: . new command @tie{} to do a real tie (unbreakable interword space). * makeinfo: . html output for @defun and friends now has font changes. . html output has some class attributes. * texinfo.tex: . new Italian translations, txi-it.tex. . pdf bookmarks for unnumbered sections work. . type name for @defun and friends no longer extends into margin. * info: . automatic-footnotes now off by default, for emacs compatibility. . crash when MALLOC_CHECK_=2 fixed. * install-info: . new option --infodir synonym for --info-dir, for compatibility with the Debian install-info. . support for bzip2-compressed files. * texindex: . omit initial if the entire index is under one characters. * Distribution: . development sources now available under CVS, see http://savannah.gnu.org/projects/texinfo/ . Turkish message translation. . gettext 0.11.5, autoconf 2.54, automake 1.7.1.
2002-11-15Update to 2.07.wiz3-11/+12
Changes: * Fix C++ warnings in gtype.h [Dom Lachowicz] * Fix g_type_fundamental_next() [Tim Janik] * Fix various missing includes of config.h [Morten Welinder] * Handle main loop initialization before g_thread_init [Sebastian Wilhelmi] * Various 64-bit fixes [Manish Singh] * Fix GPoll on Win32 [Tor Lillqvist, Herman Bloggs] * Fix bug with buffering on UTF-8 IOChannels [Daniel Elstner] * Misc bug and build fixes [Soren Andersen, Gustavo Carneiro, Tor, Tim, Havoc Pennington, Matthias Clasen, Sebastian Rittau, Masahiro Sakai, Arvind Samptur, HideToshi Tajima, Owen Taylor] * Updated and new translations (be,cs,de,*fa,it,lv,pt_BR,tr)
2002-11-15Update to 2.56. Set MAINTAINER to me.wiz3-13/+9
* Major changes in Autoconf 2.56 -*- outline -*- Released November 15th, 2002. One packaging problem fixed (config/install-sh was not executable). * Major changes in Autoconf 2.55 Released November 14th, 2002. Release tips: Have your configure.ac checked by autoscan ("autoscan"). Try the warning options ("autoreconf -fv -Wall"). ** Documentation - AC_CHECK_HEADER, AC_CHECK_HEADERS More information on proper use. - Writing Test Programs This sections explains how to write good test sources to use with AC_COMPILE_IFELSE etc. It documents AC_LANG_PROGRAMS and so forth. - AC_FOO_IFELSE vs. AC_TRY_FOO Explains why Autoconf moves from AC_TRY_COMPILE etc. to AC_COMPILE_IFELSE and AC_LANG_PROGRAM etc. ** autoreconf - Is more robust to different Gettext installations. - Produces messages (when --verbose) to be understood by Emacs' compile mode. - Supports -W/--warnings. - -m/--make Once the GNU Build System reinstalled, run `./config.status --recheck && ./config.status && make' if possible. ** autom4te - Supports --cache, and --no-cache. - ~/.autom4te.cfg makes it possible to disable the caching mechanism (autom4te.cache). See `Customizing autom4te' in the documentation. ** config.status Supports --quiet. ** Obsolete options Support for the obsoleted options -m, --macrodir, -l, --localdir is dropped in favor of the safer --include/--prepend-include scheme. ** Macros - New macros AC_COMPILER_IFELSE, AC_FUNC_MBRTOWC, AC_HEADER_STDBOOL, AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM, AC_LANG_CALL, AC_LANG_FUNC_TRY_LINK, AC_MSG_FAILURE, AC_PREPROC_IFELSE. - Obsoleted Obsoleted macros are kept for Autoconf backward compatibility, but should be avoided in configure.ac. Running autoupdate is advised. AC_DECL_SYS_SIGLIST. - AC_DEFINE/AC_DEFINE_UNQUOTED We have to stop using the old compatibility scheme --that tried to avoid useless backslashes-- because Libtool 1.4.3 contains a AC_DEFINE([error_t], [int], [Define to a type to use for \`error_t' if it is not otherwise available.]) We have to quote the single quotes and backslashes with \. The old compatibility scheme saw that ` was backslashed, and therefore did not quote the single quote... Failure. Hence, Autoconf 2.54 is not compatible with Libtool. Autoconf 2.55 is, but in some cases might produce more \ than wanted. Please, note that in the future the same problem will happen with AC_MSG_*: use `autoreconf -f -Wall'. ** Bug Fixes - Portability of the Autoconf package to Solaris. - Spurious warnings caused by config.status. This bug is benign, but painful: on some systems (typically FreeBSD), warnings such as: config.status: creating Makefile mv: Makefile: set owner/group (was: 1357/0): Operation not permitted could be issued. This is fixed. - Parallel Builds Simultaneous executions of config.status are possible again. - Precious variables accumulation config.status could stack several copies of the precious variables assignments. ** Plans for 2.57 - ./configure <host> The compatibility hooks with the old scheme will be completely removed. Please, advice/use `--build', `--host', and `--target' only. - AC_CHECK_HEADER, AC_CHECK_HEADERS The tests will be stricter, please make sure your invocations are valid. - shell functions Shell functions will gradually be introduced, probably starting with Autotest. If you know machines which are in use that you suspect *not* to support shell functions, please run the test suite of Autoconf 2.55 on it, and report the results to bug-autoconf@gnu.org. - AC_MSG_* Special characters in AC_MSG_* need not be quoted. Currently, Autoconf has heuristics to decide when a string is escaped, or has to be escaped. This scheme is fragile, and will be removed; the only risk is uglified messages. Please, run `autoreconf -f -Wall' to find occurrences that will be affected.
2002-11-14buildlink1 -> buildlink2jlam5-20/+20
2002-11-14This file appears to be unused.jlam1-115/+0
2002-11-14This file appears to be unused now.jlam1-79/+0
2002-11-14gtk/buildlink.mk was the last user of glib/buildlink.mk.jlam1-70/+0
2002-11-14Reorder lines to placate pkglint.wiz1-3/+3
2002-11-11update cook to version 2.21. trolling the changelogs gives:mrg3-7/+10
- new cook_rsh program - new "fail" command - new "stripdots" command - fixes for the fingerprinting code - many build, source & doco fixes
2002-11-10fix MAINTAINER= Name <email> to only include email address.grant1-2/+2
2002-11-09Use buildlink2.wiz1-8/+10
2002-11-09Add buildlink2.mk.wiz1-0/+81
2002-11-09Fix PLIST.wiz1-1/+54
2002-11-09Add and enable gtoolkit-examplesrh1-1/+2
2002-11-09Initial import of gtoolkit-examples-0.9.5, a set of Objective-C examplesrh3-0/+28
for GToolKit.
2002-11-08Add and enable aegisagc1-1/+2
2002-11-08initial import of the aegis package, from Matthew at Aldous dot com in PR#18969:mrg4-0/+482
Aegis is a transaction-based software configuration management system. It provides a framework within which a team of developers may work on many changes to a program independently, and Aegis coordinates integrating these changes back into the master source of the program, with as little disruption as possible.
2002-11-07Sort.wiz1-2/+2
2002-11-06Place a defined(__NetBSD__) near a defined(__OpenBSD__) so that theatatat3-3/+20
avifile-devel pkg (among other things) can build again.
2002-11-06Make this build on 1.6 at least.sjg3-3/+17
2002-11-05Re-add lines accidentally removed in previous commit. Thanks wiz!jlam1-1/+7
2002-11-05- make this work with apache2martti3-6/+6
- buildlink2
2002-11-04Depend on latest kde1 package.wiz1-2/+2
2002-11-04Update to 0.14.0.wiz2-5/+5
According to the website, this fixes a 'couple silly yet fairly high- impact bugs'.
2002-11-04Add USE_X11=YES. Approved by jlam.wiz1-1/+3
2002-11-04Add and enable gnome2-libole2rh1-1/+2
2002-11-04Initial import of gnome2-libole2-2.2.8, a OLE2 streams parsing library forrh8-0/+130
GNOME2
2002-11-04Fix copy/paste error from libgtop: USE_X11 instead of USE_X11BASE.rh2-4/+4
2002-11-04Add and enable libgtop2rh1-1/+2
2002-11-04Initial import of libgtop2-2.0.0, a library to retrieve system information,rh19-0/+813
used in GNOME2
2002-11-04Update libgtop to 1.0.13. Changes include:rh6-127/+120
- a security fix we already had in patch-af - some additional localisations - moved header files to allow co-existence with GNOME2 - some minor pkglint cleanups
2002-11-02Update cpuflags to 0.37abs2-7/+7
Recognise more alpha CPU variants - from Christopher SEKIYA
2002-11-02Add and enable gal2rh1-1/+2
2002-11-02Initial import of gal2-0.0.7, the GNOME2 application layer libraryrh5-0/+287
2002-11-02s|${X11PREFIX}/var/lib|${SCROLLKEEPER_DATADIR}|rh2-5/+7
Include missing scrollkeeper buildlink2.mk where necessary
2002-11-01Bump the pth dependency to pth>=1.4.1nb5, which ensures that we have thejlam2-4/+4
latest set of fixes and changes to pth to make it look more like a real pthreads package.
2002-11-01Fix BUILDLINK_PKGSRCDIR. Closes PR 18877. Some cleanup while here.wiz1-7/+2
2002-10-31Fix the sdl-config script to return the correct libraries for linkingjlam7-121/+216
against libaa by querying the aalib-config script. Bump the PKGREVISION since this change is user-visible.
2002-10-31Fix BUILDLINK_DEPMETHOD (no quotes supported here).wiz1-2/+2
2002-10-31Fix gettext detection. Closes PR 18872.wiz1-2/+2
2002-10-30Add and enable glade2rh1-1/+2
2002-10-30Initial import of glade2-1.1.2, a user interface builder for the GTK2+rh4-0/+104
toolkit and GNOME2.
2002-10-30s/711/555/ for EXEMODE.skrll3-2/+17
Bump PKGREVISION.