summaryrefslogtreecommitdiff
path: root/misc
AgeCommit message (Collapse)AuthorFilesLines
2004-11-16Fix for KDE frontendadam3-3/+36
2004-11-16Changes 1.3.2:adam2-21/+73
* Added support for extended character sets (most of WGL4) and UTF-8 encoded strings * Updated info display to show apparent size of selected object * Enable tab completion of location names * Introduced support for JPL ephemeris files * Fixed crash in Windows star browser that occurred after changing the number of stars and pressing return. * Fixed bug that made stars and galaxies appear square when certain nebulae were in view. * Made the delete button in the Windows bookmarks organizer actually work * Updated orbits for Amalthea and Phoebe * Fixed seams in Jupiter and Phobos textures * Spacecraft orbit paths adaptively sampled for smoother results * Eliminated obscuring of location labels that occurred low view aspect ratios * Added models of comet Halley and the small moons Pandora and Larissa * Added limit of knowledge masks for the Galilean moons * Changed spectral class of carbon stars to C, which supercedes and combines R and N * Lua scripting additions * View management commands * Image capture commands * Made setrenderflags and setlabelflags accept a table * Orbit and locations settings * observer:cancelgoto * Made the cursor shape change to the resize icon when positioned over view borders * Added a new 3D file format: cmod, the Celestia model format * Documented the fields in celestia.cfg with extensive comments * Added newly discovered extrasolar planet HD 330075 b * Added Cassini and Huygens models and trajectories * Fixed crashing bug in the eclipse finder * Changed default start location to Earth * Revised some erroneous spectral classes in star catalog * Made solar system objects occlude labels of more distant objects * Implemented an algorithm for importance weights to avoid overlapping or too crowded location labels for Mars, Venus and the Moon * Added new textures for Titan based on recent imaging from the Cassini mission * Improved depth sorting so that hidden surface removal works properly for overlapping objects * Added theoretical estimates of oblateness and rotation rate for extrasolar planets * Replaced old Io and Europa textures with improved versions * Added disposition modifier for ssc objects to control what happens when an object with the same name and parent already exists. The three possible behaviors are Add (the default), Replace, and Modify. * WINDOWS: Limited CPU usage when main window is minimized * WINDOWS: Changed preferred z-buffer depth from 16 to 24 bits to reduce z-fight artifacts. * Fixed labels and info text so it looks crisp when multisample antialiasing is enabled. * Eliminated flickering of location labels * WINDOWS: Save texture resolution setting between sessions
2004-11-15Rework the Berkeley DB detection in buildlink3:jlam1-4/+1
* Add a db1.builtin.mk file that detects whether DB-1.85 functionality exists in the base system, and remove the distinction between "native" and the other Berkeley DB packages -- we now refer to db[1234]. This paves the way for any future databases/db1 package. * USE_DB185 shouldn't need to be set by any packages -- its correct value is now automatically determined by bdb.buildlink3.mk depending on whether we explicitly request db1 or not. By default, if you include bdb.buildlink3.mk, you want DB-1.85 functionality and USE_DB185 defaults to "yes", but if you explicitly remove db1 from the list of acceptable DBs, then USE_DB185 defaults to "no". * Set BDB_LIBS to the library options needed to link against the DB library when bdb.buildlink3.mk is included. * We only add the DB library to the linker command automatically if we want DB-1.85 functionality; otherwise assume that the package configure process can figure out how to probe for the correct headers and libraries. Edit package Makefiles to nuke redundant settings of USE_DB185.
2004-11-13Replace USE_GCC_SHLIB with "USE_LANGUAGE=c c++" (the latter implies thejlam2-4/+4
former) for applications that are known to require C++.
2004-11-13USE_BUILDLINK3 is a yes/no variable.jlam1-2/+2
2004-11-12Add missing .include "../../mk/bsd.pkg.mk"kristerw2-2/+6
2004-11-12Fix a C99-ism to make this pkg build with gcc 2.95.kristerw2-1/+18
2004-11-12The source code does not use bool, so no need to include stdbool.h.kristerw2-6/+14
Makes this pkg compile on NetBSD 1.6.
2004-11-12Don't include bsd.pkg.mk in Makefile.common. Include it in the packagejlam2-4/+3
Makefiles themselves so we can more precisely control when it is included, as well as avoiding including it multiple times by accident. This fixes the spewage in the bulk builds for misc/celestia-kde.
2004-11-12Fix syntax error.sketch1-2/+2
2004-11-12Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're addedjlam3-8/+8
automatically by pthread.buildlink3.mk. Also, factor out the pthread library out of PTHREAD_LDFLAGS into a standalone variable PTHREAD_LIBS and use it in packages where necessary (usually the ones that don't have a GNU configure script).
2004-11-11Homogenize the two suggested database structures.martin1-19/+19
2004-11-11Update open2300 to version 1.7 (and implicitly open2300-mysql too):martin9-26/+611
bugfix release to fix a buffer overrun. While there, add a few patches to disable checksum verification on wind direction - this failed for my weather station consistently on some data sets. I'll bring this up with the authors.
2004-11-10Added celestia-gtkadam1-1/+2
2004-11-10Changes 1.3.2:adam2-13/+18
* Added support for extended character sets (most of WGL4) and UTF-8 encoded strings * Updated info display to show apparent size of selected object * Enable tab completion of location names * Introduced support for JPL ephemeris files * Fixed crash in Windows star browser that occurred after changing the number of stars and pressing return. * Fixed bug that made stars and galaxies appear square when certain nebulae were in view. * Made the delete button in the Windows bookmarks organizer actually work * Updated orbits for Amalthea and Phoebe * Fixed seams in Jupiter and Phobos textures * Spacecraft orbit paths adaptively sampled for smoother results * Eliminated obscuring of location labels that occurred low view aspect ratios * Added models of comet Halley and the small moons Pandora and Larissa * Added limit of knowledge masks for the Galilean moons * Changed spectral class of carbon stars to C, which supercedes and combines R and N * Lua scripting additions * View management commands * Image capture commands * Made setrenderflags and setlabelflags accept a table * Orbit and locations settings * observer:cancelgoto * Made the cursor shape change to the resize icon when positioned over view borders * Added a new 3D file format: cmod, the Celestia model format * Documented the fields in celestia.cfg with extensive comments * Added newly discovered extrasolar planet HD 330075 b * Added Cassini and Huygens models and trajectories * Fixed crashing bug in the eclipse finder * Changed default start location to Earth * Revised some erroneous spectral classes in star catalog * Made solar system objects occlude labels of more distant objects * Implemented an algorithm for importance weights to avoid overlapping or too crowded location labels for Mars, Venus and the Moon * Added new textures for Titan based on recent imaging from the Cassini mission * Improved depth sorting so that hidden surface removal works properly for overlapping objects * Added theoretical estimates of oblateness and rotation rate for extrasolar planets * Replaced old Io and Europa textures with improved versions * Added disposition modifier for ssc objects to control what happens when an object with the same name and parent already exists. The three possible behaviors are Add (the default), Replace, and Modify. * WINDOWS: Limited CPU usage when main window is minimized * WINDOWS: Changed preferred z-buffer depth from 16 to 24 bits to reduce z-fight artifacts. * Fixed labels and info text so it looks crisp when multisample antialiasing is enabled. * Eliminated flickering of location labels * WINDOWS: Save texture resolution setting between sessions
2004-11-10Typo fixadam1-2/+2
2004-11-10GTK version of celestia packageadam3-0/+31
2004-11-10Changes 1.3.2:adam1-0/+15
* Added support for extended character sets (most of WGL4) and UTF-8 encoded strings * Updated info display to show apparent size of selected object * Enable tab completion of location names * Introduced support for JPL ephemeris files * Fixed crash in Windows star browser that occurred after changing the number of stars and pressing return. * Fixed bug that made stars and galaxies appear square when certain nebulae were in view. * Made the delete button in the Windows bookmarks organizer actually work * Updated orbits for Amalthea and Phoebe * Fixed seams in Jupiter and Phobos textures * Spacecraft orbit paths adaptively sampled for smoother results * Eliminated obscuring of location labels that occurred low view aspect ratios * Added models of comet Halley and the small moons Pandora and Larissa * Added limit of knowledge masks for the Galilean moons * Changed spectral class of carbon stars to C, which supercedes and combines R and N * Lua scripting additions * View management commands * Image capture commands * Made setrenderflags and setlabelflags accept a table * Orbit and locations settings * observer:cancelgoto * Made the cursor shape change to the resize icon when positioned over view borders * Added a new 3D file format: cmod, the Celestia model format * Documented the fields in celestia.cfg with extensive comments * Added newly discovered extrasolar planet HD 330075 b * Added Cassini and Huygens models and trajectories * Fixed crashing bug in the eclipse finder * Changed default start location to Earth * Revised some erroneous spectral classes in star catalog * Made solar system objects occlude labels of more distant objects * Implemented an algorithm for importance weights to avoid overlapping or too crowded location labels for Mars, Venus and the Moon * Added new textures for Titan based on recent imaging from the Cassini mission * Improved depth sorting so that hidden surface removal works properly for overlapping objects * Added theoretical estimates of oblateness and rotation rate for extrasolar planets * Replaced old Io and Europa textures with improved versions * Added disposition modifier for ssc objects to control what happens when an object with the same name and parent already exists. The three possible behaviors are Add (the default), Replace, and Modify. * WINDOWS: Limited CPU usage when main window is minimized * WINDOWS: Changed preferred z-buffer depth from 16 to 24 bits to reduce z-fight artifacts. * Fixed labels and info text so it looks crisp when multisample antialiasing is enabled. * Eliminated flickering of location labels * WINDOWS: Save texture resolution setting between sessions
2004-11-10Changes 1.3.2:adam9-237/+165
* Added support for extended character sets (most of WGL4) and UTF-8 encoded strings * Updated info display to show apparent size of selected object * Enable tab completion of location names * Introduced support for JPL ephemeris files * Fixed crash in Windows star browser that occurred after changing the number of stars and pressing return. * Fixed bug that made stars and galaxies appear square when certain nebulae were in view. * Made the delete button in the Windows bookmarks organizer actually work * Updated orbits for Amalthea and Phoebe * Fixed seams in Jupiter and Phobos textures * Spacecraft orbit paths adaptively sampled for smoother results * Eliminated obscuring of location labels that occurred low view aspect ratios * Added models of comet Halley and the small moons Pandora and Larissa * Added limit of knowledge masks for the Galilean moons * Changed spectral class of carbon stars to C, which supercedes and combines R and N * Lua scripting additions * View management commands * Image capture commands * Made setrenderflags and setlabelflags accept a table * Orbit and locations settings * observer:cancelgoto * Made the cursor shape change to the resize icon when positioned over view borders * Added a new 3D file format: cmod, the Celestia model format * Documented the fields in celestia.cfg with extensive comments * Added newly discovered extrasolar planet HD 330075 b * Added Cassini and Huygens models and trajectories * Fixed crashing bug in the eclipse finder * Changed default start location to Earth * Revised some erroneous spectral classes in star catalog * Made solar system objects occlude labels of more distant objects * Implemented an algorithm for importance weights to avoid overlapping or too crowded location labels for Mars, Venus and the Moon * Added new textures for Titan based on recent imaging from the Cassini mission * Improved depth sorting so that hidden surface removal works properly for overlapping objects * Added theoretical estimates of oblateness and rotation rate for extrasolar planets * Replaced old Io and Europa textures with improved versions * Added disposition modifier for ssc objects to control what happens when an object with the same name and parent already exists. The three possible behaviors are Add (the default), Replace, and Modify. * WINDOWS: Limited CPU usage when main window is minimized * WINDOWS: Changed preferred z-buffer depth from 16 to 24 bits to reduce z-fight artifacts. * Fixed labels and info text so it looks crisp when multisample antialiasing is enabled. * Eliminated flickering of location labels * WINDOWS: Save texture resolution setting between sessions
2004-11-10Standardize MESSAGE a bit.wiz1-10/+15
2004-11-10+ open2300{,-mysql}xtraeme1-1/+3
2004-11-10Import of open2300-mysql - an add-on to the open2300 pkg, that logs datamartin4-0/+79
from the weather station to a mysql database.
2004-11-10Import of open2300, a set of utilities to read data from and controll amartin8-0/+198
weather station WS23xx.
2004-11-08This package has copied several files from gpgme verbatimshannonjr6-2/+112
that have been patched recently to correctly use getenv_r, ttyname_r and strerror_r. This update applies the same changes to the copied files.
2004-11-07Make this work with xmame 0.87 by applying patches from Miguel Mendezkristerw4-5/+95
in PR 27090 (with a minor tweak for issues from yesterday's update of the xmame pkg.) This does also solve part of PR 27011. Bump PKGREVISION.
2004-11-05Fix typo, from Cesar Catrian C. in PR 28018.wiz1-2/+2
2004-11-05now that PHP 5.x Makefile.common doesn't pollute CONFIGURE_ARGS, it safejdolecek2-6/+4
to include "../../lang/php/ext.mk" after extension CONFIGURE_ARGS setting; successful build confirmed with both PHP 4.x and PHP 5.x
2004-11-05This doesn't really need perl to build.jmmv1-2/+1
2004-11-05Update to 0.11.15:jmmv3-32/+5
What's new in GOK 0.11.15 ? * Bug fixes including: 155556, 157138, 157221, 154961, 155805, 156802 154918, 156802. * Mostly fixes and improvements to the dynamic accessibility keyboards. What's new in GOK 0.11.14 ? * Bug fixes including: 155182 (double actions), 154499, 154604, #156153, #156479, 155344, 155473, 155476, 155512. * LoginHelper's setSafe implementation now prevents word completion, as it should. * Distinguish between HTML content and browser controls. * Hush compiler warnings (bug 154915).
2004-11-02Improved integer overflow fix for KWord's PDF import filter. Officialmarkd4-2/+87
koffice patch. Bump PKGREVISION.
2004-11-02Remove some useless C99isms to fix the build under NetBSD 1.6.2.jmmv2-1/+28
Should fix bug PR/27188 and problem shown in kristerw@'s bulk build.
2004-10-31adjust for rename of most php4-* packages to php-*jdolecek1-3/+3
2004-10-31remove php4-* extension packages, replaced by php-* packages, which supportjdolecek4-32/+0
PHP5 too
2004-10-31extension modules must be able to override CONFIGURE_ARGS, so includejdolecek2-4/+6
lang/php/ext.mk before setting CONFIGURE_ARGS
2004-10-31new PHP extension module framework, which makes it possible to buildjdolecek4-0/+30
individual PHP extension packages with either PHP 4.x or PHP 5.x convert existing php4-* packages to this framework and import as php-*
2004-10-30Update xchm to 0.9.6.minskim3-6/+7
Changes: - added Latvian translation. - fixed the way xCHM treated '&' characters in URLs. - fixed a TOC bug.
2004-10-29Add dpkg.erh1-1/+2
2004-10-29Import dpkg-1.20.24 from pkgsrc-wip.erh8-0/+205
Package maintenance system for Debian Works with .deb files.
2004-10-29Update setiathome to 3.08:abs3-36/+67
Release notes: Version 3.08 is a precautionary security release. There was a potential buffer overrun in the networking code of the client that is fixed with version 3.08. Note that to exploit this vulnerability, a potential attacker would have to trick the client into contacting a fake server rather than the actual SETI@home server. To our knowledge, no SETI@home client has ever been attacked in this manner. The only NetBSD platform currently supported by 3.08 is NetBSD-sparc-1.6.1 and later. Update supported list for FreeBSD, OpenBSD, SunOS, and Linux
2004-10-28Update to 2.8.1:jmmv3-2211/+7
Version 2.8.1 ------------- * Sun's Vino documentation now merged in (John Fleck) Version 2.8.0-1 --------------- * Broken XML files fixed * Out-of-date translations removed
2004-10-28Update to 2.8.1: sorry, list of changes unknown, but one should expectjmmv2-6/+5
bug fixes and updated translations.
2004-10-28Update to 0.11.12:jmmv3-7/+62
What's new in GOK 0.11.12? * Bug fixes including: 155182 (double actions) What's new in GOK 0.11.10/0.11.11 ? * Fix regression caused by bugfix 151417; this release should be used instead of 0.11.9. What's new in GOK 0.11.9 ? * Expose multiple actions for UI components which have more than one possible user action available. Fixes bug #151417. * Improved table and list behavior: Bugfixes for #153130, #152788, #153389. * Rewrite of online help (thanks to Irene Ryan!)
2004-10-28Update to 2.6.4:jmmv2-6/+5
* Updated translations: gl (Jesus Bravo Alvarez), zh_TW (GNOME HK Team)
2004-10-28Update to koffice 1.3.4markd3-10/+17
Changes: KOffice Libraries KOfficeUI * Compile again with Qt 3.1 KPresenter * Compile again with KDE 3.1 * Fix crash in history of group/ungroup commands * Fix loading and saving of picture objects marked "sticky" KSpread * Make the Control-C key work again * Make columns and rows that are not on the top-left side of a sheet sizable again. * Fix painting of the gridlines, when a row or column is resized. KChart * Fix pressing Enter in the Data Editor Filters KWord's OpenOffice.org Writer Export Filter * Fix auto-justification KWord's RTF Import Filter * Temporary fix to avoid empty font names KWord's PDF Import Filter * SECURITY: fix the integer overflow vulnerability * Fix for compiling with --enable-final KPresenter's OpenOffice.org Impress Export Filter * In formulas, convert the decimal symbol used by the locale KFormula's MathML Import Filter * Make the import filter work again KFormula's MathML Export Filter * Fix the invisible multiply operator
2004-10-26Add two missing lines; addresses PR 27514 by Greg Troxel.wiz1-1/+4
2004-10-23Add buildlink3 file, as requested in PR 27364 by Greg Troxel.wiz1-0/+15
2004-10-15Update linkage to libltdl (via guile{,14}), which is now its own package.tv3-6/+6
Unfortunately, guile{,14}/buildlink3.mk directly includes it, and I don't know which dependencies actually need libltdl, so it was a recursive bump. Hopefully this recursive inclusion can be ripped out of guile{,14}/buildlink3.mk at some point and bubble down to dependencies that actually use libltdl, avoiding this headache in the future....
2004-10-13Defuzz patches by regenerating with pkgdiff.tv3-19/+13
2004-10-13Update to KDE 3.3.1.markd2-5/+4
Changes unknown.
2004-10-13Update to KDE 3.3.1.markd3-8/+5
Changes: * sidebar newsticker: Better error handling in case no connection to the DCOP service is possible * sidebar newsticker: Remove newsticker from the default sidebar configuraton (usability fix) * sidebar mediaplayer: Remove mediaplayer from the default sidebar configuration (usability fix)