~ubuntu-branches/ubuntu/trusty/heroes/trusty

« back to all changes in this revision

Viewing changes to debian/heroes-common.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Burrows
  • Date: 2006-09-25 21:14:44 UTC
  • mfrom: (3.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20060925211444-zuyel4by13s3eb4p
Tags: 0.21-7
* Hack Makefile.in (NOT Makefile.am as we no longer have an automake
  capable of parsing it in Debian!) to not link heroeslvl against
  $(LIBS).  It doesn't need a dependency on SDL and so on, since
  it's just a command-line utility.

  The implementation of this is pretty horrid.  I'll email upstream
  and let them know, but they don't seem to be putting out releases
  anymore.

* Add sv.po. (Closes: #348253)

* Add a .desktop entry.  Apparently all the cool kids have one now.
  (Closes: #384742)

* Acknowledge NMU (Closes: #381272).

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
  if [ -d /var/games/heroes ]
6
6
  then
7
7
    # Just in case someone somehow got the wrong permissions on the directory.
8
 
    chown root.root /var/games/heroes
 
8
    chown root:root /var/games/heroes
9
9
    chmod 755 /var/games/heroes
10
10
  fi
11
11
 
15
15
    touch /var/games/heroes/scores
16
16
  fi
17
17
 
18
 
  chown root.games /var/games/heroes/scores
 
18
  chown root:games /var/games/heroes/scores
19
19
  chmod 664 /var/games/heroes/scores
20
20
fi
21
21