This repository was archived by the owner on Jul 17, 2023. It is now read-only.
forked from coolwanglu/fontforge
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move freedesktop stuff from Packaging to a new "desktop" subdirectory…
…. Implement a Makefile for it. Add Esperanto to the .desktop file. --HG-- rename : Packaging/fontforge.desktop => desktop/fontforge.desktop rename : Packaging/fontforge.xml => desktop/fontforge.xml rename : Packaging/icons-old/FFbutton-128.png => desktop/icons-old/FFbutton-128.png rename : Packaging/icons-old/FFbutton-32.png => desktop/icons-old/FFbutton-32.png rename : Packaging/icons-old/FFslug-128.png => desktop/icons-old/FFslug-128.png rename : Packaging/icons-old/FFslug-32.png => desktop/icons-old/FFslug-32.png rename : Packaging/icons-old/FFslug-48.png => desktop/icons-old/FFslug-48.png rename : Packaging/icons-old/ffanvil32.gif => desktop/icons-old/ffanvil32.gif rename : Packaging/icons-old/fontforge.png => desktop/icons-old/fontforge.png rename : Packaging/icons-old/fontforge.svg => desktop/icons-old/fontforge.svg rename : Packaging/icons/16x16/apps/fontforge.png => desktop/icons/16x16/apps/fontforge.png rename : Packaging/icons/22x22/apps/fontforge.png => desktop/icons/22x22/apps/fontforge.png rename : Packaging/icons/24x24/apps/fontforge.png => desktop/icons/24x24/apps/fontforge.png rename : Packaging/icons/32x32/apps/fontforge.png => desktop/icons/32x32/apps/fontforge.png rename : Packaging/icons/48x48/apps/fontforge.png => desktop/icons/48x48/apps/fontforge.png rename : Packaging/icons/scalable/apps/fontforge.svg => desktop/icons/scalable/apps/fontforge.svg rename : Packaging/icons/src/icon-16x16-apps-fontforge.svg => desktop/icons/src/icon-16x16-apps-fontforge.svg rename : Packaging/icons/src/icon-24x24-apps-fontforge.svg => desktop/icons/src/icon-24x24-apps-fontforge.svg rename : Packaging/icons/src/icon-32x32-apps-fontforge.svg => desktop/icons/src/icon-32x32-apps-fontforge.svg
- Loading branch information
Barry Schwartz
committed
Sep 8, 2012
1 parent
efad962
commit 92be1db
Showing
23 changed files
with
85 additions
and
4 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
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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Copyright (C) 2000-2012 by George Williams | ||
# Copyright (C) 2012 by Barry Schwartz | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# | ||
# Redistributions of source code must retain the above copyright notice, this | ||
# list of conditions and the following disclaimer. | ||
# | ||
# Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# | ||
# The name of the author may not be used to endorse or promote products | ||
# derived from this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | ||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | ||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | ||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
PACKAGEROOTDIR = ${datarootdir} | ||
|
||
DESKTOPDIR = ${PACKAGEROOTDIR}/applications | ||
MIMEDIR = ${PACKAGEROOTDIR}/mime | ||
ICONSDIR = ${PACKAGEROOTDIR}/icons | ||
HICOLORDIR = ${ICONSDIR}/hicolor | ||
|
||
desktopdir = ${DESKTOPDIR} | ||
mimedir= ${MIMEDIR} | ||
mimepackagesdir = ${MIMEDIR}/packages | ||
iconsdir = ${ICONSDIR} | ||
hicolordir = ${HICOLORDIR} | ||
|
||
hicolor16x16dir = ${hicolordir}/16x16/apps | ||
hicolor22x22dir = ${hicolordir}/22x22/apps | ||
hicolor24x24dir = ${hicolordir}/24x24/apps | ||
hicolor32x32dir = ${hicolordir}/32x32/apps | ||
hicolor48x48dir = ${hicolordir}/48x48/apps | ||
hicolorscalabledir = ${hicolordir}/scalable/apps | ||
|
||
desktop_DATA = fontforge.desktop | ||
hicolor16x16_DATA = icons/16x16/apps/fontforge.png | ||
hicolor22x22_DATA = icons/22x22/apps/fontforge.png | ||
hicolor24x24_DATA = icons/24x24/apps/fontforge.png | ||
hicolor32x32_DATA = icons/32x32/apps/fontforge.png | ||
hicolor48x48_DATA = icons/48x48/apps/fontforge.png | ||
hicolorscalable_DATA = icons/scalable/apps/fontforge.svg | ||
mimepackages_DATA = fontforge.xml | ||
|
||
update-database: update-mime-database update-desktop-database | ||
|
||
# The following ignores DESTDIR on purpose. Run after install or | ||
# uninstall. | ||
update-mime-database: | ||
$(UPDATE_MIME_DATABASE) ${mimedir} | ||
|
||
# The following ignores DESTDIR on purpose. Run after install or | ||
# uninstall. | ||
update-desktop-database: | ||
$(UPDATE_DESKTOP_DATABASE) ${applicationsdir} | ||
|
||
EXTRA_DIST = icons/src/icon-16x16-apps-fontforge.svg \ | ||
icons/src/icon-24x24-apps-fontforge.svg \ | ||
icons/src/icon-32x32-apps-fontforge.svg |
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
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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