pkgsrc/www
fhajny 35a6903023 Updated mod_fcgid to 2.3.5.
This covers the transition to ASF that mod_fcgi was donated to in the course
of 2009. No longer backwards compatible as far as configuration is concerned!

Changes with mod_fcgid 2.3.5
*) Stop using the unsuppressable "notice" log level for debug and
   informational messages.  PR 48536.  [Jeff Trawick]
*) Respect DEFAULT_REL_RUNTIMEDIR for default values of FcgidIPCDir and
   FcgidProcessTableFile.  [Jeff Trawick]
*) Resolve fatal EDEADLK errors with threaded MPMs on Solaris.  [Jeff Trawick]
*) Display information about active processes in the server-status page.
   [Ryan Pan]
*) Fix compatibility of httpd.conf-editing logic with non-GNU awk.  PR 48067.
   [Hans Werner Strube <strube physik3.gwdg.de>]
*) Fix startup errors creating shared memory in constrained systems, such
   as OS X in its default configuration.  This is a regression since mod_fcgid
   2.2.  [Jeff Trawick]
*) Recover from most "Resource temporarily unavailable" errors writing the
   request to the FastCGI application.  These were common with large request
   bodies on Mac OS X and intermittent on Solaris.  PR 48025.  [Jeff Trawick]
*) Fix a bug in fixconf.sed that resulted in a prefix of "FcgidFcgid" on the
   updated directives.  [Dan Hulme <dhulme gmail.com>]
*) Fix possible corruption or truncation of request bodies which exceed
   FcgidMaxRequestInMem.  This is a regression since mod_fcgid 2.2, which
   effectively ignored FcgidMaxRequestInMem if larger than 8K.  PR 48021.
   [Jeff Trawick]
*) Fix handling of the request body when a FastCGI access checker/
   authenticator/authorizer (AAA) was configured.  The body wasn't available
   for the request handler.  PR 47973.
   [Jeff Trawick, Barry Scott <barry.scott onelan.co.uk>]
*) Fix handling of FcgidCmdOptions so that it can apply to wrapper scripts
   which were defined with command-line arguments on the FcgidWrapper
   directive.  [Jeff Trawick]

Changes with mod_fcgid 2.3.4
*) Corrected unix 'make install' target regression in 2.3.3.  [Jeff Trawick]

Changes with mod_fcgid 2.3.3
*) Add FcgidCmdOptions directive to associate some of the existing
   configuration settings with a specific command.  [Jeff Trawick]
*) Allow/respect virtual host settings for the following directives:
   FcgidBusyTimeout, FcgidMaxProcessesPerClass, FcgidMinProcessesPerClass,
   FcgidIdleTimeout, and FcgidProcessLifetime.  [Jeff Trawick]

Changes with mod_fcgid 2.3.2
*) Fix a make install DESTDIR problem handling the reference manual and
   potentially other files (specific to 2.3.1).
   [Paul Howarth <paul city-fan.org>]
*) Fix a mod_fcgid 2.3.1 failure with <sys/mutex.h> when building for
   httpd 2.0.x on some platforms.  [Paul Howarth <paul city-fan.org>]
*) Termination of idle processes after inactivity timeout can now be
   disabled by setting FcgidIdleTimeout to 0.  Termination of idle
   processes based on the process lifetime can now be disabled by setting
   FcgidProcessLifeTime to 0.  FcgidMaxRequestsPerProcess now accepts 0
   for unlimited.  [Ricardo Cantu <ricardo smartcsc.com>]
*) All directives have been renamed in order to use a common prefix "Fcgid".
   Underscores in directive names have been eliminated in favor of
   CamelCase. The old directive names will still work but are deprecated.
   To fix your configuration you can use the sed script build/fixconf.sed.
   The following tables contains old and new directive names.
   Old Name                           New Name
   ...................................................................
   BusyScanInterval                   FcgidBusyScanInterval
   BusyTimeout                        FcgidBusyTimeout
   DefaultInitEnv                     FcgidInitialEnv
   DefaultMaxClassProcessCount        FcgidMaxProcessesPerClass
   DefaultMinClassProcessCount        FcgidMinProcessesPerClass
   ErrorScanInterval                  FcgidErrorScanInterval
   FastCgiAccessChecker               FcgidAccessChecker
   FastCgiAccessCheckerAuthoritative  FcgidAccessCheckerAuthoritative
   FastCgiAuthenticator               FcgidAuthenticator
   FastCgiAuthenticatorAuthoritative  FcgidAuthenticatorAuthoritative
   FastCgiAuthorizer                  FcgidAuthorizer
   FastCgiAuthorizerAuthoritative     FcgidAuthorizerAuthoritative
   FCGIWrapper                        FcgidWrapper
   IdleScanInterval                   FcgidIdleScanInterval
   IdleTimeout                        FcgidIdleTimeout
   IPCCommTimeout                     FcgidIOTimeout
   IPCConnectTimeout                  FcgidConnectTimeout
   MaxProcessCount                    FcgidMaxProcesses
   MaxRequestInMem                    FcgidMaxRequestInMem
   MaxRequestLen                      FcgidMaxRequestLen
   MaxRequestsPerProcess              FcgidMaxRequestsPerProcess
   OutputBufferSize                   FcgidOutputBufferSize
   PassHeader                         FcgidPassHeader
   PHP_Fix_Pathinfo_Enable            FcgidFixPathinfo
   ProcessLifeTime                    FcgidProcessLifeTime
   SharememPath                       FcgidProcessTableFile
   SocketPath                         FcgidIPCDir
   SpawnScore                         FcgidSpawnScore
   SpawnScoreUpLimit                  FcgidSpawnScoreUpLimit
   TerminationScore                   FcgidTerminationScore
   TimeScore                          FcgidTimeScore
   ZombieScanInterval                 FcgidZombieScanInterval
*) Separate classes by virtual host also on Windows.  [Rainer Jung]
*) Log client IP address with many more error log messages.  [Jeff Trawick]
*) Fix basic implementation of FcgidMaxRequestInMem and FcgidMaxRequestLen
   directives.  [Jeff Trawick]
*) Merge per-directory directives so that they can be inherited or
   overridden within other containers as expected.  Merge server config/
   virtual host directives so that they can be inherited or overridden
   within a virtual host as expected. [Jeff Trawick]
*) Use the virtual host settings for the request being processed instead
   of those of the first FastCGI request handled by this httpd child process.
   Affected directives: FcgidBusyTimeout, FcgidIOTimeout,
   FcgidConnectTimeout, FcgidMaxRequestsPerProcess, and FcgidOutputBufferSize.
   [Jeff Trawick]
*) Directives which previously were ignored in a virtual host context are no
   longer allowed.  [Jeff Trawick]
*) Add an optional flag "virtual" to FcgidWrapper.
   If virtual is set, the URLs passed to the wrapper are not
   checked, whether they resolve to a file.  [Rainer Jung]
*) Make the second argument (suffix) for FcgidWrapper optional.
   A wrapper defined without a suffix applies to all URLs, unless
   there is another more specific wrapper with a suffix.  [Rainer Jung]

Changes with mod_fcgid 2.3.1
*) Suppress "need AuthType to note auth failure" error-level messages when a
   FastCGIAccessChecker fails without any other kind of authentication
   (Basic, Digest) configured.  [Eric Covener]
*) Complete the unix port to 2.3-dev trunk.  [William Rowe]
*) Provide a default, mandatory environment as with mod_cgi (with the
   inclusion of LD_LIBRARY_PATH or similar variables on other platforms),
   unless overridden by DefaultInitEnv.  [William Rowe]
*) Handle DefaultInitEnv for case-insensitive platforms by forcing the env
   variable names to uppercase on Win32, OS2 and Netware.  [William Rowe]
*) Don't try to set the ownership of the socket directory unless running
   as root and the directory was just created.  This allows the default
   httpd.conf (with some daemon User/Group) to be used by non-root.
   [Jeff Trawick]
*) Fix formatting of several messages, including the oft-seen "mod_fcgid:
   Can't create shared memory for size %zu byte".  [Jeff Trawick]
*) Fix declared names of FastCgiAuthenticator and FastCgiAuthenticator-
   Authoritative directives, allowing them to be used.  [Ulf Haueisen
   <ulf dvlp.de>]
*) Fix vhost-specific DefaultInitEnv settings.  Previously, when setting
   multiple virtual hosts with the same SuexecUserGroup user and group, the
   process manager use the same process pool for both virtual hosts. This
   means if one virtual host has a DefaultInitEnv and the other has
   different values set, a fastcgi request from any of these virtual host
   can go to the same processes, which is inconsistent (a request from
   virtualhost a with DefaultInitEnv VAL "a", can go to a process spawned
   with virtualhost b with DefaultInitEnv VAL "b" set).  [Gabriel Barazer
   <gabriel oxeva.fr>]
2010-02-15 11:38:44 +00:00
..
adzap Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
album Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
album_themes Remove @dirrm related logic. 2009-06-14 22:57:58 +00:00
amaya Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
analog Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-access-referer DESTDIR support 2010-02-12 20:56:54 +00:00
ap-auth-cookie DESTDIR support 2010-02-12 20:56:54 +00:00
ap-auth-external DESTDIR support 2010-02-12 20:56:54 +00:00
ap-auth-kerb DESTDIR support 2010-02-12 20:56:54 +00:00
ap-auth-ldap Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ap-auth-mysql Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-auth-ntlm Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-auth-pam Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-auth-pgsql Bump revision for change of PostgreSQL default version. 2010-02-10 19:34:05 +00:00
ap-auth-postgresql Bump revision for change of PostgreSQL default version. 2010-02-10 19:34:05 +00:00
ap-auth-radius Leave over maintainership to pkgsrc-users 2009-03-22 04:53:38 +00:00
ap-auth-script
ap-bandwidth
ap-dav Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-dtcl Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
ap-Embperl Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
ap-fastcgi Update ap-fastcgi and ap2-fastcgi to 2.4.6. 2008-10-01 10:03:11 +00:00
ap-gzip Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-jk
ap-layout Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-mono recursive bump for icu shlib version change except already done. 2009-08-12 02:31:18 +00:00
ap-mp3 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-perl Update from version 1.29nb1 to 1.29nb2. 2009-06-15 17:42:04 +00:00
ap-php Add DESTDIR support. 2008-06-12 02:14:13 +00:00
ap-python Update ap-python to 2.7.11. 2009-08-30 03:08:40 +00:00
ap-rivet Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-rpaf
ap-ruby Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-scgi Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
ap-ssl Hack this to build against Apache 1.3.42. As 1.3.42 doesn't change 2010-02-10 03:55:18 +00:00
ap-throttle
ap-xslt Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ap2-auth-external DESTDIR support 2010-02-12 20:56:54 +00:00
ap2-auth-ldap Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ap2-auth-mellon Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ap2-auth-mysql Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap2-auth-ntlm DESTDIR support 2010-02-12 20:56:54 +00:00
ap2-auth-pgsql Bump revision for change of PostgreSQL default version. 2010-02-10 19:34:05 +00:00
ap2-auth-radius Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ap2-auth-xradius Use ${APXS} intead of manually constructed one. 2009-12-11 12:02:59 +00:00
ap2-bw
ap2-cband Fix DESTDIR build. 2009-12-03 17:12:42 +00:00
ap2-chroot Fix the do-install to include DESTDIR references - not sufficient in itself so PKG_DESTDIR_SUPPORT not turned on 2009-12-17 19:38:14 +00:00
ap2-fastcgi Update ap-fastcgi and ap2-fastcgi to 2.4.6. 2008-10-01 10:03:11 +00:00
ap2-fcgid Updated mod_fcgid to 2.3.5. 2010-02-15 11:38:44 +00:00
ap2-jk
ap2-perl Update from version 2.04nb4 to 2.04nb5. 2009-06-15 17:38:21 +00:00
ap2-python Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap2-subversion Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ap2-suphp Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap2-transform
ap2-wsgi Update to 2.5. 2009-08-31 12:42:19 +00:00
ap2-xslt2 Do not depend on the *-config unwrap phase to not leak the .buildlink 2009-11-30 18:52:33 +00:00
ap22-authn-sasl This module provides the mod_auth_basic authentication front-end a way to 2008-11-12 09:10:00 +00:00
ap22-authnz-external Fix HOMEPAGE and MASTER_SITES. 2009-12-24 13:18:31 +00:00
ap22-dnssd bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
ap22-vhost-ldap Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
apache Update to 1.3.42, fixing CVE-2010-0010. Note: this package is now EOL 2010-02-09 07:22:06 +00:00
apache-roller Give up MAINTAINER 2009-07-17 18:00:13 +00:00
apache-tomcat6 update to the fresh release 2010-01-28 12:16:45 +00:00
apache-tomcat55 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
apache2 Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
apache22 Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
apachetop update master site. 2009-05-22 18:07:09 +00:00
asp2php Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
august Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
awstats Updated awstats to 6.96. 2010-02-02 11:20:29 +00:00
bannerfilter Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
bins Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
bkedit Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
bluefish Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
blur6ex Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
bozohttpd Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
browser-bookmarks-menu Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
cadaver Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
calamaris Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
camping Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
cgic Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
cgicc Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
cgilib Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
checkbot Replacing some dependencies to choose perl core first, because desired 2009-06-01 19:38:56 +00:00
cherokee Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
chimera Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
clearsilver Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
clearsilver-base Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
crawl Bump PKGREVISION for libevent ABI bump. 2009-08-16 15:35:43 +00:00
cronolog
curl add a patch from upstream to fix "data callback excessive length" 2010-02-09 16:05:38 +00:00
cvsweb Fix typo in SUBST_MESSAGE. 2009-07-25 17:29:13 +00:00
dansguardian Make it build on DragonFly. 2009-07-21 05:31:46 +00:00
dillo Update dillo to 2.2. Changes: 2010-02-14 20:19:24 +00:00
drivel Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
drraw user-destdir support 2009-07-07 16:49:05 +00:00
drupal Update www/drupal package to 5.21, fixing security problem. 2009-12-19 09:20:23 +00:00
drupal6 Update www/drupal6 package to 6.15, fixing security problem. 2009-12-19 09:29:22 +00:00
drupal6-translations Update www/drupal6-translations package to 20090926. 2009-09-29 13:47:03 +00:00
elinks Drop dependency on getext-lib. 2009-10-06 10:23:45 +00:00
emacs-w3m Convert second line of EMACS_VERSIONS_ACCEPTED to acceptable syntax. 2009-08-09 19:35:12 +00:00
emacs-w3m-snapshot Let emacs-w3m-snapshot require w3m>=0.5.2nb3 because earlier versions 2009-08-19 06:01:37 +00:00
epiphany Remove file that should have disappeared with 2.28.2 update. 2010-02-04 07:18:11 +00:00
epiphany-extensions Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
erubis Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
fcgi Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
fengoffice Update fengoffice to 1.6.2. 2010-01-26 15:36:24 +00:00
ffproxy Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
firefox Don't record an exact version dependency on xulrunner. 2010-01-31 21:02:48 +00:00
firefox-bin Add checksums for Solaris 10 binary, package still doesn't build but at 2009-09-30 09:35:56 +00:00
firefox-bin-acroread Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
firefox-bin-acroread5 Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
firefox-bin-acroread7 Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
firefox-bin-flash Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
firefox-bin-java Pick something non-ancient for the JRE (v6 for now). 2010-02-10 22:30:51 +00:00
firefox-bin-realplayer Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
galeon Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
galway Recursive bump for libltdl 2009-12-15 21:54:17 +00:00
ganglia-webfrontend Fix version number. 2009-11-11 07:59:26 +00:00
geeklog Update www/geeklog package to 1.6.1. 2009-11-30 15:44:45 +00:00
gitweb Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
gtkasp2php DESTDIR support 2010-02-12 19:37:50 +00:00
gtkhtml314 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
haskell-cgi Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
heel Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
hiawatha Get rid of now unnecessary EXTRACT_OPTS_ZIP. 2009-08-25 11:57:44 +00:00
horde Update horde to version 3.3.6 in order to fix a cross-site scripting 2009-12-20 22:15:13 +00:00
htdig +PKG_DESTDIR_SUPPORT 2009-12-17 19:35:03 +00:00
htdig-devel Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
htmldoc Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
htmldoc-x11 More PKGREVISION bumps of jpeg dependencies. 2010-01-24 13:26:09 +00:00
htmlfix Add PKG_DESTDIR_SUPPORT 2009-02-13 22:24:14 +00:00
htmllint Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
http_load Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ies4linux Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
ijb Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ikiwiki Update to 3.20100212. From the changelog: 2010-02-13 05:53:36 +00:00
instiki user-destdir support 2009-07-07 19:10:37 +00:00
ja-trac Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
jakarta-tomcat4 user-destdir support 2009-07-07 19:07:35 +00:00
jakarta-tomcat5 Fix bash reference. Bump revision. 2010-01-08 18:53:12 +00:00
jalbum Updated www/jalbum to 8.5.3 2009-12-16 20:02:01 +00:00
kahua Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
kannel Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
kazehakase Switch from gecko to webkit-gtk. (still doesn't work, but at least builds..) 2010-02-13 13:36:08 +00:00
kdewebdev3 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
kdewebdev4 Update to kde4 4.3.5 2010-01-27 10:38:38 +00:00
konq-plugins Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
lhs Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
libghttp Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libgtkhtml bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
libproxy Update to 0.3.0. Set LICENSE. Since python .py file is not installed 2009-12-15 11:00:11 +00:00
libwww apply expat patch to bundled version: 2010-01-26 18:38:26 +00:00
liferea Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
liferea-current update to 1.6.2 2010-01-22 20:59:41 +00:00
lighttpd Update to lighttpd-1.4.26: 2010-02-08 14:47:54 +00:00
links Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
links-gui Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
loggerhead Add PasteDeploy dependency. 2009-11-10 17:20:38 +00:00
lynx Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
make_album user-destdir support 2009-07-07 19:05:20 +00:00
mediawiki Added short upgrade instructions. 2009-12-07 13:03:43 +00:00
merb Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-action-args Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-activerecord Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-assets Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-builder Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-cache Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-core Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-datamapper Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-gen Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-haml Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-has-flash Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-helpers Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-mailer Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-more Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-param-protection Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-parts Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-sequel Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-stories Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-test-unit Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merbful-authentication Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
micro_httpd user-destdir support 2009-07-07 19:05:20 +00:00
midori Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
mimetex Update mimetex to 0.70. 2008-11-05 13:25:12 +00:00
mini_httpd Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
mknmz-wwwoffle Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
mMosaic Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
mongrel Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
mongrel-cluster Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
mongrel-config Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
mongrel-console Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
mongrel-upload-progress Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
mono-xsp Mark as destdir-ready. 2009-08-29 13:49:20 +00:00
mserv-php Nuke a spurious CHMOD in do-install 2009-12-16 21:44:13 +00:00
neon Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
netscape Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
netsurf Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
nginx No negative form of --with-ipv6. 2010-02-09 21:15:34 +00:00
ns-plugger-common PKG_DESTDIR_SUPPORT 2009-12-17 19:18:35 +00:00
ns-remote Update ns-remote to 1.12: 2009-02-10 12:39:57 +00:00
nspluginwrapper Added LICENSE information. 2010-01-30 23:08:00 +00:00
nvu Remove BROKEN_IN variable. It was no maintained, and there was no 2009-08-25 12:32:54 +00:00
ocsigen Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
openjdk7-icedtea-plugin Update to openjdk7 b78 snapshot. 2010-01-15 19:18:42 +00:00
opera Add user-destdir support. 2009-08-29 13:15:54 +00:00
opera-acroread Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
opera-acroread5 Fix Maintainer. DESTDIR support 2009-02-16 13:53:45 +00:00
opera-acroread7 Fix Maintainer. DESTDIR support 2009-02-16 13:53:45 +00:00
opera-plugins Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
p5-Alien-GvaScript Update from version 1.11 to version 1.21 2010-02-03 22:34:58 +00:00
p5-Apache-ASP PkgSrc changes: 2009-04-11 23:15:19 +00:00
p5-Apache-AuthCookie Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-AuthCookieDBI Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-DBILogConfig Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-DBILogger Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-Filter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-Gallery Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
p5-Apache-Reload Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-Session pkgsrc changes: 2009-05-21 11:28:14 +00:00
p5-Apache-Session-Wrapper Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-SSI Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-Test Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache2-AuthCASSimple update to use the new Module::Install infrastructure 2009-06-11 12:06:10 +00:00
p5-Apache2-AuthCookie Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache2-AuthCookieDBI Updating package www/p5-Apache2-AuthCookieDBI from 2.04 to 2.05 2009-08-20 18:01:58 +00:00
p5-App-Nopaste Updating www/p5-App-Nopaste from 0.17 to 0.18 2010-01-16 18:02:53 +00:00
p5-Captcha-reCAPTCHA Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Captcha-reCAPTCHA-Mailhide Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Catalyst-Action-RenderView Updating www/p5-Catalyst-Action-RenderView from 0.13 to 0.14 2010-02-02 15:46:27 +00:00
p5-Catalyst-Action-REST Updating www/p5-Catalyst-Action-REST from 0.78 to 0.81 2010-02-02 11:43:13 +00:00
p5-Catalyst-Authentication-Credential-HTTP Importing www/p5-Catalyst-Authentication-Credential-HTTP version 1.011 as 2010-01-27 09:25:56 +00:00
p5-Catalyst-Authentication-Credential-HTTP-Proxy Importing www/p5-Catalyst-Authentication-Credential-HTTP-Proxy version 0.06. 2010-01-27 09:39:11 +00:00
p5-Catalyst-Authentication-Store-DBIx-Class Adding license and PERL5_MODULE_TYPE to avoid AutoInstall tries installing 2010-01-27 08:47:25 +00:00
p5-Catalyst-Authentication-Store-Htpasswd Importing www/p5-Catalyst-Authentication-Store-Htpasswd version 1.003 as 2010-01-27 10:43:46 +00:00
p5-Catalyst-Component-ACCEPT_CONTEXT Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Component-InstancePerContext Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Controller-BindLex Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Controller-FormBuilder Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Controller-HTML-FormFu Importing www/p5-Catalyst-Controller-HTML-FormFu version 0.06001 as indirect 2010-01-26 16:06:12 +00:00
p5-Catalyst-Devel Updating www/p5-Catalyst-Devel from 1.21 to 1.26 2010-01-16 18:17:37 +00:00
p5-Catalyst-Engine-JobQueue-POE Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Manual Updating www/p5-Catalyst-Manual from 5.8001 to 5.8003 2010-01-16 21:52:03 +00:00
p5-Catalyst-Model-Adaptor Updating www/p5-Catalyst-Model-Adaptor from 0.05nb1 to 0.06 2010-02-02 11:17:08 +00:00
p5-Catalyst-Model-File Importing www/p5-Catalyst-Model-File version 0.08 as dependency of scheduled 2010-01-27 11:08:14 +00:00
p5-Catalyst-Plugin-Authentication Updating www/p5-Catalyst-Plugin-Authentication from 0.10015nb1 to 0.10016 2010-01-26 09:41:47 +00:00
p5-Catalyst-Plugin-Authentication-Store-DBIC Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Plugin-Authentication-Store-RDBO Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Plugin-Authorization-ACL Importing www/p5-Catalyst-Plugin-Authorization-ACL as indirect dependency 2010-01-26 11:37:33 +00:00
p5-Catalyst-Plugin-Authorization-Roles Updating www/p5-Catalyst-Plugin-Authorization-Roles from 0.07nb2 to 0.08 2009-11-21 14:19:20 +00:00
p5-Catalyst-Plugin-AutoRestart Updating www/p5-Catalyst-Plugin-AutoRestart from 0.92nb1 to 0.93 2010-02-02 11:28:01 +00:00
p5-Catalyst-Plugin-ConfigLoader Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Plugin-I18N Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Plugin-RequireSSL Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Plugin-Server avoid pbulk dependency fallout (BROKEN alone will suffice) 2010-02-03 08:37:02 +00:00
p5-Catalyst-Plugin-Session Updating www/p5-Catalyst-Plugin-Session from 0.27 to 0.29 2009-11-21 14:22:50 +00:00
p5-Catalyst-Plugin-Session-State-Cookie Updating www/p5-Catalyst-Plugin-Session-State-Cookie from 0.14nb1 to 0.17 2009-10-24 14:50:28 +00:00
p5-Catalyst-Plugin-Session-Store-DBIC Updating www/p5-Catalyst-Plugin-Session-Store-DBIC from 0.10nb1 to 0.11 2009-10-24 14:59:46 +00:00
p5-Catalyst-Plugin-Session-Store-Delegate Updating www/p5-Catalyst-Plugin-Session-Store-Delegate from 0.04nb1 to 0.05 2009-10-24 14:58:29 +00:00
p5-Catalyst-Plugin-Session-Store-FastMmap Add missing reference to p5-Class-Data-Inheritable 2009-11-02 19:21:19 +00:00
p5-Catalyst-Plugin-Session-Store-File Updating www/p5-Catalyst-Plugin-Session-Store-File from 0.17nb1 to 0.18 2009-10-24 15:08:18 +00:00
p5-Catalyst-Plugin-StackTrace Updating www/p5-Catalyst-Plugin-StackTrace from 0.10nb1 to 0.11 2009-10-24 15:53:35 +00:00
p5-Catalyst-Plugin-Static-Simple Updating www/p5-Catalyst-Plugin-Static-Simple from 0.28 to 0.29 2010-02-02 11:46:44 +00:00
p5-Catalyst-Runtime Updating www/p5-Catalyst-Runtime from 5.80018 to 5.80019 2010-02-02 11:11:30 +00:00
p5-Catalyst-View-Excel-Template-Plus Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-View-Jemplate Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-View-JSON Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-View-Mason Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-View-TT Update p5-Catalyst-View-TT from version 0.30nb1 to version 0.31. 2009-11-19 20:50:42 +00:00
p5-CatalystX-Component-Traits Updating www/p5-CatalystX-Component-Traits from 0.10nb1 to 0.14 2009-11-21 14:29:33 +00:00
p5-CatalystX-CRUD-Controller-RHTMLO Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-CatalystX-CRUD-View-Excel Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-CatalystX-CRUD-YUI Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-CatalystX-LeakChecker Updating www/p5-CatalystX-LeakChecker from 0.04nb1 to 0.05 2010-01-16 18:14:36 +00:00
p5-CGI Update to 3.49: 2010-02-07 16:02:20 +00:00
p5-CGI-Ajax PkgSrc changes: 2009-04-24 06:41:27 +00:00
p5-CGI-Application Updating package www/p5-CGI-Application from 4.21 to 4.31 2009-08-20 18:28:40 +00:00
p5-CGI-Application-Plugin-DBH Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-Application-Plugin-ValidateRM - updated to 2.3 2008-11-08 19:56:28 +00:00
p5-CGI-Cookie-Splitter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-FastTemplate Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-FormBuilder Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-Kwiki Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-Lite Add PREV_PKGPATH and/or SUPERSEDES for various packages that 2009-05-02 16:21:43 +00:00
p5-CGI-Minimal Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-ProgressBar Remove empty PLIST. 2009-07-22 09:34:54 +00:00
p5-CGI-Session Updating www/p5-CGI-Session from 4.41 to 4.42 2009-09-12 21:48:59 +00:00
p5-CGI-Simple pkgsrc changes: 2009-06-12 07:45:56 +00:00
p5-CSS Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CSS-Squish Donate my Perl packages to the Great Five. (Don't worry, I'll try to take 2009-05-21 14:28:44 +00:00
p5-CSS-Tiny Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-FCGI Updating www/p5-FCGI from 0.67nb3 to 0.68 2010-01-16 22:53:54 +00:00
p5-FCGI-ProcManager Updating package www/p5-FCGI-ProcManager from 0.18nb1 to 0.19 2009-08-19 19:11:48 +00:00
p5-Handel Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-HTML-Clean Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Element-Extended Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Email-Obfuscate Import p5-HTML-Email-Obfuscate version 1.00. 2008-11-17 20:19:58 +00:00
p5-HTML-FillInForm Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-FixEntities Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Format Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-FormFu Importing www/p5-HTML-FormFu 0.06001 as indirect dependency of 2010-01-26 15:43:38 +00:00
p5-HTML-LinkExtractor Give up MAINTAINER 2009-07-17 18:00:13 +00:00
p5-HTML-Lint Update from version 2.04nb1 to 2.06. 2009-01-11 16:19:27 +00:00
p5-HTML-Mason Updating www/p5-HTML-Mason from 1.42nb1 to 1.44 2010-01-16 22:49:47 +00:00
p5-HTML-Parser Updating www/p5-HTML-Parser from 3.63 to 3.64 2009-11-14 12:27:12 +00:00
p5-HTML-PrettyPrinter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Prototype Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Prototype-Useful Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-RewriteAttributes Donate my Perl packages to the Great Five. (Don't worry, I'll try to take 2009-05-21 14:28:44 +00:00
p5-HTML-Scrubber Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Selector-XPath Initial import of p5-HTML-Selector-XPath version 0.03 in the NetBSD 2010-02-07 06:04:23 +00:00
p5-HTML-SimpleParse Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-StickyQuery Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Stream Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Strip Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-StripScripts Updating www/p5-HTML-StripScripts from 1.04nb1 to 1.05 2009-11-14 12:33:38 +00:00
p5-HTML-StripScripts-Parser Updating package www/p5-HTML-StripScripts-Parser from 1.02nb1 to 1.03 2009-11-14 12:35:28 +00:00
p5-HTML-Table Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-TableExtract Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Tagset Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Template Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Tiny pkgsrc changes: 2009-05-21 11:43:44 +00:00
p5-HTML-TokeParser-Simple Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Tree Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-TreeBuilder-LibXML Initial import of p5-HTML-TreeBuilder-LibXML version 0.11 in the 2010-02-08 20:56:44 +00:00
p5-HTML-TreeBuilder-XPath Initial import of p5-HTML-TreeBuilder-XPath version 0.11 in the 2010-02-07 16:38:49 +00:00
p5-HTML-WikiConverter Updating www/p5-HTML-WikiConverter from 0.63 to 0.68 2009-09-19 22:45:38 +00:00
p5-HTML-WikiConverter-DokuWiki DokuWiki dialect module for p5-HTML-WikiConverter 2009-07-07 08:56:50 +00:00
p5-HTMLObject Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-Async Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-Body Updating www/p5-HTTP-Body from 1.05 to 1.06 2010-01-17 00:31:27 +00:00
p5-HTTP-Cache-Transparent Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-DAV pkgsrc changes: 2009-06-14 20:25:50 +00:00
p5-HTTP-GHTTP Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-Lite Updating www/p5-HTTP-Lite from 2.1.6nb1 to 2.2 2009-11-21 14:36:37 +00:00
p5-HTTP-Proxy Updating package www/p5-HTTP-Proxy from 0.23 to 0.24 2009-08-19 18:48:25 +00:00
p5-HTTP-Request-AsCGI Updating www/p5-HTTP-Request-AsCGI from 0.9 to 1.2 2010-01-16 16:32:16 +00:00
p5-HTTP-Request-Form Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-Response-Encoding Updating package for p5 module HTTP::Response::Encoding from 0.05 to 0.06 2009-08-09 13:06:46 +00:00
p5-HTTP-Server-Simple Updating www/p5-HTTP-Server-Simple from 0.40 to 0.41 2009-11-21 14:39:49 +00:00
p5-HTTP-Server-Simple-Kwiki Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-Server-Simple-Mason Updating www/p5-HTTP-Server-Simple-Mason from 0.12 to 0.13 2009-11-21 14:42:41 +00:00
p5-HTTP-Server-Simple-Recorder Update from version 0.02nb1 to 0.03. 2008-12-15 22:55:53 +00:00
p5-HTTP-Server-Simple-Static Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTPD-User-Manage Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
p5-I18N-AcceptLanguage Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Jemplate Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Archive-Cvs Updated from version 0.103nb1 to 0.104. 2008-12-15 23:53:07 +00:00
p5-Kwiki-Archive-Rcs Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-BreadCrumbs Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Edit-RequireUserName Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Favorites Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-HtmlBlocks Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Icons-Gnome Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-ModPerl Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-NewPage Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Notify-Mail Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-PagePrivacy Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-ParagraphBlocks Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-PreformattedBlocks Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-RecentChanges Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Revisions Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Scode Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Search Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Simple-Server-HTTP Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-UserName Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-UserPreferences Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Users-Remote Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Weather Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Wikiwyg Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Zipcode Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-libapreq Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
p5-libapreq2 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
p5-libwww Update to 5.834: 2009-12-15 13:41:44 +00:00
p5-LWP-Authen-Negotiate Updating www/p5-LWP-Authen-Negotiate from 0.06nb2 to 0.08 2009-11-21 15:03:05 +00:00
p5-LWP-Authen-Wsse Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-LWP-Online Importing www/p5-LWP-Online 1.07 as indirect dependency of upcoming 2010-01-16 15:58:53 +00:00
p5-LWP-UserAgent-Determined pkgsrc changes: 2009-05-21 10:32:13 +00:00
p5-LWPx-ParanoidAgent Updating package www/p5-LWPx-ParanoidAgent from 1.03nb1 to 1.07 2009-08-19 19:00:31 +00:00
p5-MasonX-Request-WithApacheSession Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mojo Initial import of p5-Mojo version 0.999.914 (upstream version 2010-01-24 22:53:45 +00:00
p5-ParallelUserAgent Added www/p5-ParallelUserAgent version 2.57 2008-10-26 19:13:22 +00:00
p5-Pod-POM-Web Update from version 1.11 to version 1.13. 2010-02-05 00:09:41 +00:00
p5-Reaction Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Rose-HTML-Objects Updating www/p5-Rose-HTML-Objects from 0.604 to 0.606.1 2010-02-02 11:58:15 +00:00
p5-Rose-HTMLx-Form-Field-Autocomplete Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Rose-HTMLx-Form-Field-Boolean Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Rose-HTMLx-Form-Field-PopUpMenuNumeric PkgSrc changes: 2009-05-01 19:28:51 +00:00
p5-Rose-HTMLx-Form-Field-Serial Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Rose-HTMLx-Form-Related Updating www/p5-Rose-HTMLx-Form-Related from 0.17 to 0.19 2010-02-02 12:11:12 +00:00
p5-Rose-URI Update from version 0.022nb1 to 0.500 (upstream 0.50): 2008-12-16 21:44:06 +00:00
p5-SVN-Web - Updating dependency to p5-GD-Graph3d 2009-08-17 19:11:37 +00:00
p5-Task-Catalyst-Tutorial Importing www/p5-Task-Catalyst-Tutorial as a dependency of scheduled 2010-01-27 08:02:44 +00:00
p5-Task-CatInABox Importing www/p5-Task-CatInABox version 0.03 as a dependency of scheduled 2010-02-12 19:57:35 +00:00
p5-Template-Extract - Updating dependency to p5-GD-Graph3d 2009-08-17 19:13:59 +00:00
p5-Template-Generate - Updating dependency to p5-GD-Graph3d 2009-08-17 19:15:33 +00:00
p5-Template-Multilingual PkgSrc changes: 2009-05-01 20:49:35 +00:00
p5-Template-Plugin-Clickable Removed SVR4_PKGNAME 2009-08-17 18:39:08 +00:00
p5-Template-Plugin-Clickable-Email A value of "2-clause-bsd" is now valid for variable LICENSE. 2009-10-30 16:25:34 +00:00
p5-Template-Plugin-Subst A value of "2-clause-bsd" is now valid for variable LICENSE. 2009-10-30 16:25:34 +00:00
p5-Template-Provider-Encoding Update distinfo to match current DISTFILES. 2009-02-19 02:38:05 +00:00
p5-Template-Stash-EscapeHTML Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Template-Stash-HTML-Entities Add PKG_DESTDIR_SUPPORT 2009-02-13 21:36:08 +00:00
p5-Template-Timer PkgSrc changes: 2009-05-01 18:31:58 +00:00
p5-Template-Toolkit Adding a bug-fix which supresses same function is installed multiple times. 2009-08-26 17:39:01 +00:00
p5-Test-HTTP-Server-Simple Updating www/p5-Test-HTTP-Server-Simple from 0.10 to 0.11 2009-11-21 14:48:07 +00:00
p5-Test-WWW-Declare Update from version 0.01nb1 to 0.02. 2008-12-16 21:54:41 +00:00
p5-Test-WWW-Mechanize Update from version 1.22 to version 1.24. 2009-01-19 22:25:32 +00:00
p5-Test-WWW-Mechanize-Catalyst Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-URI Updating www/p5-URI from 1.51 to 1.52. 2010-01-16 15:25:23 +00:00
p5-URI-Escape-XS Updating www/p5-URI-Escape-XS from 0.05 to 0.06 2009-10-24 16:06:07 +00:00
p5-URI-Fetch PkgSrc changes: 2009-04-11 23:15:19 +00:00
p5-URI-Find Needs newer Module::Build than Perl has included. 2009-09-11 17:12:13 +00:00
p5-URI-FromHash This Perl module is in fact using Module::Build. Setting the correct 2009-09-17 19:03:51 +00:00
p5-VRML Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Web-Scraper Initial import of p5-Web-Scraper version 0.32 in the NetBSD Packages 2010-02-08 22:05:31 +00:00
p5-WordPress-XMLRPC The Perl 5 module WordPress::XMLRPC provides an API to WordPress's XML-RPC 2009-02-23 20:57:49 +00:00
p5-WWW-Amazon-Wishlist Updating www/p5-WWW-Amazon-Wishlist from 2.001 to 2.006 2009-09-12 21:56:42 +00:00
p5-WWW-Curl Update to 4.11, set LICENSE. 2010-01-20 14:48:51 +00:00
p5-WWW-Facebook-API Update from version 0.4.13nb1 to 0.4.14. 2008-12-16 23:53:54 +00:00
p5-WWW-Mechanize Updating package www/p5-WWW-Mechanize from 1.58 to 1.60 2009-08-19 18:37:41 +00:00
p5-WWW-Pastebin-PastebinCom-Create Update from version 0.001 to version 0.002. 2009-01-18 10:08:17 +00:00
p5-WWW-Pastebin-RafbNet-Create Initial import of p5-WWW-Pastebin-RafbNet-Create version 0.001 in 2009-01-17 15:42:56 +00:00
p5-WWW-Shorten Update from version 2.02 to version 2.03. 2009-03-19 19:46:28 +00:00
paros Fix PLIST after unzip default flags change. Bump PKGREVISION. 2009-09-29 17:06:15 +00:00
pear-HTML_Common Update pear-HTML_Common from 1.2.3 to 1.2.5. 2010-02-06 16:07:15 +00:00
pear-HTML_Select Mark PEAR packages as DESTDIR ready. Thanks to obache@ for the backend 2010-02-04 16:36:05 +00:00
pear-HTML_TreeMenu Import PEAR::HTML_TreeMenu version 1.2.1: 2008-12-16 01:39:55 +00:00
pear-HTTP Update pear-HTTP from 1.4.0 to 1.4.1. 2010-02-06 16:07:58 +00:00
pear-HTTP_Request Update pear-HTTP_Request package from 1.3.0 to 1.4.4. 2010-02-06 16:08:48 +00:00
php-apc Update www/php-apc to latest 3.1.2 2009-07-10 19:48:32 +00:00
php-curl Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
php-eaccelerator Update eaccelerator to version 0.9.5.3. 2009-07-26 18:05:03 +00:00
plone Remove @dirrm related logic. 2009-06-14 22:57:58 +00:00
plone3 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
plone25 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
pound Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
privoxy Fix overcomplicated install rules. Make sure to create the logfile at 2010-02-09 20:18:43 +00:00
py-beautifulsoup Add missing patches for beautifulsoup-3.1.0.1 2009-10-19 11:07:41 +00:00
py-clearsilver Remove PYBINMODULE. All it did was mark some packages as not available 2009-03-05 18:51:26 +00:00
py-ClientForm Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
py-curl Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
py-django Add an option for the oracle backend. 2010-02-11 13:37:44 +00:00
py-django-registration Added www/py-django-registration version 0.8a1 2010-01-16 10:53:26 +00:00
py-flup Update to flup-1.0.2: 2009-10-19 11:12:08 +00:00
py-gdata Update to 1.2.4. Set LICENSE. Replace lots of python interpreters. 2009-08-16 16:17:01 +00:00
py-genshi DEPENDS should be right after MAINTAINER block, reorder. 2010-01-27 08:46:23 +00:00
py-HTMLgen DESTDIR support. 2009-02-16 19:44:28 +00:00
py-jonpy Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
py-mechanize Update to 0.1.11: 2009-10-11 08:32:04 +00:00
py-moin DEPENDS should be right after MAINTAINER block, reorder. 2010-01-27 08:46:23 +00:00
py-nevow Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
py-paste Update to 1.7.2 2009-11-10 17:08:24 +00:00
py-PasteDeploy Import PasteDeploy-1.3.3 2009-11-10 17:13:00 +00:00
py-rss2gen Remove PYBINMODULE. All it did was mark some packages as not available 2009-03-05 18:51:26 +00:00
py-scgi Allow all python versions. 2010-02-10 21:10:25 +00:00
py-simpletal Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
py-swish-e Update to new master site. 2010-01-23 23:05:14 +00:00
py-uwsgi --libs for python-config is evil, it makes it find the static lib first. 2010-02-10 13:25:03 +00:00
py-webpy Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
qDecoder user-destdir support 2009-07-07 19:01:16 +00:00
raggle Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
rails Update rails packages to 2.3.5. This fixes a cross-site scripting 2009-12-01 23:24:24 +00:00
ramaze Updated to version 2009.10 2009-11-19 14:11:03 +00:00
ruby-actionpack Update rails packages to 2.3.5. This fixes a cross-site scripting 2009-12-01 23:24:24 +00:00
ruby-activeresource Update rails packages to 2.3.5. This fixes a cross-site scripting 2009-12-01 23:24:24 +00:00
ruby-borges Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-clearsilver Update clearsilver packages to 0.10.5. 2008-10-06 01:04:28 +00:00
ruby-compass Initial import of ruby-compass version 0.8.17 in the NetBSD 2009-10-31 19:40:17 +00:00
ruby-compass-susy-plugin Initial import of ruby-compass-susy-plugin version 0.6.3 in the 2009-11-01 23:44:45 +00:00
ruby-cssmin Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-fcgi Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-gnome2-gtkhtml2 Update ruby-gnome2 to 0.19.3. 2009-10-12 03:09:30 +00:00
ruby-gnome2-gtkmozembed Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
ruby-htmlsplit Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-innate Imported from wip/ruby-innate 2009-11-19 14:06:44 +00:00
ruby-jsmin Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-mechanize Updated ruby-mechanize to 0.9.3. 2009-12-02 14:04:22 +00:00
ruby-net-flickr Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-patron Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ruby-rack Update ruby-rack to 1.0.1. 2009-12-02 12:44:43 +00:00
ruby-staticmatic Initial import of ruby-staticmatic version 0.10.6 in the NetBSD 2009-11-01 03:16:58 +00:00
ruby-tag Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-webunit Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
sarg Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
screws Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
seamonkey Update to seamonkey-2.0.2. 2010-01-25 14:43:20 +00:00
seamonkey-bin Update seamonkey, seamonkey-bin and seamonkey-gtk1 to Seamonkey 1.1.18. 2009-09-15 09:26:07 +00:00
seamonkey-bin-flash Add DESTDIR support. 2008-06-20 01:09:05 +00:00
seamonkey-bin-java
serf Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
sitecopy Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
skipstone Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
snarf Add DESTDIR support. 2008-06-20 01:09:05 +00:00
snownews Update snownews to 1.5.11. 2009-06-01 11:56:43 +00:00
sope Bump revision for change of PostgreSQL default version. 2010-02-10 19:34:05 +00:00
spawn-fcgi Fix socket_mode option. Bump revision. 2010-02-14 19:03:51 +00:00
SpeedyCGI Give up MAINTAINER 2009-07-17 18:00:13 +00:00
squid Make MESSAGE_SRC settable by each squid* pacakge. 2009-11-02 15:43:20 +00:00
squid27 Add a security patch described security advisory SQUID-2010_2.txt, 2010-02-14 13:27:52 +00:00
squid30 Update squid to 3.0.24 (3.0.STABLE24). 2010-02-14 13:37:02 +00:00
squid31 Update "squid31" package to version 3.1.0.16. Changes since 3.1.0.15: 2010-02-02 13:57:49 +00:00
squidGuard Add official patch-20091015, quote from Readme.Patch-20091015. 2009-10-17 01:50:38 +00:00
squidpurge user-destdir support 2009-07-07 18:56:23 +00:00
squirm user-destdir support 2009-07-07 18:54:07 +00:00
surfraw Update to 2.2.6: 2009-11-26 15:22:55 +00:00
swiftsurf user-destdir support 2009-07-07 18:54:07 +00:00
swiggle Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
swill Update from 0.1 to 0.3 2009-07-17 12:35:12 +00:00
swish-e Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
tcl-cgi user-destdir support 2009-07-07 18:53:17 +00:00
thin Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
thoth Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
thoth-delicious Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
thoth-flickr Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
thttpd Rename internal "getline" to unbreak build on NetBSD. 2009-12-13 17:42:36 +00:00
thy use libgnutls-config.mk and libgnutls-extra-config.mk to get back TLS 2009-07-03 11:01:01 +00:00
tidy Depend on doxygen-1.5.9, which causes different file names. Adapt 2009-08-17 11:24:39 +00:00
tinyproxy Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
trac Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
typo3 Update typo3 package to 4.3.1 2010-01-14 14:59:26 +00:00
typolight Add more "used by" comments. 2009-12-23 12:51:41 +00:00
typolight26 www/typolight* work with PHP 5.2 and lator. 2009-12-23 12:53:46 +00:00
typolight26-example o Explict set WWW_FILE in Makefile. 2009-11-29 06:45:01 +00:00
typolight26-translations Move LICENSE from typolight/Makefile.common to each Makefiles for 2009-11-22 16:17:59 +00:00
typolight27 www/typolight* work with PHP 5.2 and lator. 2009-12-23 12:53:46 +00:00
typolight27-example o Explict set WWW_FILE in Makefile. 2009-11-29 06:45:01 +00:00
typolight27-translations * Add missing language files which should be added: Bosnian, Croatian, 2010-02-08 15:41:41 +00:00
typolight28 Update typolight28 package to 2.8rc2. 2009-12-24 03:21:40 +00:00
typolight28-example Importing typolight28-example, sample website for TYPOlight 2.8.RC1. 2009-12-02 16:07:54 +00:00
typolight28-translations Update typolight28-translations package 20100210. 2010-02-14 12:23:36 +00:00
urlget Support PKGMANDIR 2009-10-29 22:29:16 +00:00
urlgrabber Update HOMEPAGE and MASTER_SITES to catch up rearrange of the site. 2010-01-12 01:34:18 +00:00
varnish Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
viewvc Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
visitors Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
w3 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
w3c-httpd Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
w3m Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
w3m-img More PKGREVISION bumps of jpeg dependencies. 2010-01-24 13:26:09 +00:00
waplet Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
wApua Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
wdg-validate Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
webalizer Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
webby Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
webkit-gtk Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
weblint Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
webnew Add DESTDIR support. 2008-06-20 01:09:05 +00:00
websvn make print-PLIST turned "applescript" into "{LOWER_VENDOR}script". 2009-07-25 20:14:42 +00:00
weex Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
whisker Give up MAINTAINER 2009-07-17 18:00:13 +00:00
wiliki Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
wmd PKG_DESTDIR_SUPPORT 2009-12-17 19:13:39 +00:00
wml Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
wordpress Update to 2.8.6 2009-11-12 22:05:55 +00:00
www6to4 user-destdir support 2009-07-07 18:36:12 +00:00
wwwcount Fix the do-install to include DESTDIR references - not sufficient in itself so PKG_DESTDIR_SUPPORT not turned on 2009-12-17 19:32:28 +00:00
wwwoffle update master_sites. 2009-12-21 01:01:15 +00:00
zope Provide PY_COMPILE_ALL and PY_COMPILE_O_ALL to compile all Python 2009-07-08 13:55:58 +00:00
zope-ejsplitter Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
zope-jamailhost Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
zope3 Fix the post-install to include DESTDIR references - not sufficient in itself so PKG_DESTDIR_SUPPORT not turned on 2009-12-17 19:31:55 +00:00
zope29 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
zope210 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
zope211 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
zopeedit Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
Makefile Added www/p5-Task-CatInABox version 0.03 2010-02-12 19:57:51 +00:00