~ubuntu-branches/ubuntu/trusty/xubuntu-docs/trusty-proposed

« back to all changes in this revision

Viewing changes to desktop-guide/Makefile

  • Committer: Package Import Robot
  • Author(s): Sean Davis, David Pires, Unit 193, Pasi Lallinaho, Nigel Hall, Jack Fromm
  • Date: 2014-03-19 22:08:04 UTC
  • Revision ID: package-import@ubuntu.com-20140319220804-isml1im9hdthd0kl
Tags: 14.04.1
* New release. (LP: #1294932)

[ David Pires ]
* Corrected the xfdesktop-help link in xubuntu.ent file

[ Unit 193 ]
* Add several commands to the "Common commands" section.
* Add an appendix for a listing of default packages (with descriptions.)
* Add a build dep on coreutils (>= 8.16)
* Update packaging and Makefiles for translations.
* Drop unused scripts.

[ Pasi Lallinaho ]
* Remove mentions of gThumb from the documentation
  since it's not shipped in Trusty.
* Update the startpage.

[ Nigel Hall ]
* Fix typos in the Command Line chapter.

[ Jack Fromm ]
* Revised the desktop guide and Settings chapters
  for the new panel layout including Whiskermenu.
* Updated links to Xfce apps documentation.
* Add icons and other entities.
* Update entities as needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
# Xubuntu Docbook Customization Layer
6
6
XUBUNTUXSL=libs/xubuntu-html-chunk-cust.xsl
7
7
 
 
8
ifneq ($(wildcard po/LINGUAS),)
 
9
   $(shell ../scripts/translate.sh -u >/dev/null)
 
10
   OPTS=-g
 
11
   TRANSLATIONS=$(shell cat po/LINGUAS)
 
12
else
 
13
   OPTS=
 
14
   TRANSLATIONS=$(shell basename -s .po -a po/*po)
 
15
endif
 
16
 
8
17
html: style
9
18
        xsltproc --xinclude -o ../build/desktop-guide/index.html $(XUBUNTUXSL) C/index.xml
10
19
 
15
24
        cp -r libs/admon ../build/libs
16
25
        cp -r libs/navig ../build/libs
17
26
 
18
 
.PHONY: html
 
27
translate:
 
28
        ../scripts/translate.sh $(OPTS); \
 
29
        for dir in $(TRANSLATIONS); do \
 
30
                xsltproc --xinclude -o ../build/$$dir/index.html $(XUBUNTUXSL) $$dir/index.xml && \
 
31
                rm -rf $$dir/; \
 
32
        done
 
33
 
 
34
clean:
 
35
        ${RM} -r $(TRANSLATIONS)
 
36
 
 
37
.PHONY: html translate