forked from GNOME/gimp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Redid the framework that deals with installing desktop files. Fixes bug
2005-06-16 Sven Neumann <[email protected]> Redid the framework that deals with installing desktop files. Fixes bug #307705: * data/misc/*: removed. * desktop/*: readded the desktop files in a new directory. * Makefile.am * configure.in * data/Makefile.am: changed accordingly.
- Loading branch information
Sven Neumann
authored and
Sven Neumann
committed
Jun 16, 2005
1 parent
945ea31
commit 925a163
Showing
13 changed files
with
756 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
2005-06-16 Sven Neumann <[email protected]> | ||
|
||
Redid the framework that deals with installing desktop files. | ||
Fixes bug #307705: | ||
|
||
* data/misc/*: removed. | ||
|
||
* desktop/*: readded the desktop files in a new directory. | ||
|
||
* Makefile.am | ||
* configure.in | ||
* data/Makefile.am: changed accordingly. | ||
|
||
2005-06-16 Michael Natterer <[email protected]> | ||
|
||
* tools/pdb/pdbgen/edit.pdb: revert accidential commit. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ SUBDIRS = \ | |
po-plug-ins \ | ||
po-script-fu \ | ||
data \ | ||
desktop \ | ||
menus \ | ||
libgimpbase \ | ||
libgimpcolor \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ SUBDIRS = \ | |
gradients \ | ||
images \ | ||
interpreters \ | ||
misc \ | ||
palettes \ | ||
patterns \ | ||
tips | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Makefile.in | ||
Makefile | ||
gimp.desktop | ||
gimp.applications | ||
gimp.desktop.in | ||
gimp.desktop.in.in.h | ||
gimp.desktop | ||
gimp.keys | ||
gimp.applications | ||
.thumbnails |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
## Makefile.am for gimp/desktop | ||
|
||
desktop_in_files = gimp.desktop.in.in | ||
desktop_files = $(desktop_in_files:.desktop.in.in=.desktop) | ||
|
||
|
||
applicationsdir = @DESKTOP_DATADIR@/applications | ||
|
||
applications_DATA = $(desktop_files) | ||
|
||
|
||
icondir = @DESKTOP_DATADIR@/icons/hicolor/48x48/apps | ||
|
||
icon_DATA = gimp.png | ||
|
||
|
||
mimeinfodir = @DESKTOP_DATADIR@/mime-info | ||
|
||
mimeinfo_DATA = gimp.keys | ||
|
||
|
||
registrydir = @DESKTOP_DATADIR@/application-registry | ||
|
||
registry_DATA = gimp.applications | ||
|
||
|
||
EXTRA_DIST = \ | ||
$(desktop_in_files) \ | ||
$(icon_DATA) \ | ||
$(mimeinfo_DATA) \ | ||
$(registry_DATA) | ||
|
||
|
||
DISTCLEANFILES = $(desktop_files) | ||
|
||
|
||
gimp.desktop: gimp.desktop.in $(wildcard $(top_srcdir)/po/*.po) | ||
$(INTLTOOL_MERGE) $(top_srcdir)/po $< $(@) -d -u -c $(top_builddir)/po/.intltool-merge-cachemake | ||
|
||
validate: gimp.desktop | ||
( dfvalidate=`which desktop-file-validate`; \ | ||
if test x$$dfvalidate != x && test -x $$dfvalidate; then \ | ||
$$dfvalidate $< || ( echo "* $< INVALID *"; exit 1 ) \ | ||
else \ | ||
echo "Can't find desktop-file-validate to validate $<; proceed with fingers crossed..."; \ | ||
fi ) | ||
|
||
dist-hook: validate |
Oops, something went wrong.