Commit Graph

111438 Commits

Author SHA1 Message Date
Joe Marcus Clarke
1c9327234f Make these stylesheets XSLT compliant by making sure templates with the same
name are not included multiple times into the same stylesheet.  Instead,
use <xsl:import/>, and nest them with the proper import precedence so that
the proper overrides occur.

As of libxslt-1.1.11, stricter template name checking is done with
<xsl:include/>.

Reported by:	pointyhat via kris
2004-10-17 00:28:02 +00:00
Eric Anholt
8543b3a289 New port: rendercheck, a small app to test Render extension conformance. 2004-10-16 22:17:12 +00:00
Joe Marcus Clarke
d82080eed7 Remove some contradictory configure options.
Submitted by:	Michael Johnson <ahze@ahze.net>
2004-10-16 21:15:15 +00:00
Joe Marcus Clarke
db5a526190 * Merge patches from Mozilla 1.7 [1]
* Auto-generate PLIST
* Respect CC/CXX/CFLAGS/CXXFLAGS/PTHREAD_LIBS
* Add WITH_XFT WITH_DEBUG WITH_OPTIMIZED_CFLAGS options [1]
* Add another mirror since cvs.nvu.com can be slow
* Don't install share/idl/*
* No longer depend on mozilla

PR:		72762
Submitted by:	Michael Johnson <ahze@ahze.net>
Obtained from:	www/mozilla [1]
2004-10-16 20:37:34 +00:00
Simon L. B. Nielsen
8a254b84a0 - Change a few uses of <url> into <mlist>.
OK'ed by:	nectar

Additional comment to the Tor entry from v. 1.302, it was:

Submitted by:	rik <freebsd-security@rikrose.net> (original version)
2004-10-16 20:31:23 +00:00
Joe Marcus Clarke
1a0464ce4c Exited the editor too soon. The previous commit was:
PR:		72761
Submitted by:	maintainer
2004-10-16 20:29:59 +00:00
Joe Marcus Clarke
05a1d7cd32 Update to 2.4. 2004-10-16 20:29:24 +00:00
Oliver Braun
b8006e500c Upgrade to 0.13.2. 2004-10-16 20:00:41 +00:00
Pav Lucistnik
e3e9729778 - Update to 0.91
PR:		ports/72757
Submitted by:	Peter van Dijk <peter@dataloss.nl> (maintainer)
2004-10-16 19:59:02 +00:00
Pav Lucistnik
ead1ef5a95 Add boinc-client, Berkeley Open Infrastructure for Network Computing.
BOINC is a software platform for distributed computing using volunteer
computer resources.

Many different projects can use BOINC.  SETI@HOME, for example, has
been redesigned to use BOINC and the astro/boinc-setiathome port
supercedes the astro/setiathome port.

WWW: http://boinc.berkeley.edu/

PR:		ports/72714
Submitted by:	J.R. Oldroyd <fbsd@opal.com>
2004-10-16 19:29:30 +00:00
Oliver Braun
781918ad2e Upgrade to 1.0.0 RC3. 2004-10-16 19:22:09 +00:00
Dmitry Sivachenko
5424425ad5 Take maintainership;
Use $SQLRELAY_CONFIGURE_ENV variable defined in sqlrelay's Makefile.common
instead of duplicating it's job in slave ports;
Small cleanup.
2004-10-16 19:03:26 +00:00
Dmitry Sivachenko
e7e8fac857 Take maintainership;
Use autoconf to generate configure script.
Remove redundant bits which were probably needed for older versions of sqlrelay.
2004-10-16 18:59:31 +00:00
Pav Lucistnik
9c596717a1 Add KOTH (King of the Hill), a multiplayer tank artillery game similar to
Scorched Earth that uses libggi.

PR:		ports/72725
Submitted by:	Travis Poppe <tlp@LiquidX.org>
2004-10-16 18:46:41 +00:00
Pav Lucistnik
b4133861d2 - Drop maintainership
PR:		ports/72765
Submitted by:	Michael Johnson <ahze@ahze.net> (maintainer)
2004-10-16 18:17:35 +00:00
Oliver Lehmann
6a3bbf461a take maintainership 2004-10-16 18:08:34 +00:00
Pav Lucistnik
9622067427 Add gaim-openq, a QQ-liked protocol plugin for Gaim.
PR:		ports/72697
Submitted by:	hamigua <hamigua@cuc.cn>
2004-10-16 17:49:19 +00:00
Lars Thegler
ddf721dbc1 - New CPAN maintainer requests maintainership of the port as well 2004-10-16 17:41:51 +00:00
Greg Lewis
c8e6445d77 . Bump PORTREVISION for the recent fixes. 2004-10-16 17:17:09 +00:00
Greg Lewis
7298661664 . Fix the Server VM for gcc 3.4 part 2/2.
The HotSpot code (ab)uses named enums as ints in a number of places.
  The problem with this is that according the the C++ spec, the compiler
  (essentially) only needs to use an integral type wide enough to hold
  the values defined in the enum.  Earlier versions of gcc appear to have
  just used an int whether they could have got away with a narrower type
  or not, hence the code worked as expected.  gcc 3.4 now appears to
  implement this part of the spec, so using an enum blindly as an int
  causes various problems due to overflow.

  In this case the enum, Bytecodes::Code, appears to be a genuine enum,
  its just assumed to be wide enough to hold an arbitrary int in various
  places in the code.  The correct fix would be to track down all those
  places in the code and fix them.  Since there are quite a lot of these
  places and 5.3 is close to release for now we just add a value to the
  enum set to INT_MAX, forcing the compiler to use at least an int for the
  type.

Sleuth work, discussion and code suggestions:	peadar
2004-10-16 17:16:40 +00:00
Greg Lewis
67fad41225 . Fix the Server VM for gcc 3.4 part 1/2.
The HotSpot code (ab)uses named enums as ints in a number of places.
  The problem with this is that according the the C++ spec, the compiler
  (essentially) only needs to use an integral type wide enough to hold
  the values defined in the enum.  Earlier versions of gcc appear to have
  just used an int whether they could have got away with a narrower type
  or not, hence the code worked as expected.  gcc 3.4 now appears to
  implement this part of the spec, so using an enum blindly as an int
  causes various problems due to overflow.

  This case is particularly bogus since the enums are merely to define
  a named integral type within a class (VMReg::Name doesn't even have
  any values enumerated in the declaration).  So, convert these two
  enums to simply be typedef'ed ints.

Sleuth work, discussion and code suggestions:	peadar
2004-10-16 17:12:22 +00:00
Alexander Leidinger
64aff1c784 Update to 7.1.042. 2004-10-16 17:04:51 +00:00
Greg Lewis
e3262fa4db . In the ReadChunk() function, change an assert() to be a "test for a
condition and return NULL".  Take account of the NULL in the
  appropriate place (which is somewhat worrisome in itself since
  ReadChunk() has always had the possibility of returning NULL).
  This makes loading a font file a little more resilient to specially
  crafted font data which can be used, for example, by an applet to
  crash the browser plugin by triggering the assert().  Such an applet
  was mentioned on Bugtraq:

  http://www.securityfocus.com/archive/1/367331/2004-06-26/2004-07-02/0

  and can be found at

  http://www.illegalaccess.org/cms/?q=node/view/9

  This change stops the browser plugin from crashing.
. Fix some warnings regarding formats in debugging printf's.
2004-10-16 17:00:27 +00:00
Oliver Braun
0d651b8bc6 Upgrade to 1.2.2. 2004-10-16 16:59:43 +00:00
Greg Lewis
4e95ec3207 . At least on FreeBSD, O_SYNC and O_DSYNC aren't both defined
(for FreeBSD 4.x neither are defined and for FreeBSD 5.x
  O_DSYNC isn't defined).  This caused them to be defined to
  some bogus values.  In particular, O_SYNC would be defined
  as 0x800, which is O_EXCL (at least on FreeBSD 4.x).  The
  result being that the RandomAccessFile class would fail to
  open an existing file if you specified "s" as part of the mode.
  Fix this by defining O_SYNC and O_DSYNC to O_FSYNC if they
  aren't defined.
2004-10-16 16:58:12 +00:00
Lars Thegler
4c02adff59 - Update to 1.3
- Move simple patch files into Makefile
2004-10-16 16:54:23 +00:00
Pav Lucistnik
02fff24267 - Quick update to 0.0.8.1, bugfix release, because 0.0.8 was removed
from distsite

Reported by:	Dead Microprocessor <dead.microprocessor@gmail.com>
2004-10-16 16:11:39 +00:00
Thierry Thomas
3ea4a55458 Add nvu 0.50, a complete Web Authoring System.
This is the native version.

Warning: a powerful machine is required!
2004-10-16 16:07:37 +00:00
Alexander Nedotsukov
1e3cf0fa0a Fix C++ to avoid broken build on 5.x after gnome-- fix. 2004-10-16 16:04:24 +00:00
Alexander Nedotsukov
9923a4800c Withdraw BROKEN on 5.x. It's ok now. 2004-10-16 15:56:40 +00:00
Alexander Nedotsukov
89c5e94fec Always add explicit namespace in generated Wrap<> traits specialization.
This is required when gtkmmproc used for gnome-- code generation.
The last one defines classes in its own namespace.

Reported by:	pointyhat via kris
2004-10-16 15:47:02 +00:00
Kirill Ponomarev
9d2de81886 Fix package build. 2004-10-16 15:43:28 +00:00
Hye-Shik Chang
e8319dea36 Update to 0.6.0
Reminded by:	pav
2004-10-16 15:30:08 +00:00
Thierry Thomas
e6630792bb Upgrade to 0.5.3.
PR:		ports/71768
Submitted by:	maintainer.
2004-10-16 15:21:29 +00:00
Pav Lucistnik
fea2fe3c5c - Use jpeg-mmx on i386
PR:		ports/72557
Submitted by:	Michael Johnson <ahze@ahze.net> (maintainer)
2004-10-16 14:57:17 +00:00
Clement Laforet
3b4c9025f9 - Remove WITH_APR_FROM_PORTS knob
- Add a note to UPDATING, to warn users they won't be able to build apache2
  if they keep apr 0.9.x

Discussed with: Craig Rodrigues (apr maintainer), kuriyama
2004-10-16 14:45:40 +00:00
Lars Thegler
c170774221 - Update to 2.2
- Removed test-only dependency
2004-10-16 14:37:49 +00:00
Lars Thegler
4bc872d9d8 - Update to 1.2 2004-10-16 14:09:55 +00:00
Alexander Leidinger
0df7944dfa - use OPTIONS instead of a hand written script
- code to link "default" to "a skin"
 - include all skins in the automated package build
 - only install 2 default skins in a manual build (when you don't
   choose other skins too)
 - add some more skins from mplayerhq
 - use a real plist instead of a generated one
 - bugfix: WITH_SKIN_CORNERMP_AGUA -> WITH_SKIN_CORNERMP_AQUA

This still downloads all distfiles, even if you don't want all. I
don't have this on my TODO list, interested parties may want to
send patches to the maintainer.

Approved by:	maintainer
2004-10-16 13:40:27 +00:00
Alexander Leidinger
d2c660cbdf - update to 0.92.0.2 [1]
- list some known good and some probably bad soundcards [2]

PR:		72068 [1]
With help from:	eculp@prodigy.ne [2]
2004-10-16 13:23:28 +00:00
Alexander Leidinger
3792d5b467 - fix build on 4.x and 5.2.1 [1]
- change the OpenSSL check, it may fail in some circumstances [2]

PR:		72287, 72384 [1]
Reported by:	Ulrich Spoerlein <q@uni.de> [2]
2004-10-16 13:02:21 +00:00
Pav Lucistnik
a5571475dd - Downgrade to 0.7.4
Version 0.8 have serious bugs and it doesn't appear that they will be
  fixed anytime soon.

PR:		ports/72655
Submitted by:	John Nielsen <john@jnielsen.net> (maintainer)
2004-10-16 12:34:49 +00:00
Lars Koeller
e1bceb63b0 o) Fix error in package list (use of rm). 2004-10-16 12:22:25 +00:00
Pav Lucistnik
5ad84f82d2 - Update to 1.0
PR:		ports/72747
Submitted by:	gh@ghaering.de <gh@ghaering.de> (maintainer)
2004-10-16 12:14:19 +00:00
Pav Lucistnik
45636cdeb0 - Update to 1.8.12 and unbreak on 5.x
PR:		ports/72750
Submitted by:	David Thiel <lx@redundancy.redundancy.org> (maintainer)
2004-10-16 11:56:24 +00:00
Pav Lucistnik
96873c728a Add zope-simpleblog, an easy to use Plone based weblog application.
It has no fancy blogger-api/backlink stuff etc. but it does supports
categories. Writing entries is done from inside Plone.

PR:		ports/72565
Submitted by:	Dario Freni <saturnero@gufi.org>
2004-10-16 11:34:23 +00:00
Pav Lucistnik
63fbe681f9 - Update to 1.00
PR:		ports/72496
Submitted by:	HAYASHI Yasushi <yasi@yasi.to> (maintainer)
2004-10-16 11:16:39 +00:00
Pav Lucistnik
57e4fd2e21 Remove zope-cmftransforms, it was renamed to zope-portaltransforms.
PR:		ports/72577
Submitted by:	Filippo Natali <filippo@widestore.net> (maintainer)
2004-10-16 11:02:31 +00:00
Pav Lucistnik
d579b333cf - Update to 1.3.0
PR:		ports/72580
Submitted by:	Filippo Natali <filippo@widestore.net> (maintainer)
2004-10-16 11:00:13 +00:00
Pav Lucistnik
4ca23f5ad2 After repocopy from zope-cmftransforms, upgrade to 1.3.2
PR:		ports/72577
Submitted by:	Filippo Natali <filippo@widestore.net> (maintainer)
Repocopy by:	marcus
2004-10-16 10:33:02 +00:00