Mercurial > pidgin.yaz
annotate plugins/musicmessaging/Makefile.am @ 12744:fcd9477e4476
[gaim-migrate @ 15091]
" Adds an emblem to a buddy if they have a queued message
(hidden conversation). In the large buddy list it is
added in the northwest corner, sliding the existing
northwest emblem (if specified) to the northeast
position and discarding the northeast emblem. In the
small buddy list, the emblem is added to the southeast.
Attached is a patch and an emblem image to be dropped
in pixmaps/status/default/. The emblem image is a
scaled down version of the send-im.png image." -- Casey Harkins
as I asked for this patch, and since there don't seem to be objections to
it (yet), I'm going ahead and applying it.
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Fri, 06 Jan 2006 04:46:00 +0000 |
parents | c9312177821a |
children | ae71426fbb2e |
rev | line source |
---|---|
11168
198bdde7ea63
[gaim-migrate @ 13269]
Gary Kramlich <grim@reaperworld.com>
parents:
11089
diff
changeset
|
1 EXTRA_DIST = \ |
198bdde7ea63
[gaim-migrate @ 13269]
Gary Kramlich <grim@reaperworld.com>
parents:
11089
diff
changeset
|
2 music.png |
11085
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
3 |
11903 | 4 musicmessagingdir = $(libdir)/gaim |
11085
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
5 |
11435
1a2eaba2bc13
[gaim-migrate @ 13672]
Gary Kramlich <grim@reaperworld.com>
parents:
11337
diff
changeset
|
6 musicmessaging_la_LDFLAGS = -module -avoid-version $(GTK_LIBS) $(DBUS_LIBS) |
11085
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
7 |
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
8 if PLUGINS |
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
9 |
11179
3f10c832260d
[gaim-migrate @ 13287]
Richard Laager <rlaager@wiktel.com>
parents:
11168
diff
changeset
|
10 musicmessagingpixdir = $(datadir)/pixmaps/gaim/buttons |
11168
198bdde7ea63
[gaim-migrate @ 13269]
Gary Kramlich <grim@reaperworld.com>
parents:
11089
diff
changeset
|
11 musicmessagingpix_DATA = music.png |
198bdde7ea63
[gaim-migrate @ 13269]
Gary Kramlich <grim@reaperworld.com>
parents:
11089
diff
changeset
|
12 |
11903 | 13 musicmessaging_LTLIBRARIES = musicmessaging.la |
11085
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
14 |
11089
355595881218
[gaim-migrate @ 13110]
Gary Kramlich <grim@reaperworld.com>
parents:
11085
diff
changeset
|
15 musicmessaging_la_SOURCES = \ |
11085
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
16 musicmessaging.c |
11337 | 17 |
18 | |
11200
4295083cf489
[gaim-migrate @ 13328]
Christian Muise <christian.muise@gmail.com>
parents:
11179
diff
changeset
|
19 |
4295083cf489
[gaim-migrate @ 13328]
Christian Muise <christian.muise@gmail.com>
parents:
11179
diff
changeset
|
20 CLEANFILES = music-messaging-bindings.c |
4295083cf489
[gaim-migrate @ 13328]
Christian Muise <christian.muise@gmail.com>
parents:
11179
diff
changeset
|
21 |
11337 | 22 .PHONY: always |
23 | |
24 $(top_builddir)/src/dbus-types.h: always | |
25 cd $(@D) && $(MAKE) $(AM_MAKEFLAGS) $(@F) | |
26 | |
11903 | 27 music-messaging-bindings.c: $(top_srcdir)/src/dbus-analyze-functions.py $(musicmessaging_la_SOURCES) |
28 cat $(srcdir)/$(musicmessaging_la_SOURCES) | \ | |
29 $(PYTHON) $(top_srcdir)/src/dbus-analyze-functions.py --export-only > $@ | |
11200
4295083cf489
[gaim-migrate @ 13328]
Christian Muise <christian.muise@gmail.com>
parents:
11179
diff
changeset
|
30 |
11337 | 31 $(musicmessaging_la_OBJECTS) musicmessaging.so: music-messaging-bindings.c $(top_builddir)/src/dbus-types.h |
11200
4295083cf489
[gaim-migrate @ 13328]
Christian Muise <christian.muise@gmail.com>
parents:
11179
diff
changeset
|
32 |
4295083cf489
[gaim-migrate @ 13328]
Christian Muise <christian.muise@gmail.com>
parents:
11179
diff
changeset
|
33 |
11085
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
34 |
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
35 endif |
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
36 |
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
37 AM_CPPFLAGS = \ |
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
38 -DDATADIR=\"$(datadir)\" \ |
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
39 -DVERSION=\"$(VERSION)\" \ |
11903 | 40 -I$(top_builddir)/src \ |
11085
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
41 -I$(top_srcdir)/src \ |
363f88138dab
[gaim-migrate @ 13105]
Christian Muise <christian.muise@gmail.com>
parents:
diff
changeset
|
42 $(DEBUG_CFLAGS) \ |
11254
ce3b9969b399
[gaim-migrate @ 13426]
Christian Muise <christian.muise@gmail.com>
parents:
11200
diff
changeset
|
43 $(GTK_CFLAGS) \ |
ce3b9969b399
[gaim-migrate @ 13426]
Christian Muise <christian.muise@gmail.com>
parents:
11200
diff
changeset
|
44 $(DBUS_CFLAGS) |