pkgsrc/www
obache 17eff879bd Update apache-tomcat55 to 5.5.23.
Tomcat 5.5.23 (fhanik)
Catalina
 41608 Make log levels consistent when Servlet.service() throws an exception. (markt)
 41666 Correct handling of boundary conditions for If-Unmodified-Since and If-Modified-Since headers. Patch provided by Suzuki Yuichiro. (markt)
 41674 Fix error messages when parsing context.xml that incorrectly referred to web.xml. (markt)
 41739 Correct handling of servlets with a load-on-startup value of zero. These are now the first servlets to be started. (markt)

Coyote
 Requests with multiple content-length headers are now rejected. (markt)


Tomcat 5.5.22 (fhanik)
General
 Fix regression in build that prevented connectors from building. (markt)


Tomcat 5.5.21 (fhanik)
Catalina
 41401: StandardService.getConnectorNames() return array of Connector JMX objectnames. (pero)
 29727: If env-entry values in web.xml are changed then ensure new values are applied when context is reloaded. (markt)
 34956: Ensure request and response objects passed to a RequestDispatcher meet the requirements of SRV.8.2 and SRV.14.2.5.1. This is disabled by default. The Java option -Dorg.apache.catalina.STRICT_SERVLET_COMPLIANCE=true is required to enable this test. (markt)
 36274: When including static content with the DefaultServlet also treat content types ending in xml as text. (markt)
 36976: Don't use CATALINA_OPTS when stopping Tomcat. This allows options for starting and stopping to be set on JAVA_OPTS and options for starting only to be set on CATALINA_OPTS. Without this fix, some startup options (eg the port for remote JMX) would cause stop to fail. Based on a fix suggested by Michael Vorburger. (markt)
 37070: Update mbean name documentation to include the StandardWrapper. (markt)
 37356: Ensure sessions time out correctly. This has been fixed by removing the accessCount feature by default. This feature prevents the session from timing out whilst requests that last longer than the session time out are being processed. This feature is enabled by setting the Java option -Dorg.apache.catalina.STRICT_SERVLET_COMPLIANCE=true The feature is now implemented with synchronization which addresses the thread safety issues associated with the original bug report. (markt)
 37439: Update documentation for Engine component to add the requirement that the name must be unique. (markt)
 37458: Add syncs to the WebappClassloader to address rare issues when multiple threads attempt to load the same class concurrently. (markt)
 37509: Do not remove whitespace from the end of values defined in logging.properties files. (markt)
 38198: Add reference to Context documentation from Host documentation that explains how Context name is obtained from the Context filename. (markt)
 39088: Prevent infinte loops when an exception is thrown that returns itself for getRootCause(). Based on a patch by Wouter Zelle. (markt)
 39436: Correct MIME type for SVG. (markt)
 39627: JULI no longer ignores a ".level=XXX" directive in logging.properties. Patch provided by Roger Keays and Richard Fearn. (markt)
 39724: Removing the last valve from a pipeline did not return the pipeline to the original state. Patch provided by David Gagon. (markt)
 40367: Update JK auto configuration documentation to clarify that workers.properties must also exist. (markt)
 40524: HttpServletRequest.getAuthType() now returns CLIENT_CERT rather than CLIENT-CERT for certificate authentication as per the spec. Note that web.xml continues to use CLIENT-CERT to specify the certificate authentication should be used. (markt)
 40526: Add support for JPDA_OPTS to catalina.bat and add a JPDA_SUSPEND environment variable to both startup scripts. Patch provided by Kurt Roy. (markt)
 40528: Add missing message localisations as provided by Ben Clifford. (markt)
 40585: Fix parameterised constructor for o.a.juli.FileHandler so parameters have an effect. (markt)
 40625: Stop CGIServlet swallowing the root cause of an exception. Patch provided by Takayoshi Kimura. (markt)
 40723: Correct table creation example in JavaDoc for JDBCAccessLogValve. (markt)
 40802: Add jsp-api.jar to fileset in catalina-tasks.xml as provided by Daniel Santos. (pero)
 40817: Correct problem where CGI scripts in the root of the ROOT context threw a StringIndexOutOfBoundsException. (markt)
 Set the SCRIPT_FILENAME environment variable required by PHP when using the CGIServlet to execute PHP. (markt)
 40823: Update context doc to clarify use of ROOT.xml, multi-level context paths and to further discourage use of server.xml (markt)
 40844: Add additional syncs to JDBCRealm to resolve NPE when two users try to authenticate using DIGEST authentication at the same time. (markt)
 40860: Log exceptions and other problems during parameter processing. (markt)
 40901: Encode directory listing output. Based on a patch provided by Chris Halstead. (markt)
 40929: Correct JavaDoc for StandardCalssLoader. (markt)
 41008: Allow POST to be used for indexed queries with CGI Servlet. Patch provided by Chris Halstead. (markt)
 41020: Improve error message when custom error report Valve fails to load. Also remove requirement that custom error report Valves extend ValveBase. (markt)
 41217: Set secure attribute on SSO cookie when cookie is created during a secure request. Patch provided by Chris Halstead. (markt)
 Ensure Accept-Language headers conform to RFC 2616. Ignore them if they do not. (markt)
 Make provided instances of RequestDispatcher thread safe. (markt)
 Fix formatting of CGI variable SCRIPT_NAME. (markt)
 34643: Improved documentation for per-user / per-session clientAuth usage in SSL Authenticator. Docs provided by jack and Ralf Hauser. (yoavs)
 40668: Update release notes and readme files specific to v5.5.20 to notify users of missing MailSessionFactory in distribution, suggest workarounds, and link to relevant Bugzilla issue. (yoavs)
 37977: adapt BUILDING.txt and net build.xml for SVN. Patch by Christopher Sahnwaldt. (yoavs)
 39055: Link to sample workaround code for using JSR160 JMX monitoring with a local firewall. Thanks to George Lindholm for the patch. (yoavs)
 39476: add xml declaration to most build.xml files, as suggested by Gregory S. Hoerner Sr. (yoavs)
 40326: stop using File#deleteOnExit in DefaultServlet to avoid JVM memory leak, as suggested by quartz. (yoavs)
 40192: update setup.html notes regarding Windows tray icon. (yoavs)
 40177: add more warnings to documentation about RequestDumperValve character encoding. (yoavs)
 39255: NPE in AuthenticatorBase when logging level is set to DEBUG and no prinicpal found. (yoavs)
 41437: Make log messages and loglevel consistent during Context start. Patch provided by Suzuki Yuichiro. (markt)

Coyote
 38332: Add backlog attribute to ChannelSocket as provided by Takayoshi Kimura. (pero)
 Backport packetSize feature from Tomcat 6.0.x at standard coyote AJP Jk handler. (pero)
 40771: Fix implementation of SavedRequestInputFilter.doRead() so POST data may be read using a Valve or Filter. Patch provided by Michael Dufel. (markt)
 41017: Restore behaviour of MessageBytes.setString(null). (remm/markt)
 41057: Modify StringCache to add a configurable upper bound to the length of cached strings. (remm/markt)
 38774: Check javax.net.ssl.keyStorePassword system property as a secondary source for keystore password in JSSESocketFactory, as suggested by Ted X. Toth. (yoavs)
 39402: Modify existing Vary HTTP header, rather than overwrite it, if it exists when using GZip compression. Patch by Matthew Cooke. (yoavs)
 40241: Catch Exceptions instead of Throwables in Default and SSI servlets. Also improve relevant logging while we're at it. (yoavs)
 40133: Better error message when context name is not available on startup, as suggested by Andreas Plesner Jacobsen. (yoavs)

Jasper
 39975: don't have static Log references to prevent classloader leaks. (yoavs)
 40104: When displaying JSP source after an exception, handle included files. (markt)
 40797: This was a regression as a result of the fix for 33407. TLD validation was failing as a result of the use of the escape character (0x1b) as a temporary replacement for \$. An alternative character (0xe000) from the unicode private use range is now used. (markt)
 41057: Make jsp:plugin output XHTML compliant. (markt)
 41327: Show full URI for a 404. Patch provided by Vijay. (markt)
 41265: Allow JspServlet checkInterval init parameter to be explicitly set to the stated default value of zero by removing the code that resets it to 300 if explicitly specified as zero. (markt)
 Display the JSP source when a compilation error occurs and display the correct line number rather than start of a scriptlet block. (markt)

Webapps
 34952: Clarify that the Windows Installer always installs a Windows service. (markt)
 35968: Make environment entry properties input a text area. Patch provided by Tristan Marly. (markt)
 37588: Fix creation of JNDI Realm in admin application. Patch provided by Terry Zhou. (markt)
 38048: Fix memory leak assoaciated with use of expression language in JSPs. Patch provided by Taras Tielkes. (markt)
 39572: Improvements to CompressionFilter example provided by Eric Hedstrom. (markt)
 40507: Update host-manager and servlet-examples web-apps to use the servlet 2.4 xsd. Patch provided by Chris Halstead. (markt)
 40581: Add information on the use of a symbloic link as the docBase for a Context to the Context documentation. (markt)
 40633: Remove references to the DefaultContext from the documentation. (markt)
 40677: Update SSL documentation to indicate that PKCS11 keystores may be used. (markt)
 40714: Admin webapp no longer requires a username for a DataSource since it is not required in all cases. (markt)
 40720: Fix exception in admin webapp when adding a group to a user. (markt)
 40874: Correct log4j configuration in documentation webapp. Patch provided by Franck Borel. (markt)
 40999: Add trust store configuration for SSL connectors to the admin webapp. (markt)
 41051: Add information on keystore aliases and case sensitivity to SSL HOW-TO. (markt)
 41182: Update the Jasper documentation for the classpath attribute. (markt)
 41493: Fix handling of APR connectors in Admin webapp. (markt)
 41512: Version number was not inserted in release notes. (markt)
 40257: Update Manager webapp howto on remote deployment to reflect need for explicit path in one specific use-case. Thanks to Venkatesh Jayaraman. (yoavs)
 40160: add reference to the Filter proposed in this Bugzilla item to the WebdavServlet. While at it, give the WebdavServlet some long-overdue TLC by cleaning up some of the old data structures in favor of modern (but still JDK 1.4-compliant) interfaces. (yoavs)
 Add a virtual hosting how-to contributed by Hassan Schroeder. (markt)

Cluster
 Add clustered SSO code and backport feature from Tomcat 6.0.x, submitted by Fabien Carrion (pero)
 Add better recovery at FastAsyncQueueSender. Made the startegy more robust for temporary connection problems (pero)
2007-04-25 06:14:45 +00:00
..
adzap Update to version 20070225. Only changes are to ad patterns. 2007-03-03 20:55:28 +00:00
album Reset maintainer for people who lost their commit bit. 2006-09-03 00:56:28 +00:00
album_themes Reset maintainer for people who lost their commit bit. 2006-09-03 00:56:28 +00:00
amaya added fixes for Darwin 2006-10-07 19:16:57 +00:00
analog Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
ap-access-referer Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
ap-auth-cookie Already using un-zipped file, so no need to use gzcat. 2006-09-10 03:49:06 +00:00
ap-auth-external Fix module name in MESSAGE for apache2. 2007-02-03 04:13:25 +00:00
ap-auth-kerb Update to mod_auth_kerb-5.3. Suggested by Michael Santos in PR pkg/35459. 2007-01-25 19:54:08 +00:00
ap-auth-ldap Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
ap-auth-mysql pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
ap-auth-pam Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
ap-auth-pgsql Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
ap-auth-postgresql Per Juan RP, use pkgsrc-users@ as MAINTAINER of unmaintained pkgs. 2007-03-21 19:44:10 +00:00
ap-auth-radius Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
ap-auth-script Update to 1.10: 2006-08-09 10:46:47 +00:00
ap-bandwidth Update for changed PKGNAME_NOREV 2006-06-07 11:49:10 +00:00
ap-dav Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
ap-dtcl Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
ap-Embperl Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
ap-fastcgi Fix build of Apache 1.3 module. From PR 35317 by b1ff@fr33.b33r.net. 2006-12-29 13:35:30 +00:00
ap-gzip Some more HOMEPAGE/MASTER_SITES updates from Sergey Svishchev. 2006-10-28 21:29:47 +00:00
ap-iasp Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
ap-jk Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
ap-layout Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
ap-mp3 pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
ap-perl Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
ap-php bump revision for openssl omission fix in lang/php5 for PHP 5.2.1 2007-02-25 20:06:09 +00:00
ap-python Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
ap-rivet Update ap-rivet to 0.5.0. Mainly conversion to autotools. 2006-08-23 11:22:06 +00:00
ap-rpaf give away to pkgsrc-users 2007-03-19 16:35:51 +00:00
ap-ruby Set CONFIG_SHELL to fix build problem recently. 2007-03-24 09:37:33 +00:00
ap-ssl Update to 2.8.28, for apache-1.3.37 2006-07-30 11:19:38 +00:00
ap-throttle Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
ap-xslt Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
ap2-auth-ldap * Use apache.mk to be compatible with the new apache22 pkg. 2006-12-08 23:34:10 +00:00
ap2-auth-mysql Fix patch so it works with Apache 2.2.x. 2007-02-25 15:51:50 +00:00
ap2-auth-pgsql Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
ap2-auth-radius * Use apache.mk to be compatible with the new apache22 pkg. 2006-12-08 23:34:10 +00:00
ap2-auth-xradius * Use apache.mk to be compatible with the new apache22 pkg. 2006-12-08 23:34:10 +00:00
ap2-bw give away to pkgsrc-users 2007-03-19 16:35:51 +00:00
ap2-chroot Reset maintainer, ben@ has resigned. 2006-12-15 14:34:18 +00:00
ap2-fastcgi * Use apache.mk to be compatible with the new apache22 pkg. 2006-12-08 23:34:10 +00:00
ap2-fcgid Import www/ap2-fcgid-2.0nb1 into pkgsrc: 2007-01-25 20:22:54 +00:00
ap2-jk * Use apache.mk to be compatible with the new apache22 pkg. 2006-12-08 23:34:10 +00:00
ap2-perl * Use apache.mk to be compatible with the new apache22 pkg. 2006-12-08 23:34:10 +00:00
ap2-python * Use apache.mk to be compatible with the new apache22 pkg. 2006-12-08 23:34:10 +00:00
ap2-subversion Version 1.4.3 2007-01-25 18:15:49 +00:00
ap2-suphp pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
ap2-transform * Use apache.mk to be compatible with the new apache22 pkg. 2006-12-08 23:34:10 +00:00
ap2-xslt2 * Use apache.mk to be compatible with the new apache22 pkg. 2006-12-08 23:34:10 +00:00
apache Fix perl interpreter path for libexec/cgi-bin/printenv. Bump PKGREVISION for 2007-01-23 15:45:43 +00:00
apache-tomcat55 Update apache-tomcat55 to 5.5.23. 2007-04-25 06:14:45 +00:00
apache2 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
apache22 apr-config is called apr-1-config now. 2007-02-25 00:02:35 +00:00
apachetop Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
apc-gui Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
asp2php
august Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
awstats Update awstats for the new distfile with the same version number. Changes 2007-02-20 18:29:49 +00:00
bannerfilter Fixed "test ==". 2006-11-11 16:48:14 +00:00
bins Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
bkedit pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
bluefish Bump PKGREVISION for gnome-keyring ABI bump. 2007-03-21 12:05:41 +00:00
blur6ex Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
bozohttpd Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
browser-bookmarks-menu fix some path substitution so that that thing finally works, 2006-05-08 13:09:39 +00:00
cadaver Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
calamaris Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
cgic Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
cgicc Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
cgilib Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
checkbot Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
cherokee pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
chimera - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
clearsilver Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
clearsilver-base Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cocoon Mark as BROKEN_IN pkgsrc-2006Q4, based on 2007-01-31 00:04:11 +00:00
communicator add missing RMD160 checksum 2006-04-14 12:22:11 +00:00
crawl PKGREVISION bump due to proper ABI_DEPENDS versioning in devel/libevent. 2007-02-11 05:22:24 +00:00
cronolog Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
curl Update to 7.16.2: 2007-04-15 13:29:23 +00:00
cvsweb No reason to have a +DISPLAY say a package is installed. 2007-01-24 17:43:58 +00:00
dillo Move options to separate options.mk file. 2006-05-27 03:22:32 +00:00
drivel Bump PKGREVISION for gnome-keyring ABI bump. 2007-03-21 12:05:41 +00:00
drraw Update drraw to 2.2a3. 2007-04-14 19:32:58 +00:00
drupal Don't forget to install robots.txt as well 2007-04-09 19:30:48 +00:00
elinks Modular Xorg support for the X11 option of elinks. 2007-01-26 23:43:02 +00:00
emacs-w3m Fix PLIST issues with patch from uebayasi@ and some of my own stuff. 2007-02-19 09:22:30 +00:00
epiphany update to 2.18.1 2007-04-11 17:56:40 +00:00
epiphany-extensions update to 2.18.1 2007-04-11 17:56:40 +00:00
fcgi Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
ffproxy Add new pkg noted in PR pkg/28824 www/ffproxy. Minor changes by myself 2006-01-05 19:12:35 +00:00
firefox chmod u+w all files under lib/${MOZILLA}/defaults in post-install phase for 2007-03-31 22:51:24 +00:00
firefox-bin Update firefox, firefox-bin and firefox-gtk1 to 1.5.0.11. Fixed in this version: 2007-03-21 13:33:04 +00:00
firefox-bin-acroread Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
firefox-bin-acroread5 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
firefox-bin-acroread7 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
firefox-bin-flash Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
firefox-bin-java Update "firefox-bin-java" package to version 1.2. It now uses the 2006-05-29 14:04:04 +00:00
firefox-bin-nightly Use Makefile.common from seamonkey-bin-nightly dir instead of 2006-09-24 16:42:56 +00:00
firefox-bin-realplayer The RealPlayerGold package keeps its browser plugin in a different location 2007-01-31 17:05:31 +00:00
firefox-gtk1 Update firefox, firefox-bin and firefox-gtk1 to 1.5.0.11. Fixed in this version: 2007-03-21 13:33:04 +00:00
firefox2 Fixed building firefox2 on Solaris. 2007-04-15 23:12:05 +00:00
firefox2-bin Update firefox2, firefox2-bin and firefox2-gtk1 to 2.0.0.3. Fixed in this version: 2007-03-21 13:45:20 +00:00
firefox2-gtk1 chmod u+w all files under lib/${MOZILLA}/defaults in post-install phase for 2007-03-31 22:51:24 +00:00
galeon Bump PKGREVISION for gnome-keyring ABI bump. 2007-03-21 12:05:41 +00:00
galway Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
ganglia-webfrontend Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
geeklog Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
gitweb Extract using gtar to avoid problems with the distfile, as devel/scmgit does. 2007-03-25 18:41:26 +00:00
glibwww Modular Xorg support. 2007-01-09 15:06:23 +00:00
grail Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
gtkasp2php Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gtkhtml Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gtkhtml38 Downgrade to latest release from 3.8 branch, 3.12.3nb1. 2007-04-17 06:29:40 +00:00
gtkhtml314 version suffix 38->314 2007-04-17 11:26:11 +00:00
haskell-cgi HOMEPAGE is gone, comment it out. From Sergey Svishchev. 2007-02-22 19:24:37 +00:00
hiawatha Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
horde Update to 3.1.4 2007-03-18 12:24:13 +00:00
htdig Stop htnotify coredumping if prefix or suffix file settings aren't set. 2007-01-24 10:25:15 +00:00
htdig-devel Don't try and define bool if c++ as its builtin. Fixes PR pkg/32960. 2006-07-02 14:36:31 +00:00
htmldoc Uses C++. 2006-05-12 10:41:54 +00:00
htmldoc-x11 Mechanically replace all includes of buildlink3.mk of the following 2006-12-15 20:32:52 +00:00
htmlfix Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
htmllint Fixed pkglint warnings. 2006-07-10 10:43:31 +00:00
http_load Use BSD_INSTALL_* to set permission and ownership correctly. 2006-06-10 19:47:47 +00:00
iasp Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ijb Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
ikiwiki initial import of ikiwiki-1.32 2006-11-13 01:25:25 +00:00
instiki Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
ja-trac Change my mail address to @NetBSD.org. 2007-04-01 01:58:36 +00:00
jakarta-servletapi Don't bail out on deprecated symbols. Fixes build with jikes which 2007-01-23 16:22:00 +00:00
jakarta-tomcat4 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
jakarta-tomcat5 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
jalbum Updated www/jalbum to 7.1 2007-04-12 10:24:02 +00:00
jsdk20 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
jssi These two packages are no longer maintained, and are made irrelevant by 2007-03-21 19:24:11 +00:00
kahua Fix PLIST after the last overhaul. 2007-01-30 00:27:24 +00:00
kannel Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
kazehakase Update to 0.4.3. 2007-01-24 16:29:11 +00:00
kdewebdev3 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
lhs Create directories before installing files into them. 2005-06-17 03:50:19 +00:00
libghttp Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libgtkhtml add missing bdb.buildlink3.mk 2006-11-16 02:37:34 +00:00
libwww Fix mis-detect netbsd/hp700 as HP-UX. 2007-04-21 11:17:47 +00:00
liferea update to 1.2.10c 2007-04-11 18:58:37 +00:00
lighttpd Update to lighttpd 1.4.15: 2007-04-19 16:16:17 +00:00
links Update to 2.1.0.28: 2007-04-15 07:41:47 +00:00
links-gui Update to 2.1.0.28: 2007-04-15 07:41:47 +00:00
lynx Restore code to preprocess ".po" files to make this build with older 2007-03-10 14:10:39 +00:00
make_album Reset MAINTAINER; I don't have the time nor inclination to maintain 2006-04-22 07:32:24 +00:00
micro_httpd Update to version 20051212. 2007-03-23 21:38:02 +00:00
mini_httpd Add patch: do not fail on ECONNABORTED. 2007-01-18 16:28:07 +00:00
mknmz-wwwoffle Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
mMosaic This uses libXmu. 2007-01-23 23:33:22 +00:00
mongrel Import mongrel. 2006-11-01 06:38:47 +00:00
navigator Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
neon Needs gettext-lib to work as expected. Bump revision. 2007-03-23 23:52:17 +00:00
netscape update netscape to netscape-20040123nb4: 2006-09-29 22:12:51 +00:00
ns-plugger-common Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
ns-plugger-communicator Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ns-plugger-navigator Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ns-remote Update to ns-remote-1.11nb3: correctly escape spaces in URLs in ns-open 2007-04-02 21:59:30 +00:00
nspluginwrapper Add support to install on NetBSD/amd64 and SUSE_COMPAT32. 2007-04-19 16:11:34 +00:00
nvu Mark as BROKEN_IN pkgsrc-2006Q4, based on 2007-01-31 00:04:11 +00:00
ocsigen Added www/ocsigen from PR 36103 by Jaap Boender 2007-04-10 20:24:43 +00:00
opera Update to 9.20 (latest stable version), tested with NetBSD/amd64. 2007-04-16 23:21:41 +00:00
opera-acroread Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
opera-acroread5 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
opera-acroread7 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
opera-plugins Add support to install on NetBSD/amd64 and SUSE_COMPAT32. 2007-04-19 16:11:34 +00:00
p5-Apache-ASP Fix a check-interpreter error. 2006-06-10 19:53:13 +00:00
p5-Apache-AuthCookie Update p5-Apache-AuthCookie to 3.10. 2006-10-17 12:58:26 +00:00
p5-Apache-AuthCookieDBI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-DBILogConfig Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-DBILogger Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-Filter Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
p5-Apache-Gallery No need to directly depend on X11. 2007-02-15 14:07:44 +00:00
p5-Apache-Reload Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Apache-Session Update to 1.82: 2007-02-25 23:48:29 +00:00
p5-Apache-Session-Wrapper Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Apache-SSI Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
p5-Apache-Test Update to 1.29: 2007-02-18 03:25:51 +00:00
p5-CGI Update to 3.27: 2007-03-16 20:32:09 +00:00
p5-CGI-Application Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-CGI-FastTemplate Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-CGI-FormBuilder Update to 3.0302: 2007-03-16 20:35:21 +00:00
p5-CGI-Kwiki Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-CGI-Minimal Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-CGI-Session Update to 4.20: 2007-03-16 20:41:22 +00:00
p5-CGI_Lite Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-FCGI Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-FCGI-ProcManager Added www/p5-FCGI-ProcManager-0.17 2006-06-07 11:44:22 +00:00
p5-HTML-Clean Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-Element-Extended Update to 1.17: 2007-02-22 10:51:39 +00:00
p5-HTML-FillInForm Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-FixEntities Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-Format Added empty USE_LANGUAGES (no compiler needed). 2006-07-16 13:23:52 +00:00
p5-HTML-LinkExtractor This module is useless without DEPENDS+=p5-HTML-Parser-[0-9]* 2006-09-17 00:11:52 +00:00
p5-HTML-Mason Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-HTML-Parser Update to 3.56: 2007-02-02 19:04:35 +00:00
p5-HTML-PrettyPrinter Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-Prototype Import p5-HTML-Prototype from pkgsrc-wip, packaged by kuli0020. 2006-02-15 06:24:31 +00:00
p5-HTML-Prototype-Useful Import p5-HTML-Prototype-Useful from pkgsrc-wip, packaged by kuli0020. 2006-02-15 06:29:00 +00:00
p5-HTML-Scrubber Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-SimpleParse Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-StickyQuery Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-Stream Imported p5-HTML-Stream from pkgsrc-wip. 2005-11-19 12:43:04 +00:00
p5-HTML-Table Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-TableExtract Update to 2.10: 2007-02-24 23:05:42 +00:00
p5-HTML-Tagset DESTDIR support. 2006-11-05 17:31:09 +00:00
p5-HTML-Template Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-Tree Update to 3.23: 2007-02-18 03:17:10 +00:00
p5-HTMLObject Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTTP-Cache-Transparent Update to 0.5: 2007-02-27 14:12:05 +00:00
p5-HTTP-DAV Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-HTTP-GHTTP Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTTP-Lite Import p5-HTTP-Lite from pkgsrc-wip. Packaged by Eric Schnoebelen. 2006-08-22 21:46:13 +00:00
p5-HTTP-Proxy remove svr4 pkgname. 2006-03-23 18:06:52 +00:00
p5-HTTP-Request-Form Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-HTTP-Server-Simple Update p5-HTTP-Server-Simple to 0.27. 2007-04-17 07:47:57 +00:00
p5-HTTP-Server-Simple-Kwiki Fix dependency... it needs HTTP::Server::Simple::Static. 2006-05-02 04:45:09 +00:00
p5-HTTP-Server-Simple-Mason Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTTP-Server-Simple-Static Import HTTP::Server::Simple::Static-0.02 as www/p5-HTTP-Server-Simple-Static. 2006-05-02 04:41:37 +00:00
p5-HTTPD-User-Manage Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Jemplate Take maintainership. Suggested by obache@. 2007-04-13 04:06:39 +00:00
p5-Kwiki Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-Archive-Cvs Add p5-Kwiki-Archive-Cvs version 0.102. 2007-03-11 15:57:30 +00:00
p5-Kwiki-Archive-Rcs Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-BreadCrumbs Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-Edit-RequireUserName Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-Favorites Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-HtmlBlocks Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-Icons-Gnome Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-ModPerl Add p5-wiki-ModPerl version 0.09. 2007-03-12 12:37:59 +00:00
p5-Kwiki-NewPage Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-Notify-Mail Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-PagePrivacy Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-ParagraphBlocks Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-PreformattedBlocks Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-RecentChanges Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-Revisions Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-Scode Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-Search Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-Simple-Server-HTTP Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-UserName Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-UserPreferences Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-Users-Remote Add missing dependency, p5-Kwiki-UserName>=0.14. 2006-11-25 12:44:24 +00:00
p5-Kwiki-Weather Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-Wikiwyg Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Kwiki-Zipcode Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-libapreq Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
p5-libapreq2 Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
p5-libwww Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-LWP-Authen-Negotiate Initial import of p5-LWP-Authen-Negotiate 0.06 2006-05-15 12:02:34 +00:00
p5-LWP-Authen-Wsse Use the right distinfo file, d'oh. 2006-01-30 13:15:33 +00:00
p5-MasonX-Request-WithApacheSession Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-SVN-Web Update to 0.52: 2007-02-27 12:03:15 +00:00
p5-Template-Extract Update to 0.40: 2007-02-27 13:36:42 +00:00
p5-Template-Generate Remove teTeX2 from TEX_ACCEPTED, because the teTeX2 packages will be removed 2006-08-10 03:21:39 +00:00
p5-Template-Toolkit Fix PLIST, bump PKGREVISION, and close PR 35881. 2007-03-01 12:56:25 +00:00
p5-Test-WWW-Mechanize Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-URI DESTDIR support. 2006-11-05 17:31:09 +00:00
p5-VRML Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
p5-WWW-Amazon-Wishlist Update to 1.4: 2007-02-27 13:46:32 +00:00
p5-WWW-Curl Fix problem build with curl>=7.10.8. 2006-12-20 13:28:59 +00:00
p5-WWW-Mechanize Update to 1.22: 2007-03-10 15:13:27 +00:00
paros Fix CATEGORIES, duh. 2007-02-28 13:08:08 +00:00
pear-HTML_Common Update pear-HTML_Common to 1.2.3. 2006-10-23 20:09:00 +00:00
pear-HTML_Select Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
pear-HTTP Provides a set of useful, static functions related to the 2006-06-15 11:29:39 +00:00
pear-HTTP_Request Updated pear-HTTP_Request to 1.3.0. 2006-10-23 20:13:38 +00:00
php-apc Update php-apc to 3.0.12p2 - changes are several fixes and PHP 5.2 2006-11-06 21:11:46 +00:00
php-curl tv@ pointed out that curl-7.16.0 had a shlib major bump -- 2006-11-19 11:50:23 +00:00
php-eaccelerator Update to final 0.9.5 2006-11-06 20:58:50 +00:00
php-FastTemplate Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
php4 patch to allow the Oracle extension to be built against Oracle 10.1 2007-03-11 16:43:49 +00:00
php4-apc Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
privoxy update to 3.0.6 2006-11-24 18:26:06 +00:00
py-clearsilver Fix compilation on platforms where gcc does not produce PIC objects by default. 2007-01-19 18:04:03 +00:00
py-curl sync with curl base pkg 2007-04-19 18:29:03 +00:00
py-django Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
py-flup pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
py-HTMLgen Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-jonpy Supports user-destdir. 2007-04-10 13:35:53 +00:00
py-moin Fix (or update?) HOMEPAGE. 2006-12-20 04:56:53 +00:00
py-nevow Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
py-pcgi Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
py-webpy Needs Python 2.4+ as the list comprehension is not support before 2007-01-11 11:30:00 +00:00
py-zpublisher Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
qDecoder Fix NO_MTREE. 2007-03-28 13:30:11 +00:00
raggle Fix installation. Add installed documentation to PLIST. 2006-02-22 20:52:11 +00:00
rails Update rails to 1.2.2. 2007-02-18 23:49:14 +00:00
ruby-actionpack Update ruby-actionpack to 1.13.3. 2007-03-17 11:10:16 +00:00
ruby-actionwebservice Update ruby-actionwebservice to 1.2.3. 2007-03-17 11:17:57 +00:00
ruby-borges Sort PLIST. 2006-09-07 15:55:50 +00:00
ruby-clearsilver Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-fcgi Update ruby-fcgi pacakge to 0.8.7. 2006-07-09 14:18:04 +00:00
ruby-htmlsplit Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-tag Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-webunit Sort PLIST. 2006-09-07 15:55:50 +00:00
sarg The sarg tool depends on sorting fields by month name (M), which is a 2006-08-04 18:11:46 +00:00
screws Fixed the installation, which I broke yesterday. This fixes PR 34981. 2006-11-03 21:29:45 +00:00
seamonkey Fixed the build on Solaris. The same fix is already in patch-ab from 2007-04-15 12:17:06 +00:00
seamonkey-bin Update seamonkey, seamonkey-bin and seamonkey-gtk1 to Seamonkey 1.1.1. 2007-03-05 11:46:21 +00:00
seamonkey-bin-flash Add www/seamonkey-bin-flash, analogue to firefox-bin-flash. 2007-02-01 14:02:32 +00:00
seamonkey-bin-java Add www/seamonkey-bin-java, analogue to firefox-bin-java. 2007-02-01 14:02:57 +00:00
seamonkey-bin-nightly pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
seamonkey-gtk1 chmod u+w all files under lib/${MOZILLA}/defaults in post-install phase for 2007-03-31 22:51:24 +00:00
serf Add openssl bl3. 2007-02-08 15:49:06 +00:00
sitecopy Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
skipstone Add standard way to depend on "seamonkey" an "firefox" backends. 2006-09-25 10:08:06 +00:00
snarf Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
snownews Configure script is perl script. Pointed out by Peter Bui in PR 36149. 2007-04-16 04:14:15 +00:00
sope Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
SpeedyCGI Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
spfc These two packages are no longer maintained, and are made irrelevant by 2007-03-21 19:24:11 +00:00
squid Update squid package to 2.6.12. 2007-03-21 05:25:01 +00:00
squidGuard USE_TOOLS+=lex 2006-07-10 00:58:39 +00:00
squidpurge pkglint USE_LANGUAGES cleanup. Patch from Sergey Svishchev. 2007-02-22 19:30:02 +00:00
squirm Imported squirm. 2006-10-02 17:12:19 +00:00
surfraw Update to 1.0.8: 2007-02-18 18:14:57 +00:00
swiftsurf Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
swiggle Patch to work around an API change in libexif. 2007-01-09 13:59:05 +00:00
swill Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
swish-e Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
tcl-cgi Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
thttpd Reset maintainer: 2006-11-24 23:04:14 +00:00
thy List info files directly in the PLIST and honor PKG{INFO,MAN}DIR. 2006-04-08 05:02:59 +00:00
tidy Add missing RCS Id. 2006-09-16 15:29:35 +00:00
tinyproxy Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
trac Update to 0.10.3.1: 2007-03-10 20:55:33 +00:00
urlget
varnish Fix pthread detection and build on DragonFly. 2006-12-18 11:35:37 +00:00
viewvc Excluded one unused file from the portability checks. 2006-12-01 20:27:25 +00:00
visitors Update visitors to 0.7. 2007-01-02 18:06:50 +00:00
w3 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
w3c-httpd Fixed "test ==", as reported in PR 34970. 2006-11-02 18:59:35 +00:00
w3m bump pkgrev after adding USE_PKGLOCALEDIR 2007-02-04 20:55:23 +00:00
w3m-img Modular Xorg support. 2007-01-09 09:16:21 +00:00
waplet
wApua Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
wdg-validate Rename "SITES_* to "SITES.*" for file-specific lists of sites from which 2006-07-27 18:48:02 +00:00
webalizer Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
weblint Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
webnew Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
websvn Fixed file permissions. We don't want to have world-writable files at all. 2006-10-15 19:37:26 +00:00
weex Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
whisker Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
wiliki A missing file in PLIST; bump revision to 0.5.3nb1. 2006-03-18 01:07:55 +00:00
wml Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
www6to4 Update www6to4 to 1.6. 2006-10-28 03:00:35 +00:00
wwwcount Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
wwwoffle Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
zope Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
zope-confera Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
zope3 Reset maintainer on his request (PR 35869). 2007-02-28 15:49:54 +00:00
zope25 Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
zope25-AbracadabraObject Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-BackTalk Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-BTreeFolder Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-BTreeFolder2 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Calendar Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-CMF Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
zope25-CMFPlone Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
zope25-colorz Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-CookieCrumbler Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-DocumentLibrary Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-EasyImage Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
zope25-Epoz Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ExternalEditor Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-FileSystemSite Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Formulator Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Fortune Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-JPicture Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
zope25-KnowledgeKit Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-LocalFS Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-MailManager Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
zope25-MetaPublisher Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
zope25-ParsedXML Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Photo Very belatedly bump PKGREVISION for all jasper dependencies because 2007-01-17 23:47:18 +00:00
zope25-PropertyFolder Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
zope25-PropertyObject Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-RDFSummary Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-RenderableCharts Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Silva Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Squishdot Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-StripoGram Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-TinyTablePlus Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-XMLWidgets Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Zippy Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ZMySQLDA Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ZNavigator Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-zopebook Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ZPhotoSlides Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
zope25-ZPsycopgDA pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
zope25-ZWeather Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ZWiki Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope29 Remove extra backspace at end of line. 2007-04-01 15:29:45 +00:00
zopeedit Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
Makefile Add gtkhtml314. 2007-04-17 06:30:38 +00:00