~ubuntu-branches/ubuntu/precise/edgy-community-wallpapers/precise

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2009-01-07 08:39:01 UTC
  • Revision ID: james.westby@ubuntu.com-20090107083901-n4vnthzlo0cz000e
Tags: 0.6
* debian/copyright, COPYING: Updated to Creative Commons Attribution 3.0 
  Austria.
* AUTHORS: updated too.
* NEWS, README, ChangeLog, INSTALL: dropped, they were meaningless.
* Makefile.am, autogen.sh, configure.ac: dropped, the autotools stuff was a 
  bit too much, just to ship a few wallpapers and GNOME translations for 
  them. Python distutils and distutils-extras is an acceptable compromise.
* debian/control, debian/pycompat, debian/rules, setup.cfg, setup.py: new 
  "build system".
* Native package now.
* po/cs.po, po/de.po, po/en_AU.po, po/en_CA.po, po/en_GB.po, po/es.po, 
  po/et.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hi.po, po/id.po, 
  po/it.po, po/lt.po, po/ml.po, po/mr.po, po/nl.po, po/oc.po, po/pl.po, 
  po/pt_BR.po, po/ro.po, po/sk.po, po/sv.po, po/th.po, po/tr.po: added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SUBDIRS = po
2
 
 
3
 
@INTLTOOL_XML_RULE@
4
 
 
5
 
props_in_files =                        \
6
 
        edgy-community-wallpapers.xml.in
7
 
 
8
 
wallpaperdir = $(datadir)/backgrounds
9
 
wallpaper_DATA = \
10
 
        Ubuntu-DawnOfUbuntu_1600x1200.jpg  
11
 
 
12
 
propsdir = $(datadir)/gnome-background-properties
13
 
props_DATA = \
14
 
        edgy-community-wallpapers.xml
15
 
 
16
 
EXTRA_DIST = $(wallpaper_DATA) $(props_DATA)
17
 
 
18
 
 
19
 
EXTRA_DIST =                            \
20
 
        $(wallpaper_DATA)               \
21
 
        $(props_in_files)               \
22
 
        $(props_DATA)                   \
23
 
        intltool-update.in              \
24
 
        intltool-merge.in               \
25
 
        intltool-extract.in             \
26
 
        autogen.sh
27
 
        
28
 
DISTCLEANFILES = \
29
 
        edgy-community-wallpapers.xml   \
30
 
        intltool-extract                \
31
 
        intltool-merge                  \
32
 
        intltool-update
33
 
 
34
 
MAINTAINERCLEANFILES =                  \
35
 
        Makefile.in                     \
36
 
        aclocal.m4                      \
37
 
        configure                       \
38
 
        install-sh                      \
39
 
        intltool-extract.in             \
40
 
        intltool-merge.in               \
41
 
        intltool-update.in              \
42
 
        missing                         \
43
 
        mkinstalldirs
44