~ubuntu-branches/ubuntu/hardy/gxine/hardy

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-03-21 11:24:59 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080321112459-igb0jy01nytpdrzt
Tags: 0.5.901-1ubuntu1
* merge debian changes for hardy PPA. Remaining changes:
  - debian/control: added Xb-Npp-xxx tags accordingly to "firefox distro
    add-on suport" spec,
    (https://blueprints.launchpad.net/ubuntu/+spec/firefox-distro-addon-support)
* Feature Freeze exception granted in LP: #204563
* New upstream release fixes playing DVDs. LP: #128864
* mime.default: add "x-content/video-dvd;x-content/video-vcd;x-content/video-svcd;"
  to get it listed as a player for dvd and video cds in nautilus. Thanks to
  Sebastien Bacher for the hint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
SUBDIRS = m4 pixmaps include src doc browser-plugin misc po
2
2
 
3
3
#DEB_FILES = debian/rules debian/changelog debian/control debian/copyright debian/README.Debian debian/menu
4
 
EXTRA_DIST = config.rpath gxine.desktop autogen.sh gxine-test \
 
4
EXTRA_DIST = config.rpath gxine.desktop.in mime.default autogen.sh gxine-test \
5
5
        BUGS README.de README.cs README_l10n
6
6
 
7
7
Applicationsdir = $(datadir)/applications
8
 
Applications_DATA = gxine.desktop
 
8
nodist_Applications_DATA = gxine.desktop
 
9
 
 
10
BUILT_SOURCES = gxine.desktop
 
11
CLEANFILES = $(BUILT_SOURCES)
9
12
 
10
13
debug:
11
14
        @list='$(SUBDIRS)'; for subdir in $$list; do \
28
31
 
29
32
mostlyclean-generic:
30
33
        -rm -f *~ \#* .*~ .\#* 
31
 
        -rm -f $(PACKAGE)_$(VERSION).tar.gz
 
34
        -rm -f $(PACKAGE)-$(VERSION).tar.bz2
32
35
        -rm -f $(distdir).tar.gz $(PACKAGE).tgz package_descriptions
33
36
        -rm -rf $(distdir)
34
37
 
54
57
        $(MAKE) -C $(top_builddir)/po update-po
55
58
        $(MAKE) -C $(top_builddir)/misc/po update-po
56
59
 
57
 
ACLOCAL_AMFLAGS = -I m4
 
60
XINE_MIME = $(if $(shell test "$(XINE_CONFIG)" = '' && echo y),$(shell pkg-config --variable=plugindir libxine),$(shell $(XINE_CONFIG) --plugindir))/mime.types
 
61
 
 
62
MIME = $(if $(shell test -f $(XINE_MIME) && echo y),$(XINE_MIME),$(srcdir)/mime.default)
 
63
 
 
64
gxine.desktop: gxine.desktop.in $(MIME)
 
65
        exec > $@; \
 
66
        cat $<; \
 
67
        awk 'BEGIN { s = "%s" } { printf s, $$1; s = ";%s" } END { print }' <$(MIME)
 
68
 
 
69
ACLOCAL_AMFLAGS = -I m4 -I m4/gettext