mirror of
https://github.com/vattam/BSDGames.git
synced 2025-12-21 03:14:50 +00:00
* New upstream version.
* Patch from Malcolm to fix tetris-bsd score formatting if there are more
than 10 scores. (Closes: #50031)
* Include /var/games/bsdgames/sail, (Closes: #50074)
* Fixed robots spelling mistake, (Closes: #50075)
* tetris-bsd now uses its name, (Closes: #50077)
* Fixed phantasia/characs permissions so it's not world-readable
(passwords) (Closes: #50076)
git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5110 a4a2c43b-8ac3-0310-8836-e0e880c912e2
This commit is contained in:
7
debian/changelog
vendored
7
debian/changelog
vendored
@@ -1,6 +1,13 @@
|
||||
bsdgames (2.9-1) unstable; urgency=low
|
||||
|
||||
* New upstream version.
|
||||
* Patch from Malcolm to fix tetris-bsd score formatting if there are more
|
||||
than 10 scores. (Closes: #50031)
|
||||
* Include /var/games/bsdgames/sail, (Closes: #50074)
|
||||
* Fixed robots spelling mistake, (Closes: #50075)
|
||||
* tetris-bsd now uses its name, (Closes: #50077)
|
||||
* Fixed phantasia/characs permissions so it's not world-readable
|
||||
(passwords) (Closes: #50076)
|
||||
|
||||
-- Joey Hess <joeyh@master.debian.org> Sat, 13 Nov 1999 14:14:34 -0800
|
||||
|
||||
|
||||
10
debian/postinst
vendored
10
debian/postinst
vendored
@@ -33,4 +33,14 @@ touch $SCOREFILES
|
||||
chown root.games $SCOREFILES
|
||||
chmod 664 $SCOREFILES
|
||||
|
||||
# These files may not be world-readable as they have passwords
|
||||
# in them.
|
||||
chmod 660 /var/games/bsdgames/phantasia/characs
|
||||
|
||||
# I have to make this directory here, because older version of this package
|
||||
# always deleted in in their postrm. Oops.
|
||||
mkdir -p /var/games/bsdgames/sail
|
||||
chown root.games /var/games/bsdgames/sail
|
||||
chmod g+rws /var/games/bsdgames/sail
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
5
debian/postrm
vendored
5
debian/postrm
vendored
@@ -22,9 +22,8 @@ SCOREFILES="
|
||||
# Remove high score files on purge.
|
||||
if [ "$1" = "purge" ]; then
|
||||
rm -f $SCOREFILES
|
||||
rmdir /var/games/bsdgames/phantasia /var/games/bsdgames/sail \
|
||||
/var/games/bsdgames /var/games 2>/dev/null || true
|
||||
fi
|
||||
|
||||
rmdir /var/games/bsdgames/phantasia /var/games/bsdgames/sail /var/games/bsdgames \
|
||||
/var/games 2>/dev/null || true
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
8
debian/preinst
vendored
8
debian/preinst
vendored
@@ -22,14 +22,12 @@ SCOREFILES="
|
||||
# move them into the new location.
|
||||
if [ -d /var/lib/games ]; then
|
||||
|
||||
# Have to set up directory hierarchy, since this is running as a preinst.
|
||||
mkdir -p /var/games/bsdgames/sail \
|
||||
/var/games/bsdgames/phantasia
|
||||
# Have to set up directory hierarchy, since this is running as a
|
||||
# preinst.
|
||||
mkdir -p /var/games/bsdgames/phantasia
|
||||
chown root.games /var/games/bsdgames \
|
||||
/var/games/bsdgames/sail \
|
||||
/var/games/bsdgames/phantasia
|
||||
chmod g+rws /var/games/bsdgames \
|
||||
/var/games/bsdgames/sail \
|
||||
/var/games/bsdgames/phantasia
|
||||
|
||||
for file in $SCOREFILES; do
|
||||
|
||||
Reference in New Issue
Block a user