From 24488f22ec1f4f3df63b34f7dad15665cc8518b1 Mon Sep 17 00:00:00 2001 From: Bart Hakvoort Date: Mon, 20 Sep 2004 21:38:21 +0000 Subject: [PATCH] added .desktop file --- .cvsignore | 1 + ChangeLog | 1 + Makefile.am | 12 ++++++++++++ 3 files changed, 14 insertions(+) diff --git a/.cvsignore b/.cvsignore index c608385d..0e308407 100644 --- a/.cvsignore +++ b/.cvsignore @@ -30,3 +30,4 @@ COPYING INSTALL mkinstalldirs intltool-* +gparted.desktop diff --git a/ChangeLog b/ChangeLog index dfcb0886..5356bbbe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,7 @@ - maximum amount of primary partition isn't static anymore, it gets asked from the partition table. - lots of internal code cleanups. this improved performance and stability. - doubleclick now invokes infodialog +- added .desktop file so gparted is accessible from Gnome/Kde menus (thanks to Stephane LOEUILLET, 1023176) **fixes** - sometimes creating new fat filesystems in very small spaces resulted in errors. fixed. diff --git a/Makefile.am b/Makefile.am index c055a364..69a8279c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1 +1,13 @@ SUBDIRS = include src po + +@INTLTOOL_DESKTOP_RULE@ + +DESKTOP_IN_FILES = gparted.desktop.in +DESKTOP_FILES =$(DESKTOP_IN_FILES:.desktop.in=.desktop) + +desktopdir = $(datadir)/applications +desktop_DATA = $(DESKTOP_FILES) + +EXTRA_DIST = \ + $(DESKTOP_IN_FILES) \ + $(DESKTOP_FILES)