public
Fork of ebassi/tweet
Description: A Clutter-based Twitter client
Clone URL: git://github.com/patoh/tweet.git
Set up the themable application icons machinery

Followed the instructions found at:

  http://live.gnome.org/ThemableAppSpecificIcons

to set up the build to install Tweet-specific themable icons.
Emmanuele Bassi (author)
Fri May 23 09:35:40 -0700 2008
commit  218659d8b6cf9befaf77014bd1c421193d72a11b
tree    07c7dbe6854d87043128116ec9702dc6157ac86b
parent  5c18d1c4140e37c19af117a6e0c022327adbd01c
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-SUBDIRS = twitter-glib tests copy-and-paste src po
0
+SUBDIRS = twitter-glib tests copy-and-paste src po data
0
 
0
 dist-hook:
0
   git-log --stat > ChangeLog.in && \
...
147
148
149
 
 
 
 
 
 
150
151
152
...
147
148
149
150
151
152
153
154
155
156
157
158
0
@@ -147,6 +147,12 @@ AC_CONFIG_FILES([
0
         src/Makefile
0
         tests/Makefile
0
         po/Makefile.in
0
+ data/Makefile
0
+ data/icons/Makefile
0
+ data/icons/32x32/Makefile
0
+ data/icons/32x32/actions/Makefile
0
+ data/icons/scalable/Makefile
0
+ data/icons/scalable/actions/Makefile
0
 ])
0
 
0
 AC_OUTPUT
...
 
 
1
2
3
...
7
8
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
...
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
0
@@ -1,3 +1,5 @@
0
+SUBDIRS = icons
0
+
0
 tweetappdir = $(datadir)/applications
0
 tweetapp_in_files = tweet.desktop.in
0
 tweetapp_DATA = $(tweetapp_in_files:.desktop.in=.desktop)
0
@@ -7,3 +9,17 @@ tweetapp_DATA = $(tweetapp_in_files:.desktop.in=.desktop)
0
 EXTRA_DIST = $(tweetapp_in_files)
0
 
0
 CLEANFILES = $(tweetapp_DATA)
0
+
0
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/tweet/icons/hicolor
0
+
0
+install-data-hook: update-icon-cache
0
+uninstall-hook: update-icon-cache
0
+update-icon-cache:
0
+ @-if test -z "$(DESTDIR)"; then \
0
+ echo "Updating Gtk icon cache."; \
0
+ $(gtk_update_icon_cache); \
0
+ else \
0
+ echo "*** Icon cache not updated. After (un)install, run this:"; \
0
+ echo "*** $(gtk_update_icon_cache)"; \
0
+ fi
0
+

Comments

    No one has commented yet.