mirror of
https://github.com/Guake/guake.git
synced 2025-10-26 11:27:13 +00:00
It is easy to make guake auto start through DE settings if this file is not installed, but it is hard to disable the auto start through DE settings if this file is installed. Also it is confusing to disable the autostart in GNOME. If one user uses both GNOME and KDE, he/she probably would like to use and auto start guake when using GNOME , or yakuake when using KDE.
42 lines
959 B
Makefile
42 lines
959 B
Makefile
SUBDIRS = pixmaps icons
|
|
|
|
man_MANS = guake.1
|
|
|
|
uidir = $(datadir)/guake
|
|
ui_DATA = \
|
|
about.glade \
|
|
guake.glade \
|
|
prefs.glade
|
|
|
|
# dbus service file
|
|
servicedir = $(datadir)/dbus-1/services
|
|
service_in_files = org.guake.Guake.service.in
|
|
service_DATA = $(service_in_files:.service.in=.service)
|
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
desktopdir = $(datadir)/applications
|
|
desktop_in_files = guake.desktop.in guake-prefs.desktop.in
|
|
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
|
|
|
@INTLTOOL_SCHEMAS_RULE@
|
|
schemadir = $(sysconfdir)/gconf/schemas
|
|
schema_DATA = guake.schemas
|
|
|
|
EXTRA_DIST = \
|
|
$(ui_DATA) \
|
|
$(schema_DATA) \
|
|
$(desktop_in_files) \
|
|
$(man_MANS)
|
|
|
|
if GCONF_SCHEMAS_INSTALL
|
|
install-data-local:
|
|
-GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
|
|
$(GCONFTOOL) --makefile-install-rule $(schema_DATA)
|
|
endif
|
|
|
|
if GCONF_SCHEMAS_INSTALL
|
|
uninstall-local:
|
|
-GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
|
|
$(GCONFTOOL) --makefile-uninstall-rule $(schema_DATA)
|
|
endif
|