summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update to 2.4.marcus2004-10-166-9/+9
|
* Upgrade to 0.13.2.obraun2004-10-162-3/+3
|
* - Update to 0.91pav2004-10-166-16/+16
| | | | | PR: ports/72757 Submitted by: Peter van Dijk <peter@dataloss.nl> (maintainer)
* boinc-client --> ports/net/boinc-clientpav2004-10-161-0/+1
|
* Add boinc-client, Berkeley Open Infrastructure for Network Computing.pav2004-10-1611-0/+453
| | | | | | | | | | | | | | 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>
* Upgrade to 1.0.0 RC3.obraun2004-10-1610-62/+10
|
* Take maintainership;demon2004-10-161-7/+3
| | | | | | Use $SQLRELAY_CONFIGURE_ENV variable defined in sqlrelay's Makefile.common instead of duplicating it's job in slave ports; Small cleanup.
* Take maintainership;demon2004-10-165-81/+68
| | | | | Use autoconf to generate configure script. Remove redundant bits which were probably needed for older versions of sqlrelay.
* koth --> ports/games/kothpav2004-10-161-0/+1
|
* Add KOTH (King of the Hill), a multiplayer tank artillery game similar topav2004-10-167-0/+92
| | | | | | | Scorched Earth that uses libggi. PR: ports/72725 Submitted by: Travis Poppe <tlp@LiquidX.org>
* - Drop maintainershippav2004-10-162-2/+2
| | | | | PR: ports/72765 Submitted by: Michael Johnson <ahze@ahze.net> (maintainer)
* take maintainershipoliver2004-10-161-1/+1
|
* gaim-openq --> ports/net/gaim-openqpav2004-10-161-0/+1
|
* Add gaim-openq, a QQ-liked protocol plugin for Gaim.pav2004-10-1621-0/+1483
| | | | | PR: ports/72697 Submitted by: hamigua <hamigua@cuc.cn>
* - New CPAN maintainer requests maintainership of the port as welllth2004-10-161-1/+1
|
* . Bump PORTREVISION for the recent fixes.glewis2004-10-163-3/+3
|
* . Fix the Server VM for gcc 3.4 part 2/2.glewis2004-10-163-0/+72
| | | | | | | | | | | | | | | | | | | | | 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
* . Fix the Server VM for gcc 3.4 part 1/2.glewis2004-10-163-0/+114
| | | | | | | | | | | | | | | | | | 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
* Update to 7.1.042.netchild2004-10-162-3/+3
|
* . In the ReadChunk() function, change an assert() to be a "test for aglewis2004-10-163-0/+159
| | | | | | | | | | | | | | | | | | | 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.
* Upgrade to 1.2.2.obraun2004-10-163-4/+31
|
* . At least on FreeBSD, O_SYNC and O_DSYNC aren't both definedglewis2004-10-163-0/+63
| | | | | | | | | | | (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.
* - Update to 1.3lth2004-10-164-34/+11
| | | | - Move simple patch files into Makefile
* - Quick update to 0.0.8.1, bugfix release, because 0.0.8 was removedpav2004-10-164-6/+6
| | | | | | from distsite Reported by: Dead Microprocessor <dead.microprocessor@gmail.com>
* nvu --> ports/www/nvuthierry2004-10-161-0/+1
|
* Add nvu 0.50, a complete Web Authoring System.thierry2004-10-1611-0/+6591
| | | | | | This is the native version. Warning: a powerful machine is required!
* Fix C++ to avoid broken build on 5.x after gnome-- fix.bland2004-10-162-0/+27
|
* Withdraw BROKEN on 5.x. It's ok now.bland2004-10-161-7/+1
|
* Always add explicit namespace in generated Wrap<> traits specialization.bland2004-10-164-4/+4
| | | | | | | This is required when gtkmmproc used for gnome-- code generation. The last one defines classes in its own namespace. Reported by: pointyhat via kris
* Fix package build.krion2004-10-161-1/+1
|
* Update to 0.6.0perky2004-10-163-6/+8
| | | | Reminded by: pav
* Upgrade to 0.5.3.thierry2004-10-162-4/+3
| | | | | PR: ports/71768 Submitted by: maintainer.
* - Use jpeg-mmx on i386pav2004-10-161-1/+21
| | | | | PR: ports/72557 Submitted by: Michael Johnson <ahze@ahze.net> (maintainer)
* - Remove WITH_APR_FROM_PORTS knobclement2004-10-165-190/+164
| | | | | | | - 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
* - Update to 2.2lth2004-10-162-6/+4
| | | | - Removed test-only dependency
* - Update to 1.2lth2004-10-162-4/+4
|
* - use OPTIONS instead of a hand written scriptnetchild2004-10-164-231/+1982
| | | | | | | | | | | | | | | | - 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
* - update to 0.92.0.2 [1]netchild2004-10-1610-20/+70
| | | | | | | - list some known good and some probably bad soundcards [2] PR: 72068 [1] With help from: eculp@prodigy.ne [2]
* - fix build on 4.x and 5.2.1 [1]netchild2004-10-164-4/+18
| | | | | | | - change the OpenSSL check, it may fail in some circumstances [2] PR: 72287, 72384 [1] Reported by: Ulrich Spoerlein <q@uni.de> [2]
* - Downgrade to 0.7.4pav2004-10-165-23/+14
| | | | | | | | 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)
* o) Fix error in package list (use of rm).lkoeller2004-10-161-1/+1
|
* - Update to 1.0pav2004-10-1624-56/+40
| | | | | PR: ports/72747 Submitted by: gh@ghaering.de <gh@ghaering.de> (maintainer)
* - Update to 1.8.12 and unbreak on 5.xpav2004-10-162-8/+4
| | | | | PR: ports/72750 Submitted by: David Thiel <lx@redundancy.redundancy.org> (maintainer)
* zope-simpleblog --> ports/www/zope-simpleblogpav2004-10-161-0/+1
|
* Add zope-simpleblog, an easy to use Plone based weblog application.pav2004-10-164-0/+61
| | | | | | | | 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>
* - Update to 1.00pav2004-10-166-22/+12
| | | | | PR: ports/72496 Submitted by: HAYASHI Yasushi <yasi@yasi.to> (maintainer)
* Remove zope-cmftransforms, it was renamed to zope-portaltransforms.pav2004-10-167-341/+1
| | | | | PR: ports/72577 Submitted by: Filippo Natali <filippo@widestore.net> (maintainer)
* - Update to 1.3.0pav2004-10-162-18/+27
| | | | | PR: ports/72580 Submitted by: Filippo Natali <filippo@widestore.net> (maintainer)
* zope-cmftransforms --> zope-portaltransformspav2004-10-161-1/+1
|
* After repocopy from zope-cmftransforms, upgrade to 1.3.2pav2004-10-166-266/+32
| | | | | | PR: ports/72577 Submitted by: Filippo Natali <filippo@widestore.net> (maintainer) Repocopy by: marcus
OpenPOWER on IntegriCloud