~ubuntu-branches/ubuntu/vivid/imagination/vivid

« back to all changes in this revision

Viewing changes to doc/pt_BR/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2011-05-19 13:22:01 UTC
  • mfrom: (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110519132201-4az49l8yvxrag1x0
Tags: 3.0-1
* New upstream release (Closes: #627240).
 - Fixes inverted tooltips in the toolbar (Closes: #599442).
 - Adds updated Brazilian Portuguese (pt_BR) translation.
   Thanks to Sérgio Cipolla (Closes: #599448).
* imagination.install: Don't install la files (Closes: #621684).
* Drop debian/README.source. Not needed with source
  version 3.0 (quilt).
* Bump Standards-Version to 3.9.2, no changes needed.
* debian/rules: Convert to minimal dh 7 style rules file.
* Drop debian/patches/20_lang-zh_TW.patch: zh_TW translation
  have been added upstream. 
* Update debian/patches/15_PLUGINS_INSTALLED.patch and
  debian/patches/10_link_math_lib.patch for new release.
* debian/{control, rules}: Maintain the different Ubuntu and
  Debian recommends in the same source package using dpkg-vendor
  and a ${dist:Recommends} substvar. Thanks to Alessio Treglia.
  (Closes: #627246)
* debian/copyright: Minor tweaks to bring up to rev 174
  of Dep 5.
* debian/control: Update suggests for libavutil-extra-50.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id$
 
2
 
 
3
SUBDIRS =                                                               \
 
4
        images
 
5
 
 
6
TARGET_DIR = $(datadir)/doc/imagination/html/pt_BR
 
7
STYLESHEET = ../imagination.xsl
 
8
DOCUMENT = imagination.xml
 
9
 
 
10
# We set GPATH here; this gives us semantics for GNU make
 
11
# which are more like other make's VPATH, when it comes to
 
12
# whether a source that is a target of one rule is then
 
13
# searched for in VPATH/GPATH.
 
14
GPATH = $(srcdir)
 
15
 
 
16
DOC_STAMPS = html-build.stamp
 
17
 
 
18
EXTRA_DIST = $(DOCUMENT)
 
19
CLEANFILES = $(DOC_STAMPS)
 
20
 
 
21
all-local: html-build.stamp
 
22
 
 
23
html-build.stamp: $(srcdir)/$(DOCUMENT) $(srcdir)/$(STYLESHEET)
 
24
        @echo "*** Building Brazilian Portuguese documentation ***"
 
25
        @-chmod -R u+w $(srcdir)
 
26
        rm -rf $(srcdir)/html
 
27
        mkdir $(srcdir)/html/
 
28
        $(XSLTPROC) --nonet -o $(srcdir)/html/ $(srcdir)/$(STYLESHEET) \
 
29
                $(srcdir)/$(DOCUMENT)
 
30
        touch html-build.stamp
 
31
 
 
32
maintainer-clean-local: clean
 
33
        (cd $(srcdir) && rm -rf html)
 
34
 
 
35
install-data-local:
 
36
        installfiles=`echo $(srcdir)/html/*`;                           \
 
37
        if test "$$installfiles" = '$(srcdir)/html/*'; then             \
 
38
                echo "--- Nothing to install";                          \
 
39
        else                                                            \
 
40
                $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR);               \
 
41
                for file in $$installfiles; do                          \
 
42
                        echo "--- Installing "$$file;                   \
 
43
                        $(INSTALL_DATA) $$file $(DESTDIR)$(TARGET_DIR); \
 
44
                done;                                                   \
 
45
        fi
 
46
 
 
47
uninstall-local:
 
48
        rm -rf $(DESTDIR)$(TARGET_DIR)/*
 
49
 
 
50
dist-check-xsltproc: all
 
51
 
 
52
dist-hook: dist-check-xsltproc dist-hook-local
 
53
        mkdir $(distdir)/html
 
54
        -cp $(srcdir)/html/* $(distdir)/html
 
55
 
 
56
.PHONY: dist-hook-local
 
57
 
 
58
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: