mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
games/xscrabble: Removed from 13.0 repository
This commit is contained in:
parent
c4c4bba935
commit
0be9e3da2b
7 changed files with 0 additions and 165 deletions
|
@ -1,10 +0,0 @@
|
|||
Xscrabble project is an internationalized version of the Xscrabble
|
||||
program. It is an enhancement of Matt Chapman's original Xscrabble
|
||||
which is a networked scrabble implementation for the X Window System.
|
||||
|
||||
Among other things, version 2 adds internationalization features. English
|
||||
and French are currently supported (the dictionary files should be downloaded
|
||||
separately from the main package). You must have at least one of the
|
||||
dictionary files present when building the package; obtain them here:
|
||||
ftp://ftp.ac-grenoble.fr/ge/educational_games/xscrabble_en.tar.bz2
|
||||
ftp://ftp.ac-grenoble.fr/ge/educational_games/xscrabble_fr.tar.bz2
|
|
@ -1,14 +0,0 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
for i in en fr ; do
|
||||
if [ -d var/games/scrabble/$i ]; then
|
||||
if [ ! -e var/games/scrabble/$i/scrabble_scores ]; then
|
||||
mv var/games/scrabble/$i/scrabble_scores.new var/games/scrabble/$i/scrabble_scores
|
||||
else
|
||||
rm -f var/games/scrabble/$i/scrabble_scores.new
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler-----------------------------------------------------|
|
||||
xscrabble: Xscrabble (X-based Scrabble Game)
|
||||
xscrabble:
|
||||
xscrabble: Xscrabble project is an internationalized version of the Xscrabble
|
||||
xscrabble: program. It is an enhancement of Matt Chapman's original Xscrabble
|
||||
xscrabble: which is a networked scrabble implementation for the X Window System.
|
||||
xscrabble: Among other things, version 2 adds internationalization features.
|
||||
xscrabble: English and French are currently supported (the dictionary
|
||||
xscrabble: files should be downloaded separately from the main package).
|
||||
xscrabble:
|
||||
xscrabble: Homepage: ftp://ftp.ac-grenoble.fr/ge/educational_games/
|
||||
xscrabble:
|
|
@ -1,105 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Xscrabble
|
||||
# Written by Steven A. McIntosh (samac) (mcintosh@cotterochan.co.uk)
|
||||
# Modified by Robby Workman <rworkman@slackbuilds.org>
|
||||
|
||||
PRGNAM=xscrabble
|
||||
VERSION=2.12
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
DEFAULT_LANG=${DEFAULT_LANG:-en}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
rm -fr $TMP/$PRGNAM $PKG $TMP/$PRGNAM-$VERSION
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP || exit 1
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod 0755 .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
# The included "build" script isn't exactly ideal, so we'll do it ourselves
|
||||
printf \
|
||||
"#define VERSION $(printf $VERSION|tr -d \.)
|
||||
#define DICT_FILE \"/usr/share/games/scrabble/en/OSPD3.gz\"
|
||||
#define SCORE_FILE \"/var/games/scrabble/en/scrabble_scores\"
|
||||
#define RULES_FILE \"/usr/share/games/scrabble/en/scrabble_rules\"\n" \
|
||||
> src/config.h
|
||||
xmkmf -a
|
||||
make
|
||||
|
||||
mkdir -p $PKG/usr/games
|
||||
cp -a src/xscrab src/xscrabble $PKG/usr/games
|
||||
chown root:games $PKG/usr/games/*
|
||||
chmod 2755 $PKG/usr/games/*
|
||||
|
||||
mkdir -p $PKG/var/games/scrabble/{en,fr}
|
||||
chown -R root:games $PKG/var/games/scrabble
|
||||
chmod -R 2775 $PKG/var/games/scrabble
|
||||
|
||||
mkdir -p $PKG/etc/X11/app-defaults $PKG/usr/share/games/scrabble/{en,fr}
|
||||
|
||||
install_english() {
|
||||
tar xf $CWD/xscrabble_en.tar.bz2
|
||||
mv xscrabble_en/lib/* $PKG/usr/share/games/scrabble/en
|
||||
rm -f $PKG/usr/share/games/scrabble/en/scrabble_scores
|
||||
( cd $PKG/usr/share/games/scrabble/en
|
||||
ln -fs /var/games/scrabble/en/scrabble_scores .
|
||||
)
|
||||
touch $PKG/var/games/scrabble/en/scrabble_scores.new
|
||||
chmod 0664 $PKG/var/games/scrabble/en/scrabble_scores.new
|
||||
mv xscrabble_en/app-defaults/XScrabble_en \
|
||||
$PKG/etc/X11/app-defaults/XScrabble_en
|
||||
( cd $PKG/etc/X11/app-defaults ; ln -fs XScrabble_en XScrabble )
|
||||
}
|
||||
install_french() {
|
||||
tar xf $CWD/xscrabble_fr.tar.bz2
|
||||
mv xscrabble_fr/lib/* $PKG/usr/share/games/scrabble/fr
|
||||
rm -f $PKG/usr/share/games/scrabble/fr/scrabble_scores
|
||||
( cd $PKG/usr/share/games/scrabble/fr
|
||||
ln -fs /var/games/scrabble/fr/scrabble_scores .
|
||||
)
|
||||
touch $PKG/var/games/scrabble/fr/scrabble_scores.new
|
||||
chmod 0664 $PKG/var/games/scrabble/fr/scrabble_scores.new
|
||||
mv xscrabble_fr/app-defaults/XScrabble_fr \
|
||||
$PKG/etc/X11/app-defaults/XScrabble_fr
|
||||
( cd $PKG/etc/X11/app-defaults ; ln -fs XScrabble_fr XScrabble )
|
||||
}
|
||||
|
||||
if [ -e $CWD/xscrabble_en.tar.bz2 -a -e $CWD/xscrabble_fr.tar.bz2 ]; then
|
||||
if [ "$DEFAULT_LANG" = "en" ]; then
|
||||
install_french
|
||||
install_english
|
||||
else
|
||||
install_english
|
||||
install_french
|
||||
fi
|
||||
elif [ -e $CWD/xscrabble_fr.tar.bz2 ]; then
|
||||
install_french
|
||||
elif [ -e $CWD/xscrabble_en.tar.bz2 ]; then
|
||||
install_english
|
||||
else
|
||||
printf "You need to have at least one language pack - get them here:\n"
|
||||
printf "ftp://ftp.ac-grenoble.fr/ge/educational_games/xscrabble_en.tar.bz2\n"
|
||||
printf "ftp://ftp.ac-grenoble.fr/ge/educational_games/xscrabble_fr.tar.bz2\n"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
mkdir -p $PKG/usr/share/{applications,pixmaps}
|
||||
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
|
||||
cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
|
@ -1,9 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Name=xscrabble
|
||||
Comment=A Scrabble-like game
|
||||
Exec=xscrabble
|
||||
TryExec=xscrabble
|
||||
Icon=xscrabble
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Game;
|
|
@ -1,8 +0,0 @@
|
|||
PRGNAM="xscrabble"
|
||||
VERSION="2.12"
|
||||
HOMEPAGE="ftp://ftp.ac-grenoble.fr/ge/educational_games/"
|
||||
DOWNLOAD="ftp://ftp.ac-grenoble.fr/ge/educational_games/xscrabble-2.12.tar.bz2"
|
||||
MD5SUM="733e90def2c1d60c0c223f3a0c908db9"
|
||||
MAINTAINER="Steven A. McIntosh (samac)"
|
||||
EMAIL="mcintosh@cotterochan.co.uk"
|
||||
APPROVED="rworkman"
|
Binary file not shown.
Before Width: | Height: | Size: 3.4 KiB |
Loading…
Reference in a new issue