blob: 66cd7e38fbe2d881f8d244a9ad606d55c684ade0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
SUBDIRS = icons
bugreportdir = $(libexecdir)/totem
bugreport_SCRIPTS = totem-bugreport.py
man_MANS = totem.1 totem-video-thumbnailer.1
stuffdir = $(pkgdatadir)
stuff_DATA = \
filmholes.png \
filmholes-big-left.png \
filmholes-big-right.png \
totem_logo.png \
totem.ui \
fullscreen.ui \
playlist.ui \
plugins.ui \
mozilla-viewer.ui \
properties.ui \
uri.ui \
video-list.ui
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
install-data-hook: update-icon-cache
uninstall-hook: update-icon-cache
update-icon-cache:
@-if test -z "$(DESTDIR)"; then \
echo "Updating Gtk icon cache."; \
$(gtk_update_icon_cache); \
else \
echo "*** Icon cache not updated. After (un)install, run this:"; \
echo "*** $(gtk_update_icon_cache)"; \
fi
# totem.desktop.in.in.in = original
# totem.desktop.in.in = by configure, includes the X-Gnome-Bugzilla
# totem.desktop.in = includes the mime-types
# totem.desktop = intltool-ised
desktop_in_files = totem.desktop.in
desktopdir = $(datadir)/applications
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@
totem.desktop.in: totem.desktop.in.in mime-type-list.txt desktop.sh
cat totem.desktop.in.in | sed 's,@FULL_LIBEXECDIR@,$(FULL_LIBEXECDIR),' > $@ &&\
$(SHELL) $(srcdir)/desktop.sh $(srcdir)/mime-type-list.txt \
>> $@
nodist_noinst_HEADERS = totem-mime-types.h nautilus-audio-mime-types.h
totem-mime-types.h: mime-type-include.sh mime-type-list.txt mime-functions.sh
$(srcdir)/mime-type-include.sh $(srcdir)/mime-type-list.txt \
> $@
nautilus-audio-mime-types.h: mime-type-include.sh mime-type-list.txt mime-functions.sh
$(srcdir)/mime-type-include.sh --nautilus $(srcdir)/mime-type-list.txt \
> $@
update-gconf.sh: totem-video-thumbnail.schemas.in
totem-video-thumbnail.schemas.in: schemas.sh mime-type-list.txt mime-functions.sh
$(srcdir)/schemas.sh $(srcdir)/mime-type-list.txt $(bindir) \
> $@ \
2> update-gconf.sh
totem-handlers.schemas.in: handlers.sh
$(srcdir)/handlers.sh > $@
generated_schema_in_files = totem-video-thumbnail.schemas.in totem-handlers.schemas.in
schema_in_files = totem.schemas.in $(generated_schema_in_files)
schemadir = $(GCONF_SCHEMA_FILE_DIR)
schema_DATA = $(schema_in_files:.schemas.in=.schemas)
@INTLTOOL_SCHEMAS_RULE@
totem-video-thumbnailer.1: totem-video-thumbnailer.pod
pod2man -c "" -s 1 -q none -n totem-video-thumbnailer -r GNOME $< > $@
install-data-local: $(schema_DATA)
if GCONF_SCHEMAS_INSTALL
if test -z "$(DESTDIR)" ; then \
for p in $^ ; do \
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p 2>&1 > /dev/null; \
done \
fi
endif
EXTRA_DIST = \
$(man_MANS) \
$(stuff_DATA) \
$(bugreport_SCRIPTS) \
desktop.sh \
handlers.sh \
lirc_example \
mime-type-include.sh \
mime-type-list.txt \
schemas.sh \
mime-functions.sh \
totem.schemas.in \
totem-video-thumbnailer.1 \
totem-video-thumbnailer.pod
CLEANFILES = \
*.bak *.uip core* *.orig *~ \
$(desktop_in_files) \
$(desktop_DATA) \
$(generated_schema_in_files) \
$(schema_DATA) \
totem-handlers.schemas.in \
totem-mime-types.h \
totem-video-thumbnail.schemas.in\
nautilus-audio-mime-types.h \
update-gconf.sh
DISTCLEANFILES =
|