pkgsrc/www
wiz f948d3cb92 Update to 7.15.2:
Version 7.15.2 (27 February 2005)

Daniel (22 February 2006)
- Lots of work and analysis by "xbx___" in bug #1431750
  (http://curl.haxx.se/bug/view.cgi?id=1431750) helped me identify and fix two
  different but related bugs:

  1) Removing an easy handle from a multi handle before the transfer is done
     could leave a connection in the connection cache for that handle that is
     in a state that isn't suitable for re-use. A subsequent re-use could then
     read from a NULL pointer and segfault.

  2) When an easy handle was removed from the multi handle, there could be an
     outstanding c-ares DNS name resolve request. When the response arrived,
     it caused havoc since the connection struct it "belonged" to could've
     been freed already.

  Now Curl_done() is called when an easy handle is removed from a multi handle
  pre-maturely (that is, before the transfer was complteted). Curl_done() also
  makes sure to cancel all (if any) outstanding c-ares requests.

Daniel (21 February 2006)
- Peter Su added support for SOCKS4 proxies. Enable this by setting the proxy
  type to the already provided type CURLPROXY_SOCKS4.

  I added a --socks4 option that works like the current --socks5 option but
  instead use the socks4 protocol.

Daniel (20 February 2006)
- Shmulik Regev fixed an issue with multi-pass authentication and compressed
  content when libcurl didn't honor the internal ignorebody flag.

Daniel (18 February 2006)
- Ulf Härnhammar fixed a format string (printf style) problem in the Negotiate
  code. It should however not be the cause of any troubles. He also fixed a
  few similar problems in the HTTP test server code.

Daniel (17 February 2006)
- Shmulik Regev provided a fix for the DNS cache when using short life times,
  as previously it could be holding on to old cached entries longer than
  requested.

Daniel (11 February 2006)
- Karl Moerder added the CURLOPT_CONNECT_ONLY and CURLINFO_LASTSOCKET options
  that an app can use to let libcurl only connect to a remote host and then
  extract the socket from libcurl. libcurl will then not attempt to do any
  transfer at all after the connect is done.

- Kent Boortz improved the configure check for GnuTLS to properly set LIBS
  instead of LDFLAGS.

Daniel (8 February 2006)
- Philippe Vaucher provided a brilliant piece of test code that show a problem
  with re-used FTP connections. If the second request on the same connection
  was set not to fetch a "body", libcurl could get confused and consider it an
  attempt to use a dead connection and would go acting mighty strange.

Daniel (2 February 2006)
- Make --limit-rate [num] mean bytes. It used to be that but it broke in my
  change done in November 2005.

Daniel (30 January 2006)
- Added CURLOPT_LOCALPORT and CURLOPT_LOCALPORTRANGE to libcurl. Set with the
  curl tool with --local-port. Plain and simply set the range of ports to bind
  the local end of connections to. Implemented on to popular demand.

- Based on an error report by Philippe Vaucher, we no longer count a retried
  connection setup as a follow-redirect. It turns out 1) this fails when a FTP
  connection is re-setup and 2) it does make the max-redirs counter behave
  wrong.

Daniel (24 January 2006)
- Michal Marek provided a patch for FTP that makes libcurl continue to try
  PASV even after EPSV returned a positive response code, if libcurl failed to
  connect to the port number the EPSV response said. Obviously some people are
  going through protocol-sensitive firewalls (or similar) that don't
  understand EPSV and then they don't allow the second connection unless PASV
  was used. This also called for a minor fix of test case 238.

Daniel (20 January 2006)
- Duane Cathey was one of our friends who reported that curl -P [IP]
  (CURLOPT_FTPPORT) didn't work for ipv6-enabed curls if the IP wasn't a
  "native" IP while it works fine for ipv6-disabled builds!

  In the process of fixing this, I removed the support for LPRT since I can't
  think of many reasons to keep doing it and asking on the mailing list didn't
  reveal anyone else that could either. The code that sends EPRT and PORT is
  now also a lot simpler than before (IMHO).

Daniel (19 January 2006)
- Jon Turner pointed out that doing -P [hostname] (CURLOPT_FTPPORT) with curl
  (built ipv4-only) didn't work.

Daniel (18 January 2006)
- As reported in bug #1408742 (http://curl.haxx.se/bug/view.cgi?id=1408742),
  the configure script complained about a missing "missing" script if you ran
  configure within a path whose name included one or more spaces. This is due
  to a flaw in automake (1.9.6 and earlier). I've now worked around it by
  including an "overloaded" version of the AM_MISSING_HAS_RUN script that'll
  be used instead of the one automake ships with. This kludge needs to be
  removed once we get an automake version with this problem corrected.
  Possibly we'll then need to convert this into a kludge depending on what
  automake version that is used and that is gonna be painful and I don't even
  want to think about that now...!

Daniel (17 January 2006)
- David Shaw: Here is the latest libcurl.m4 autoconf tests. It is updated with
  the latest features and protocols that libcurl supports and has a minor fix
  to better deal with the obscure case where someone has more than one libcurl
  installed at the same time.

Daniel (16 January 2006)
- David Shaw finally removed all traces of Gopher and we are now officially
  not supporting it. It hasn't been functioning for years anyway, so this is
  just finally stating what already was true. And a cleanup at the same time.

- Bryan Henderson turned the 'initialized' variable for curl_global_init()
  into a counter, and thus you can now do multiple curl_global_init() and you
  are then supposed to do the same amount of calls to curl_global_cleanup().
  Bryan has also updated the docs accordingly.

Daniel (13 January 2006)
- Andrew Benham fixed a race condition in the test suite that could cause the
  test script to kill all processes in the current process group!

Daniel (12 January 2006)
- Michael Jahn:

  Fixed FTP_SKIP_PASV_IP and FTP_USE_EPSV to "do right" when used on FTP thru
  HTTP proxy.

  Fixed PROXYTUNNEL to work fine when you do ftp through a proxy.  It would
  previously overwrite internal memory and cause unpredicted behaviour!

Daniel (11 January 2006)
- I decided to document the "secret option" here now, as I've received *NO*
  feedback at all on my mailing list requests from November 2005:

  I'm looking for feedback and comments. I added some experimental code the
  other day, that allows a libcurl user to select what method libcurl should
  use to reach a file on a FTP(S) server.

  This functionality is available in CVS code and in recent daily snapshots.

  Let me explain...

  The current name for the option is CURLOPT_FTP_FILEMETHOD (--ftp-method for
  the command line tool) and you set it to a long (there are currenly no
  defines for the argument values, just plain numericals). You can set three
  different "methods" that do this:

  1 multicwd - like today, curl will do a single CWD operation for each path
           part in the given URL. For deep hierarchies this means very many
           commands. This is how RFC1738 says it should be done. This is the
           default.

  2 nocwd - no CWD at all is done, curl will do SIZE, RETR, STOR etc and give
           a full path to the server.

  3 singlecwd - make one CWD with the full target directory and then operate
            on the file "normally".

  (With the command line tool you do --ftp-method [METHOD], where [METHOD] is
  one of "multicwd", "nocwd" or "singlecwd".)

  What feedback I'm interested in:

  1 - Do they work at all? Do you find servers where one of these don't work?

  2 - What would proper names for the option and its arguments be, if we
      consider this feature good enough to get included and documented in
      upcoming releases?

  3 - Should we make libcurl able to "walk through" these options in case of
      (path related) failures, or should it fail and let the user redo any
      possible retries?

  (This option is not documented in any man page just yet since I'm not sure
  these names will be used or if the functionality will end up exactly like
  this.  And for the same reasons we have no test cases for these yet.)

Daniel (10 January 2006)
- When using a bad path over FTP, as in when libcurl couldn't CWD into all
  given subdirs, libcurl would still "remember" the full path as if it is the
  current directory libcurl is in so that the next curl_easy_perform() would
  get really confused if it tried the same path again - as it would not issue
  any CWD commands at all, assuming it is already in the "proper" dir.

  Starting now, a failed CWD command sets a flag that prevents the path to be
  "remembered" after returning.

Daniel (7 January 2006)
- Michael Jahn fixed so that the second CONNECT when doing FTP over a HTTP
  proxy actually used a new connection and not sent the second request on the
  first socket!

Daniel (6 January 2006)
- Alexander Lazic made the buildconf run the buildconf in the ares dir if that
  is present instead of trying to mimic that script in curl's buildconf
  script.

Daniel (3 January 2006)
- Andres Garcia made the TFTP test server build with mingw.

Daniel (16 December 2005)
- Jean Jacques Drouin pointed out that you could only have a user name or
  password of 127 bytes or less embedded in a URL, where actually the code
  uses a 255 byte buffer for it! Modified now to use the full buffer size.

Daniel (12 December 2005)
- Dov Murik corrected the HTTP_ONLY define to disable the TFTP support properly
2006-03-03 22:26:08 +00:00
..
adzap Update to version 20060203. 2006-02-13 23:44:21 +00:00
album Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
album_themes Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
amaya uses both C and C++ 2006-02-26 13:48:31 +00:00
analog Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
ap-access-referer Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-auth-cookie Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-auth-ldap Relinquish maintainership. 2006-02-27 19:40:36 +00:00
ap-auth-mysql Add another possible location of the apache module in the WRKSRC. 2006-02-27 00:33:28 +00:00
ap-auth-pam Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-auth-pgsql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-auth-postgresql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-auth-radius Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-auth-script Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-bandwidth Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-dav Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-dtcl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-Embperl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-fastcgi Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-gzip Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-iasp Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-jk Patch the apache-1.3 Makefile to use apxs so it installed mod_jk.so 2006-03-02 16:55:21 +00:00
ap-layout Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-mp3 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-perl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-php Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-python Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-rivet Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-ruby Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-ssl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-throttle Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-xslt Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-auth-ldap Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-auth-mysql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-auth-pgsql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-bw Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-chroot Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-fastcgi Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-perl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-python Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-ruby Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-subversion Move subversion/buildlink3.mk to subversion-base/buildlink3.mk, to 2006-02-07 19:58:06 +00:00
ap2-suphp Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-transform Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
apache Fix config file handling; fix CHECK_PLIST build. Bump PKGREVISION. 2006-02-21 22:44:17 +00:00
apache-tomcat55 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
apache2 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
apachetop Update HOMEPAGE and MASTER_SITES. 2005-10-06 11:33:52 +00:00
apc-gui Do not use OWN_DIRS for an example directory, just INSTALL_DATA_DIR it. 2006-02-22 07:10:23 +00:00
asp2php Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
asWedit Fix DISTNAME (should fix bulk build problem). 2006-02-16 18:03:07 +00:00
awstats Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
bannerfilter Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
bins Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
bkedit Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
bluefish Fix PLIST. Bump PKGREVISION. 2006-02-21 22:55:06 +00:00
blur6ex ENOTIME to mantain these packages, feel free to pick it up if you are 2006-02-12 15:24:14 +00:00
bozohttpd Fix previous by implementing the other half of the changes that I forgot 2005-12-13 18:55:03 +00:00
browser-bookmarks-menu Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cadaver Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
calamaris Get rid of USE_PERL5. The new way to express needing the Perl executable 2005-07-16 01:19:06 +00:00
cgic Reset the maintainer's email address, at his own request. 2006-02-08 14:16:01 +00:00
cgicc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cgilib Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
checkbot Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
chimera Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
clearsilver Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
clearsilver-base Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cocoon Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
communicator Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
crawl Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
cronolog Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
curl Update to 7.15.2: 2006-03-03 22:26:08 +00:00
cvsweb Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
dillo Reset maintainer, email bounces: 2006-02-11 19:31:24 +00:00
drivel Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
drraw Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
drupal Update distinfo for revision change. 2006-02-08 15:45:25 +00:00
elinks Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
elinks04 Rename strtonum function, it conflicts with a system prototype on 2006-01-08 19:21:18 +00:00
emacs-w3m Fix PLIST. Remove BROKEN_IN. Bump PKGREVISION. 2006-02-22 20:35:59 +00:00
epiphany Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
epiphany-extensions Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
fcgi Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +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 Rename patch-dw and patch-dx to patch-ea and patch-eb. All other patch-d* 2006-02-12 11:04:51 +00:00
firefox-bin Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-acroread Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-acroread3 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-acroread5 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-acroread7 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-flash Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-java Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-nightly Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-realplayer Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-gtk1 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
galeon s/_MOZILLA_USE_GTK2/MOZILLA_USE_GTK2/g, as to silent pkglint (WARN: Variable 2006-02-06 09:20:45 +00:00
galeon12 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
galway Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ganglia-webfrontend Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
glibwww Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
grail Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gtkasp2php Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gtkhtml Has BROKEN_GETTEXT_DETECTION. 2006-02-23 18:21:15 +00:00
gtkhtml30 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gtkhtml36 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gtkhtml38 update to 3.8.2 2006-02-08 18:39:34 +00:00
haskell-cgi Fixed pkglint warnings. 2005-09-28 12:15:16 +00:00
hiawatha Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
horde Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
horde3 Tune PAX arguments for installation so that print-PLIST target is usable. 2006-02-14 23:04:57 +00:00
htdig Update package Makefile now that bsd.pkg.extract.mk is using the 2006-01-21 18:57:40 +00:00
htdig-devel MASTER_SITES fixed (removed dead ones, sf.net is 1st); use .tar.bz2 from now on 2006-02-19 10:27:52 +00:00
htmldoc Removed unnecessary ${.CURDIR}. 2005-05-24 14:24:45 +00:00
htmldoc-x11 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
htmlfix Get rid of USE_PERL5. The new way to express needing the Perl executable 2005-07-16 01:19:06 +00:00
htmllint Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
http_load Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
iasp Fix directory handling (for CHECK_FILES builds). Bump PKGREVISION. 2006-02-22 20:37:45 +00:00
ijb Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
instiki Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
ja-trac Imported ja-trac from devel. 2006-02-12 13:45:43 +00:00
jakarta-servletapi Fix build. Remove BROKEN_IN. 2006-03-02 19:51:14 +00:00
jakarta-tomcat4 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
jakarta-tomcat5 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
jalbum Fixed warnings found by pkglint -Wall. 2006-02-17 07:55:57 +00:00
jsdk20 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
jssi Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
kannel Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
kazehakase Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
kdewebdev3 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
lhs Create directories before installing files into them. 2005-06-17 03:50:19 +00:00
libghttp Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
libgtkhtml Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
libwww Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
liferea update to 1.0.6 2006-03-02 21:05:32 +00:00
lighttpd Add mod_evasive to PLIST. Bump revision. 2006-02-15 21:15:45 +00:00
links Update to 2.1pre20: 2005-12-11 18:56:30 +00:00
links-gui Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
lynx apply 2 more official patches: 2006-02-13 12:37:47 +00:00
make_album Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
micro_httpd Use PKGMANDIR. 2005-12-27 17:56:09 +00:00
mini_httpd Use PKGMANDIR. 2005-12-27 17:56:09 +00:00
mknmz-wwwoffle Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
mMosaic Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
moz-bin-plugger Fix installation. Fix PLIST. Remove BROKEN_IN. 2006-03-01 22:44:04 +00:00
mozilla official-mozilla-branding is an option for both Firefox and Thunderbird. 2006-02-12 11:05:25 +00:00
mozilla-bin Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
mozilla-bin-nightly Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
mozilla-gtk2 s/_MOZILLA_USE_GTK2/MOZILLA_USE_GTK2/g, as to silent pkglint (WARN: Variable 2006-02-06 09:20:45 +00:00
navigator Use "GZCAT" instead of obsolete "DECOMPRESS_CMD" to fix the installation 2006-02-07 22:33:44 +00:00
neon Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netscape Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netscape7 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netscape7-acroread Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netscape7-acroread3 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netscape7-acroread5 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netscape7-acroread7 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ns-plugger-common Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +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 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
opera Grammar fix. 2006-02-21 15:50:49 +00:00
opera-acroread Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
opera-acroread3 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
opera-acroread5 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
opera-acroread7 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
opera-plugins Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Apache-ASP Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Apache-AuthCookie Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Apache-AuthCookieDBI Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Apache-DBILogConfig Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Apache-DBILogger Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Apache-Filter Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Apache-Gallery Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +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.80: 2005-11-23 22:20:24 +00:00
p5-Apache-Session-Wrapper Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Apache-SSI Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Apache-Test Update to 1.27: 2005-11-23 22:19:50 +00:00
p5-CGI Update www/p5-CGI to 3.11: 2005-10-20 17:33:04 +00:00
p5-CGI-Application Updated to 4.04. 2006-02-14 01:14:51 +00:00
p5-CGI-FastTemplate Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-CGI-FormBuilder Update www/p5-CGI-FormBuilder to 3.0202 2006-02-07 11:35:21 +00:00
p5-CGI-Kwiki Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
p5-CGI-Minimal Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-CGI-Session Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-CGI_Lite Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-FCGI Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-Clean Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-Element-Extended Update to 1.14: 2006-01-01 22:40:21 +00:00
p5-HTML-FillInForm Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +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 Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-LinkExtractor Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-Mason Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 because 2006-01-24 07:31:52 +00:00
p5-HTML-Parser Update p5-HTML-Parser to 3.50: 2006-02-16 14:24:00 +00:00
p5-HTML-PrettyPrinter Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +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 Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-SimpleParse Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +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 Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-TableExtract Update to 2.06: 2005-10-25 13:40:24 +00:00
p5-HTML-Tagset Update to 3.10: 2005-11-23 22:16:36 +00:00
p5-HTML-Template Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-Tree Update to latest stable version, 3.19.01: 2006-01-01 23:11:38 +00:00
p5-HTMLObject Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTTP-Cache-Transparent Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTTP-DAV Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-HTTP-GHTTP Import p5-HTTP-GHTTP from pkgsrc-wip. Packaged by xtraeme@ and 2005-10-16 05:01:06 +00:00
p5-HTTP-Request-Form Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTTP-Server-Simple Add trailing / to HOMEPAGE 2006-02-07 21:37:45 +00:00
p5-HTTP-Server-Simple-Mason Initial import of p5-HTTP-Server-Simple-Mason version 0.09 2006-02-07 23:27:56 +00:00
p5-HTTPD-User-Manage Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Jemplate Import p5-Jemplate from pkgsrc-wip. Packaged by OBATA Akio. 2006-02-17 01:49:36 +00:00
p5-Kwiki Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-Archive-Rcs Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-BreadCrumbs Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-Edit-RequireUserName Initial import of p5-Kwiki-Edit-RequireUserName 2006-01-31 18:52:16 +00:00
p5-Kwiki-Favorites Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-HtmlBlocks Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-Icons-Gnome Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-NewPage Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-PagePrivacy Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-ParagraphBlocks Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-PreformattedBlocks Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-RecentChanges Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-Revisions Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-Scode Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Kwiki-Search Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-UserName Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-UserPreferences Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Kwiki-Users-Remote Initial import of p5-Kwiki-Users-Remote: 2006-01-31 20:12:41 +00:00
p5-Kwiki-Weather Initial import of p5-Kwiki-Weather: 2006-01-31 21:39:20 +00:00
p5-Kwiki-Zipcode Initial import of p5-Kwiki-Zipcode 2006-01-31 21:35:55 +00:00
p5-libapreq Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-libapreq2 Update p5-libapreq2 to 2.07. 2006-02-20 11:15:49 +00:00
p5-libwww Update to 5.805: 2005-12-11 19:17:19 +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 Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 because 2006-01-24 07:31:52 +00:00
p5-SVN-Web Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Template-Extract Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Template-Generate Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Template-Toolkit Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Test-WWW-Mechanize Initial import of p5-Test-WWW-Mechanize version 1.08 as 2006-02-08 17:06:14 +00:00
p5-URI Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
p5-VRML Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-WWW-Amazon-Wishlist Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-WWW-Curl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-WWW-Mechanize Update to 1.18: 2006-02-26 09:09:05 +00:00
paros Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pear-HTML_Common Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pear-HTML_Select Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pear-HTTP_Request Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-curl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-eaccelerator Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-FastTemplate Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php4 Update to version 4.4.2. Ok'd by jdolecek@. 2006-03-03 07:11:34 +00:00
php4-apc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
privoxy Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-clearsilver Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-curl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-HTMLgen Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-nevow Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-pcgi Create directories before installing files into them. 2005-06-17 03:50:19 +00:00
py-zpublisher Create directories before installing files into them. 2005-06-17 03:50:19 +00:00
qDecoder Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
raggle Fix installation. Add installed documentation to PLIST. 2006-02-22 20:52:11 +00:00
ruby-actionpack Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-actionwebservice Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-borges Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-clearsilver Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-fcgi Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +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 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
sarg Use SUBST framework. 2006-01-05 23:54:44 +00:00
screws Add DragonFly support. 2006-01-10 18:28:06 +00:00
sitecopy Updated to 0.16.2. 2006-02-21 05:54:43 +00:00
skipstone Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
snarf Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
snownews Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
sope Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
SpeedyCGI Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
spfc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
squid Update www/squid pacakge to 2.5.12nb5. 2006-02-26 15:03:53 +00:00
squidGuard Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
squidpurge Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
surfraw Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
swiftsurf Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
swiggle Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
swill Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
swish-e Inclusion of pcre.h before pcreposix.h is needed for newer pcre versions. 2006-02-07 17:17:23 +00:00
tcl-cgi Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
thttpd Use SUBST framework. 2006-01-05 22:46:12 +00:00
thy Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
tidy Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
tinyproxy Use SUBST framework. 2006-01-05 21:57:36 +00:00
trac Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
urlget Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
visitors Update www/vistors from 0.4a to 0.5: 2005-07-19 10:46:29 +00:00
w3 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
w3c-httpd Fixed the pkglint warnings about quoting. 2006-01-12 17:41:35 +00:00
w3m Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
w3m-img Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
waplet Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
wApua Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
wdg-validate Remove some unnecessarily strong dependencies on perl that resulted 2005-07-16 19:10:37 +00:00
webalizer Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
weblint Update patch so it uses PKGMANDIR instead of "man". 2005-12-27 22:19:12 +00:00
webnew Get rid of USE_PERL5. The new way to express needing the Perl executable 2005-07-16 01:19:06 +00:00
websvn Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
weex Security fix for SA17028: 2005-10-05 13:38:13 +00:00
whisker Get rid of USE_PERL5. The new way to express needing the Perl executable 2005-07-16 01:19:06 +00:00
wiliki distinfo has been missed. Pointed out by veego@. 2005-08-10 06:28:42 +00:00
wml Ran "pkglint --autofix", which corrected some of the quoting issues in 2005-12-05 23:55:01 +00:00
www6to4 Fix PKG_OPTIONS_VAR in previous. 2005-11-03 16:55:46 +00:00
wwwcount Use VARBASE instead of hardcoding /var. This addresses part of 2005-10-01 17:25:32 +00:00
wwwoffle Mark finish target as .PHONY. 2006-02-22 23:01:28 +00:00
zope For py-extclass, use the buildlink3.mk, not just a dependency. 2005-12-30 13:24:34 +00:00
zope-confera Create directories before installing files into them. 2005-06-17 03:50:19 +00:00
zope3 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25 Added the target zope-std-copyproduct-long-nogarbage that works like 2006-01-12 23:50:14 +00:00
zope25-AbracadabraObject Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-BackTalk Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-BTreeFolder Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-BTreeFolder2 Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-Calendar Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
zope25-CMF Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-CMFPlone Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
zope25-colorz Do not install *orig files. Fixes CHECK_BUILD build. 2006-02-22 20:57:29 +00:00
zope25-CookieCrumbler Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-DocumentLibrary Avoid using the non-standard "-d" option of BSD find(1). 2005-06-06 02:25:34 +00:00
zope25-EasyImage Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25-Epoz Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-ExternalEditor Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-FileSystemSite Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-Formulator Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-Fortune Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-JPicture Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25-KnowledgeKit Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-LocalFS Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-MailManager Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25-MetaPublisher - Fixed the "single field input line" file, which had wrong indentation. 2006-01-12 23:53:19 +00:00
zope25-ParsedXML Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25-Photo Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25-PropertyFolder Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
zope25-PropertyObject Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-RDFSummary Do not install *orig files. Fixes CHECK_BUILD build. 2006-02-22 20:56:30 +00:00
zope25-RenderableCharts Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25-Silva Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25-Squishdot Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-StripoGram Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-TinyTablePlus Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-XMLWidgets Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25-Zippy Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-ZMySQLDA Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25-ZNavigator Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-zopebook Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
zope25-ZPhotoSlides Do not install CVS directories. Bump PKGREVISION. 2006-02-22 20:56:56 +00:00
zope25-ZPsycopgDA Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25-ZWeather Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zope25-ZWeatherApplet Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25-ZWiki Add RMD160 checksums. 2005-02-24 14:08:26 +00:00
zopeedit Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
Makefile Add p5-Jemplate. 2006-02-17 01:51:08 +00:00