pkgsrc/www
cube bb6e3d9d01 Update to version 2.4.2. Split Apache version-dependent parts from the
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-28 21:01:50 +00:00
..
adzap Upgrade to version 20040914 - lots of new ad pattern updates. 2004-10-08 05:14:06 +00:00
amaya Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
analog Build with "-DNOGLOB" on platforms which don't have "/usr/include/glob.h" 2004-10-11 18:06:31 +00:00
ap-access-referer convert to use buildlink3. 2004-05-08 15:19:18 +00:00
ap-aolserver Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ap-auth-cookie Convert to buildlink3. 2004-05-08 19:48:27 +00:00
ap-auth-ldap Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ap-auth-mysql Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ap-auth-pam Use ${INSTALL_DATA_DIR} with only one argument, for Solaris compat. 2004-07-29 22:57:03 +00:00
ap-auth-pgsql Use the new mk/pgsql.buildlink3.mk to select the correct PostgreSQL 2004-07-24 22:45:14 +00:00
ap-auth-postgresql Set PGSQL_VERSION_REQD to 73 for now to fix the (bulk) build. 2004-07-27 19:42:04 +00:00
ap-auth-script convert to use buildlink3. 2004-05-08 15:19:18 +00:00
ap-bandwidth convert to use buildlink3. 2004-05-08 15:19:18 +00:00
ap-dav Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ap-dtcl Replace lang/tcl with lang/tcl83. Packages compatible with 8.4 will 2004-03-08 19:52:50 +00:00
ap-Embperl Convert to buildlink3. 2004-05-08 19:48:27 +00:00
ap-fastcgi Update to version 2.4.2. Split Apache version-dependent parts from the 2004-10-28 21:01:50 +00:00
ap-gzip convert to use buildlink3. 2004-05-08 15:19:18 +00:00
ap-iasp Convert to buildlink3. 2004-07-02 18:01:46 +00:00
ap-jk Convert to buildlink3. 2004-07-02 22:01:01 +00:00
ap-jserv replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 15:18:32 +00:00
ap-layout convert to buildlink3. 2004-05-08 15:14:23 +00:00
ap-mp3 convert to buildlink3. 2004-05-08 15:14:23 +00:00
ap-perl Use libperl/buildlink3.mk instead of an explicit dependency listing. Also, 2004-09-15 14:51:42 +00:00
ap-php4 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ap-python update to mod_python 2.7.10 2004-07-20 21:22:24 +00:00
ap-ruby Convert to buildlink3. 2004-05-04 23:46:36 +00:00
ap-ssl Update "ap-ssl" package to version 2.8.21. Changes since version 2.8.20: 2004-10-25 08:51:23 +00:00
ap-throttle convert to use buildlink3. 2004-05-08 15:19:18 +00:00
ap-xslt Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ap2-auth-mysql Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ap2-auth-pgsql Use the correct install path in the PLIST. 2004-10-14 15:33:51 +00:00
ap2-perl Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ap2-python Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ap2-ruby Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ap2-subversion Version 1.1.1 2004-10-23 06:11:09 +00:00
ap2-transform Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
apache Update "apache" package to version 1.3.32. Changes since version 1.3.31: 2004-10-25 08:44:16 +00:00
apache2 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
apache6 Provide a value 'yes' for USE_DB185. This lets p5-DB_File find the 2004-10-06 23:27:19 +00:00
apachetop Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
apc-gui Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
asp2php Convert to bl3, obey CFLAGS et al., rework install target. 2004-07-11 00:31:25 +00:00
asWedit Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
awstats Update awstats to 6.1. 2004-06-23 18:40:41 +00:00
bannerfilter Fix the MAINTAINER address for this package 2004-10-22 21:56:34 +00:00
bins Updated bins to 1.1.26 2004-06-21 16:22:26 +00:00
bkedit Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
bluefish Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
bozohttpd Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
cadaver Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
calamaris
cgic Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
cgicc Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
cgilib Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
checkbot PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
chimera Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
clearsilver Convert to buildlink3. 2004-04-27 04:59:42 +00:00
cocoon Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
communicator s/dependancy/dependency/ 2004-02-14 00:05:32 +00:00
cronolog Remove info files entries from PLIST. 2004-03-11 15:30:39 +00:00
curl Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
cvsweb pkgsrc'ify cvsweb with the following changes: 2004-06-09 18:55:11 +00:00
dillo Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
drivel Register the drivel.schemas into the GConf2 database. Pointed out by 2004-10-25 16:42:06 +00:00
elinks Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
elinks04 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
emacs-w3m Add emacs21nox in EMACS_VERSIONS_ACCEPTED where appropriate. 2004-05-08 13:35:20 +00:00
epiphany Update to 1.4.4: 2004-10-14 18:49:22 +00:00
epiphany-extensions Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
fcgi Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
firefox apply patch from mozilla CVS to fix bug id #260337 (installer missing 2004-10-24 05:41:25 +00:00
firefox-bin re-add Firefox 0.8 binary pkg for NetBSD/i386, both the NetBSD native 2004-07-15 10:54:19 +00:00
firefox-bin-acroread update the MozillaFirebird-bin-acroread packages to work with 2004-02-10 12:26:24 +00:00
firefox-bin-acroread3 update the MozillaFirebird-bin-acroread packages to work with 2004-02-10 12:26:24 +00:00
firefox-bin-acroread5 update the MozillaFirebird-bin-acroread packages to work with 2004-02-10 12:26:24 +00:00
firefox-bin-flash Factor out a Makefile.common so this can be used for firefox-gtk2-bin and 2004-09-28 22:58:49 +00:00
firefox-bin-java Prepare for firefox-gtk2-bin-java package, and fix comment and a bug in 2004-10-01 19:20:27 +00:00
firefox-bin-nightly add Solaris build which recently appeared. 2004-03-16 14:34:39 +00:00
firefox-bin-realplayer no reason this shouldn't work on any i386 platform. 2004-02-10 13:05:06 +00:00
firefox-gtk2 Update firefox & firefox-gtk2 to 0.10 (a.k.a. 1.0PR) 2004-09-20 08:03:42 +00:00
firefox-gtk2-bin Update to 0.10.1, for security fix. 2004-10-04 11:28:45 +00:00
firefox-gtk2-bin-flash Initial import of firefox-gtk2-bin-flash-6.0.79, a Flash Player plugin for 2004-09-28 22:59:30 +00:00
firefox-gtk2-bin-java Initial import of java plugin package for firefox-gtk2-bin. 2004-10-01 19:20:33 +00:00
firefox-gtk2-bin-nightly Respect MOZILLA_USE_LINUX settings. 2004-09-28 23:39:59 +00:00
galeon commit PLIST missed in last 2004-10-05 18:32:47 +00:00
galeon12 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
galway Update linkage to libltdl (via guile{,14}), which is now its own package. 2004-10-15 14:50:05 +00:00
glibwww Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
grail Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtkasp2php Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtkhtml Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtkhtml3 Update to 3.2.3: 2004-10-15 21:29:45 +00:00
gtkhtml30 only the .la should be listed in the PLIST. fixes install on some 2004-10-14 04:00:31 +00:00
haskell-cgi
hiawatha Update to bl3. All test built with jdk or sun-jdk14. 2004-06-28 17:28:56 +00:00
horde Call INSTALL_DATA_DIR multiple times with only one argument, 2004-04-04 10:40:19 +00:00
htdig Convert to use bdb.bl3.mk, and set USE_LANGUAGES to "c c++". 2004-05-26 20:40:50 +00:00
htmldoc Convert to buildlink3. 2004-04-30 05:25:59 +00:00
htmldoc-x11 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
htmlfix
htmllint Update to 20040716 (changes unknown); also try to address PR 25089 2004-07-19 13:18:31 +00:00
http_load Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
iasp Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
ijb malloc.h fixes for darwin, plus a handful of other small fixes for 2004-05-23 23:28:29 +00:00
jakarta-servletapi Convert to buildlink3; set USE_JAVA2 since it does not compile with jdk-1.1.8. 2004-07-02 22:06:19 +00:00
jakarta-tomcat Update jakarta-tomcat to 5.0.28. 2004-10-11 21:15:48 +00:00
jakarta-tomcat4 Fix up PLIST. At least for sun-jdk14 on NetBSD 2.0_BETA i386. Not that that 2004-06-28 17:37:49 +00:00
jsdk20 The distfile has moved. Tell the user to fetch it from the new 2004-03-08 15:35:17 +00:00
jssi replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 15:18:32 +00:00
kannel Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
kdewebdev3 Update to KDE 3.3.1 2004-10-13 12:05:51 +00:00
lhs Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libghttp Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libgtkhtml Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libwww Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
liferea Update liferea to 0.6.0. 2004-10-25 15:39:02 +00:00
links Update to 2.1pre15: 2004-04-29 09:28:21 +00:00
links-gui Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
lynx Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
make_album Remove USE_BUILDLINK2, define NO_CONFIGURE. 2004-04-15 21:54:28 +00:00
micro_httpd Update MAINTAINER address per his request. 2004-02-02 17:56:48 +00:00
mini_httpd Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
mknmz-wwwoffle
mMosaic Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
moz-bin-plugger This does not need buildlink2. 2004-05-11 04:48:12 +00:00
mozilla Modify mozilla and mozilla-gtk2 to install several additional headers. 2004-10-25 18:06:25 +00:00
mozilla-bin Fix distribution filenames for SunOS. 2004-09-22 14:18:22 +00:00
mozilla-bin-nightly simplify last slightly. 2004-05-30 06:22:09 +00:00
mozilla-gtk2 Modify mozilla and mozilla-gtk2 to install several additional headers. 2004-10-25 18:06:25 +00:00
mozilla-stable adopt new freetype api. 2004-06-05 10:20:55 +00:00
navigator Only apply binpatch to "communicator" package not to "navigator" package 2004-07-27 08:00:50 +00:00
navigator3 Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
neon Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
netscape This does not need buildlink2. 2004-05-04 04:26:31 +00:00
netscape7 Add a tiny binary patch to netscape7 (libsoftokn3.so, actually) that 2004-07-27 04:36:06 +00:00
netscape7-acroread Add packages for the acroread plugin for the netscape7 browser, following 2004-02-13 17:39:55 +00:00
netscape7-acroread3 Add packages for the acroread plugin for the netscape7 browser, following 2004-02-13 17:39:55 +00:00
netscape7-acroread5 Add packages for the acroread plugin for the netscape7 browser, following 2004-02-13 17:39:55 +00:00
ns-plugger-common Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
ns-plugger-communicator
ns-plugger-navigator
ns-remote Convert to buildlink3. 2004-04-30 05:25:59 +00:00
openacs Catch up with changes to the pathnames of postgres packages. 2004-07-27 17:59:58 +00:00
opera-acroread dd packages for the acroread plugin for the opera browser, following 2004-02-13 18:05:12 +00:00
opera-acroread3 dd packages for the acroread plugin for the opera browser, following 2004-02-13 18:05:12 +00:00
opera-acroread5 dd packages for the acroread plugin for the opera browser, following 2004-02-13 18:05:12 +00:00
opera-plugins Fix path to ns-flash, now in the multimedia category. 2004-01-26 14:56:47 +00:00
opera7 Correct dependences: "opera" for Linux doesn't need anything but 2004-08-14 14:02:26 +00:00
p5-Apache-ASP Convert to buildlink3. 2004-05-09 06:48:40 +00:00
p5-Apache-DBILogConfig Convert to buildlink3. 2004-05-09 21:14:42 +00:00
p5-Apache-DBILogger Convert to buildlink3. 2004-05-09 21:14:42 +00:00
p5-Apache-ePerl Convert to buildlink3. 2004-05-09 06:48:40 +00:00
p5-Apache-Filter Convert to buildlink3. 2004-05-09 06:48:40 +00:00
p5-Apache-Gallery Update linkage to libltdl (via imlib2), now in its own package. 2004-10-15 12:22:13 +00:00
p5-Apache-Reload Import p5-Apache-Reload from pkgsrc-wip. Packaged by Hiramatsu 2004-02-20 04:44:03 +00:00
p5-Apache-Session Convert to buildlink3. 2004-05-09 21:14:42 +00:00
p5-Apache-SSI Convert to buildlink3. 2004-05-09 06:48:40 +00:00
p5-Apache-Test Initial import of p5-Apache-Test, version 1.12, into the NetBSD Packages 2004-08-02 12:56:14 +00:00
p5-CGI Accept perl-thread in addition perl. 2004-07-17 20:12:23 +00:00
p5-CGI-Application Bl3ify and enable pkgviews installation. 2004-04-25 06:07:44 +00:00
p5-CGI-FastTemplate Convert to buildlink3. 2004-04-27 04:59:42 +00:00
p5-CGI-FormBuilder Convert to buildlink3. 2004-04-27 04:59:42 +00:00
p5-CGI-Kwiki Import p5-CGI-Kwiki 0.18 2004-05-13 09:22:30 +00:00
p5-CGI-Minimal Convert to buildlink3. 2004-04-27 04:59:42 +00:00
p5-CGI-Session Initial import of p5-CGI-Session, a Perl5 module providing session 2004-08-19 14:12:27 +00:00
p5-CGI_Lite Convert to buildlink3. 2004-04-27 04:59:42 +00:00
p5-ExtUtils-XSBuilder Fix CATEGORIES. 2004-04-16 04:44:37 +00:00
p5-FCGI Convert to buildlink3. 2004-04-27 04:59:42 +00:00
p5-HTML-Clean Bl3ify and enable pkgviews installation. 2004-04-25 05:47:02 +00:00
p5-HTML-FillInForm Bl3ify and enable pkgviews installation. 2004-04-25 05:47:02 +00:00
p5-HTML-FixEntities Bl3ify and enable pkgviews installation. 2004-04-25 05:47:02 +00:00
p5-HTML-Format Bl3ify and enable pkgviews installation. 2004-04-25 05:47:02 +00:00
p5-HTML-LinkExtractor HTML::LinkExtractor is used for extracting links from HTML. It is very 2004-10-20 18:08:35 +00:00
p5-HTML-Mason Update to version 1.26. 2004-08-02 09:53:32 +00:00
p5-HTML-Parser Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
p5-HTML-PrettyPrinter Bl3ify and enable pkgviews installation. 2004-04-25 05:56:14 +00:00
p5-HTML-Scrubber Initial import of p5-HTML-Scrubber, version 0.08 into the NetBSD Packages 2004-07-30 12:55:44 +00:00
p5-HTML-SimpleParse Update p5-HTML-SimpleParse to 0.12. 2004-04-25 06:03:51 +00:00
p5-HTML-StickyQuery Import p5-HTML-StickyQuery from pkgsrc-wip. Packaged by Hiramatsu 2004-02-20 04:29:10 +00:00
p5-HTML-Table Bl3ify and enable pkgviews installation. 2004-04-25 05:56:14 +00:00
p5-HTML-TableExtract Convert to buildlink3. 2004-04-27 04:59:42 +00:00
p5-HTML-Tagset Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
p5-HTML-Template Bl3ify and enable pkgviews installation. 2004-04-25 06:04:57 +00:00
p5-HTML-Tree Bl3ify and enable pkgviews installation. 2004-04-25 05:47:02 +00:00
p5-HTMLObject Add dependency on p5-Data-FormValidator 2004-07-08 22:34:36 +00:00
p5-HTTP-DAV Convert to buildlink3. 2004-04-27 04:59:42 +00:00
p5-HTTP-Request-Form Convert to buildlink3. 2004-04-27 04:59:42 +00:00
p5-HTTPD-User-Manage Convert to buildlink3. 2004-04-27 04:59:42 +00:00
p5-libapreq Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG, 2004-08-27 06:29:06 +00:00
p5-libapreq2 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
p5-libwww PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
p5-SVN-Web Convert to buildlink3. 2004-05-11 05:18:59 +00:00
p5-Template-Extract Convert to bl3, drop maintainership. 2004-04-18 20:29:38 +00:00
p5-Template-Generate Convert to bl3, drop maintainership. 2004-04-18 20:29:38 +00:00
p5-Template-Toolkit Update to 2.14. Addresses PR 27589. 2004-10-28 10:20:57 +00:00
p5-URI Uses no compiler, so USE_LANGUAGES is empty 2004-03-21 01:18:42 +00:00
p5-VRML Bl3ify and enable pkgviews installation. 2004-04-25 05:47:02 +00:00
p5-WWW-Amazon-Wishlist Bl3ify and enable pkgviews installation. 2004-04-25 05:23:02 +00:00
p5-WWW-Mechanize Import p5-WWW-Mechanize from pkgsrc-wip. Packaged by dieter Roelants. 2004-04-16 21:37:30 +00:00
pear-HTML_Common fix the MAINTAINER link (tech-pkg@, not tech-kern@) 2004-10-09 16:48:56 +00:00
pear-HTML_Select COMMENT for "foo" needn't start with "Foo is a...". 2004-04-03 15:30:56 +00:00
php-FastTemplate Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
php4 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
php4-apc bl3ify 2004-04-24 23:03:25 +00:00
php4-curl Update php4 package to 4.3.7. 2004-07-06 19:52:01 +00:00
privoxy Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-curl Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-HTMLgen add python as category 2004-07-22 09:15:59 +00:00
py-pcgi add python as category 2004-07-22 09:15:59 +00:00
py-zpublisher add python as category 2004-07-22 09:15:59 +00:00
qDecoder
ruby-borges PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
ruby-fcgi Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ruby-htmlsplit Add ruby to CATEGORIES. 2004-03-16 02:01:09 +00:00
ruby-tag Add ruby to CATEGORIES. 2004-03-16 02:01:09 +00:00
ruby-webrick PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
ruby-webunit Add ruby to CATEGORIES. 2004-03-16 02:01:09 +00:00
sarg Initial import of sarg-1.4.1 from pkgsrc-wip, packaged by Mike M. Volokhov. 2003-12-04 16:06:32 +00:00
screws Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
sitecopy Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
snarf Change MAINTAINER to "tech-pkg" instead of the previous "packages". 2003-12-03 22:14:45 +00:00
snownews Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
SpeedyCGI Import SpeedyCGI v2.22 from pkgsrc-wip 2004-06-22 21:34:50 +00:00
spfc replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 15:18:32 +00:00
squid Update squid package to 2.5.7. 2004-10-13 15:35:55 +00:00
squidGuard Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
surfraw Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
swiftsurf Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
swiggle Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
swill Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
swish-e Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
tcl-cgi Regen to make GNU patch happy. 2004-09-11 02:47:33 +00:00
thttpd Add patch from PR 25487 to disable mmap on old (1.5ish) NetBSD systems. 2004-09-14 08:32:16 +00:00
thy Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
tidy Define RANLIB for Darwin (not tested by me). 2004-09-07 14:37:27 +00:00
tinyproxy RCD_SCRIPTS_EXAMPLEDIR was just changed to be a relative directory 2004-10-11 22:14:51 +00:00
trac Update to Trac 0.7.1 'Argento' (Jun, 2004) 2004-08-28 00:30:45 +00:00
urlget Convert to buildlink3. 2004-04-19 04:39:45 +00:00
w3 Remove info files entries from PLIST. 2004-03-11 15:30:39 +00:00
w3c-httpd Rename a local library function strcasestr()' to xstrcasestr()' 2004-09-18 13:34:28 +00:00
w3m bump PKGREVISIONs for last boehm-gc update 2004-07-18 10:49:49 +00:00
w3m-img bump PKGREVISIONs for last boehm-gc update 2004-07-18 10:49:49 +00:00
waplet
wApua Convert to buildlink3. 2004-04-27 04:59:42 +00:00
wdg-validate Use subst.mk instead of patch+sed. 2004-02-17 01:58:08 +00:00
webalizer Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
weblint bl3ify and enable pkgviews installation. 2004-02-17 02:11:30 +00:00
webnew
websvn Update www/websvn to 1.40, and honour CONF_FILES and PKG_SYSCONFDIR. 2004-06-21 01:34:16 +00:00
weex Convert to buildlink3. 2004-04-19 04:39:45 +00:00
whisker PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
wml Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
www6to4
wwwcount
wwwoffle RCD_SCRIPTS_EXAMPLEDIR was just changed to be a relative directory 2004-10-11 22:14:51 +00:00
zope PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
zope-confera PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
zope25 bl3ify 2004-05-23 11:41:35 +00:00
zope25-AbracadabraObject
zope25-BackTalk Set MAINTAINER to "tech-pkg" instead of "packages". 2004-01-10 19:14:18 +00:00
zope25-BTreeFolder
zope25-BTreeFolder2
zope25-Calendar bl3ify 2004-05-23 11:41:35 +00:00
zope25-CMF Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
zope25-CMFPlone Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
zope25-colorz
zope25-CookieCrumbler
zope25-DocumentLibrary
zope25-EasyImage Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
zope25-Epoz
zope25-ExternalEditor
zope25-FileSystemSite
zope25-Formulator
zope25-Fortune
zope25-JPicture Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
zope25-KnowledgeKit
zope25-LocalFS
zope25-MailManager bl3ify 2004-05-23 11:41:35 +00:00
zope25-MetaPublisher
zope25-ParsedXML Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
zope25-Photo Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
zope25-PropertyFolder
zope25-PropertyObject
zope25-RDFSummary
zope25-RenderableCharts bl3ify 2004-05-23 11:41:35 +00:00
zope25-Silva
zope25-Squishdot
zope25-StripoGram
zope25-TinyTablePlus
zope25-XMLWidgets
zope25-Zippy
zope25-ZMySQLDA bl3ify 2004-05-23 11:41:35 +00:00
zope25-ZNavigator
zope25-zopebook bl3ify 2004-05-23 11:41:35 +00:00
zope25-ZPhotoSlides Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
zope25-ZPsycopgDA update to 1.1.14 2004-07-22 18:12:21 +00:00
zope25-ZWeather
zope25-ZWeatherApplet bl3ify 2004-05-23 11:41:35 +00:00
zope25-ZWiki
zopeedit Convert to buildlink3. 2004-04-19 04:53:58 +00:00
Makefile Note addition of HTML-LinkExtractor-0.121 2004-10-20 18:12:05 +00:00