~ubuntu-branches/ubuntu/karmic/seyon/karmic

« back to all changes in this revision

Viewing changes to debian/config.include

  • Committer: Bazaar Package Importer
  • Author(s): Steve McIntyre
  • Date: 2006-08-13 20:38:54 UTC
  • mfrom: (3.1.3 edgy)
  • Revision ID: james.westby@ubuntu.com-20060813203854-y8z5x7ysf6ry5glt
Tags: 2.20c-22
* Fix bashisms in the debian build (config.include). Closes: #380108
* Added Portuguese debconf template. Thanks to Luisa Lourenco and Rui
  Branco for the patch. Closes: #381712
* Updated Standards-Version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
# Parameters to pass to rules file. This can include doc files, or 
10
10
# command-line switches.
11
 
docs=1-{BUGREPORT,FAQ,HISTORY,README,SURVEY,TODO}
 
11
docs=1-BUGREPORT 1-FAQ 1-HISTORY 1-README 1-SURVEY 1-TODO
12
12
examples=phonelist protocols startup
13
13
binfiles=$(package)
14
14
copyright=debian/copyright
34
34
# What commands to run to clean up after a build?
35
35
define clean_command
36
36
        -$(MAKE) -i clean
 
37
    -rm debian/substvars
37
38
endef
38
39
 
39
40
# List here any files that must be removed during "debian/rules clean"
61
62
define install_command
62
63
        $(MAKE) DESTDIR=debian/tmp install
63
64
        install -d debian/tmp/etc/X11/seyon
64
 
        ln -sf /etc/X11/seyon/seyon-emu debian/tmp/usr/X11R6/bin/seyon-emu
65
 
        install -d debian/tmp/usr/X11R6/man/man1
66
 
        install -m 644 seyon.man debian/tmp/usr/X11R6/man/man1/seyon.1x
67
 
        install -m 644 debian/seyon-emu.man debian/tmp/usr/X11R6/man/man1/seyon-emu.1x
 
65
        ln -sf /etc/X11/seyon/seyon-emu debian/tmp/usr/bin/seyon-emu
 
66
        install -d debian/tmp/usr/share/man/man1
 
67
        install -m 644 seyon.man debian/tmp/usr/share/man/man1/seyon.1x
 
68
        install -m 644 debian/seyon-emu.man debian/tmp/usr/share/man/man1/seyon-emu.1x
68
69
        # Install 1-CHANGES as upstream changelog.
69
70
        install -d debian/tmp/usr/share/doc/$(package)
70
71
        cp 1-CHANGES debian/tmp/usr/share/doc/$(package)/changelog
71
 
        strip --remove-section=.comment --remove-section=.note debian/tmp/usr/X11R6/bin/seyon
72
 
        install -d debian/tmp/usr/lib/menu
73
 
        install -m 644 debian/menu debian/tmp/usr/lib/menu/seyon
 
72
        strip --remove-section=.comment --remove-section=.note debian/tmp/usr/bin/seyon
 
73
        install -d debian/tmp/usr/share/menu
 
74
        install -m 644 debian/menu debian/tmp/usr/share/menu/seyon
74
75
endef
75
76
 
76
77
# After being installed in debian/tmp, everything is chowned to root.root,
80
81
# (Note that these commands will be run as root.)
81
82
define ch_commands
82
83
        chmod 644 debian/tmp/etc/X11/app-defaults/*
83
 
        chmod 644 debian/tmp/usr/X11R6/lib/X11/seyon.help
 
84
        chmod 644 debian/tmp/usr/share/seyon/seyon.help
84
85
endef