pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Remove glchess. It is now (for quite some time) part ...
details: https://anonhg.NetBSD.org/pkgsrc/rev/acd36c7a747f
branches: trunk
changeset: 550626:acd36c7a747f
user: snj <snj%pkgsrc.org@localhost>
date: Mon Nov 24 18:16:33 2008 +0000
description:
Remove glchess. It is now (for quite some time) part of games/gnome-games.
diffstat:
doc/CHANGES-2008 | 3 ++-
games/Makefile | 3 +--
games/glchess/DESCR | 4 ----
games/glchess/MESSAGE | 13 -------------
games/glchess/Makefile | 42 ------------------------------------------
games/glchess/PLIST | 27 ---------------------------
games/glchess/distinfo | 7 -------
games/glchess/patches/patch-aa | 12 ------------
games/glchess/patches/patch-ab | 16 ----------------
9 files changed, 3 insertions(+), 124 deletions(-)
diffs (180 lines):
diff -r 92eb9b64a7d8 -r acd36c7a747f doc/CHANGES-2008
--- a/doc/CHANGES-2008 Mon Nov 24 17:19:13 2008 +0000
+++ b/doc/CHANGES-2008 Mon Nov 24 18:16:33 2008 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES-2008,v 1.3157 2008/11/24 16:36:34 wiz Exp $
+$NetBSD: CHANGES-2008,v 1.3158 2008/11/24 18:16:33 snj Exp $
Changes to the packages collection and infrastructure in 2008:
@@ -5277,3 +5277,4 @@
Updated www/gtkhtml314 to 3.24.2 [wiz 2008-11-24]
Updated filesystems/fs-utils to 20081124 [stacktic 2008-11-24]
Updated mail/evolution-data-server to 2.24.2 [wiz 2008-11-24]
+ Removed games/glchess successor games/gnome-games [snj 2008-11-24]
diff -r 92eb9b64a7d8 -r acd36c7a747f games/Makefile
--- a/games/Makefile Mon Nov 24 17:19:13 2008 +0000
+++ b/games/Makefile Mon Nov 24 18:16:33 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.312 2008/11/16 07:23:51 snj Exp $
+# $NetBSD: Makefile,v 1.313 2008/11/24 18:16:33 snj Exp $
#
COMMENT= Games
@@ -105,7 +105,6 @@
SUBDIR+= genecys-data
SUBDIR+= ggz-client-libs
SUBDIR+= glaxium
-SUBDIR+= glchess
SUBDIR+= glickomania
SUBDIR+= gltron
SUBDIR+= gnome-games
diff -r 92eb9b64a7d8 -r acd36c7a747f games/glchess/DESCR
--- a/games/glchess/DESCR Mon Nov 24 17:19:13 2008 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
- glChess is a 3D OpenGL based chess game using a GTK interface. The aim
-is to be compatible with chess servers so you can use a 3D board rather
-than a 2D one. Currently human vs. human and human vs. engine is possible.
-Possible chess engines to use are gnuchess and crafty.
diff -r 92eb9b64a7d8 -r acd36c7a747f games/glchess/MESSAGE
--- a/games/glchess/MESSAGE Mon Nov 24 17:19:13 2008 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-===========================================================================
-$NetBSD: MESSAGE,v 1.1.1.1 2002/10/12 06:17:15 rh Exp $
-
- glchess has now been installed in ${PREFIX}. To play against the
- computer, you need to set up the path to an installed gnuchessx
- or crafty chess engine.
-
- To change settings, you need to create ${PKG_SYSCONFDIR}/glchessrc
- containing system-wide settings or .glchessrc in a user's home
- directory for per-user configuration. The default configuration
- can be found in ${PREFIX}/etc/glchessrc.default
-
-===========================================================================
diff -r 92eb9b64a7d8 -r acd36c7a747f games/glchess/Makefile
--- a/games/glchess/Makefile Mon Nov 24 17:19:13 2008 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,42 +0,0 @@
-# $NetBSD: Makefile,v 1.17 2008/07/14 12:56:04 joerg Exp $
-#
-
-DISTNAME= glchess-0.4.7
-PKGREVISION= 6
-CATEGORIES= games
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=glchess/}
-
-MAINTAINER= pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE= http://glchess.sourceforge.net/
-COMMENT= 3D chess interface
-
-PKG_DESTDIR_SUPPORT= user-destdir
-
-USE_TOOLS+= automake
-GNU_CONFIGURE= YES
-INSTALL_DIRS= ${WRKSRC}/src ${WRKSRC}/man ${WRKSRC}/textures
-
-INSTALLATION_DIRS= etc
-
-pre-configure:
- cd ${WRKSRC} && \
- aclocal && \
- automake --add-missing && \
- autoconf && \
- ${CP} glchessrc glchessrc.dist && \
- ${SED} -e 's|/usr/local/share/games|${PREFIX}/share|g' \
- < glchessrc.dist > glchessrc && \
- ${CP} src/config.c src/config.c.dist && \
- ${SED} -e 's|/etc|${PKG_SYSCONFDIR}|g' \
- -e 's|@PKGETC@|${PREFIX}/etc|g' \
- < src/config.c.dist > src/config.c
-
-post-install:
- ${INSTALL_DATA} ${WRKSRC}/glchessrc \
- ${DESTDIR}${PREFIX}/etc/glchessrc.default
-
-.include "../../graphics/MesaLib/buildlink3.mk"
-.include "../../graphics/glu/buildlink3.mk"
-.include "../../x11/gtkglarea/buildlink3.mk"
-.include "../../x11/gtk/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff -r 92eb9b64a7d8 -r acd36c7a747f games/glchess/PLIST
--- a/games/glchess/PLIST Mon Nov 24 17:19:13 2008 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2002/10/12 06:17:15 rh Exp $
-bin/glchess
-etc/glchessrc.default
-man/man6/glchess.6
-share/glchess/textures/1.rgb
-share/glchess/textures/2.rgb
-share/glchess/textures/3.rgb
-share/glchess/textures/4.rgb
-share/glchess/textures/5.rgb
-share/glchess/textures/6.rgb
-share/glchess/textures/7.rgb
-share/glchess/textures/8.rgb
-share/glchess/textures/a.rgb
-share/glchess/textures/b.rgb
-share/glchess/textures/black_board_texture.rgb
-share/glchess/textures/black_piece_texture.rgb
-share/glchess/textures/c.rgb
-share/glchess/textures/d.rgb
-share/glchess/textures/e.rgb
-share/glchess/textures/f.rgb
-share/glchess/textures/g.rgb
-share/glchess/textures/h.rgb
-share/glchess/textures/selected_piece_texture.rgb
-share/glchess/textures/white_board_texture.rgb
-share/glchess/textures/white_piece_texture.rgb
-@dirrm share/glchess/textures
-@dirrm share/glchess
diff -r 92eb9b64a7d8 -r acd36c7a747f games/glchess/distinfo
--- a/games/glchess/distinfo Mon Nov 24 17:19:13 2008 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-$NetBSD: distinfo,v 1.3 2005/02/23 23:11:58 agc Exp $
-
-SHA1 (glchess-0.4.7.tar.gz) = 96f33e75920be067e097a7bcfbe9131a94eb149a
-RMD160 (glchess-0.4.7.tar.gz) = 704fc530ab925c482f711c2d4d3b89d8b747436b
-Size (glchess-0.4.7.tar.gz) = 126979 bytes
-SHA1 (patch-aa) = edbaa29af90d4b5fcfff98df27636686bd7bc7b1
-SHA1 (patch-ab) = 8270b9d23c4103045bb72bdcb5d11311722c8db2
diff -r 92eb9b64a7d8 -r acd36c7a747f games/glchess/patches/patch-aa
--- a/games/glchess/patches/patch-aa Mon Nov 24 17:19:13 2008 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2002/10/12 06:17:15 rh Exp $
-
---- src/interface.c.orig Mon Mar 25 15:02:08 2002
-+++ src/interface.c
-@@ -24,6 +24,7 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <gtkgl/gtkglarea.h>
-+#include <sys/time.h>
- #include <sys/select.h>
-
- #include "global.h"
diff -r 92eb9b64a7d8 -r acd36c7a747f games/glchess/patches/patch-ab
--- a/games/glchess/patches/patch-ab Mon Nov 24 17:19:13 2008 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2002/10/12 06:17:15 rh Exp $
-
---- src/config.c.orig Sat Oct 12 15:19:12 2002
-+++ src/config.c
-@@ -101,6 +101,11 @@ int open_rc(Game * game, const char *fil
- {
- fprintf(stderr, "/etc/glchessrc not found, trying ./glchessrc\n");
- rc = fopen("./glchessrc", "r");
-+ if (rc == NULL)
-+ {
-+ fprintf(stderr, "./glchessrc not found, trying @PKGETC@/glchessrc.default\n");
-+ rc = fopen("@PKGETC@/glchessrc.default", "r");
-+ }
- }
- }
-
Home |
Main Index |
Thread Index |
Old Index