pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/x11 Update to 5.00:
details: https://anonhg.NetBSD.org/pkgsrc/rev/960561969be2
branches: trunk
changeset: 516298:960561969be2
user: wiz <wiz%pkgsrc.org@localhost>
date: Tue Jul 18 18:40:36 2006 +0000
description:
Update to 5.00:
Changes since 4.24: * Ported to MacOS X! (10.4.0 or newer)
* API change: instead of providing a single screenhack()
function that does not return, screen savers using the
screenhack.h framework must now provide "init" and
"draw one frame" functions instead. All bundled savers
have been updated; third-party patches will need work.
* All image-loading happens asynchronously.
* xscreensaver-getimage-file caches the contents of the
image directory for a few hours, so consecutive runs
won't have to re-list the whole directory tree.
* New hacks, `topblock' and `glschool'.
* Removed `xteevee' (superceded by `xanalogtv').
* Added variable-sized puzzle pieces to `jigsaw'.
* Changes to the defaults and command-line options of
many hacks to make the .xml files more consistent.
* Reap zombies in `glslideshow' and `carousel'.
* `sonar' works without setuid on OSX (dgram icmp).
* `xmatrix -mode pipe' displays the text of a subprocess.
* `endgame' has higher resolution chess-piece models.
* `webcollage' takes a -directory option to get images
from a local directory.
Changes since 4.23: * New versions of `cube21', `glsnake', `celtic'.
* Backed out a DPMS-related patch that cause desktop
flickering with some X servers.
* Fixed startup crash in getgroups() when running setuid.
* Default to not displaying stderr on the saver window.
* Fixed bad free() in "Documentation" button.
* Don't try to run hacks that aren't installed.
* Minor fixes to various XML config files and man pages.
Changes since 4.22: * New hacks, `glhanoi', `cube21', `timetunnel',
`juggler3d', and `celtic'.
* New versions of `tangram', `webcollage', `hypertorus',
`polytopes', and `ripples'.
* `sonar' is now quiet about unresolvable hosts.
* Minor corrections to BASIC code in `apple2'.
* Don't install `ant' by default, since there is some
Java tool of that name, which was causing confusion.
And also it's boring.
* Made screen grabbing work again on MacOS 10.4.2.
* No longer prints bogus warnings about ClientMessages
intended for the window manager.
* Ignore unprintable characters in passwd entry field.
* Fixed yet another cross-host-display image-loading
endian problem.
* `xscreensaver-command -watch' and `-time' now work
on 64-bit machines.
diffstat:
x11/xscreensaver-demo/Makefile | 3 +-
x11/xscreensaver/Makefile | 3 +-
x11/xscreensaver/Makefile.common | 7 +-
x11/xscreensaver/PLIST | 433 ++++++++++++++++++++-----------------
x11/xscreensaver/PLIST.webcollage | 4 +-
x11/xscreensaver/distinfo | 20 +-
x11/xscreensaver/options.mk | 4 +-
x11/xscreensaver/patches/patch-aa | 6 +-
x11/xscreensaver/patches/patch-ab | 8 +-
x11/xscreensaver/patches/patch-ac | 16 +-
x11/xscreensaver/patches/patch-ad | 18 +-
x11/xscreensaver/patches/patch-af | 6 +-
x11/xscreensaver/patches/patch-ah | 13 -
x11/xscreensaver/patches/patch-ai | 60 -----
14 files changed, 274 insertions(+), 327 deletions(-)
diffs (truncated from 933 to 300 lines):
diff -r 156f3726f7d6 -r 960561969be2 x11/xscreensaver-demo/Makefile
--- a/x11/xscreensaver-demo/Makefile Tue Jul 18 18:14:33 2006 +0000
+++ b/x11/xscreensaver-demo/Makefile Tue Jul 18 18:40:36 2006 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.23 2006/04/17 13:47:02 wiz Exp $
+# $NetBSD: Makefile,v 1.24 2006/07/18 18:40:36 wiz Exp $
#
PKGNAME= ${DISTNAME:S/-/-demo-/}
-PKGREVISION= 3
COMMENT= Demo viewer and configuration tool for xscreensaver
CONFLICTS+= xscreensaver<4.14 xscreensaver-gnome-[0-9]*
diff -r 156f3726f7d6 -r 960561969be2 x11/xscreensaver/Makefile
--- a/x11/xscreensaver/Makefile Tue Jul 18 18:14:33 2006 +0000
+++ b/x11/xscreensaver/Makefile Tue Jul 18 18:40:36 2006 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.79 2006/05/21 15:19:31 jlam Exp $
+# $NetBSD: Makefile,v 1.80 2006/07/18 18:40:36 wiz Exp $
COMMENT= Screen saver and locker for the X window system
-PKGREVISION= 5
CONFLICTS+= xscreensaver-gnome<4.14
# man/man1/barcode.1
diff -r 156f3726f7d6 -r 960561969be2 x11/xscreensaver/Makefile.common
--- a/x11/xscreensaver/Makefile.common Tue Jul 18 18:14:33 2006 +0000
+++ b/x11/xscreensaver/Makefile.common Tue Jul 18 18:40:36 2006 +0000
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile.common,v 1.89 2006/06/15 13:31:30 wiz Exp $
+# $NetBSD: Makefile.common,v 1.90 2006/07/18 18:40:36 wiz Exp $
#
-DISTNAME= xscreensaver-4.22
+DISTNAME= xscreensaver-5.00
CATEGORIES= x11
-MASTER_SITES= ftp://ftp.fu-berlin.de/unix/X11/graphics/xscreensaver/ \
- ${HOMEPAGE}
+MASTER_SITES= ${HOMEPAGE}
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://www.jwz.org/xscreensaver/
diff -r 156f3726f7d6 -r 960561969be2 x11/xscreensaver/PLIST
--- a/x11/xscreensaver/PLIST Tue Jul 18 18:14:33 2006 +0000
+++ b/x11/xscreensaver/PLIST Tue Jul 18 18:40:36 2006 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.29 2006/05/21 15:19:31 jlam Exp $
+@comment $NetBSD: PLIST,v 1.30 2006/07/18 18:40:36 wiz Exp $
bin/xscreensaver
bin/xscreensaver-command
bin/xscreensaver-getimage
@@ -9,7 +9,6 @@
lib/X11/app-defaults/XScreenSaver
libexec/xscreensaver/anemone
libexec/xscreensaver/anemotaxis
-libexec/xscreensaver/ant
libexec/xscreensaver/antinspect
libexec/xscreensaver/antmaze
libexec/xscreensaver/antspotlight
@@ -36,13 +35,13 @@
libexec/xscreensaver/cage
libexec/xscreensaver/carousel
libexec/xscreensaver/ccurve
+libexec/xscreensaver/celtic
libexec/xscreensaver/circuit
libexec/xscreensaver/cloudlife
libexec/xscreensaver/compass
libexec/xscreensaver/config/README
libexec/xscreensaver/config/anemone.xml
libexec/xscreensaver/config/anemotaxis.xml
-libexec/xscreensaver/config/ant.xml
libexec/xscreensaver/config/antinspect.xml
libexec/xscreensaver/config/antmaze.xml
libexec/xscreensaver/config/antspotlight.xml
@@ -69,13 +68,16 @@
libexec/xscreensaver/config/cage.xml
libexec/xscreensaver/config/carousel.xml
libexec/xscreensaver/config/ccurve.xml
+libexec/xscreensaver/config/celtic.xml
libexec/xscreensaver/config/circuit.xml
libexec/xscreensaver/config/cloudlife.xml
libexec/xscreensaver/config/compass.xml
libexec/xscreensaver/config/coral.xml
+libexec/xscreensaver/config/cosmos.xml
libexec/xscreensaver/config/crackberg.xml
libexec/xscreensaver/config/critical.xml
libexec/xscreensaver/config/crystal.xml
+libexec/xscreensaver/config/cube21.xml
libexec/xscreensaver/config/cubenetic.xml
libexec/xscreensaver/config/cubestorm.xml
libexec/xscreensaver/config/cynosure.xml
@@ -87,6 +89,7 @@
libexec/xscreensaver/config/discrete.xml
libexec/xscreensaver/config/distort.xml
libexec/xscreensaver/config/drift.xml
+libexec/xscreensaver/config/electricsheep.xml
libexec/xscreensaver/config/endgame.xml
libexec/xscreensaver/config/engine.xml
libexec/xscreensaver/config/epicycle.xml
@@ -95,6 +98,7 @@
libexec/xscreensaver/config/extrusion.xml
libexec/xscreensaver/config/fadeplot.xml
libexec/xscreensaver/config/fiberlamp.xml
+libexec/xscreensaver/config/fireflies.xml
libexec/xscreensaver/config/fireworkx.xml
libexec/xscreensaver/config/flag.xml
libexec/xscreensaver/config/flame.xml
@@ -114,12 +118,15 @@
libexec/xscreensaver/config/glblur.xml
libexec/xscreensaver/config/gleidescope.xml
libexec/xscreensaver/config/glforestfire.xml
+libexec/xscreensaver/config/glhanoi.xml
libexec/xscreensaver/config/glknots.xml
libexec/xscreensaver/config/glmatrix.xml
libexec/xscreensaver/config/glplanet.xml
+libexec/xscreensaver/config/glschool.xml
libexec/xscreensaver/config/glslideshow.xml
libexec/xscreensaver/config/glsnake.xml
libexec/xscreensaver/config/gltext.xml
+libexec/xscreensaver/config/goban.xml
libexec/xscreensaver/config/goop.xml
libexec/xscreensaver/config/grav.xml
libexec/xscreensaver/config/greynetic.xml
@@ -138,6 +145,7 @@
libexec/xscreensaver/config/jigglypuff.xml
libexec/xscreensaver/config/jigsaw.xml
libexec/xscreensaver/config/juggle.xml
+libexec/xscreensaver/config/juggler3d.xml
libexec/xscreensaver/config/julia.xml
libexec/xscreensaver/config/kaleidescope.xml
libexec/xscreensaver/config/klein.xml
@@ -201,6 +209,7 @@
libexec/xscreensaver/config/sonar.xml
libexec/xscreensaver/config/speedmine.xml
libexec/xscreensaver/config/sphere.xml
+libexec/xscreensaver/config/sphereeversion.xml
libexec/xscreensaver/config/spheremonics.xml
libexec/xscreensaver/config/spiral.xml
libexec/xscreensaver/config/spotlight.xml
@@ -217,6 +226,8 @@
libexec/xscreensaver/config/t3d.xml
libexec/xscreensaver/config/tangram.xml
libexec/xscreensaver/config/thornbird.xml
+libexec/xscreensaver/config/timetunnel.xml
+libexec/xscreensaver/config/topblock.xml
libexec/xscreensaver/config/triangle.xml
libexec/xscreensaver/config/truchet.xml
libexec/xscreensaver/config/twang.xml
@@ -229,18 +240,23 @@
libexec/xscreensaver/config/worm.xml
libexec/xscreensaver/config/wormhole.xml
libexec/xscreensaver/config/xanalogtv.xml
+libexec/xscreensaver/config/xaos.xml
+libexec/xscreensaver/config/xdaliclock.xml
libexec/xscreensaver/config/xflame.xml
libexec/xscreensaver/config/xjack.xml
libexec/xscreensaver/config/xlyap.xml
libexec/xscreensaver/config/xmatrix.xml
+libexec/xscreensaver/config/xmountains.xml
+libexec/xscreensaver/config/xplanet.xml
libexec/xscreensaver/config/xrayswarm.xml
+libexec/xscreensaver/config/xsnow.xml
libexec/xscreensaver/config/xspirograph.xml
-libexec/xscreensaver/config/xteevee.xml
libexec/xscreensaver/config/zoom.xml
libexec/xscreensaver/coral
libexec/xscreensaver/crackberg
libexec/xscreensaver/critical
libexec/xscreensaver/crystal
+libexec/xscreensaver/cube21
libexec/xscreensaver/cubenetic
libexec/xscreensaver/cubestorm
libexec/xscreensaver/cynosure
@@ -279,9 +295,11 @@
libexec/xscreensaver/glblur
libexec/xscreensaver/gleidescope
libexec/xscreensaver/glforestfire
+libexec/xscreensaver/glhanoi
libexec/xscreensaver/glknots
libexec/xscreensaver/glmatrix
libexec/xscreensaver/glplanet
+libexec/xscreensaver/glschool
libexec/xscreensaver/glslideshow
libexec/xscreensaver/glsnake
libexec/xscreensaver/gltext
@@ -303,6 +321,7 @@
libexec/xscreensaver/jigglypuff
libexec/xscreensaver/jigsaw
libexec/xscreensaver/juggle
+libexec/xscreensaver/juggler3d
libexec/xscreensaver/julia
libexec/xscreensaver/kaleidescope
libexec/xscreensaver/klein
@@ -383,6 +402,8 @@
libexec/xscreensaver/t3d
libexec/xscreensaver/tangram
libexec/xscreensaver/thornbird
+libexec/xscreensaver/timetunnel
+libexec/xscreensaver/topblock
libexec/xscreensaver/triangle
libexec/xscreensaver/truchet
libexec/xscreensaver/twang
@@ -402,213 +423,217 @@
libexec/xscreensaver/xrayswarm
libexec/xscreensaver/xspirograph
libexec/xscreensaver/xsublim
-libexec/xscreensaver/xteevee
libexec/xscreensaver/zoom
-man/man1/anemone.1
-man/man1/anemotaxis.1
-man/man1/ant.1
-man/man1/antinspect.1
-man/man1/antmaze.1
-man/man1/antspotlight.1
-man/man1/apollonian.1
-man/man1/apple2.1
-man/man1/atlantis.1
-man/man1/attraction.1
-man/man1/atunnel.1
-man/man1/barcode.1
-man/man1/blaster.1
-man/man1/blinkbox.1
-man/man1/blitspin.1
-man/man1/blocktube.1
-man/man1/boing.1
-man/man1/bouboule.1
-man/man1/bouncingcow.1
-man/man1/boxed.1
-man/man1/boxfit.1
-man/man1/braid.1
-man/man1/bsod.1
-man/man1/bubble3d.1
-man/man1/bubbles.1
-man/man1/bumps.1
-man/man1/cage.1
-man/man1/carousel.1
-man/man1/ccurve.1
-man/man1/circuit.1
-man/man1/cloudlife.1
-man/man1/compass.1
-man/man1/coral.1
-man/man1/crackberg.1
-man/man1/critical.1
-man/man1/crystal.1
-man/man1/cubenetic.1
-man/man1/cubestorm.1
-man/man1/cynosure.1
-man/man1/dangerball.1
-man/man1/decayscreen.1
-man/man1/deco.1
-man/man1/deluxe.1
-man/man1/demon.1
-man/man1/discrete.1
-man/man1/distort.1
-man/man1/drift.1
-man/man1/endgame.1
-man/man1/engine.1
-man/man1/epicycle.1
-man/man1/eruption.1
-man/man1/euler2d.1
-man/man1/extrusion.1
-man/man1/fadeplot.1
-man/man1/fiberlamp.1
-man/man1/fireworkx.1
-man/man1/flag.1
-man/man1/flame.1
-man/man1/flipflop.1
-man/man1/flipscreen3d.1
-man/man1/fliptext.1
-man/man1/flow.1
-man/man1/fluidballs.1
-man/man1/flurry.1
-man/man1/flyingtoasters.1
-man/man1/fontglide.1
-man/man1/forest.1
-man/man1/fuzzyflakes.1
-man/man1/galaxy.1
-man/man1/gears.1
-man/man1/gflux.1
-man/man1/glblur.1
-man/man1/gleidescope.1
-man/man1/glforestfire.1
-man/man1/glknots.1
-man/man1/glmatrix.1
-man/man1/glplanet.1
-man/man1/glslideshow.1
-man/man1/glsnake.1
-man/man1/gltext.1
-man/man1/goop.1
-man/man1/grav.1
-man/man1/greynetic.1
-man/man1/halftone.1
-man/man1/halo.1
-man/man1/helix.1
-man/man1/hopalong.1
-man/man1/hyperball.1
-man/man1/hypercube.1
-man/man1/hypertorus.1
-man/man1/ifs.1
-man/man1/imsmap.1
Home |
Main Index |
Thread Index |
Old Index