~ml-launchpad/ubuntu/natty/gcompris/fix-for-777349

« back to all changes in this revision

Viewing changes to src/missing_letter-activity/resources/missing_letter/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Marc Gariepy, Marc Gariepy, Stephane Graber
  • Date: 2010-01-04 17:42:49 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20100104174249-7bupatd9dtxyhvs4
Tags: 9.0-0ubuntu1
[Marc Gariepy]
* New upstream release (9.0).
* Remove cache.c from POTFILES to avoid FTBFS
* Remove unneeded rm in debian/rules (file no longer exists upstream)

[Stephane Graber]
* Bump Debian standards to 3.8.3
* Add patch system (dpatch)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
xmldir = $(pkgdatadir)/@PACKAGE_DATA_DIR@/missing_letter
 
3
 
 
4
xml_in_files = \
 
5
        board1.xml.in \
 
6
        board2.xml.in \
 
7
        board3.xml.in \
 
8
        board4.xml.in \
 
9
        board5.xml.in
 
10
 
 
11
xml_DATA = $(xml_in_files:.xml.in=.xml)
 
12
 
 
13
#
 
14
# Do not use the INTLTOOL_XML_RULE, we don't need to embed the translations
 
15
# in the file themselves. GCompris pick the translations from the po file at
 
16
# runtime.
 
17
#
 
18
$(xml_DATA): %.xml: %.xml.in
 
19
        sed -e "s/\(<\{1\}\/*\)_/\1/g" $< > $@
 
20
 
 
21
 
 
22
imgdir = $(pkgdatadir)/@PACKAGE_DATA_DIR@/missing_letter
 
23
img_DATA = \
 
24
        avion.png \
 
25
        ballon.png \
 
26
        banana.png \
 
27
        bed.png \
 
28
        bottle.png \
 
29
        button.png \
 
30
        button_selected.png \
 
31
        cake.png \
 
32
        car.png \
 
33
        cartable.png \
 
34
        chien.png \
 
35
        fish.png \
 
36
        maison.png \
 
37
        missingletter-bg.jpg \
 
38
        pomme.png
 
39
 
 
40
EXTRA_DIST = $(img_DATA) ${xml_in_files}
 
41
CLEANFILES = $(xml_DATA)