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

« back to all changes in this revision

Viewing changes to src/connect4-2players-activity/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
SUBDIRS =
 
2
 
 
3
 
 
4
xmldir = $(pkgdatadir)/@PACKAGE_DATA_DIR@
 
5
 
 
6
xml_in_files = \
 
7
        connect4-2players.xml.in
 
8
 
 
9
 
 
10
xml_DATA = $(xml_in_files:.xml.in=.xml)
 
11
 
 
12
# Do not use the INTLTOOL_XML_RULE, we don't need to embed the translations
 
13
# in the file themselves. GCompris pick the translations from the po file at
 
14
# runtime.
 
15
#
 
16
$(xml_DATA): %.xml: %.xml.in
 
17
        sed -e "s/\(<\{1\}\/*\)_/\1/g" $< > $@
 
18
 
 
19
# Use this directive and instead of the one above to embed the translations
 
20
# in the xml files directly, this is needed for the tool gcompris2spip
 
21
#@INTLTOOL_XML_RULE@
 
22
 
 
23
 
 
24
icondir = $(pkgdatadir)/@PACKAGE_DATA_DIR@
 
25
icon_DATA = connect4.svg
 
26
 
 
27
EXTRA_DIST = $(icon_DATA) ${xml_in_files} init_path.sh
 
28
CLEANFILES = $(xml_DATA)