summaryrefslogtreecommitdiff
path: root/games/gnome-games
diff options
context:
space:
mode:
Diffstat (limited to 'games/gnome-games')
-rw-r--r--games/gnome-games/Makefile44
-rw-r--r--games/gnome-games/distinfo2
-rw-r--r--games/gnome-games/files/patch-blackjack_src_player.cpp75
-rw-r--r--games/gnome-games/files/patch-configure11
-rw-r--r--games/gnome-games/files/patch-gataxx_gtkgridboard.c21
-rw-r--r--games/gnome-games/files/patch-gnome-stones_Makefile.in11
-rw-r--r--games/gnome-games/files/patch-iagno_othello.c38
-rw-r--r--games/gnome-games/pkg-descr8
-rw-r--r--games/gnome-games/pkg-install17
-rw-r--r--games/gnome-games/pkg-plist694
10 files changed, 0 insertions, 921 deletions
diff --git a/games/gnome-games/Makefile b/games/gnome-games/Makefile
deleted file mode 100644
index 771097dfc030..000000000000
--- a/games/gnome-games/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# New ports collection makefile for: gnomegames2
-# Date created: 08 May 2002
-# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= gnomegames2
-PORTVERSION= 2.8.2
-CATEGORIES= games gnome
-MASTER_SITES= ${MASTER_SITE_GNOME}
-MASTER_SITE_SUBDIR= sources/gnome-games/2.8
-DISTNAME= gnome-games-${PORTVERSION}
-DIST_SUBDIR= gnome2
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= The game applications package for the Gnome 2 Desktop Environment
-
-LIB_DEPENDS= guile.15:${PORTSDIR}/lang/guile
-
-USE_BZIP2= yes
-USE_X_PREFIX= yes
-INSTALLS_OMF= yes
-USE_GMAKE= yes
-USE_REINPLACE= yes
-USE_GNOME= gnomeprefix gnomehack gnomehier intlhack libgnomeui \
- librsvg2 desktopfileutils
-USE_LIBTOOL_VER=15
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
-
-GCONF_SCHEMAS= aisleriot.schemas blackjack.schemas gataxx.schemas \
- glines.schemas gnect.schemas gnibbles.schemas gnobots2.schemas \
- gnome-stones.schemas gnometris.schemas gnomine.schemas \
- gnotravex.schemas gtali.schemas iagno.schemas mahjongg.schemas \
- same-gnome.schemas
-
-CONFLICTS= sol-1.0.*
-
-post-patch:
- @${FIND} ${WRKSRC} -name "*.[ch]" | ${XARGS} ${REINPLACE_CMD} -e \
- 's|malloc\.h|stdlib.h|g'
-
-.include <bsd.port.mk>
diff --git a/games/gnome-games/distinfo b/games/gnome-games/distinfo
deleted file mode 100644
index b3f1b4b1cb1c..000000000000
--- a/games/gnome-games/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (gnome2/gnome-games-2.8.2.tar.bz2) = cbc1013dd490c017fd443ba8ed50c0b2
-SIZE (gnome2/gnome-games-2.8.2.tar.bz2) = 5925337
diff --git a/games/gnome-games/files/patch-blackjack_src_player.cpp b/games/gnome-games/files/patch-blackjack_src_player.cpp
deleted file mode 100644
index 0a2d1ac3b8b0..000000000000
--- a/games/gnome-games/files/patch-blackjack_src_player.cpp
+++ /dev/null
@@ -1,75 +0,0 @@
---- blackjack/src/player.cpp.orig Tue Jul 6 12:56:50 2004
-+++ blackjack/src/player.cpp Tue Jul 6 12:59:29 2004
-@@ -262,8 +262,8 @@
- // Player can always stand.
-
- bestValue = value = getValueStand (*lplayer, upCard);
-- mark_list[num_options++] = g_strdup_printf (" %s %8.2lf%%\n",
-- _("Stand"), value * 100);
-+ mark_list[num_options++] = g_strdup_printf (" %s %8.2Lf%%\n",
-+ _("Stand"), (long double)(value * 100));
- bestOption = KEY_S;
- bestOptionNumber = num_options;
-
-@@ -271,8 +271,8 @@
- if (bj_hand_can_be_hit ()) {
- value = getValueHit (*lplayer, upCard);
-
-- mark_list[num_options++] = g_strdup_printf (" %s %8.2lf%%\n",
-- _("Hit"), value * 100);
-+ mark_list[num_options++] = g_strdup_printf (" %s %8.2Lf%%\n",
-+ _("Hit"), (long double)(value * 100));
- if (value > bestValue) {
- bestValue = value;
- bestOption = KEY_H;
-@@ -282,8 +282,8 @@
- // Check if player can double down.
- if (bj_hand_can_be_doubled ()) {
- value = getValueDoubleDown (*lplayer, upCard);
-- mark_list[num_options++] = g_strdup_printf (" %s %8.2lf%%\n",
-- _("Double"), value * 100);
-+ mark_list[num_options++] = g_strdup_printf (" %s %8.2Lf%%\n",
-+ _("Double"), (long double)(value * 100));
- if (value > bestValue) {
- bestValue = value;
- bestOption = KEY_D;
-@@ -296,8 +296,8 @@
-
- if (bj_hand_can_be_split ()) {
- value = getValueSplit(lplayer->cards[0].value (), upCard);
-- mark_list[num_options++] = g_strdup_printf (" %s %8.2lf%%\n",
-- _("Split"), value * 100);
-+ mark_list[num_options++] = g_strdup_printf (" %s %8.2Lf%%\n",
-+ _("Split"), (long double)(value * 100));
- if (value > bestValue) {
- bestValue = value;
- bestOption = KEY_P;
-@@ -308,8 +308,8 @@
- // Check if player can surrender.
- if (bj_hand_can_be_surrendered ()) {
- value = -0.5;
-- mark_list[num_options++] = g_strdup_printf (" %s %8.2lf%%\n",
-- _("Surrender"), value * 100);
-+ mark_list[num_options++] = g_strdup_printf (" %s %8.2Lf%%\n",
-+ _("Surrender"), (long double)(value * 100));
- if (value > bestValue) {
- bestValue = value;
- bestOption = KEY_R;
-@@ -439,12 +439,12 @@
- reset ();
-
- mark_list[0] = g_strdup_printf ("<b>%s</b>\n", _("Dealer hand probabilities"));
-- mark_list[1] = g_strdup_printf (" %s %5.2lf%%\n", _("Bust"),
-- getProbabilityBust (lupCard) * 100.0 / notBlackjack);
-+ mark_list[1] = g_strdup_printf (" %s %5.2Lf%%\n", _("Bust"),
-+ (long double)(getProbabilityBust (lupCard) * 100.0 / notBlackjack));
- for (int count = 17; count <= 21; count++) {
-- mark_list[count-15] = g_strdup_printf (" %2d %5.2lf%%\n", count,
-- getProbabilityCount (count, lupCard)
-- * 100.0 / notBlackjack);
-+ mark_list[count-15] = g_strdup_printf (" %2d %5.2Lf%%\n", count,
-+ (long double)(getProbabilityCount (count, lupCard)
-+ * 100.0 / notBlackjack));
- }
-
- markup = g_strconcat ("<span size=\"small\" font_family=\"monospace\" foreground=\"#eaeac1\">",
diff --git a/games/gnome-games/files/patch-configure b/games/gnome-games/files/patch-configure
deleted file mode 100644
index f8413ef3cff4..000000000000
--- a/games/gnome-games/files/patch-configure
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.orig Wed Dec 17 11:58:34 2003
-+++ configure Wed Dec 17 11:58:35 2003
-@@ -22452,7 +22452,7 @@
- else
-
- cat >>confdefs.h <<_ACEOF
--#define GNOME_ICONDIR "${prefix}/share/pixmaps"
-+#define GNOME_ICONDIR "${datadir}/pixmaps"
- _ACEOF
-
- fi
diff --git a/games/gnome-games/files/patch-gataxx_gtkgridboard.c b/games/gnome-games/files/patch-gataxx_gtkgridboard.c
deleted file mode 100644
index 9ceabef83f4f..000000000000
--- a/games/gnome-games/files/patch-gataxx_gtkgridboard.c
+++ /dev/null
@@ -1,21 +0,0 @@
---- gataxx/gtkgridboard.c.orig Thu May 20 17:17:56 2004
-+++ gataxx/gtkgridboard.c Thu May 20 17:18:13 2004
-@@ -140,6 +140,7 @@
- static gint gtk_gridboard_button_press(GtkWidget *widget, GdkEventButton *event)
- {
- GtkGridBoard * gridboard;
-+ int x, y;
-
- g_return_val_if_fail (widget != NULL, FALSE);
- g_return_val_if_fail (GTK_IS_GRIDBOARD(widget), FALSE);
-@@ -147,8 +148,8 @@
-
- gridboard=GTK_GRIDBOARD(widget);
-
-- int x=event->x/gridboard->tilewidth;
-- int y=event->y/gridboard->tileheight;
-+ x=event->x/gridboard->tilewidth;
-+ y=event->y/gridboard->tileheight;
- g_signal_emit (G_OBJECT(widget),
- gridboard_signals[BOXCLICKED], 0, x, y);
- return TRUE;
diff --git a/games/gnome-games/files/patch-gnome-stones_Makefile.in b/games/gnome-games/files/patch-gnome-stones_Makefile.in
deleted file mode 100644
index 92fbe9e8806c..000000000000
--- a/games/gnome-games/files/patch-gnome-stones_Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- gnome-stones/Makefile.in.orig Tue Jul 23 20:37:40 2002
-+++ gnome-stones/Makefile.in Tue Jul 23 20:38:10 2002
-@@ -202,7 +202,7 @@
- Caves_in_files = default.caves.in tutorial.caves.in gnomekoban.caves.in atari.caves.in
- Caves_DATA = $(Caves_in_files:.caves.in=.caves)
-
--gtkrcdir = $(datadir)
-+gtkrcdir = $(datadir)/gnome-stones
- gtkrc_DATA = gnome-stonesrc gnome-stonesrc.ko
-
- Mimedir = $(datadir)/mime-info
diff --git a/games/gnome-games/files/patch-iagno_othello.c b/games/gnome-games/files/patch-iagno_othello.c
deleted file mode 100644
index 4b87018a5f18..000000000000
--- a/games/gnome-games/files/patch-iagno_othello.c
+++ /dev/null
@@ -1,38 +0,0 @@
---- iagno/othello.c.orig Thu May 20 17:20:21 2004
-+++ iagno/othello.c Thu May 20 17:21:11 2004
-@@ -544,7 +544,7 @@
- memcpy (tboard, board, sizeof (gint8) * 8 * 8);
- move_board(tboard, i, j, me, 0);
-
-- // assume that opponent takes best move
-+ /* assume that opponent takes best move */
- tmp_move = find_best_move(tboard, not_me, ply_depth-1,
- -pass_thresh, -use_thresh, 0, 0);
-
-@@ -559,7 +559,7 @@
- }
- }
-
-- // check if we have to pass
-+ /* check if we have to pass */
- if (best_x == 8 && best_y == 8) {
- tmp_move = find_best_move(board, not_me, ply_depth-1,
- -pass_thresh, -use_thresh, 0, 0);
-@@ -802,14 +802,14 @@
- found_free = TRUE;
- }
-
-- // check if a player is dead
-+ /* check if a player is dead */
- if (!found_me && found_not_me)
- return (-10000);
- else if (found_me && !found_not_me)
- return (10000);
-
-- // if the game is finished, return the actual score rather than
-- // a huristic
-+ /* if the game is finished, return the actual score rather than
-+ * a huristic */
- if (!found_free)
- return (actual_score);
-
diff --git a/games/gnome-games/pkg-descr b/games/gnome-games/pkg-descr
deleted file mode 100644
index 547a44c3af82..000000000000
--- a/games/gnome-games/pkg-descr
+++ /dev/null
@@ -1,8 +0,0 @@
-The GNOME Desktop Environment's games application package includes
-card games (including a solitaire package which knows 69 distinct solitaire
-variations); knockoffs of Minesweeper, Tetris, mahjongg, and Nibbles; action
-games; puzzle games; and even more card games.
-
-This package uses the GNOME 2 libraries.
-
-WWW: http://www.gnome.org
diff --git a/games/gnome-games/pkg-install b/games/gnome-games/pkg-install
deleted file mode 100644
index da897732169d..000000000000
--- a/games/gnome-games/pkg-install
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-PATH=/bin:/usr/bin:/usr/sbin
-
-case $2 in
-POST-INSTALL)
- mkdir -p ${PKG_PREFIX}/share/gnome/games
- SCORES="glines.scores gnibbles.1.0.scores gnibbles.1.1.scores gnibbles.2.0.scores gnibbles.2.1.scores gnibbles.3.0.scores gnibbles.3.1.scores gnibbles.4.0.scores gnibbles.4.1.scores gnobots2.classic_robots-safe.scores gnobots2.classic_robots-super-safe.scores gnobots2.classic_robots.scores gnobots2.nightmare-safe.scores gnobots2.nightmare-super-safe.scores gnobots2.nightmare.scores gnobots2.robots2-safe.scores gnobots2.robots2-super-safe.scores gnobots2.robots2.scores gnobots2.robots2_easy-safe.scores gnobots2.robots2_easy-super-safe.scores gnobots2.robots2_easy.scores gnobots2.robots_with_safe_teleport-safe.scores gnobots2.robots_with_safe_teleport-super-safe.scores gnobots2.robots_with_safe_teleport.scores gnome-stones.scores gnometris.scores gnomine.Custom.scores gnomine.Large.scores gnomine.Medium.scores gnomine.Small.scores gnotravex.2x2.scores gnotravex.3x3.scores gnotravex.4x4.scores gnotravex.5x5.scores gnotravex.6x6.scores gnotski.1.scores gnotski.11.scores gnotski.12.scores gnotski.13.scores gnotski.14.scores gnotski.15.scores gnotski.16.scores gnotski.17.scores gnotski.2.scores gnotski.21.scores gnotski.22.scores gnotski.23.scores gnotski.24.scores gnotski.25.scores gnotski.26.scores gnotski.3.scores gnotski.4.scores gnotski.5.scores gnotski.6.scores gnotski.7.scores gtali.scores mahjongg.bridges.scores mahjongg.cloud.scores mahjongg.confounding.scores mahjongg.difficult.scores mahjongg.dragon.scores mahjongg.easy.scores mahjongg.pyramid.scores mahjongg.tictactoe.scores mahjongg.ziggurat.scores same-gnome.scores"
- for i in ${SCORES}; do
- if [ ! -f ${PKG_PREFIX}/share/gnome/games/${i} ]; then
- touch -f ${PKG_PREFIX}/share/gnome/games/${i}
- chown games:games ${PKG_PREFIX}/share/gnome/games/${i}
- chmod 0664 ${PKG_PREFIX}/share/gnome/games/${i}
- fi
- done
- ;;
-esac
diff --git a/games/gnome-games/pkg-plist b/games/gnome-games/pkg-plist
deleted file mode 100644
index 6df66145aa97..000000000000
--- a/games/gnome-games/pkg-plist
+++ /dev/null
@@ -1,694 +0,0 @@
-bin/blackjack
-bin/gataxx
-bin/glines
-bin/gnect
-bin/gnibbles
-bin/gnobots2
-bin/gnome-stones
-bin/gnometris
-bin/gnomine
-bin/gnotravex
-bin/gnotski
-bin/gtali
-bin/iagno
-bin/mahjongg
-bin/same-gnome
-bin/sol
-etc/sound/events/gnect.soundlist
-etc/sound/events/gnibbles.soundlist
-etc/sound/events/gnobots2.soundlist
-etc/sound/events/iagno.soundlist
-lib/gnome-stones/objects/libgnome-stones.so
-lib/gnome-stones/objects/libgnomekoban.so
-share/gnome/applications/blackjack.desktop
-share/gnome/applications/freecell.desktop
-share/gnome/applications/gataxx.desktop
-share/gnome/applications/glines.desktop
-share/gnome/applications/gnect.desktop
-share/gnome/applications/gnibbles.desktop
-share/gnome/applications/gnobots2.desktop
-share/gnome/applications/gnome-stones.desktop
-share/gnome/applications/gnometris.desktop
-share/gnome/applications/gnomine.desktop
-share/gnome/applications/gnotravex.desktop
-share/gnome/applications/gnotski.desktop
-share/gnome/applications/gtali.desktop
-share/gnome/applications/iagno.desktop
-share/gnome/applications/mahjongg.desktop
-share/gnome/applications/same-gnome.desktop
-share/gnome/applications/sol.desktop
-@exec update-desktop-database > /dev/null || /usr/bin/true
-share/gnome/blackjack/Ameristar.rules
-share/gnome/blackjack/Atlantic_City.rules
-share/gnome/blackjack/Vegas_Downtown.rules
-share/gnome/blackjack/Vegas_Strip.rules
-@unexec [ -s %D/share/gnome/games/glines.scores ] || rm -f %D/share/gnome/games/glines.scores
-@unexec [ -s %D/share/gnome/games/gnibbles.1.0.scores ] || rm -f %D/share/gnome/games/gnibbles.1.0.scores
-@unexec [ -s %D/share/gnome/games/gnibbles.1.1.scores ] || rm -f %D/share/gnome/games/gnibbles.1.1.scores
-@unexec [ -s %D/share/gnome/games/gnibbles.2.0.scores ] || rm -f %D/share/gnome/games/gnibbles.2.0.scores
-@unexec [ -s %D/share/gnome/games/gnibbles.2.1.scores ] || rm -f %D/share/gnome/games/gnibbles.2.1.scores
-@unexec [ -s %D/share/gnome/games/gnibbles.3.0.scores ] || rm -f %D/share/gnome/games/gnibbles.3.0.scores
-@unexec [ -s %D/share/gnome/games/gnibbles.3.1.scores ] || rm -f %D/share/gnome/games/gnibbles.3.1.scores
-@unexec [ -s %D/share/gnome/games/gnibbles.4.0.scores ] || rm -f %D/share/gnome/games/gnibbles.4.0.scores
-@unexec [ -s %D/share/gnome/games/gnibbles.4.1.scores ] || rm -f %D/share/gnome/games/gnibbles.4.1.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.classic_robots-safe.scores ] || rm -f %D/share/gnome/games/gnobots2.classic_robots-safe.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.classic_robots-super-safe.scores ] || rm -f %D/share/gnome/games/gnobots2.classic_robots-super-safe.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.classic_robots.scores ] || rm -f %D/share/gnome/games/gnobots2.classic_robots.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.nightmare-safe.scores ] || rm -f %D/share/gnome/games/gnobots2.nightmare-safe.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.nightmare-super-safe.scores ] || rm -f %D/share/gnome/games/gnobots2.nightmare-super-safe.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.nightmare.scores ] || rm -f %D/share/gnome/games/gnobots2.nightmare.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.robots2-safe.scores ] || rm -f %D/share/gnome/games/gnobots2.robots2-safe.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.robots2-super-safe.scores ] || rm -f %D/share/gnome/games/gnobots2.robots2-super-safe.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.robots2.scores ] || rm -f %D/share/gnome/games/gnobots2.robots2.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.robots2_easy-safe.scores ] || rm -f %D/share/gnome/games/gnobots2.robots2_easy-safe.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.robots2_easy-super-safe.scores ] || rm -f %D/share/gnome/games/gnobots2.robots2_easy-super-safe.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.robots2_easy.scores ] || rm -f %D/share/gnome/games/gnobots2.robots2_easy.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.robots_with_safe_teleport-safe.scores ] || rm -f %D/share/gnome/games/gnobots2.robots_with_safe_teleport-safe.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.robots_with_safe_teleport-super-safe.scores ] || rm -f %D/share/gnome/games/gnobots2.robots_with_safe_teleport-super-safe.scores
-@unexec [ -s %D/share/gnome/games/gnobots2.robots_with_safe_teleport.scores ] || rm -f %D/share/gnome/games/gnobots2.robots_with_safe_teleport.scores
-@unexec [ -s %D/share/gnome/games/gnome-stones.scores ] || rm -f %D/share/gnome/games/gnome-stones.scores
-@unexec [ -s %D/share/gnome/games/gnometris.scores ] || rm -f %D/share/gnome/games/gnometris.scores
-@unexec [ -s %D/share/gnome/games/gnomine.Custom.scores ] || rm -f %D/share/gnome/games/gnomine.Custom.scores
-@unexec [ -s %D/share/gnome/games/gnomine.Large.scores ] || rm -f %D/share/gnome/games/gnomine.Large.scores
-@unexec [ -s %D/share/gnome/games/gnomine.Medium.scores ] || rm -f %D/share/gnome/games/gnomine.Medium.scores
-@unexec [ -s %D/share/gnome/games/gnomine.Small.scores ] || rm -f %D/share/gnome/games/gnomine.Small.scores
-@unexec [ -s %D/share/gnome/games/gnotravex.2x2.scores ] || rm -f %D/share/gnome/games/gnotravex.2x2.scores
-@unexec [ -s %D/share/gnome/games/gnotravex.3x3.scores ] || rm -f %D/share/gnome/games/gnotravex.3x3.scores
-@unexec [ -s %D/share/gnome/games/gnotravex.4x4.scores ] || rm -f %D/share/gnome/games/gnotravex.4x4.scores
-@unexec [ -s %D/share/gnome/games/gnotravex.5x5.scores ] || rm -f %D/share/gnome/games/gnotravex.5x5.scores
-@unexec [ -s %D/share/gnome/games/gnotravex.6x6.scores ] || rm -f %D/share/gnome/games/gnotravex.6x6.scores
-@unexec [ -s %D/share/gnome/games/gnotski.1.scores ] || rm -f %D/share/gnome/games/gnotski.1.scores
-@unexec [ -s %D/share/gnome/games/gnotski.11.scores ] || rm -f %D/share/gnome/games/gnotski.11.scores
-@unexec [ -s %D/share/gnome/games/gnotski.12.scores ] || rm -f %D/share/gnome/games/gnotski.12.scores
-@unexec [ -s %D/share/gnome/games/gnotski.13.scores ] || rm -f %D/share/gnome/games/gnotski.13.scores
-@unexec [ -s %D/share/gnome/games/gnotski.14.scores ] || rm -f %D/share/gnome/games/gnotski.14.scores
-@unexec [ -s %D/share/gnome/games/gnotski.15.scores ] || rm -f %D/share/gnome/games/gnotski.15.scores
-@unexec [ -s %D/share/gnome/games/gnotski.16.scores ] || rm -f %D/share/gnome/games/gnotski.16.scores
-@unexec [ -s %D/share/gnome/games/gnotski.17.scores ] || rm -f %D/share/gnome/games/gnotski.17.scores
-@unexec [ -s %D/share/gnome/games/gnotski.2.scores ] || rm -f %D/share/gnome/games/gnotski.2.scores
-@unexec [ -s %D/share/gnome/games/gnotski.21.scores ] || rm -f %D/share/gnome/games/gnotski.21.scores
-@unexec [ -s %D/share/gnome/games/gnotski.22.scores ] || rm -f %D/share/gnome/games/gnotski.22.scores
-@unexec [ -s %D/share/gnome/games/gnotski.23.scores ] || rm -f %D/share/gnome/games/gnotski.23.scores
-@unexec [ -s %D/share/gnome/games/gnotski.24.scores ] || rm -f %D/share/gnome/games/gnotski.24.scores
-@unexec [ -s %D/share/gnome/games/gnotski.25.scores ] || rm -f %D/share/gnome/games/gnotski.25.scores
-@unexec [ -s %D/share/gnome/games/gnotski.26.scores ] || rm -f %D/share/gnome/games/gnotski.26.scores
-@unexec [ -s %D/share/gnome/games/gnotski.3.scores ] || rm -f %D/share/gnome/games/gnotski.3.scores
-@unexec [ -s %D/share/gnome/games/gnotski.4.scores ] || rm -f %D/share/gnome/games/gnotski.4.scores
-@unexec [ -s %D/share/gnome/games/gnotski.5.scores ] || rm -f %D/share/gnome/games/gnotski.5.scores
-@unexec [ -s %D/share/gnome/games/gnotski.6.scores ] || rm -f %D/share/gnome/games/gnotski.6.scores
-@unexec [ -s %D/share/gnome/games/gnotski.7.scores ] || rm -f %D/share/gnome/games/gnotski.7.scores
-@unexec [ -s %D/share/gnome/games/gtali.scores ] || rm -f %D/share/gnome/games/gtali.scores
-@unexec [ -s %D/share/gnome/games/mahjongg.bridges.scores ] || rm -f %D/share/gnome/games/mahjongg.bridges.scores
-@unexec [ -s %D/share/gnome/games/mahjongg.cloud.scores ] || rm -f %D/share/gnome/games/mahjongg.cloud.scores
-@unexec [ -s %D/share/gnome/games/mahjongg.confounding.scores ] || rm -f %D/share/gnome/games/mahjongg.confounding.scores
-@unexec [ -s %D/share/gnome/games/mahjongg.difficult.scores ] || rm -f %D/share/gnome/games/mahjongg.difficult.scores
-@unexec [ -s %D/share/gnome/games/mahjongg.dragon.scores ] || rm -f %D/share/gnome/games/mahjongg.dragon.scores
-@unexec [ -s %D/share/gnome/games/mahjongg.easy.scores ] || rm -f %D/share/gnome/games/mahjongg.easy.scores
-@unexec [ -s %D/share/gnome/games/mahjongg.pyramid.scores ] || rm -f %D/share/gnome/games/mahjongg.pyramid.scores
-@unexec [ -s %D/share/gnome/games/mahjongg.tictactoe.scores ] || rm -f %D/share/gnome/games/mahjongg.tictactoe.scores
-@unexec [ -s %D/share/gnome/games/mahjongg.ziggurat.scores ] || rm -f %D/share/gnome/games/mahjongg.ziggurat.scores
-@unexec [ -s %D/share/gnome/games/same-gnome.scores ] || rm -f %D/share/gnome/games/same-gnome.scores
-share/gnome/gnect/white_ob.cn4
-share/gnome/gnibbles/level001.gnl
-share/gnome/gnibbles/level002.gnl
-share/gnome/gnibbles/level003.gnl
-share/gnome/gnibbles/level004.gnl
-share/gnome/gnibbles/level005.gnl
-share/gnome/gnibbles/level006.gnl
-share/gnome/gnibbles/level007.gnl
-share/gnome/gnibbles/level008.gnl
-share/gnome/gnibbles/level009.gnl
-share/gnome/gnibbles/level010.gnl
-share/gnome/gnibbles/level011.gnl
-share/gnome/gnibbles/level012.gnl
-share/gnome/gnibbles/level013.gnl
-share/gnome/gnibbles/level014.gnl
-share/gnome/gnibbles/level015.gnl
-share/gnome/gnibbles/level016.gnl
-share/gnome/gnibbles/level017.gnl
-share/gnome/gnibbles/level018.gnl
-share/gnome/gnibbles/level019.gnl
-share/gnome/gnibbles/level020.gnl
-share/gnome/gnibbles/level021.gnl
-share/gnome/gnibbles/level022.gnl
-share/gnome/gnibbles/level023.gnl
-share/gnome/gnibbles/level024.gnl
-share/gnome/gnibbles/level025.gnl
-share/gnome/gnibbles/level026.gnl
-share/gnome/gnobots2/classic_robots.cfg
-share/gnome/gnobots2/nightmare.cfg
-share/gnome/gnobots2/robots2.cfg
-share/gnome/gnobots2/robots2_easy.cfg
-share/gnome/gnobots2/robots_with_safe_teleport.cfg
-share/gnome/gnome-stones/atari.caves
-share/gnome/gnome-stones/default.caves
-share/gnome/gnome-stones/gnome-stonesrc
-share/gnome/gnome-stones/gnome-stonesrc.ko
-share/gnome/gnome-stones/gnomekoban.caves
-share/gnome/gnome-stones/tutorial.caves
-share/gnome/help/aisleriot/C/agnes.xml
-share/gnome/help/aisleriot/C/aisleriot.xml
-share/gnome/help/aisleriot/C/auld_lang_syne.xml
-share/gnome/help/aisleriot/C/bakers_dozen.xml
-share/gnome/help/aisleriot/C/bakers_game.xml
-share/gnome/help/aisleriot/C/beleaguered_castle.xml
-share/gnome/help/aisleriot/C/block_ten.xml
-share/gnome/help/aisleriot/C/bristol.xml
-share/gnome/help/aisleriot/C/camelot.xml
-share/gnome/help/aisleriot/C/canfield.xml
-share/gnome/help/aisleriot/C/chessboard.xml
-share/gnome/help/aisleriot/C/clock.xml
-share/gnome/help/aisleriot/C/cover.xml
-share/gnome/help/aisleriot/C/definitions.xml
-share/gnome/help/aisleriot/C/diamond_mine.xml
-share/gnome/help/aisleriot/C/doublets.xml
-share/gnome/help/aisleriot/C/eagle-wing.xml
-share/gnome/help/aisleriot/C/easthaven.xml
-share/gnome/help/aisleriot/C/eight_off.xml
-share/gnome/help/aisleriot/C/elevator.xml
-share/gnome/help/aisleriot/C/escalator.xml
-share/gnome/help/aisleriot/C/figures/camelot-goal.png
-share/gnome/help/aisleriot/C/figures/clock-rules.png
-share/gnome/help/aisleriot/C/first_law.xml
-share/gnome/help/aisleriot/C/fortress.xml
-share/gnome/help/aisleriot/C/fortunes.xml
-share/gnome/help/aisleriot/C/fourteen.xml
-share/gnome/help/aisleriot/C/freecell.xml
-share/gnome/help/aisleriot/C/gay_gordons.xml
-share/gnome/help/aisleriot/C/glenwood.xml
-share/gnome/help/aisleriot/C/golf.xml
-share/gnome/help/aisleriot/C/gypsy.xml
-share/gnome/help/aisleriot/C/helsinki.xml
-share/gnome/help/aisleriot/C/hopscotch.xml
-share/gnome/help/aisleriot/C/isabel.xml
-share/gnome/help/aisleriot/C/jamestown.xml
-share/gnome/help/aisleriot/C/jumbo.xml
-share/gnome/help/aisleriot/C/kansas.xml
-share/gnome/help/aisleriot/C/king_albert.xml
-share/gnome/help/aisleriot/C/klondike.xml
-share/gnome/help/aisleriot/C/labyrinth.xml
-share/gnome/help/aisleriot/C/lady_jane.xml
-share/gnome/help/aisleriot/C/legal.xml
-share/gnome/help/aisleriot/C/maze.xml
-share/gnome/help/aisleriot/C/monte_carlo.xml
-share/gnome/help/aisleriot/C/neighbor.xml
-share/gnome/help/aisleriot/C/odessa.xml
-share/gnome/help/aisleriot/C/osmosis.xml
-share/gnome/help/aisleriot/C/peek.xml
-share/gnome/help/aisleriot/C/pileon.xml
-share/gnome/help/aisleriot/C/plait.xml
-share/gnome/help/aisleriot/C/poker.xml
-share/gnome/help/aisleriot/C/quatorze.xml
-share/gnome/help/aisleriot/C/royal_east.xml
-share/gnome/help/aisleriot/C/scorpion.xml
-share/gnome/help/aisleriot/C/scuffle.xml
-share/gnome/help/aisleriot/C/seahaven.xml
-share/gnome/help/aisleriot/C/sir_tommy.xml
-share/gnome/help/aisleriot/C/spider.xml
-share/gnome/help/aisleriot/C/spider_one_suit.xml
-share/gnome/help/aisleriot/C/spider_two_suit.xml
-share/gnome/help/aisleriot/C/spiderette.xml
-share/gnome/help/aisleriot/C/straight_up.xml
-share/gnome/help/aisleriot/C/streets_and_alleys.xml
-share/gnome/help/aisleriot/C/ten_across.xml
-share/gnome/help/aisleriot/C/thieves.xml
-share/gnome/help/aisleriot/C/thirteen.xml
-share/gnome/help/aisleriot/C/thumb_and_pouch.xml
-share/gnome/help/aisleriot/C/treize.xml
-share/gnome/help/aisleriot/C/union_square.xml
-share/gnome/help/aisleriot/C/valentine.xml
-share/gnome/help/aisleriot/C/westhaven.xml
-share/gnome/help/aisleriot/C/whitehead.xml
-share/gnome/help/aisleriot/C/will_o_the_wisp.xml
-share/gnome/help/aisleriot/C/yield.xml
-share/gnome/help/aisleriot/C/yukon.xml
-share/gnome/help/aisleriot/C/zebra.xml
-share/gnome/help/blackjack/C/blackjack.xml
-share/gnome/help/blackjack/C/figures/blackjack_start_window.png
-share/gnome/help/blackjack/C/figures/blackjack_win_window.png
-share/gnome/help/blackjack/C/legal.xml
-share/gnome/help/gataxx/C/figures/gataxx-legalmoves.png
-share/gnome/help/gataxx/C/figures/gataxx-prefs.png
-share/gnome/help/gataxx/C/figures/gataxx-startgame.png
-share/gnome/help/gataxx/C/gataxx.xml
-share/gnome/help/gataxx/C/legal.xml
-share/gnome/help/glines/C/figures/glines-gameover.png
-share/gnome/help/glines/C/figures/glines-startgame.png
-share/gnome/help/glines/C/figures/preferences.png
-share/gnome/help/glines/C/glines.xml
-share/gnome/help/glines/C/legal.xml
-share/gnome/help/gnect/C/figures/mainwindow.png
-share/gnome/help/gnect/C/figures/tileset.png
-share/gnome/help/gnect/C/gnect.xml
-share/gnome/help/gnect/C/legal.xml
-share/gnome/help/gnibbles/C/figures/game.png
-share/gnome/help/gnibbles/C/figures/intro.png
-share/gnome/help/gnibbles/C/figures/playing.png
-share/gnome/help/gnibbles/C/figures/worm_op.png
-share/gnome/help/gnibbles/C/gnibbles.xml
-share/gnome/help/gnibbles/C/legal.xml
-share/gnome/help/gnobots2/C/figures/gnobots2-main.png
-share/gnome/help/gnobots2/C/gnobots2.xml
-share/gnome/help/gnobots2/C/legal.xml
-share/gnome/help/gnobots2/da/gnobots2.xml
-share/gnome/help/gnobots2/da/legal.xml
-share/gnome/help/gnobots2/es/gnobots2.xml
-share/gnome/help/gnobots2/es/legal.xml
-share/gnome/help/gnobots2/it/gnobots2.xml
-share/gnome/help/gnobots2/it/legal.xml
-share/gnome/help/gnome-stones/C/figures/main-game.png
-share/gnome/help/gnome-stones/C/figures/main-start.png
-share/gnome/help/gnome-stones/C/figures/preferences-joystick.png
-share/gnome/help/gnome-stones/C/figures/preferences-main.png
-share/gnome/help/gnome-stones/C/gnome-stones.xml
-share/gnome/help/gnome-stones/C/legal.xml
-share/gnome/help/gnometris/C/gnometris.xml
-share/gnome/help/gnometris/C/legal.xml
-share/gnome/help/gnomine/C/figures/advanced_121_a.png
-share/gnome/help/gnomine/C/figures/advanced_121_b.png
-share/gnome/help/gnomine/C/figures/advanced_121_c.png
-share/gnome/help/gnomine/C/figures/basic-corner.png
-share/gnome/help/gnomine/C/figures/basic-flat3.png
-share/gnome/help/gnomine/C/figures/basic-wall.png
-share/gnome/help/gnomine/C/figures/gnomine-begin-play.png
-share/gnome/help/gnomine/C/figures/gnomine-fail.png
-share/gnome/help/gnomine/C/figures/gnomine-fresh.png
-share/gnome/help/gnomine/C/figures/gnomine-preferences.png
-share/gnome/help/gnomine/C/figures/gnomine-won.png
-share/gnome/help/gnomine/C/gnomine.xml
-share/gnome/help/gnomine/C/legal.xml
-share/gnome/help/gnotravex/C/figures/gnotravex_game.png
-share/gnome/help/gnotravex/C/figures/gnotravex_mainwindow.png
-share/gnome/help/gnotravex/C/gnotravex.xml
-share/gnome/help/gnotravex/C/legal.xml
-share/gnome/help/gnotski/C/figures/gnotski_start_window.png
-share/gnome/help/gnotski/C/figures/gnotski_win.png
-share/gnome/help/gnotski/C/gnotski.xml
-share/gnome/help/gnotski/C/legal.xml
-share/gnome/help/gtali/C/figures/mainwindow.png
-share/gnome/help/gtali/C/figures/preferences.png
-share/gnome/help/gtali/C/gtali.xml
-share/gnome/help/gtali/C/legal.xml
-share/gnome/help/gtali/da/gtali.xml
-share/gnome/help/gtali/da/legal.xml
-share/gnome/help/iagno/C/figures/ANIMATION.png
-share/gnome/help/iagno/C/figures/BLOCK.png
-share/gnome/help/iagno/C/figures/FIRST.png
-share/gnome/help/iagno/C/figures/PLAYER.png
-share/gnome/help/iagno/C/figures/START.png
-share/gnome/help/iagno/C/iagno.xml
-share/gnome/help/iagno/C/legal.xml
-share/gnome/help/mahjongg/C/figures/mahjongg.png
-share/gnome/help/mahjongg/C/figures/no-match.png
-share/gnome/help/mahjongg/C/figures/no-move.png
-share/gnome/help/mahjongg/C/figures/preferences.png
-share/gnome/help/mahjongg/C/figures/seed.png
-share/gnome/help/mahjongg/C/figures/toolbar.png
-share/gnome/help/mahjongg/C/legal.xml
-share/gnome/help/mahjongg/C/mahjongg.xml
-share/gnome/help/same-gnome/C/figures/blink-sync.png
-share/gnome/help/same-gnome/C/figures/preferences.png
-share/gnome/help/same-gnome/C/figures/same-main-window.png
-share/gnome/help/same-gnome/C/figures/same-planets-fig.png
-share/gnome/help/same-gnome/C/legal.xml
-share/gnome/help/same-gnome/C/same-gnome.xml
-share/gnome/mime-info/gnome-stones.keys
-share/gnome/mime-info/gnome-stones.mime
-share/gnome/omf/gnome-games/aisleriot-C.omf
-share/gnome/omf/gnome-games/blackjack-C.omf
-share/gnome/omf/gnome-games/gataxx-C.omf
-share/gnome/omf/gnome-games/glines-C.omf
-share/gnome/omf/gnome-games/gnect-C.omf
-share/gnome/omf/gnome-games/gnibbles-C.omf
-share/gnome/omf/gnome-games/gnobots2-C.omf
-share/gnome/omf/gnome-games/gnobots2-da.omf
-share/gnome/omf/gnome-games/gnobots2-es.omf
-share/gnome/omf/gnome-games/gnobots2-it.omf
-share/gnome/omf/gnome-games/gnome-stones-C.omf
-share/gnome/omf/gnome-games/gnometris-C.omf
-share/gnome/omf/gnome-games/gnomine-C.omf
-share/gnome/omf/gnome-games/gnotravex-C.omf
-share/gnome/omf/gnome-games/gnotski-C.omf
-share/gnome/omf/gnome-games/gtali-C.omf
-share/gnome/omf/gnome-games/gtali-da.omf
-share/gnome/omf/gnome-games/iagno-C.omf
-share/gnome/omf/gnome-games/mahjongg-C.omf
-share/gnome/omf/gnome-games/same-gnome-C.omf
-share/gnome/pixmaps/blackjack/baize.png
-share/gnome/pixmaps/blackjack/blackjack-splash.png
-share/gnome/pixmaps/blackjack/chip-1.svg
-share/gnome/pixmaps/blackjack/chip-100.svg
-share/gnome/pixmaps/blackjack/chip-25.svg
-share/gnome/pixmaps/blackjack/chip-5.svg
-share/gnome/pixmaps/cards/baize.png
-share/gnome/pixmaps/cards/slot.png
-share/gnome/pixmaps/cards/slots/white-outline.svg
-share/gnome/pixmaps/gataxx.png
-share/gnome/pixmaps/glines.png
-share/gnome/pixmaps/glines/balls.svg
-share/gnome/pixmaps/glines/shapes.svg
-share/gnome/pixmaps/gnect-icon.png
-share/gnome/pixmaps/gnect/bg_grotty.jpg
-share/gnome/pixmaps/gnect/bg_nightfall.jpg
-share/gnome/pixmaps/gnect/bg_toplight.png
-share/gnome/pixmaps/gnect/tileset_50x50_catseyes.png
-share/gnome/pixmaps/gnect/tileset_50x50_classic.png
-share/gnome/pixmaps/gnect/tileset_50x50_glassy.png
-share/gnome/pixmaps/gnect/tileset_50x50_hcontrast.png
-share/gnome/pixmaps/gnect/tileset_50x50_square.png
-share/gnome/pixmaps/gnibbles/blank.svg
-share/gnome/pixmaps/gnibbles/bonus1.svg
-share/gnome/pixmaps/gnibbles/bonus2.svg
-share/gnome/pixmaps/gnibbles/bonus3.svg
-share/gnome/pixmaps/gnibbles/bonus4.svg
-share/gnome/pixmaps/gnibbles/bonus5.svg
-share/gnome/pixmaps/gnibbles/diamond.svg
-share/gnome/pixmaps/gnibbles/gnibbles-logo.png
-share/gnome/pixmaps/gnibbles/gnibbles.png
-share/gnome/pixmaps/gnibbles/life.svg
-share/gnome/pixmaps/gnibbles/questionmark.svg
-share/gnome/pixmaps/gnibbles/snake-blue.svg
-share/gnome/pixmaps/gnibbles/snake-cyan.svg
-share/gnome/pixmaps/gnibbles/snake-green.svg
-share/gnome/pixmaps/gnibbles/snake-grey.svg
-share/gnome/pixmaps/gnibbles/snake-magenta.svg
-share/gnome/pixmaps/gnibbles/snake-red.svg
-share/gnome/pixmaps/gnibbles/snake-yellow.svg
-share/gnome/pixmaps/gnibbles/wall-corner-bottom-left.svg
-share/gnome/pixmaps/gnibbles/wall-corner-bottom-right.svg
-share/gnome/pixmaps/gnibbles/wall-corner-top-left.svg
-share/gnome/pixmaps/gnibbles/wall-corner-top-right.svg
-share/gnome/pixmaps/gnibbles/wall-cross.svg
-share/gnome/pixmaps/gnibbles/wall-empty.svg
-share/gnome/pixmaps/gnibbles/wall-straight-side.svg
-share/gnome/pixmaps/gnibbles/wall-straight-up.svg
-share/gnome/pixmaps/gnibbles/wall-tee-down.svg
-share/gnome/pixmaps/gnibbles/wall-tee-left.svg
-share/gnome/pixmaps/gnibbles/wall-tee-right.svg
-share/gnome/pixmaps/gnibbles/wall-tee-up.svg
-share/gnome/pixmaps/gnobots2/aieee.png
-share/gnome/pixmaps/gnobots2/gnomes.png
-share/gnome/pixmaps/gnobots2/robots.png
-share/gnome/pixmaps/gnobots2/splat.png
-share/gnome/pixmaps/gnobots2/yahoo.png
-share/gnome/pixmaps/gnome-games-common/cards/bonded.png
-share/gnome/pixmaps/gnome-games-common/cards/paris.svg
-share/gnome/pixmaps/gnome-aisleriot.png
-share/gnome/pixmaps/gnome-blackjack.png
-share/gnome/pixmaps/gnome-cardgame.png
-share/gnome/pixmaps/gnome-gnobots2.png
-share/gnome/pixmaps/gnome-gnomine.png
-share/gnome/pixmaps/gnome-gnotravex.png
-share/gnome/pixmaps/gnome-gsame.png
-share/gnome/pixmaps/gnome-gtali.png
-share/gnome/pixmaps/gnome-gtetris.png
-share/gnome/pixmaps/gnome-mahjongg.png
-share/gnome/pixmaps/gnome-nibbles.png
-share/gnome/pixmaps/gnome-stones-file.png
-share/gnome/pixmaps/gnome-stones.png
-share/gnome/pixmaps/gnome-stones/amoeba.png
-share/gnome/pixmaps/gnome-stones/animated_curtain.png
-share/gnome/pixmaps/gnome-stones/background.png
-share/gnome/pixmaps/gnome-stones/boulder.png
-share/gnome/pixmaps/gnome-stones/butterfly.png
-share/gnome/pixmaps/gnome-stones/crate.png
-share/gnome/pixmaps/gnome-stones/curtain.png
-share/gnome/pixmaps/gnome-stones/diamond.png
-share/gnome/pixmaps/gnome-stones/dirt.png
-share/gnome/pixmaps/gnome-stones/door.png
-share/gnome/pixmaps/gnome-stones/empty.png
-share/gnome/pixmaps/gnome-stones/explosion.png
-share/gnome/pixmaps/gnome-stones/firefly.png
-share/gnome/pixmaps/gnome-stones/frame.png
-share/gnome/pixmaps/gnome-stones/gnome.png
-share/gnome/pixmaps/gnome-stones/title-tile.png
-share/gnome/pixmaps/gnome-stones/wall.png
-share/gnome/pixmaps/gnometris/7blocks-gw.png
-share/gnome/pixmaps/gnometris/7blocks-tig.png
-share/gnome/pixmaps/gnomine/face-cool.png
-share/gnome/pixmaps/gnomine/face-sad.png
-share/gnome/pixmaps/gnomine/face-smile.png
-share/gnome/pixmaps/gnomine/face-win.png
-share/gnome/pixmaps/gnomine/face-worried.png
-share/gnome/pixmaps/gnomine/flag-question.svg
-share/gnome/pixmaps/gnomine/flag.svg
-share/gnome/pixmaps/gnomine/mine.svg
-share/gnome/pixmaps/gnotski-icon.png
-share/gnome/pixmaps/gnotski.png
-share/gnome/pixmaps/gtali/gnome-dice-1.svg
-share/gnome/pixmaps/gtali/gnome-dice-2.svg
-share/gnome/pixmaps/gtali/gnome-dice-3.svg
-share/gnome/pixmaps/gtali/gnome-dice-4.svg
-share/gnome/pixmaps/gtali/gnome-dice-5.svg
-share/gnome/pixmaps/gtali/gnome-dice-6.svg
-share/gnome/pixmaps/gtali/gnome-dice-none.svg
-share/gnome/pixmaps/iagno.png
-share/gnome/pixmaps/iagno/classic.png
-share/gnome/pixmaps/iagno/woodtrim.png
-share/gnome/pixmaps/mahjongg/postmodern.svg
-share/gnome/pixmaps/mahjongg/smooth.png
-share/gnome/pixmaps/rteleport.png
-share/gnome/pixmaps/same-gnome/planets.png
-share/gnome/pixmaps/same-gnome/stones.png
-share/gnome/pixmaps/teleport.png
-share/gnome/sol-games/agnes.scm
-share/gnome/sol-games/auld_lang_syne.scm
-share/gnome/sol-games/bakers_dozen.scm
-share/gnome/sol-games/bakers_game.scm
-share/gnome/sol-games/beleaguered_castle.scm
-share/gnome/sol-games/bristol.scm
-share/gnome/sol-games/camelot.scm
-share/gnome/sol-games/canfield.scm
-share/gnome/sol-games/chessboard.scm
-share/gnome/sol-games/clock.scm
-share/gnome/sol-games/cover.scm
-share/gnome/sol-games/diamond_mine.scm
-share/gnome/sol-games/doublets.scm
-share/gnome/sol-games/eagle_wing.scm
-share/gnome/sol-games/easthaven.scm
-share/gnome/sol-games/eight_off.scm
-share/gnome/sol-games/elevator.scm
-share/gnome/sol-games/escalator.scm
-share/gnome/sol-games/first_law.scm
-share/gnome/sol-games/fortress.scm
-share/gnome/sol-games/fortunes.scm
-share/gnome/sol-games/fourteen.scm
-share/gnome/sol-games/freecell.scm
-share/gnome/sol-games/gay_gordons.scm
-share/gnome/sol-games/glade/statistics.glade
-share/gnome/sol-games/glenwood.scm
-share/gnome/sol-games/golf.scm
-share/gnome/sol-games/gypsy.scm
-share/gnome/sol-games/helsinki.scm
-share/gnome/sol-games/hopscotch.scm
-share/gnome/sol-games/isabel.scm
-share/gnome/sol-games/jamestown.scm
-share/gnome/sol-games/jumbo.scm
-share/gnome/sol-games/kansas.scm
-share/gnome/sol-games/king_albert.scm
-share/gnome/sol-games/klondike.scm
-share/gnome/sol-games/labyrinth.scm
-share/gnome/sol-games/lady_jane.scm
-share/gnome/sol-games/maze.scm
-share/gnome/sol-games/monte_carlo.scm
-share/gnome/sol-games/neighbor.scm
-share/gnome/sol-games/odessa.scm
-share/gnome/sol-games/osmosis.scm
-share/gnome/sol-games/peek.scm
-share/gnome/sol-games/pileon.scm
-share/gnome/sol-games/plait.scm
-share/gnome/sol-games/poker.scm
-share/gnome/sol-games/quatorze.scm
-share/gnome/sol-games/royal_east.scm
-share/gnome/sol-games/scorpion.scm
-share/gnome/sol-games/scuffle.scm
-share/gnome/sol-games/seahaven.scm
-share/gnome/sol-games/sir_tommy.scm
-share/gnome/sol-games/sol.scm
-share/gnome/sol-games/spider.scm
-share/gnome/sol-games/spider_one_suit.scm
-share/gnome/sol-games/spider_two_suit.scm
-share/gnome/sol-games/spiderette.scm
-share/gnome/sol-games/straight_up.scm
-share/gnome/sol-games/streets_and_alleys.scm
-share/gnome/sol-games/ten_across.scm
-share/gnome/sol-games/thieves.scm
-share/gnome/sol-games/thirteen.scm
-share/gnome/sol-games/thumb_and_pouch.scm
-share/gnome/sol-games/treize.scm
-share/gnome/sol-games/union_square.scm
-share/gnome/sol-games/valentine.scm
-share/gnome/sol-games/westhaven.scm
-share/gnome/sol-games/whitehead.scm
-share/gnome/sol-games/will_o_the_wisp.scm
-share/gnome/sol-games/yield.scm
-share/gnome/sol-games/yukon.scm
-share/gnome/sol-games/zebra.scm
-share/gnome/sounds/gnibbles/appear.wav
-share/gnome/sounds/gnibbles/bonus.wav
-share/gnome/sounds/gnibbles/crash.wav
-share/gnome/sounds/gnibbles/gobble.wav
-share/gnome/sounds/gnibbles/laughter.wav
-share/gnome/sounds/gnibbles/life.wav
-share/gnome/sounds/gnibbles/pop.wav
-share/gnome/sounds/gnibbles/reverse.wav
-share/gnome/sounds/gnibbles/teleport.wav
-share/gnome/sounds/gnobots2/bad.wav
-share/gnome/sounds/gnobots2/die.wav
-share/gnome/sounds/gnobots2/splat.wav
-share/gnome/sounds/gnobots2/teleport.wav
-share/gnome/sounds/gnobots2/victory.wav
-share/gnome/sounds/gnobots2/yahoo.wav
-share/gnome/sounds/gnometris/gameover.wav
-share/gnome/sounds/gnometris/gnometris.wav
-share/gnome/sounds/gnometris/land.wav
-share/gnome/sounds/gnometris/lines1.wav
-share/gnome/sounds/gnometris/lines2.wav
-share/gnome/sounds/gnometris/lines3.wav
-share/gnome/sounds/gnometris/slide.wav
-share/gnome/sounds/gnometris/turn.wav
-share/gnome/sounds/iagno/flip-piece.wav
-share/gnome/sounds/iagno/gameover.wav
-share/locale/am/LC_MESSAGES/gnome-games.mo
-share/locale/ar/LC_MESSAGES/gnome-games.mo
-share/locale/az/LC_MESSAGES/gnome-games.mo
-share/locale/be/LC_MESSAGES/gnome-games.mo
-share/locale/bg/LC_MESSAGES/gnome-games.mo
-share/locale/bn/LC_MESSAGES/gnome-games.mo
-share/locale/ca/LC_MESSAGES/gnome-games.mo
-share/locale/cs/LC_MESSAGES/gnome-games.mo
-share/locale/cy/LC_MESSAGES/gnome-games.mo
-share/locale/da/LC_MESSAGES/gnome-games.mo
-share/locale/de/LC_MESSAGES/gnome-games.mo
-share/locale/el/LC_MESSAGES/gnome-games.mo
-share/locale/en_CA/LC_MESSAGES/gnome-games.mo
-share/locale/en_GB/LC_MESSAGES/gnome-games.mo
-share/locale/es/LC_MESSAGES/gnome-games.mo
-share/locale/et/LC_MESSAGES/gnome-games.mo
-share/locale/eu/LC_MESSAGES/gnome-games.mo
-share/locale/fa/LC_MESSAGES/gnome-games.mo
-share/locale/fi/LC_MESSAGES/gnome-games.mo
-share/locale/fr/LC_MESSAGES/gnome-games.mo
-share/locale/ga/LC_MESSAGES/gnome-games.mo
-share/locale/gl/LC_MESSAGES/gnome-games.mo
-share/locale/gu/LC_MESSAGES/gnome-games.mo
-share/locale/he/LC_MESSAGES/gnome-games.mo
-share/locale/hi/LC_MESSAGES/gnome-games.mo
-share/locale/hr/LC_MESSAGES/gnome-games.mo
-share/locale/hu/LC_MESSAGES/gnome-games.mo
-share/locale/id/LC_MESSAGES/gnome-games.mo
-share/locale/is/LC_MESSAGES/gnome-games.mo
-share/locale/it/LC_MESSAGES/gnome-games.mo
-share/locale/ja/LC_MESSAGES/gnome-games.mo
-share/locale/ko/LC_MESSAGES/gnome-games.mo
-share/locale/lt/LC_MESSAGES/gnome-games.mo
-share/locale/lv/LC_MESSAGES/gnome-games.mo
-share/locale/mk/LC_MESSAGES/gnome-games.mo
-share/locale/ml/LC_MESSAGES/gnome-games.mo
-share/locale/mn/LC_MESSAGES/gnome-games.mo
-share/locale/ms/LC_MESSAGES/gnome-games.mo
-share/locale/nb/LC_MESSAGES/gnome-games.mo
-share/locale/nl/LC_MESSAGES/gnome-games.mo
-share/locale/nn/LC_MESSAGES/gnome-games.mo
-share/locale/no/LC_MESSAGES/gnome-games.mo
-share/locale/pa/LC_MESSAGES/gnome-games.mo
-share/locale/pl/LC_MESSAGES/gnome-games.mo
-share/locale/pt/LC_MESSAGES/gnome-games.mo
-share/locale/pt_BR/LC_MESSAGES/gnome-games.mo
-share/locale/ro/LC_MESSAGES/gnome-games.mo
-share/locale/ru/LC_MESSAGES/gnome-games.mo
-share/locale/sk/LC_MESSAGES/gnome-games.mo
-share/locale/sl/LC_MESSAGES/gnome-games.mo
-share/locale/sq/LC_MESSAGES/gnome-games.mo
-share/locale/sr/LC_MESSAGES/gnome-games.mo
-share/locale/sr@Latn/LC_MESSAGES/gnome-games.mo
-share/locale/sv/LC_MESSAGES/gnome-games.mo
-share/locale/ta/LC_MESSAGES/gnome-games.mo
-share/locale/tr/LC_MESSAGES/gnome-games.mo
-share/locale/uk/LC_MESSAGES/gnome-games.mo
-share/locale/vi/LC_MESSAGES/gnome-games.mo
-share/locale/wa/LC_MESSAGES/gnome-games.mo
-share/locale/zh_CN/LC_MESSAGES/gnome-games.mo
-share/locale/zh_TW/LC_MESSAGES/gnome-games.mo
-@dirrm share/gnome/sounds/iagno
-@dirrm share/gnome/sounds/gnometris
-@dirrm share/gnome/sounds/gnobots2
-@dirrm share/gnome/sounds/gnibbles
-@dirrm share/gnome/sol-games/glade
-@dirrm share/gnome/sol-games
-@dirrm share/gnome/pixmaps/same-gnome
-@dirrm share/gnome/pixmaps/mahjongg
-@dirrm share/gnome/pixmaps/iagno
-@dirrm share/gnome/pixmaps/gtali
-@dirrm share/gnome/pixmaps/gnomine
-@dirrm share/gnome/pixmaps/gnometris
-@dirrm share/gnome/pixmaps/gnome-stones
-@dirrm share/gnome/pixmaps/gnome-games-common/cards
-@dirrm share/gnome/pixmaps/gnome-games-common
-@dirrm share/gnome/pixmaps/gnobots2
-@dirrm share/gnome/pixmaps/gnibbles
-@dirrm share/gnome/pixmaps/gnect
-@dirrm share/gnome/pixmaps/glines
-@dirrm share/gnome/pixmaps/cards/slots
-@dirrm share/gnome/pixmaps/cards
-@dirrm share/gnome/pixmaps/blackjack
-@dirrm share/gnome/omf/gnome-games
-@dirrm share/gnome/help/same-gnome/C/figures
-@dirrm share/gnome/help/same-gnome/C
-@dirrm share/gnome/help/same-gnome
-@dirrm share/gnome/help/mahjongg/C/figures
-@dirrm share/gnome/help/mahjongg/C
-@dirrm share/gnome/help/mahjongg
-@dirrm share/gnome/help/iagno/C/figures
-@dirrm share/gnome/help/iagno/C
-@dirrm share/gnome/help/iagno
-@dirrm share/gnome/help/gtali/da
-@dirrm share/gnome/help/gtali/C/figures
-@dirrm share/gnome/help/gtali/C
-@dirrm share/gnome/help/gtali
-@dirrm share/gnome/help/gnotski/C/figures
-@dirrm share/gnome/help/gnotski/C
-@dirrm share/gnome/help/gnotski
-@dirrm share/gnome/help/gnotravex/C/figures
-@dirrm share/gnome/help/gnotravex/C
-@dirrm share/gnome/help/gnotravex
-@dirrm share/gnome/help/gnomine/C/figures
-@dirrm share/gnome/help/gnomine/C
-@dirrm share/gnome/help/gnomine
-@dirrm share/gnome/help/gnometris/C
-@dirrm share/gnome/help/gnometris
-@dirrm share/gnome/help/gnome-stones/C/figures
-@dirrm share/gnome/help/gnome-stones/C
-@dirrm share/gnome/help/gnome-stones
-@dirrm share/gnome/help/gnobots2/it
-@dirrm share/gnome/help/gnobots2/es
-@dirrm share/gnome/help/gnobots2/da
-@dirrm share/gnome/help/gnobots2/C/figures
-@dirrm share/gnome/help/gnobots2/C
-@dirrm share/gnome/help/gnobots2
-@dirrm share/gnome/help/gnibbles/C/figures
-@dirrm share/gnome/help/gnibbles/C
-@dirrm share/gnome/help/gnibbles
-@dirrm share/gnome/help/gnect/C/figures
-@dirrm share/gnome/help/gnect/C
-@dirrm share/gnome/help/gnect
-@dirrm share/gnome/help/glines/C/figures
-@dirrm share/gnome/help/glines/C
-@dirrm share/gnome/help/glines
-@dirrm share/gnome/help/gataxx/C/figures
-@dirrm share/gnome/help/gataxx/C
-@dirrm share/gnome/help/gataxx
-@dirrm share/gnome/help/blackjack/C/figures
-@dirrm share/gnome/help/blackjack/C
-@dirrm share/gnome/help/blackjack
-@dirrm share/gnome/help/aisleriot/C/figures
-@dirrm share/gnome/help/aisleriot/C
-@dirrm share/gnome/help/aisleriot
-@dirrm share/gnome/gnome-stones
-@dirrm share/gnome/gnobots2
-@dirrm share/gnome/gnibbles
-@dirrm share/gnome/gnect
-@dirrm share/gnome/blackjack
-@dirrm lib/gnome-stones/objects
-@dirrm lib/gnome-stones
-@unexec update-desktop-database > /dev/null || /usr/bin/true