Commit graph

65729 commits

Author SHA1 Message Date
wennmach
69bfc8b290 Add and enable p5-CGI-Session 2004-08-19 14:14:05 +00:00
wennmach
c072691d71 Initial import of p5-CGI-Session, a Perl5 module providing session
management across HTTP requests.
2004-08-19 14:12:27 +00:00
schmonz
5e4c9f8b07 Note getmail update. 2004-08-19 14:04:13 +00:00
schmonz
412c12ae75 Update to 4.0.12. From the changelog:
-forgot to add the new Message attribute (from 4.0.11) to its slots
  declaration.  Fixed.
2004-08-19 14:03:41 +00:00
sketch
050553a290 New distfile actually appears to be 8.0.3.526, and requires libXm. Add a
dependancy on suse_openmotif, and bump PKGREVISION.
2004-08-19 12:51:06 +00:00
sketch
346d7fef55 Update the distfile links on the real.com site, as the previous ones were
removed recently.  The rp8 distfile name and size have changed, but appear to
be the same version (8.0.3.421).

Many thanks to David Mallinson of Real who happened to be passing by.
2004-08-19 12:25:16 +00:00
schmonz
f0beae5ce1 Note rioutil update. 2004-08-19 03:35:02 +00:00
schmonz
6c0e704701 Update to 1.4.6. From the changelog:
Jan  20 2004:
        - Added create_playlist_rio for newer Rio players in librioutil.
        - Added -j option to rioutil.
Jan  13 2004:
        - Added support for downloading from S-Series Rios with firmware
	    version 2.0 or higher.
        - Fixed a bug in mp3.c which cause songs to upload short.
Jan  10 2004:
        - Fixed bugs in mp3.c and id3.c.
        - Added bitrate to -l option
2004-08-19 03:33:35 +00:00
ben
34aec8bd42 Make note of cfengine2 update. 2004-08-18 23:12:44 +00:00
ben
1c6cdbfda0 Update cfengine2 to version 2.0.10. Addresses PR#26614.
Notable changes include:

Persistent class protection added to returned remote vrpc calls to
prevent meaningless multiple replies.

Change added to IPRange to avoid possible bootstrap problem with
unconfigured resolver.  IP address setting was contingent on having DNS.
Misplaced } fixed in nameinfo

EmptyResolvConf removed only nameserver entries. Now removes everything.

Due to an error in constructing 2.1.9 some of the advertised
changes below were not included. They are included in this version.

Workaround error message for parser bug with nested variables.

WORKDIR/state/allclasses file caches all class date during cfagent
execution, just like the $(allclasses) variable, but the file can grow
much larger without overflow.

.cfengine -> .cfagent in non-root public keys (some missing conversions)
Expand buffer incorrectly zeroed out public name key causing empty
keyname in RSA dialogue

Old style bind reverse lookup added to Hostname2IPAddress
2004-08-18 23:03:44 +00:00
schmonz
c1ba1e434b Eh, what the heck, I seem to be the maintainer. 2004-08-18 21:54:07 +00:00
schmonz
77278fc108 Note getmail update. 2004-08-18 21:53:46 +00:00
schmonz
5e13c4ea44 Update to 4.0.11. From the changelog:
-change oldmail file writing to save a few bytes of disk space
  -documentation additions.
  -Python's standard library email.Message().flatten() could barf on certain
  types of badly mis-formatted messages (instead of the during instantiation,
  like the /other/ buggy cases).  Hope this is fixed in Python 2.4.  Developed
  a work-around for getmail.  Thanks:  Juergen Nagel.
  -changes to "normal" output of getmail to make it slightly less verbose.
2004-08-18 21:52:43 +00:00
minskim
c3bfb33a89 Update HOMEPAGE. 2004-08-18 21:44:08 +00:00
minskim
507aa8eb9a Add and enable Cg-compiler. 2004-08-18 21:14:58 +00:00
minskim
c16dbe22f6 Import Cg-compiler-1.2.1 from pkgsrc-wip. Packaged by xtraeme@ and
updated by me.

This is the NVIDIA Cg compiler/toolkit for Linux that includes:

    o NVIDIA Cg toolkit documentation
    o NVIDIA Cg compiler
    o NVIDIA Cg runtime libraries for OpenGL
    o Example shaders written in the Cg language
    o Example applications that use the Cg runtime to manage Cg programs
2004-08-18 21:12:50 +00:00
recht
8ac502ba14 Note update of scons to 0.96. 2004-08-18 20:29:35 +00:00
recht
30e4264f29 update to SCons-0.96
IMPORTANT:  Release 0.96 contains the following interface changes:

  - All Builder calls now return a *list* of Nodes, even when the Builder
    only builds one file.  This may require SConscript file changes if
    you were manipulating the return values from Builders.
  - The SConsignFile() function now uses a different internal database
    format by default.  This will cause a rebuild when you upgrade to
    0.96 unless you modify your SConsignFile() call.
  - The internal format of .sconsign files has been changed.  The change
    was coded to be backwards-compatible, but there might be corner
    cases that cause warnings about "ignoring corrupt .sconsign files"
    and rebuilds when you use SCons 0.96 for the first time in an
    already-built tree.
  - The scan_check function that can be supplied to a custom Scanner now
    must take two arguments, the Node to be checked and a construction
    environment.  It previously only used the Node as an argument.
  - The internal "node_factory" and "scanner" keyword arguments have
    been removed from the Builder() function, in favor of separate
    "target_factory," "source_factory," "target_scanner" and
    "source"scanner" keywords, which are now documented.
  - The Scanner add_skey() function has been dropped in favor of using
    construction variables for the lists of file suffixes known to
    a Scanner.
  - File name extensions that contain all digits are now assumed to
    be version numbers and treated as part of the file basename.
  - The env.Append() and env.Prepend() methods have been changed to
    behave like the rest of Python when either argument is a UserList.

  See the release notes for more information about these changes.

This release adds the following new features:

  - A new --debug=explain option tells SCons to report the reason(s)
    why it thinks it must rebuild something.
  - New Moc() and Uic() Builders provide more explicit control over
    Qt builds, plus new construction variables to control them:
    $QT_AUTOSCAN, $QT_DEBUG, $QT_MOCCXXPREFIX, $QT_MOCCXXSUFFIX,
    $QT_MOCHPREFIX, $QT_MOCHSUFFIX, $QT_UICDECLPREFIX, $QT_UICDECLSUFFIX,
    $QT_UICIMPLPREFIX, $QT_UICIMPLSUFFIX and $QT_UISUFFIX.
  - Support for Fortran 90 and Fortran 95 has been added.
  - The newer "ifort" versions of the Intel Fortran Compiler for Linux
    are now supported.
  - New functions have been added to return platform-independent Actions
    that Chmod(), Copy(), Delete(), Mkdir(), Move() and Touch() files
    and/or directories.
  - A new Execute() function can now execute Actions directly at
    SConscript-read time.
  - A new $RPATH variable has been added that specifies a list of
    directories for the GNU and IRIX linkers to search for shared
    libraries.
  - New $CPPSUFFIXES, $DSUFFIXES, $FORTRANSUFFIXES and $IDLSUFFIXES
    variables have been added that make it easier to arrange for
    additional file suffixes to be scanned by the default Scanners.
  - A new Flatten() function can be used to turn nested lists of Nodes
    (or other arguments) into a flat list.
  - A new --debug=presub option prints the commands to be executed before
    their construction variables are expanded.
  - A new .win32 Node attribute will expand file names with Windows
    backslash path separators on any system.
  - A new ARGLIST variable makes it possible to fetch keyword=value
    arguments in the order specified on the command line.
  - Support has been added for the .dylib shared library suffix
    and -dynamiclib linker option on Mac OS X (darwin).

For a complete list see the included CHANGES.txt.
2004-08-18 20:27:42 +00:00
schmonz
7e7b2bb879 + rioutil-1.4.6 2004-08-18 19:05:20 +00:00
minskim
fed181f436 Make this package build on Linux.
- Include time.h to use struct tm.
  - Define LINUX_NAMLEN on Linux to avoid using d_namlen in struct dirent.
2004-08-18 18:40:36 +00:00
ben
f51fc2ab44 Clean up ivan deinstall process. Leave bones and highscores behind,
like is done in nethack-lib.
2004-08-18 17:52:25 +00:00
cjep
b3d0276c03 note update of mail/nail 11.3 2004-08-18 14:32:26 +00:00
cjep
ffc58ddd23 Update of mail/nail to 11.3:
[11.3] released 8/18/04
* When an IMAP mailbox is opened in threaded/sorted mode and new messages
  arrive or old ones are deleted, the internal thread structure is now
  properly rebuilt. The previous failure to do so made nail dump core in
  most cases.
* The 'forward' command was fixed; it used an unitialized variable since
  release 11.2, possibly leading to segmentation faults (Bugreport by Bob
  Tennent).
* The behavior of the 'autoinc'/'newmail' variables regarding IMAP folders
  was changed. If both variables are unset, announcements are printed only
  if messages have been deleted on the server.
* The 'new'/'unread' commands now also work with IMAP folders.
* When a message is deleted or saved in disconnected mode, its cache entry
  is not removed until the message is actually removed from the server in
  online mode. This in particular means that saved or 'mbox'ed messages
  are still available in IMAP inboxes in disconnected mode until they have
  reached their target folder in online mode.
* When new messages were received in an IMAP mailbox after messages had
  been deleted in a previously visited IMAP mailbox, 'Expunged x messages'
  was erroneously printed.
2004-08-18 14:31:23 +00:00
adam
8f674b5035 Updated ProjectCenter to 0.4.0 2004-08-18 14:27:33 +00:00
adam
2cea2fa17b Changes 0.4.0:
* A lot of refactoring and cleanup was made
   * Some parts of interface were recreated using GORM
   * Most part of Project Inspector is completed
   * Finished Loaded Files and appropriate menu items
   * Stability issues fixed in Project Builder
   * Interaces fixes were made in Project Launcher
   * Added subprojects support
   * Preferences recreated and cleaned up.
   * Many browser fixes were made in Project Window
   * Much time was spent to fix stability problems
   * Added "Aggregate" project type
   * "Application" and "GormApplication" project types merged
     into "Application" project type
2004-08-18 14:26:27 +00:00
tv
52ca289400 Use LICENSE=no-commercial-use. 2004-08-18 14:25:04 +00:00
adam
e5ad15b6f3 Updated gnustep to 0.9.3, Gorm to 0.7.7 2004-08-18 14:04:51 +00:00
adam
e976b3b145 Changes 0.7.7:
* Important bugfixes in editor classes.
   * Rearranged some of the editor classes to be in the palettes which
     contain the classes they are responsible for editing
     (GormButtonEditor & GormTabViewEditor).
   * Image and Sound editors will now display system default images or
     sounds if they are available.
   * Document window now uses an NSToolbar (experimental).
   * Improved the layout of some of the inspectors.
   * Corrected some minor issues in the inspectors
   * Added code to allow NSTableView and NSOutlineView to show some data during testing
   * Gorm will now show an alert panel when a model fails to load or test properly.
2004-08-18 14:02:44 +00:00
adam
7a2b09999c Changes 0.9.3:
* A number of W32 window event enhancements
   * art backend glyph drawing with alpha enhancements.
   * libwraster is no longer checked for - image functions now in frontend
2004-08-18 14:01:57 +00:00
adam
5072eaa3fe Changes 0.9.3:
* Working NSToolbar implementation
   * New Mac OS X methods in NSView and other classes
   * Fixed some sheet handling problems.
   * Integrated gif, jpg, and png handling in front-end.
   * Added overridable button and frame drawing functions
   * Add some keyed decode/encoding to some classes
   * NSStringDrawing redesigned.
   * Much improved loading of gorm files
2004-08-18 14:01:14 +00:00
adam
5f437e3149 Changes 1.9.2:
* GSMime parsing ignores extraneous data
   * New log functions GSOnceFlag and GSOnceMLog
   * New class NSError
   * Multiple new function in GSObjCRuntime
   * NSProtocolChecker rewritten
   * autogsdoc support added for building frames
   * Binary incompatibility:  NSUnarchiver, GSIMapTable have new ivars added
2004-08-18 13:59:19 +00:00
adam
c66400ff13 Changes 1.9.2:
* Application and Bundles use the latest convention on Apple.
   * Improve/Simplify dependency checking when making docs
2004-08-18 13:58:27 +00:00
minoura
97a1236dff Update for recent dependencies/version. 2004-08-18 13:52:38 +00:00
minoura
33eb77d047 Remive ONLY_FOR_PLATFORMS:
- Now that we depend on devel/boehm-gc, we can rely on it.
 - Gauche is now reported to work on Linux/Alpha; it means LP64 problem is
  fixed.
2004-08-18 13:51:50 +00:00
wiz
045e920843 Note mplayer package updates. 2004-08-18 13:43:46 +00:00
wiz
69106eb2a0 Add dependency on libtheora; bump PKGREVISION. 2004-08-18 13:35:06 +00:00
taya
9f0c1232eb make this work again 2004-08-18 12:56:08 +00:00
adam
766e687668 Updated gmp to 4.1.3 2004-08-18 12:42:21 +00:00
adam
a90efb8f55 Changes 4.1.3:
* Bug fixes.
* mpz_export allows NULL for countp parameter.
2004-08-18 12:41:32 +00:00
wiz
52c9f7b0d3 + netscape-7.2. 2004-08-18 11:26:07 +00:00
wiz
c489d8b26e Note nut update to 10.2. 2004-08-18 11:23:09 +00:00
wiz
5eeee836c2 Update to 10.2:
This release fixes a computation error in the value for monounsaturated fat
when the user sets a fat level higher than the Daily Value.
2004-08-18 11:22:36 +00:00
jlam
31219901be USE_RSAREF2 is a yes/no variable. 2004-08-18 06:27:23 +00:00
schmonz
3a05906cf0 Works on Red Hat Enterprise Linux 3. 2004-08-17 23:38:21 +00:00
adrianp
88e35b4e86 - Note update of scanssh to 2.0 2004-08-17 19:45:28 +00:00
adrianp
8488b0fc47 - Update to scanssh 2.0
- ok'ed snj@/wiz@

From the ChangeLog:
Supports open proxy detection.
High performance by using libevent.
2004-08-17 19:43:22 +00:00
jschauma
85acf5592e Note update of drscheme to 207 2004-08-17 19:36:01 +00:00
jschauma
c197dcec6d Update drscheme to version 207. Changes since 202:
- Wizards for ProfessorJ added
	+ union wizard
	+ class wizard
- Check Syntax disabled in professorJ languages.
- Help Desk searching is now language-sensitive.
- Check syntax is now integrated (better) with the syntax
colorer.
- Check Syntax now distinguishes between require'd
and locally defined identifiers.
- added the ability to specify a command-line to the module
language.
- Help Desk's status messages are now in the frame and
it's break button is also in the frame (no more modal
dialog)
- Check Syntax now does a better job of navigating amoung
occurrences of a single variable. The popup menu lets you
go from a bound occurrence to a binding occurrence and
from a binding occurrence to the next binding occurrence.
Also added two keystrokes: c-x;n to go to the next bound
occurrence and c-x;b to to the binding occurrence.
- show menu => view menu, added show/hide for the toolbar
- multi file search works much bching languages color the portion of the program
that has not been tested in dark red (using a simple
syntactic coverage criterion -- dark red means untested,
but not dark red doesn't mean fully tested, of course).
- added a test coverage annotation for other languages in
the "details" portion of the languages dialog; run the
program and it colors the code that was executed in
green and code that wasn't executed in red.
- fixed up help desk fonts, so that the font size in help
desk is now linked to the font size in drscheme proper.
- added support for editor modes to drscheme.
- drscheme shows the stack via arrows on the program text
when an error occurs (and debugging is on)
- added to special menu item: "insert delta" (to mean
define) in parallel to the insert lambda menu item.
- framework's scheme-mode font changed to be in an editor
mixin.
- macos: drscheme doesn't quit when all windows are closed
anymoct -> supports multiple values using this syntax:
(-> integer? (values integer? integer?))
- parenthesis highlight color is now configurable
- integrated the module browser into the main drscheme
window. Use the show menu to open a panel on the lhs of
the drscheme window containing a DAG representing the
modules that are required (only works for programs in
modules).
- integrated Bruce Hauman's rewrite of the match.ss
library (ongoing).
- added arrows to check syntax that show the (syntactic)
tail structure of the program.
- fixed many many problems with Help Desk. Some of the
more interesting ones:
- manual downloading now works.
- bug report form is a mred window now.
- doc.txt highlighting is in the right place now
- doc.txt search restults now go to the right place
- servlets are now modules (with no more free vars)
- browser menus work properly
- urls outside of our documentation use an external browser
- eliminated many (now unecessary) redirections
- various responsiveness improvements
- help desk as a standalone web server isn't supported
anymore.
- added a status line class to the framework, which is
used for check syntax and the module browser. both show
status as the check the program and show information on
mouse-over. Also, the contour window shows you the line
under the mouse in a status line on mouse over.
- added an extra level of hierarchy to the language
dialog, but without the turn-down triangles. this helps
organize the language dialog somewhat.
- the top level function declarations in algol60 are now
available in the REPL and in the test suite tool
- Removed `Windows' menu from windows and unix versions.
- Windows installer generates Program menu shortcuts for
all users

- added test suite support for use with the How to Design
  Programs
- added support for recovering autosave files when DrScheme
crashes
- the draw.ss teachpack now provides the function
get-key-event : -> Key
This function enables programmers who use the draw.ss
teachpack to write interactive drawing games.
Warning: The function fails intermittently on Mac OS X. We intend
to fix this problem in a future release.
- Help Desk users can choose whether they wish to use a
frame-based version.  A toggle switch for this choice (in the
form of a link) appears on the Help Desk home page.  It can
also be changed in the Help Desk configuration.
- Help Desk users can once again use the PLT internal browser;
look for the browser preference in DrScheme's preferences panel
- removed an error in MrEd for Windows that was a frequent source of
instability
2004-08-17 19:34:56 +00:00
recht
d9f40decdf note update of win32-codecs to 040809.1 2004-08-17 19:32:09 +00:00
recht
57d5b82e8f update to win32-codecs-040703.1
relevant changes:
20040809
    * Win32codecs renamed to Windows-all
    * Win32codecs are now in zip format
    * Windows-all (was Win32codecs)
      - Added aslcodec_vfw.dll (ASLC vfw decoder)
      - Added scg726.acm (Sharp G.726)
      - Added atrc3620.dll, cook3620.dll, drv33260.dll, drv43260.dll,
        pncrt.dll, sipr3260.dll, tokr3260.dll, drv23620.dll  from rp9
      - Added QuickTime.qts, QuickTimeEssentials.qtx,
        QuickTimeInternetExtras.qtx from qt63
2004-08-17 19:29:22 +00:00