summaryrefslogtreecommitdiffstats
path: root/servers
diff options
context:
space:
mode:
authorSebastien Estienne <sebastien.estienne@gmail.com>2005-08-28 22:09:02 +0000
committerSebastien Estienne <sebastien.estienne@gmail.com>2005-08-28 22:09:02 +0000
commit67b0d605554cc5d1836c6e112eb465d53e213330 (patch)
tree8c839fb24d71be729ed595af6374aa14b07d10b3 /servers
parentf4b0f0626e54347eb9b56e19e69b9e8a451f0721 (diff)
* initial import
git-svn-id: file:///home/lennart/svn/public/service-discovery-applet/trunk@3 3be567f1-68ff-0310-b24a-ad7cc433fd2f
Diffstat (limited to 'servers')
-rw-r--r--servers/GNOME_ServiceDiscoveryApplet.server.in30
-rw-r--r--servers/Makefile.am12
2 files changed, 42 insertions, 0 deletions
diff --git a/servers/GNOME_ServiceDiscoveryApplet.server.in b/servers/GNOME_ServiceDiscoveryApplet.server.in
new file mode 100644
index 0000000..5db309a
--- /dev/null
+++ b/servers/GNOME_ServiceDiscoveryApplet.server.in
@@ -0,0 +1,30 @@
+<oaf_info>
+
+<oaf_server iid="OAFIID:GNOME_ServiceDiscoveryApplet_Factory"
+ type="exe"
+ location="@bindir@/service-discovery-applet">
+
+ <oaf_attribute name="repo_ids" type="stringv">
+ <item value="IDL:Bonobo/GenericFactory:1.0"/>
+ <item value="IDL:Bonobo/Unknown:1.0"/>
+ </oaf_attribute>
+ <oaf_attribute name="name" type="string" value="Zeroconf service discovery applet"/>
+ <oaf_attribute name="description" type="string" value="This applet allow you to quickly access the zeroconf services available on your network."/>
+</oaf_server>
+
+<oaf_server iid="OAFIID:GNOME_ServiceDiscoveryApplet"
+ type="factory"
+ location="OAFIID:GNOME_ServiceDiscoveryApplet_Factory">
+
+ <oaf_attribute name="repo_ids" type="stringv">
+ <item value="IDL:GNOME/Vertigo/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="Zeroconf service discovery applet"/>
+ <oaf_attribute name="description" type="string" value="This applet allow you to quickly access the zeroconf services available on your network."/>
+ <oaf_attribute name="panel:category" type="string" value="Internet"/>
+ <oaf_attribute name="panel:icon" type="string" value="@iconsdir@/service-discovery-applet.png"/>
+</oaf_server>
+
+</oaf_info>
diff --git a/servers/Makefile.am b/servers/Makefile.am
new file mode 100644
index 0000000..55986c0
--- /dev/null
+++ b/servers/Makefile.am
@@ -0,0 +1,12 @@
+serversdir = $(libdir)/bonobo/servers/
+servers_DATA = GNOME_ServiceDiscoveryApplet.server
+
+GNOME_ServiceDiscoveryApplet.server: GNOME_ServiceDiscoveryApplet.server.in
+ sed \
+ -e 's,@bindir\@,$(bindir),g' \
+ -e 's,@iconsdir\@,$(ICONSDIR),g' \
+ $< > $@
+
+EXTRA_DIST = GNOME_ServiceDiscoveryApplet.server.in
+
+CLEANFILES = $(servers_DATA)