2001-10-13 Bradford Hovinen <hovinen@ximian.com> * bonobo-config-archiver.c (real_sync): Try to resolve a listener to make sure that something is listening when we issue the sync event (disabled for now) (get_listener_oafiid): Implement (disabled for now) 2001-10-12 Bradford Hovinen <hovinen@ximian.com> * capplet-util.c (get_factory_name): Updated factory name to reflect new, expanded roles * Bonobo_Control_Capplet_generic.oaf.in: Create 2001-09-29 Bradford Hovinen <hovinen@ximian.com> * capplet-util.c (create_control_cb): Elimite reference counter -- it's not necessary (create_control_cb): Make this a multi-factory so that we can return the listener when needed (capplet_init): Set up the listener here rather than in get_control_cb; also remove the listener and unref the database here (quit_cb, real_quit_cb): Remove (thank the gods) 2001-10-12 Bradford Hovinen <hovinen@ximian.com> * Makefile.am ($(oaffile)): Make creation of the .oaf file generic 2001-10-12 Bradford Hovinen <hovinen@ximian.com> * capplet-dir.c (capplet_control_launch): Unref the property bag when we are done
55 lines
2 KiB
Makefile
55 lines
2 KiB
Makefile
cappletname = mouse
|
|
cappletgroup =
|
|
bin_PROGRAMS = mouse-properties-control
|
|
bin_SCRIPTS = mouse-properties-capplet
|
|
|
|
mouse_properties_control_LDADD = $(GNOMECC_CAPPLETS_LIBS)
|
|
|
|
mouse_properties_control_SOURCES = \
|
|
mouse-properties-capplet.c
|
|
|
|
DESKTOP_EXEC_LINE = gnomecc --run-capplet mouse-properties
|
|
|
|
pixmap_DATA = mouse-left.png mouse-right.png
|
|
|
|
defaultsdir= $(datadir)/control-center/defaults
|
|
defaults_DATA = mouse-properties.xml
|
|
|
|
oafdir = $(datadir)/oaf
|
|
oaf_DATA = Bonobo_Control_Capplet_mouse_properties.oaf
|
|
oaffile = $(oaf_DATA)
|
|
|
|
##
|
|
## You should not need to modify anything below this line
|
|
##
|
|
@XML_I18N_MERGE_DESKTOP_RULE@
|
|
|
|
$(bin_SCRIPTS): $(top_srcdir)/capplets/common/wrapper-script.in
|
|
sed -e "s#@BINDIR@#$(bindir)#" -e "s#@CAPPLET_NAME@#$(cappletname)-properties#" < $< > $@
|
|
chmod a+x $@
|
|
|
|
$(oaffile): %.oaf: $(top_srcdir)/capplets/common/Bonobo_Control_Capplet_generic.oaf.in
|
|
sed -e "s#@BINDIR@#$(bindir)#" -e "s#@SHORT_CAPPLET_NAME@#$(cappletname)#" -e "s#@CAPPLET_BINARY_NAME@#$(bin_PROGRAMS)#" < $< > ${oaffile}
|
|
|
|
####@###GNOMECC_CAPPLETS_DESKTOP_IN_RULE@
|
|
$(desktop).in: %.desktop.in: %.desktop.in.in
|
|
sed -e "s#@DESKTOP_EXEC_LINE@#$(DESKTOP_EXEC_LINE)#" -e "s#Icon=.*#Icon=$(GNOMECC_ICONS_DIR)/${cappletname}-capplet.png#" < $< > ${cappletname}.desktop.in
|
|
|
|
install-data-local:
|
|
$(mkinstalldirs) $(DESTDIR)$(datadir)/control-center/capplets/$(cappletgroup)
|
|
$(INSTALL_DATA) $(desktop) $(DESTDIR)$(datadir)/control-center/capplets/$(cappletgroup)$(desktop)
|
|
|
|
install-data-am: install-data-local
|
|
####@###GNOMECC_CAPPLETS_DESKTOP_IN_RULE@
|
|
|
|
INCLUDES = $(GNOMECC_CAPPLETS_CFLAGS)
|
|
CLEANFILES = $(GNOMECC_CAPPLETS_CLEANFILES)
|
|
EXTRA_DIST = $(GNOMECC_CAPPLETS_EXTRA_DIST) $(oaf_DATA).in $(defaults_DATA) $(pixmap_DATA)
|
|
iconsdir = $(GNOMECC_ICONS_DIR)
|
|
Gladedir = $(GNOMECC_GLADE_DIR)
|
|
pixmapdir = $(GNOMECC_PIXMAPS_DIR)
|
|
Glade_DATA = $(cappletname)-properties.glade
|
|
icons_DATA = $(cappletname)-capplet.png
|
|
desktop = $(cappletname).desktop
|
|
oaffile = $(oaf_DATA)
|
|
all-local: $(desktop)
|