summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2003-04-10make ${PAX} usage consistent:grant3-6/+6
- group 'zrw' and 'p' args, -s last - use the && operator consistently - strip unneeded parens - some whitespace cleanup
2003-04-09Add and enable yasm.jmmv1-1/+2
2003-04-09Initial import of yasm, version 0.2.0:jmmv5-0/+134
YASM is a complete rewrite of the NASM assembler under the "new" BSD License (some portions are currently under the GNU General Public License (GPL) or the GNU Lesser General Public License (LGPL)). It is designed from the ground up to allow for multiple assembler syntaxes to be supported (eg, NASM, TASM, GAS, etc.) in addition to multiple output object formats. Another primary module of the overall design is an optimizer module. Package provided in pkgsrc-wip by Juan RP.
2003-04-09Update tarball - forgot to bump the patchlevel.gehenna1-3/+3
2003-04-09cvsync-0.19.1gehenna2-6/+5
ChangeLog: 2003-04-08 MAEKAWA Masahide <maekawa@daemon-systems.org> * 0.19.1 * Fix a bug to fail to mirror a repository when no pre-existing files. * Fix a bug that list operations fail when pre-allocated buffers are exhausted. * Even if a server fail to parse a RCS file, just ignore it and continue to run. 2003-04-05 MAEKAWA Masahide <maekawa@daemon-systems.org> * Fix a bug that a packet length of protocol version is mistakenly calculated.
2003-04-07This distfiles hasn't been available from 'gd.tuwien.ac.at' for a long time.fredb1-2/+1
2003-04-07Update to version 5.5.seb3-70/+78
Package change: $PKG_SYSCONFDIR/ctags.conf added as glogal, configuration file, parsed before /etc/ctags.conf, /usr/local/etc/ctags.conf and $HOME/.ctags Changes since version 5.4: ctags-5.5 (Tue Apr 1 2003) * Changed kind indicator for methods from 'f' to 'm' [Tcl]. * Changed tags within interfaces to be disabled by default (like prototypes in C/C++) [Fortran]. * Removed explicit descriptions of individual --<LANG>-types options from --help output. See new --list-languages and --list-kinds options. * Removed explicit list of supported languages and supported tag kinds and mapping patterns from man page. See new --list-languages, --list-kinds, and --list-maps options. * Renamed --<LANG>-types option to --<LANG>-kinds (still accepts old name). * Added --list-kinds option. * Added --list-maps option. * Added --list-languages option. * Added support for dimensioned variables, contributed by Simon Bohlin [ASP]. * Added support for C# language. * Added support for Erlang language, contributed by Brent Fulgham. * Added support for HTML language files. * Added support for JavaScript language files. * Added support for SML (Standard ML) language, contributed by Venkatesh Prasad. * Added mapping for .plx to Perl. * Added tags for autocommand groups [Vim, Patch #664685]. * Added support for numerous language extensions [Fortran]. * Added '$', 'D', and 'd' in column 1 as comment characters [Fortran]. * Added special handling of --options=NONE to disable automatic reading of options from configuration files or environment. * Added check for case-insensitive filenames to configure. * Fixed problem with lower case <SID> tag [Vim, Bug #657327]. * Fixed problem recognizing indented code [Vim, Patch #664685]. * Fixed problem with infinite loop in certain comments [PL/SQL, Bug #629115]. * Fixed problem of incorrect extension field [C, Bug #639639]. * Fixed problem of empty scoping extension field [C, Bug #639644]. * Fixed missing tags for functions split across lines [PHP, Bug #681824]. * Fixed missing tags for nested subprograms using 'contains' [Fortran, Bug #670433]. * Fixed missing tags when variable has same name as keyword [Fortran]. * Fixed spurious tag when an array-spec occurs within an entity-decl [Fortran]. * Fixed mishandling of multiline raw strings [Python, Bug #699171]. * Fixed missing scope extension field on namespaces [C++, C#, Bug #665086]. * Fixed several bugs causing missed tags [Fortran]. * Fixed problem with --langmap option preventing clearing of map [Bug #688442]. * Fixed recognition of Unicode-8 characters [Java]. * Fixed man page errors and omissions. * Fixed bug in readFieldValue() in readtags library. * Fixed bug in option parsing in readtags command-line program. * Fixed portability problems with DJGPP [Bug #692569]. * Fixed portability problems with Cygwin.
2003-04-05Remove ONLY_FOR_PLATFORM line. It works on any platformjtb1-3/+1
supported by lang/icon.
2003-04-04cvsync-0.19.0gehenna2-5/+5
ChangeLog: 2003-04-04 MAEKAWA Masahide <maekawa@daemon-systems.org> * 0.19.0 * HEADS UP: Change Cvsync Version Exchange Protocol If you use the old versions, please upgrade to 0.19.0 or higher. * Improve the performance to update sub-collection. When a server receives an update request of collections defined as sub-collection, the server sends differences of the sub-collection with a relative prefix based on the `super' collection. The client can update only that directory. * REMARK: AIX 4.3.3 without IPv6 BSD/OS 4.2 Cygwin 1.3.22 without IPv6 FreeBSD/i386 5.0-CURRENT (as of 2003/03/12) FreeBSD/i386 4.7-STABLE (as of 2003/03/05) FreeBSD/sparc64 5.0-CURRENT (as of 2003/03/05) Mac OS X NetBSD/alpha 1.6O with native pthreads NetBSD/i386 1.6P with native pthreads NetBSD/i386 1.6L with GNU Pth NetBSD/macppc 1.6M with native pthreads OpenBSD/i386 3.2-stable OpenBSD/sparc64 3.3-beta Solaris 8/SPARC Works fine on these platforms. 2003-04-01 MAEKAWA Masahide <maekawa@daemon-systems.org> * Make this compile on AIX 4.3.3
2003-04-03Update to 1.4.9:wiz2-5/+5
Changes since 1.4.8 1. src/slarray.c: superfluous call to SLclass_add_math_op removed (Michael Noble) 2. src/slang.c: foreach (NULL) using("next"){} foo (); caused _NARGS=1 in foo. 3. src/slarrfunc.c: Fix to prevent sum(NULL) from causing a core-dump. 4. src/slimport.c: import (module, "") made equivalent to import(module,"Global"); This way, import(module, current_namespace()) will work when the current namespace is anonymous. 5. src/slospath.c: Several users have requested that I add the ability to define a load path and use that path when loading interpreter files. To this end, several new functions were added to the API: char *SLpath_get_load_path (void); int SLpath_set_load_path (char *path); /* Get and Set the path to be searched for files */ int SLpath_get_path_delimiter (void); SLpath_set_path_delimiter (int delimiter); /* Get and set the character delimiter for search paths */ int SLang_load_file_verbose (int verbose); /* if non-zero, display file loading messages */ New intrinsics include: set_slang_load_path get_slang_load_path path_get_delimiter These functions, nor the intrinsics have an effect on applications that use SLang_load_file_hook or SLns_load_file_hook for loading files. The change should be transparant to applications that use the stock load file mechanism. The main difference is that if one attempts to load a file with no extension, e.g., "foo", but the file does not exist, then the interpreter will try to load the more recent of "foo.sl" and "foo.slc". See src/slsh.c for how the functions may be used. 6. slsh/slsh.c: Updated to use the new search path code outlined above. Also, slsh is distributed with a collection of general purpose slang functions, including jed's provide/require functions. See slsh/README for more information. 7. doc/tm/cslang.tm: Modified the section describing the implemetation of intrinsic functions in an effort to clarify the discussion. 8. src/slang.c: tiny memory leak resulting from peephole optimzations added earlier found and fixed. 9. src/slarrmisc.c: new intrinsic: cumsum computes the cumulative sum of an array via the new SLarray_map_array function.
2003-04-03User SDL_mixer/SDL_image instead of SDL-mixer/SDL-image.wiz1-4/+5
Bump PKGREVISION.
2003-04-03Added support for NetBSD/vax.gson3-3/+18
2003-04-03Updated to version 1.4.gson5-92/+18
2003-04-01INET6 needs to be disabled on solaris9 as welljmc1-2/+2
2003-04-01Update KDE to 3.1.1.markd3-6/+7
Changes: arts * Several memory corruption fixes. kdelibs * kdialog: Fix screen numbering problem for centerOnScreen() static method * kprogress: Fix math problem in displaying correct percentage for large numbers * kio_http: Fix data processing for webdav(s) listing of directories and files * kate: Many small bugfixes, including: + Fixed code completion drop-down box position + Fixed "wrap cursor disabled" bugs + Fixed vertical scrollbar middle mouse behaviour + Fixed remove whitespace feature + Now clears the redo history when it is irrelevant + Fixed crash after starting up with a non-existant directory in the file selector history * kparts: Fix extension of transparently downloaded files, this fixes ark (used to display temp file instead of archive content) * klauncher: Fixed support for "Path=" entry in .desktop files. This entry can be used to specify a working directory. * kio: Don't let ChModJob's -X emulation interfere with mandatory file locking. * kdeui: Fix for alternate background coloring in Konqueror list views. * kdeui: Fix to prevent an event loop in conjunction with Qt 3.1.2. * kio/bookmarks: Properly handle multiple shown bookmarks with the same URL; fixes crash on exit in Konqueror when bookmarkbar is on and some bookmarks points to the same place * kstyles: Handle focus indicators on label-less checkboxes better * kdeprint: Don't freeze when there is no route to the selected CUPS server * SSL: add support for OpenSSL 0.9.7 * SSL: ADH ciphers are now explicitly disabled in all cases * SSL: new CA root certificate added * Several Xinerama related fixes * QXEmbed fixes for various situations that don't handle XEMBED well * Java on IRIX with SGI 1.2 VM is fixed * khtml: Several major bugfixes, partially incorporated fixes from Safari as well. kdeaddons kdeadmin * Linux Kernel Configurator: Add details about the lightbulb icon's meaning * Linux Kernel Configurator: Support for more incorrect kernel configuration files kdeartwork kdebase * kcmshell: Restored backwards compatibility wrt KDE 3.0 module names * klipper: Escape "&" everywhere. * konsole: + Removed "get prompt back"-hacks, don't assume emacs key shell bindings. + Fixed usage of background images with spaces in the filename. + Profile support fixes (disabled menubar etc.) + Bookmarks invoked from "Terminal Sessions" kicker menu now set correct title. + Fixed a problem with the "Linux" font that prevented it from being used with fontconfig. * kdesktop: Made desktop menus pop up in unused Kicker space work. * kicker: Fixed empty taskbar sometimes showing scroll buttons. * konqueror: + Various startup performance improvements + Fix crash when sidebar tree expands hidden directory + Fix crash when config button hidden from config button's menu + Extensive fixes to Netscape plugins, fixing crashes and plugin support + Changes to default preview settings, making the defaults safer on various platforms * Java configuration module: Make it possible to properly configure Java in all cases * Previews: Fixed a privacy issue where previews of HTML files could access files or hosts on the network. kdeedu * KStars: + Fixed bug #51708: No longer exits if starting position is below horizon (only affected some systems) + Fixed bug #52205: Country of Lhasa is China, not Tibet. + Fixed too-narrow coordinates field in statusbar. + Fixed bug in "length of day" calculator module; it now properly accounts for latitude and longitude kdegames * Atlantik: Many small bugfixes, including: + Better handling of incoming messages + Fixed token animation * kbackgammon: Common crash fix. kdegraphics * KIconEdit: Fix the ellipse/circle tool not to leave any "holes" in the drawings * Kooka: Some UI crashes fixed * KViewShell: Default paper size is fixed * KGhostView: Fixed wheel-mouse scrolling kdemultimedia * KsCD: + Stopped KsCD from pausing after tracks in random mode + Correctly associate extra CDDB information with tracks + Support non-Latin encodings properly in CDDB entries and elsewhere + Proper systemtray behaviour + Updated key accel code to avoid depricated calls * Movie previews have been removed due to severe unresolved stability problems kdenetwork * Desktop Sharing server (krfb): + fix problems on X11 servers with 8 bit depth + fix problems on X11 servers with big-endian framebuffer + allow X11 servers without XShm (thin clients). Warning: requires a lot of bandwidth + remove read timeouts. This should solve problems with some clients that got disconnected after a minute of inactivity (but increases the time to detect dead clients) + fix problem with clients that support both RichCursor and SoftCursor encodings (like krdc from HEAD) * Desktop Sharing client (krdc): + fix: when an error occurred in fullscreen krdc did not restore the original resolution + fix: krdc stopped to repaint the framebuffer after a disconnect while the error dialog was displayed + the quality setting in medium quality mode has been increased because the original setting looked too bad with Keramik kdepim * KOrganizer bug fixes: + Use correct default duration for events crossing a day boundary (#53477). + Correctly save category colors (#54913). + Don't show todos more than once in what's next view. + Include todos in print output of month view (#53291). + Don't restrict maximum size of search dialog (#54912). + Make cancel button of template selection dialog work (#54852). + Don't break sorting when changing todos by context menu (#53680). + Update views on changes of todos directly in the todo list (#43162). + Save state of statusbar (#55380). * knotes: Escape "&" in note titles kdesdk * Cervisia: + Fixed line break in protocol view + Fixed timestamp for files that are not in cvs (#55053) + Fixed handling of Cervisia's options like 'Update Recursively' when run as embedded part in konqueror (#55665) kdetoys * kworldclock: Fixed that all clocks show the same time. * kweather: Made it work again with non-english locales. (#52147) * kweather: Prevent KWeather from looping and freezing Kicker when not connected to the internet.(#49191) kdeutils * klaptopdaemon: Fix serious stalling problems on GNU/Linux with ACPI * kcalc: Now a KMainWindow instead of a KDialog to fix various UI inconsistencies * kdf: Support escapes in fstab quanta * Bugfixes: + Allow resizing of the main window even with large user toolbars [#53230] + Insert valid DTD definitions [#53274] + Honor the View Default settings from Settings->Configure Editor [#53569] + Be less braindead regarding the Show DTD Toolbar setting [#53739] + Be able to select also directories in tag dialogs [#54819] + Do not complain about text files being binary ones on a system with broken mimetypes [#54924] + Bring up the "File Changed" dialog only, when the file content has changed[#55678] + Select Tag Area behaviour fixed for optional tags + Insert non-translated string in CSS code parts + Insert "border-top", "border-right", etc. correctly in CSS + Don't quote the script line more than once in the action configuration dialog + Memory leak fixed: editor parts were not deleted when a file was closed + Fix insertion of "img" tags in HTML documents + Upload/rescan project/add to new project tree view behaviour fixed + Fix renaming of file in the Project Tree, when a file with the new name was already present in the project + Rename only what has to be renamed in the project and enable project saving after a rename + Use the correct encoding for newly created files + Saving of Author and E-Mail project options was broken in some cases + Fix the numbering of new documents + Fix the execution of actions + Fix crash when deleting an action + Insert valid single tags from the toolbar * Enhancements: + Show the tag attributes (Alt-Down) menu lower than the current line + "Insert in cursor position" for script actions replaces the selection if there was some text selected + New DCOP interface (WindowManagerIf) added to enable the modification of the opened documents from a script + DTD for Quanta tags (DTD definition) added + XHTML 1.0 Strict DTD added
2003-04-01Update Gorm to 0.2.6. Changes are bugfixes only.rh3-6/+23
2003-04-01cvsync-0.18.0gehenna2-5/+5
ChangeLog: 2003-04-01 MAEKAWA Masahide <maekawa@daemon-systems.org> * 0.18.0 * Implement a new keyword 'super', which allows to define sub-collections of a collection. For example: collection { name netbsd release rcs prefix /cvsroot ... } collection { name netbsd-pkgsrc release rcs prefix /cvsroot/pkgsrc super netbsd } For the collection `netbsd-pkgsrc', a client gets only /cvsroot/pkgsrc part of the whole of NetBSD CVS repository (/cvsroot). When `super' is specified as shown above, 'nofollow' and 'umask' of the collection `netbsd-pkgsrc' with `super' are inherited from the collection `netbsd'. When a scanfile is also specified in the collection `netbsd', the collection `netbsd-pkgsrc' employs the corresponding entries in the parent's scanfile. Thus, using `super' keyword, only a scanfile for the top of sub-collections is needed to use the scanfile functionality when sub-collections of a collection are defined. It makes the use of a scanfile more efficient. 'super' can be specified recursively (i.e. a sub-collection can be the parent of another sub-collection). (Thanks hrs AT FreeBSD DOT org)
2003-04-01Update gnustep-base to 1.6.0.rh4-15/+18
Noteworthy changes in version `1.6.0' ===================================== * More MinGW support * New MacOSX compatible methods. * The Base Additions library compiles on native OSX. * autogsdoc produces better, cleaner docs. * Built-in garbage collecting classes. * Any many many bug fixes and minor improvements.
2003-04-01Update gnustep-objc to 1.2.3. Changes are bugfixes only.rh3-8/+7
2003-04-01Update gnustep-make to 1.6.0. Changes include:rh4-9/+9
Make now configures by default for only one system. To compile and run GNUstep for multiple platforms from the same directory, use the configure argument -enable-multi-platform. * Auto-build def file for DLLs * Work natively on MacOSX systems. Now use apple-apple-apple instead of nx-nx-nx on OSX systems. * More efficient checks for re-making a project.
2003-03-31Upgrade to 3.1, a bug-fix release. (Not much more information availablejschauma4-28/+27
from the website.)
2003-03-31Also remove screen.teraterm on solaris, as it depends on the screen entry.bouyer2-3/+4
2003-03-30cvsync-0.17.2gehenna2-5/+5
ChangeLog: 2003-03-31 MAEKAWA Masahide <maekawa@daemon-systems.org> * 0.17.2 * Fix a bug that the fallback of file compare algorithm doesn't work. * Fix a bug to calculate the length of file name in Attic.
2003-03-30Don't use silly names for man pages, even if on Debian GNU/Linux.jschauma2-1/+19
2003-03-30As with Solaris:jschauma1-2/+3
The IPv6 patch doesn't go well with Linux idea of struct sockaddr, so disable IPv6 for the time being.
2003-03-29Clean up freetype2 requirements so Xft2 and fontconfig also require the rightjmc1-3/+1
version via buildlink'ing
2003-03-29Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.jmmv60-146/+120
2003-03-29Add empty patch target.wiz1-1/+3
2003-03-29Provide a do-extract rule that puts the 5.0 sdk into a subdir (as it used tojmc1-1/+12
extract that way)
2003-03-29Update for latest update of sdk50 from palmjmc1-3/+3
2003-03-29cvsync-0.17.1gehenna2-5/+5
ChangeLog: 2003-03-29 MAEKAWA Masahide <maekawa@daemon-systems.org> * 0.17.1 * ANNOUNCE: Public cvsync service cvsync.allbsd.org provides the distribution and source trees of FreeBSD, NetBSD, OpenBSD, OpenDarwin, XFree86, and TenDRA via cvsync. URL: http://www.allbsd.org/#pub-cvsync * mk/*.mk Make compile on old BSDs. 2003-03-28 MAEKAWA Masahide <maekawa@daemon-systems.org> * Fix signed vs unsigned problem.
2003-03-28Remove unnecessary empty lines.wiz1-1/+0
2003-03-28NO_PATCH is deprecated, says pkglint. Remove it.wiz7-14/+7
2003-03-28PKGREVISION++ after last fix for irix.jschauma1-2/+2
2003-03-28cvsync-0.17.0gehenna2-5/+5
ChangeLog: 2003-03-28 MAEKAWA Masahide <maekawa@daemon-systems.org> * 0.17.0 is out. * HEADS UP: Change Collection Exchange Protocol To make add the new release type easy, the protocol to exchange collections list is changed. All servers/clients SHOULD be updated to 0.17.0 or higher. * Fix a bug to calculate the symbolic link path name length. (noticed by naddy AT OpenBSD DOT org) 2003-03-27 MAEKAWA Masahide <maekawa@daemon-systems.org> * New release type: list Retrieve the collections list provided by the server. * Scanfile (client) If the scanfile is specified and that doesn't exist, it's generated automatically at the stage of loading the configuration file.
2003-03-27Revert last after libtool now behaves as expected.jschauma1-7/+1
2003-03-27Do the right thing on irix and use version=sunosjschauma2-5/+14
as recommended by Nick Hudson.
2003-03-27Make this install using the correct major under Irix. Oddly, libtool determinesjschauma1-1/+7
the right version for most other packages (AFAICT), but this package seems to be different.
2003-03-26cvsync-0.16.1 is out.gehenna2-5/+5
ChangeLog: 2003-03-27 MAEKAWA Masahide <maekawa@daemon-systems.org> * 0.16.1 is out. * mk/*.mk Make compile on cygwin completely.
2003-03-26libsmpeg is linked against libintl, so include gettext-lib's buildlink2.mkwiz1-1/+2
to avoid build failures from packages using this package. Debugged by Quentin Garnier, thanks!
2003-03-26cvsync-0.16.0 is out.gehenna2-5/+5
ChangeLog: 2003-03-26 MAEKAWA Masahide <maekawa@daemon-systems.org> * 0.16.0 is out. * Scanfile (server) The empty scanfile is acceptable. * The symbolic link is fully supported. Client: Never follow the symbolic link. Server: If 'nofollow' is specified in a 'collection' section, don't follow the symbolic link. The default is off, i.e. follow the symbolic link.
2003-03-25cvsync-0.15.2 is out.gehenna2-5/+5
ChangeLog: 2003-03-25 MAEKAWA Masahide <maekawa@daemon-systems.org> * 0.15.2 is out * mk/*.mk Make compile on cygwin (cvscan/rcscan/rcscmp only). cvsync{,d} depends on the existence of getaddrinfo()/getnameinfo(). The latest cygwin (1.3.22-1) doesn't have these APIs, so can't compile them yet.
2003-03-25cvsync-0.15.1 is out.gehenna2-5/+5
ChangeLog: 2003-03-24 MAEKAWA Masahide <maekawa@daemon-systems.org> * 0.15.1 is out * Scanfile (server) Implement the experimental server-side scanfile feature. * REMARK: the Performance When the scanfile feature is enabled on both server/client, the update procedure is done in 3sec (best) - 40min (worst).
2003-03-24Update ruby-mode package to 1.6.8, based on ruby 1.6.8.taca1-3/+3
This is miscellous bug fixes. See ChangeLog file in ruby-base package in detail.
2003-03-24Update ruby-readline package to 1.6.8, ruby 1.6.8 base.taca1-5/+3
Change is checking stdin is really terminal and if not raise exception.
2003-03-24use config.h and friends in man/tgexinfo2man.c, fixes build ongrant2-1/+18
FreeBSD 5 where malloc.h exists but should not be used.
2003-03-23Cvs' IPv6 patch does not like Solaris 8's getaddrinfo().seb1-2/+2
So disable IPv6 support on this system.
2003-03-23switch order of patching autoconf.texi and autoconf.info so thatgrant3-21/+21
the build process doesn't try and fail to rebuild autoconf.info. noted by jmc.
2003-03-22Fix build on Darwin, using patch in PR pkg/20396 by Yves de Champlain.jmmv1-1/+7
2003-03-22Remove obsolete "-y" flag from sort call; bump PKGREVISION.wiz3-2/+17
Patch from Istvan Marko in PR 19425.