summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-10-29Use mk/mysql.buildlink3.mk instead of databases/mysql-client/buildlink3.mk,xtraeme7-35/+20
so that we'd not force dependance on specific MySQL version, and instead pick the currently installed mysql*-client (or install the default if there is no mysql-client package installed yet) this makes package buildable with arbitrary MySQL version, such as 3.23.x, 4.0.x or 4.1.x
2004-10-29use mk/mysql.buildlink3.mk instead of databases/mysql-client/buildlink3.mk,jdolecek21-42/+42
so that we'd not force dependance on specific MySQL version, and instead pick the currently installed mysql*-client (or install the default if there is no mysql-client package installed yet) this makes package buildable with arbitrary MySQL version, such as 3.23.x, 4.0.x or 4.1.x
2004-10-29Define USE_BUILDLINK3 before including compiler.mk. Otherwise,minskim6-12/+7
buildink3.mk of gcc* packages is not included.
2004-10-28bitchx is not 64-bit clean. Mark it NOT_FOR alpha, sparc64, or x86_64.heas1-1/+4
2004-10-28Enable ap2-fastcgi.cube2-2/+5
Note addition of ap2-fastcgi and update of ap-fastcgi, both version 2.4.2.
2004-10-28Initial import of ap2-fastcgi, version 2.4.2 into the NetBSD Packagescube2-0/+27
Collection. FastCGI provides a high-performance alternative to CGI for writing Web server applications in a variety of languages, including Perl, C, C++, Java, and Python. FastCGI gets its speed by having keeping application processes running between requests. So, unlike CGI, you do not have the overhead of starting up a new process and doing application initialization (e.g. connecting to a database) each time somebody requests a document. This package works with Apache version 2 series. In order to use FastCGI with the version 1.3 series, use www/ap-fastcgi instead.
2004-10-28Update to version 2.4.2. Split Apache version-dependent parts from thecube10-19/+167
rest through a Makefile.common entity. It will help with incoming ap2-fastcgi addition. Changes: lots of! 2.4.2 *) [WIN] Fix handle leaks in the process manager. Sascha Schumann [sascha@schumann.cx] *) [WIN] Use a permanent pool for allocating the SystemRoot environment variable. Sakamoto [ringring@zb4.so-net.ne.jp] *) [WIN] Fix starting of scripts under AP2. *) Do the connect() to the application *after* collecting a chunk of client data. This reinstates the pre-2.4.0 behaviour. James Jurach [muaddib@erf.net]. *) Remove an assert that was triggering on WIN when spawn() failed. *) Provide the NO_SUEXEC_FOR_AP_USER_N_GROUP macro for building mod_fastcgi with the AP13 suexec behaviour (don't use suexec if httpd's user and group match that needed for the application). *) Prevent the use of all but the "auth" directives from being used anywhere but in global scope. Prevent more than one instance of the FastCgiWrapper directive. *) Return NOT_FOUND (404) or FORBIDDEN (403) instead of INTERNAL_SERVER_ERROR (500) when there are configuration issues or the script does't exist. Suggested by Jeff Lawson [bovine@ud.com]. 2.4.0 *) [*nix Security] - When FastCgiWrapper (FastCgiSuexec) was in use and a vhost configured to use the same uid/gid as the main server, mod_fastcgi would not bother using the wrapper (suexec) because its effective uid/gid was already appropriate. This is consistent with Apache's v1.3 mod_cgi behaviour. There are two problems with this approach: 1) when FastCgWrapper is in use mod_fastcgi's process manager keeps its root privileges (as its real uid/gid) so it can terminate the applications its starts - this privilege was being passed to applications when the use of the wrapper was bypassed 2) wrappers are often employed to perform functionality beyond setting the uid/gid - by not calling the wrapper under certain circumstances, application invocation environments were inconsistent. With this change, the wrapper is always used (when enabled) under both Apache 1.3 and 2. Reported by Michael Richards [michael@fastmail.ca]. *) [*nix/AP2] Use the vhost uid/gid instead of the server uid/gid for dynamic application invocation when the FastCgiWrapper is in use. Reported by Michael Richards [michael@fastmail.ca] *) [*nix] Fix handling of FastCgiWrapper when passed a real path, i.e. other than "on" or "off". Michael Richards [michael@fastmail.ca] *) Eliminate the logging of "incomplete headers (0 bytes) received from server" when a client aborts. *) [WIN32] Fix a delay in handling large POSTs to named pipe based servers. Philip Gladstone [philip@okena.com] *) [*nix/AP2] Prevent the module from being initalized twice at startup (resulting in confusing error messages to the log). *) Eliminate the need for SetHandler or AddHandler with static or external applications. *) Limit PM requests to start a dynamic application to 5sec to prevent endless spinning (this is a drop-dead limit that should only occur if the socket/named_pipe directory is removed out from under a running server). *) [*nix] Change the default socket directory from /tmp/fcgi to: Apache - logs/fastcgi Apache2 - RUNTIMEDIR/fastcgi *) Add -user & -group args to FastCgiServer and FastCgiExternalServer for use with wrappers (in lieu of finding the user/group associated with a virtual host - under Apache2 this isn't accomodated). *) [WIN32] Under Apache2, require v2.0.41 or later in order to pickup my apr_proc_create() changes. *) Log when invoking and restoring the restart backoff policy. *) [WIN32] Prevent intermittent ReadFile() failures (properly initialize the OVERLAPPED structure). *) Eliminate need for dummy files for external servers under Apache2 *) Fix auth compatibility mode handling for access checker and authorizer *) Fix HEAD request handling. Based on a patch by Chris Lightfoot [chris@ex-parrot.com] *) [*nix] When autoupdate is enabled touch the socket when restarting the processes to prevent further requests. Eckebrecht von Pappenheim [evp@heise.de] *) Apache 2.0 support. *) [WIN32] Don't read from a potentially closed named pipe. Philip Gladstone [philip@okena.com] *) Require the Apache version 1.3.6 or later to eliminate some signal handling funk. *) [WIN32] Use asyncronous io with named pipes instead of polled nonblocking io. This should eliminate the last of the npipe issues. *) Handle an application returning a complete and valid response without having consumed all of the data sent to it. *) Consume remaining client data (RESPONDERs only) if any. *) Add support for backing off attempts to start applications that continuously fail to start. Three new macros defined in mod_fastcgi.h control this behaviour: MAX_FAILED_STARTS, RUNTIME_SUCCESS_INTERVAL, FAILED_STARTS_DELAY *) [WIN32] Add (back) support for use of TerminateProcess() to accomodate applications that do not (properly) support the shutdown event (this feature was introduced in fcgi2 2.2.2 and improved in 2.2.4). The new macro WIN32_SHUTDOWN_GRACEFUL_WAIT in mod_fastcgi.h conrols the interval between signaling a proper shutdown and wacking the process(s) with a TerminateProcess(). *) [WIN32] Don't set the OVERLAPPED_IO flag on NamedPipe listen HANDLEs - setting it was just plain broken. *) [WIN32] Fix the accept mutex - all applications were sharing one!? *) Fix 'FastCgiConfig -autoUpdate'. *) Fix 'FastCgiConfig -flush'. *) Prevent silly maxProcesses and processSlack combinations. Dmitry Dorofeev [dima@yasp.com] *) Properly handle the killing of idle processes when one takes a long time to exit once signaled down (or the config is funky). Dmitry Dorofeev [dima@yasp.com] 2.2.12 *) Delay the logging of write errors to the pm to account for shutdown/restart. *) (Win32) An assortment of fixes. *) Fix some broken casts that were likely the cause of an assert. *) Win32. Eliminate forward slashes from the named pipe path name. Gerald Richter [richter@ecos.de] *) SIGUSR2 is no longer blocked in the process manager and the fastcgi applications it spawns. [ryans@amazon.com] *) Added support for the -flush argument to FastCgiConfig. Eric Sit [esit@alum.mit.edu] *) Change the "which call to module_init() is this" check to a more reliable approach. Doru Petrescu [pdoru@kappa.ro] *) Close the old pipe file descriptor in apache main on USR1/HUP (elimnates a small leak). James E. Jurach Jr. jjurach@fundsxpress.com *) Fix a bug in fcgi_config_set_authoritative_slot(). Tetsuya Furukawa [tetsuya@secom-sis.co.jp] *) Eliminate the use of locks to assist in the clean shutdown of applications. Instead, it is assumed that applications handle termination signals properly (this is now embedded in the C application lib). *) Fix Win32 process termination. Proper operation requires the use of an updated application lib (termination is now signalled with an Event and handled by specialized thread). *) Docs cleanup. Andrew Benham [adsb@bigfoot.com] *) Added code so if the last instance of a dynamic application died without provocation, then don't restart it if singleThreshold > 0 (i.e. if the configuration allows the last instance to be killed, then allow it to die). Andrew Benham [adsb@bigfoot.com] *) Fix the loadFactor calculation used to determine when dyanmic applications could be killed off due to low demand [adsb@bigfoot.com]. *) Fix a deadlock condition that could occur with Win32 named pipes (dynamic). *) Fix a potential deadlock condition when FastCGI application sent responses while still reading the client request (POST data).
2004-10-28Update to AppleRecords 0.5lha2-9/+7
From ChangeLog: Rewrote everything, added search and download
2004-10-28Note updates of gtksourceview, yelp, zenity, eog2, file-roller, gok,jmmv1-1/+19
gnome-mag, gnopernicus, gucharmap, gnome2-utils, gnome2-user-docs, nautilus-cd-burner, evolution-webcal, gnome-base, gnome, gnome-devel and gnome-extras. I.e., finish update of GNOME to 2.8.1.
2004-10-28Update to GNOME 2.8.1.jmmv4-63/+63
2004-10-28Update to 2.0.1:jmmv3-6/+11
- new translations: vi, it, ru, zh_CN, zh_TW. - updated translations.
2004-10-28Update to 2.8.3:jmmv2-6/+5
2.8.3: Lock drive while burning when using HAL Fix potential crasher when getting the Read/Write speed of a drive Don't crash when no real drives are available 2.8.2: Fix problems with some messages not being translated Fix wrong messages in dialogs when asking for a CD to be inserted Fix problems with CD drives that can't tell which medium is in the drive Use HAL to get the medium type if it's available 2.8.1: Only show CD recorders in the UI Fix crash when no medium was present in the drive and we started burning Fix two potential crash bugs
2004-10-28Update to 2.8.1:jmmv3-2211/+7
Version 2.8.1 ------------- * Sun's Vino documentation now merged in (John Fleck) Version 2.8.0-1 --------------- * Broken XML files fixed * Out-of-date translations removed
2004-10-28Update to 2.8.1: sorry, list of changes unknown, but one should expectjmmv2-6/+5
bug fixes and updated translations.
2004-10-28Update to 1.4.2: sorry, changes unknown, but one can expect some bug fixesjmmv3-7/+12
and updated translations.
2004-10-28Update to 0.9.16:jmmv6-39/+39
Changes in 0.9.16 ================= Speech: * Modify to remove information from queue for an end of speech marker only if the marker is for text for which information is. Changes in 0.9.15 ================= Presentation: Gnopernicus now presents context information for when a toolbar item is focused. Translation: Added and updated Romanian translation. Updated Canadian English, Italian and Simplified Chinese translations. Changes in 0.9.14 ================= Miscelaneous: * Gnopernicus uses now version 1.7 of autotools. Translation: * Updated Danish, Korean, Spanish and British translations. Changes in 0.9.13 ================= Miscelaneous: * Gnopernicus uses now version 1.7 of autotools. Translation: * Updated Danish, Korean, Spanish and British translations. Changes in 0.9.12 ================= Translation: * Added Russian, Turkish, Traditional Chinese translations.
2004-10-28Update to 0.11.8:jmmv2-6/+5
What's new in gnome-mag-0.11.8: * bugfixes, sanity checks on client requests. What's new in gnome-mag-0.11.7: * magnifier's use of the new DAMAGE x extension can be turned off via the MAGNIFIER_IGNORE_DAMAGE environment variable, or via the "--ignore-damage" command line flag. This is a debugging feature. * magnifier now does some sanity checking on the setROI calls before attempting to comply. What's new in gnome-mag-0.11.6: * Fix for bug 141376 and 152300; we now provide the missing epv implementation for getTargetDisplay and getSourceDisplay, and we check to make sure we can connect to a display before trying to change source or target.
2004-10-28Update to 0.11.12:jmmv3-7/+62
What's new in GOK 0.11.12? * Bug fixes including: 155182 (double actions) What's new in GOK 0.11.10/0.11.11 ? * Fix regression caused by bugfix 151417; this release should be used instead of 0.11.9. What's new in GOK 0.11.9 ? * Expose multiple actions for UI components which have more than one possible user action available. Fixes bug #151417. * Improved table and list behavior: Bugfixes for #153130, #152788, #153389. * Rewrite of online help (thanks to Irene Ryan!)
2004-10-28Update to 2.8.2:jmmv2-6/+5
2.8.2: "Huerto del loro" * Fixes: - Fix for spewing warnings on startup (Fix bug #144833, Mark McLoughlin) * Improvements: - Updated German documentation (Keywan Najafi Tonekaboni) 2.8.1: "Puerto Rico" * Fixes: - Parse correctly gtk/gnome command line arguments (based on patch from Julio M. Merino Vidal. Fix bug #151829) - Fix a crash when have_icons key is not present. Fix bug #151720.
2004-10-28Update to 2.8.3:jmmv3-7/+7
version 2.8.3 ------------- * Fixed extraction without folders recreation. version 2.8.2 ------------- * Avoid opening remote files in nautilus. version 2.8.1 ------------- * Fixed bug #153837: Internal viewer vs. other application question is asked for files that internal viewer can't even handle. * Do not ask whether to use the internal viewer when there is a registered application for the file type. * Fixed bug #151113: crash trying to open zip file for extraction * Fixed bug #152900: Multiple file/folder drag and drop needs to be improved.
2004-10-28Update to 2.8.1:jmmv3-7/+7
- Documentation update - File/directory chooser fix - Removed quit from menu for consistency - Recent files update - More statusbar information - Improved slideshow navigation - Translation Updates: Abel Cheung (zh_TW, mk, de), Akagic Amila (bs), Alessio Frusciante (it), Arafat Medini (ar), Changwoo Ryu (ko), Danilo Ĺ egan (sr), Jens Finke (cs), Jesus Bravo Alvarez (gl), Nikos Charonitakis (el), Paisa Seeluangsawat (th), Stanislav Visnovsky (sk)
2004-10-28Update to 2.8.1:jmmv2-6/+5
* Build fixes [Kjartan] * New and updated translations - Meelad Zakaria, Roozbeh Pournader [fa] - Dmitry G. Mastrukov [ru] - Adam Weinberger [en_CA] - Marcel Telka [sk]
2004-10-28Update to 2.6.4:jmmv2-6/+5
* Updated translations: gl (Jesus Bravo Alvarez), zh_TW (GNOME HK Team)
2004-10-28Update to 1.1.1:jmmv3-7/+13
* New languages specs for fortran, css, javascript and pascal. * Bug fixes and updated translations.
2004-10-28Note addition of bittornado packages.wiz1-1/+3
> Thanks to recht@ who helped splitting the package.
2004-10-28Add and enable bittornado packages.wiz1-1/+3
2004-10-28Initial import of bittornado and bittornado-gui:wiz9-0/+250
Experimental BitTorrent client, based on the official one.
2004-10-28More updates from pkg_notify.wiz1-2/+9
+ httperf-0.8, iozone-3.222, netio-123, netpipe-3.6.2, phylip-3.62, randread-0.2, rasmol-2.7.2.1.1, skampi-4.1.
2004-10-28Update DISTNAME and MASTER_SITES; contentswiz2-6/+7
have not changed.
2004-10-28Replace non-responding master site; use currently available tarballwiz2-5/+7
(using DIST_SUBDIR). Diff is: diff -r old/hbench-OS/README new/hbench-OS/README 12a13,14 > If you would like to share your results, please mail > them to hbench-results@eecs.harvard.edu. 51a54,56 > If you would like to share your results, please mail > them to hbench-results@eecs.harvard.edu. >
2004-10-28Some more updates found with the help of pkg_notify.wiz1-6/+28
+ advancecomp-1.12, benchfft-3.1, dbench-2.1, mp3splt-2.1, mserv-devel-0.41, mserv_irman-0.20, openal-20040816, p5-Audio-Wav-0.03, p5-CDDB-1.15, p5-MP3-Info-1.02, py-mad-0.5.2, rhythmbox-0.8.8, rio500-0.8.1, rioutil-1.4.6.1, rosegarden4 [replacing audio/rosegarden], spiralsynth-2.0.0, tunesbrowser-0.1.6, ubs-0.20, xanalyser-1.24, xmms-alarm-0.3.6, xmms-fmradio-1.5, xmms-funtimedancer-1.0, xmms-gdancer-0.4.6, xmms-mad-0.5.7, xmms-spectogram-1.2.1, xmmsctrl-1.8, yamt-0.6.
2004-10-28Update MASTER_SITES.wiz1-2/+2
2004-10-28Fix HOMEPAGE.wiz1-2/+2
2004-10-28Update homepage and master site.wiz1-3/+3
2004-10-28Updated ImageMagick to 6.1.2-3adam1-1/+2
2004-10-28Changes 6.1.2: bug fixes and improvementsadam4-47/+48
2004-10-28Note updates of gstreamer to 0.8.7 and gst-plugins* to 0.8.5 (and removejmmv2-4/+20
them from the TODO list).
2004-10-28Update gst-plugins* to 0.8.5:jmmv4-29/+19
Changes since 0.8.4: * New translation in this release: Oriya * licensing corrections * new element: mngdec * pixel aspect ratio conversion fixes * 64 bit fixes * NEW_MEDIA fixes * ogm support added * matroska fixes * playbin fixes * alsamixer fixes * gnomevfssrc fixes * ogg fixes * multifdsink fixes * multifilesink fixes * qtdemux fixes * avidemux fixes * asfdemux fixes * wavenc fixes * flac fixes * fli/flx fixes * mpeg fixes * speex now actually works Bugs fixed since 0.8.4: * 121809 : [Solaris] Not able to record * 130682 : [alsasink] fails to negotiate with audio decoders * 135407 : [xviddec] shows green frames when decoding packed bitstre... * 140432 : Osssink and alsasink broken on nforce2 (intel8x0) soundcard * 140897 : Incorrect segment duration in files created with matroska... * 140898 : No writing application specified in matroska files create... * 141554 : vorbis in matroska files makes the vorbisdec plugin segfault * 144091 : [Solaris] audio mixer element * 144616 : Infinite loop in wavparse. * 148711 : typefind function for TTA audio files * 148950 : matroskademux doesn't set buffer duration * 148951 : matroskademux misses the tta codec in its codec list * 151232 : [lame] doesn't build with lame-3.90 * 151236 : [v4l] compile failure * 151410 : Memory leaks in multifdsink * 151462 : theora plugin Makefile broken * 151877 : [PATCH] Fix bad casts in ximagesink.c * 151879 : [PATCH] fix bad pointer casts in xvimagesink.c * 151881 : [PATCH] Fix format strings for amd64 in seek.c * 151882 : [PATCH] Fix format string warnings in spider_seek.c * 151883 : [PATCH] fix cdplayer.c warnings on amd64 * 151884 : [PATCH] Fix format string warnings in cdparanoia.c * 151886 : [PATCH] Fix format string warnings in vorbisfile.c * 151887 : [PATCH] Fix format string warnings in player.c * 152102 : wavenc leaks events * 152341 : patch for ivorbis compile failure * 154301 : typefind and rmdemux don't use the same mime type for rea...
2004-10-28Update to 0.8.7:jmmv3-7/+14
Changes since 0.8.6: * important playback thread fix * typefind fix for non-seekable streams Changes since 0.8.5: * spider, queue fixes * fakesrc and identity now have a datarate property * dataprotocol threadsafety fix Bugs fixed since 0.8.5: * 136962 : crc error when decoding flac with typefind and threads * 150001 : [PATCH] Mem leaks in gstpad.c, gstxml.c and gstelement.c * 150262 : gstreamer.spec file needs correction to work with rpmbuil... * 150626 : bug trying to play a theora web stream * 153657 : make typefind prevent unneeded discont element * 153881 : [PATCH] in-code C declarations API changes since 0.8.5: - API additions: * The "fakesrc" element now has a datarate property. * The "identity" element now has a datarate property.
2004-10-28Fix shlib execute perm pattern (was broken after 1.1537).tv1-3/+4
Also, to address concerns raised on tech-pkg, only issue the warning about execute permission if PKG_DEVELOPER is set.
2004-10-28Fix for linking against Xextadam1-1/+2
2004-10-28This one should be goneadam1-35/+0
2004-10-28Master site down, homepage vanished; usewiz1-4/+3
MASTER_SITE_SUNSITE.
2004-10-28Update MASTER_SITES.wiz1-2/+2
2004-10-28Master site gone.wiz1-2/+2
2004-10-28Remove trailing whitespace.wiz1-2/+2
2004-10-28Master site down, use sunsite mirror.wiz1-2/+2
2004-10-28pkglint-3.94.wiz1-1/+2
2004-10-28Add - and . to characters allowed in patch names. Welcome to 3.94.wiz2-4/+4
2004-10-28MKDIR -> INSTALL_DATA_DIR.wiz1-2/+2