summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alla@lysator.liu.se>2001-11-28 03:48:53 +0000
committerAlexander Larsson <alexl@src.gnome.org>2001-11-28 03:48:53 +0000
commit403e7105b0c829aa899998cd4443345fe39717e4 (patch)
tree8196535f0f055d5e3e9535d913ece041ebe7083b
parent8dee1962ea1123fa47ef1b5250b3d986b76975f2 (diff)
Added WNCKLET_CFLAGS/LIBS for applets that link against libwnck.GNOME_CORE_1_5_2
2001-11-27 Alexander Larsson <alla@lysator.liu.se> * configure.in: Added WNCKLET_CFLAGS/LIBS for applets that link against libwnck. * applets/gen_util/pager.[ch]: New files, implement a pager using libwnck. * applets/gen_util/GNOME_GenUtilApplet_Factory.server.in.in: * applets/gen_util/Makefile.am: * applets/gen_util/main.c: Add Pager applet
-rw-r--r--mailcheck/GNOME_MailcheckApplet_Factory.server.in.in16
-rw-r--r--mailcheck/Makefile.am8
2 files changed, 21 insertions, 3 deletions
diff --git a/mailcheck/GNOME_MailcheckApplet_Factory.server.in.in b/mailcheck/GNOME_MailcheckApplet_Factory.server.in.in
index f46f7cf47..0950452be 100644
--- a/mailcheck/GNOME_MailcheckApplet_Factory.server.in.in
+++ b/mailcheck/GNOME_MailcheckApplet_Factory.server.in.in
@@ -29,4 +29,20 @@
</oaf_server>
+<oaf_server iid="OAFIID:GNOME_PagerApplet"
+ type="factory"
+ location="OAFIID:GNOME_GenUtilApplet_Factory">
+
+ <oaf_attribute name="repo_ids" type="stringv">
+ <item value="IDL:GNOME/PanelAppletShell:1.0"/>
+ <item value="IDL:Bonobo/Control:1.0"/>
+ <item value="IDL:Bonobo/Unknown:1.0"/>
+ </oaf_attribute>
+ <oaf_attribute name="name" type="string" value="PagerApplet"/>
+ <oaf_attribute name="description" type="string" value="Pager Applet"/>
+ <oaf_attribute name="panel:icon" type="string" value="gnome-clock.png"/>
+ <oaf_attribute name="panel:category" type="string" value="Utility"/>
+
+</oaf_server>
+
</oaf_info>
diff --git a/mailcheck/Makefile.am b/mailcheck/Makefile.am
index c1f9fd193..bf11546f8 100644
--- a/mailcheck/Makefile.am
+++ b/mailcheck/Makefile.am
@@ -9,13 +9,15 @@ INCLUDES = -I. -I$(srcdir) \
-I$(includedir) \
$(GNOME_INCLUDEDIR) \
$(WARN_CFLAGS) \
- $(PANEL_CFLAGS)
+ $(WNCKLET_CFLAGS)
libgen_util_applet_2_la_SOURCES = \
main.c \
clock.c \
- clock.h
+ clock.h \
+ pager.c \
+ pager.h
# mailcheck.c \
# mailcheck.h \
@@ -28,7 +30,7 @@ libgen_util_applet_2_la_SOURCES = \
libgen_util_applet_2_la_LIBADD = \
../../libpanel-applet/libpanel-applet-2.la \
- $(PANEL_LIBS)
+ $(WNCKLET_LIBS)
appletdir = $(libdir)
applet_LTLIBRARIES = libgen_util_applet-2.la