diff options
Diffstat (limited to 'stickynotes/data')
-rw-r--r-- | stickynotes/data/MATE_StickyNotesApplet.server.in | 24 | ||||
-rw-r--r-- | stickynotes/data/Makefile.am | 19 |
2 files changed, 43 insertions, 0 deletions
diff --git a/stickynotes/data/MATE_StickyNotesApplet.server.in b/stickynotes/data/MATE_StickyNotesApplet.server.in new file mode 100644 index 00000000..a96cce74 --- /dev/null +++ b/stickynotes/data/MATE_StickyNotesApplet.server.in @@ -0,0 +1,24 @@ +<?xml version="1.0"?> +<!-- This file was installed to automatically upgrade your machine from using + stickynotes to using Tomboy. + + If you wish to continue using stickynotes, please recompile MATE-Applets + with -enable-stickynotes and your stickynotes applets should reappear. +--> + +<oaf_info> + <oaf_server iid="OAFIID:MATE_StickyNotesApplet" type="factory" location="OAFIID:TomboyApplet_Factory"> + <oaf_attribute name="repo_ids" type="stringv"> + <item value="IDL:MATE/Vertigo/MatePanelAppletShell:1.0"/> + <item value="IDL:MateComponent/Control:1.0"/> + <item value="IDL:MateComponent/Unknown:1.0"/> + </oaf_attribute> + <oaf_attribute name="name" type="string" _value="Tomboy (ne Stickynotes)"/> + <oaf_attribute name="description" type="string" _value="Tomboy (transparent upgrade from stickynotes)"/> + <oaf_attribute name="bugzilla:bugzilla" type="string" value="MATE"/> + <oaf_attribute name="bugzilla:product" type="string" value="mate-applets"/> + <oaf_attribute name="bugzilla:component" type="string" value="stickynotes"/> + <oaf_attribute name="bugzilla:other_binaries" type="string" value="stickynotes_applet"/> + </oaf_server> +</oaf_info> + diff --git a/stickynotes/data/Makefile.am b/stickynotes/data/Makefile.am new file mode 100644 index 00000000..194d08f9 --- /dev/null +++ b/stickynotes/data/Makefile.am @@ -0,0 +1,19 @@ +# install the upgrading .server file +# + +server_in_files = \ + MATE_StickyNotesApplet.server.in + +if BUILD_STICKYNOTES_APPLET +else +serverdir = $(libdir)/matecomponent/servers +server_DATA = $(server_in_files:.server.in=.server) + +@INTLTOOL_SERVER_RULE@ + +CLEANFILES = $(server_DATA) + +endif +EXTRA_DIST = $(server_in_files) + +-include $(top_srcdir)/git.mk |