~ubuntu-branches/ubuntu/precise/netris/precise

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Gerfried Fuchs
  • Date: 2008-05-30 08:34:31 UTC
  • Revision ID: james.westby@ubuntu.com-20080530083431-w21zcqel5tmobgqv
Tags: 0.52-7
* The "once every release" release.
* Moved patches to quilt, split them into:
  - multi-games-with-scoring: allow multiple games in a row without
    restarting.
  - line-count-patch: patch to display cleared line counts
  - staircase-effect-fix: fix displaying of error messages
  - robot-close-fixup: Small fix for CloseRobot function to close only if a
    robot is used.
  - init-static-vars: initialize lostConn and gotEndConn static var in
    InitNet function.
  - curses.c-include-term.h: patch to fix function call that otherwise use
    implicit pointer conversion.
  - curses.c-include-time.h: patch to fix segfault on amd64.
* New patches:
  - various-fixes: various small changes to fix compile warnings
* Linked to GPL-2 in copyright file directly, added hint for later versions.
* Added copyright informations into the debianization scripts.
* Added Homepage: control field.
* Updated package to Standards-Version 3.7.3, updating menu section for that.
* Don't ignore make clean errors anymore.
* Small cosmetic updates to the netris-sample-robot manpage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
2
# rules file for netris
 
3
# copyright 2002++ by Gerfried Fuchs <rhonda@debian.at>
 
4
# Licenced the same way as netris itself
3
5
 
4
6
COPT = -g
5
7
INSTALL = install
18
20
endif
19
21
 
20
22
 
21
 
clean:
 
23
include /usr/share/quilt/quilt.make
 
24
 
 
25
clean: unpatch
22
26
        $(checkdir)
23
27
        $(checkroot)
24
28
        -rm -rf debian/netris debian/substvars debian/files \
25
29
                build-stamp install-stamp config.h .depend
26
 
        -$(MAKE) clean
 
30
        [ ! -f Makefile ] || $(MAKE) clean
27
31
        -rm -rf Makefile
28
32
 
29
33
 
30
34
build: build-stamp
31
 
build-stamp:
 
35
build-stamp: patch
32
36
        $(checkdir)
33
37
        ./Configure -g
34
38
        $(MAKE) COPT="$(COPT)"