2008-07-22 16:21:15 +04:00
|
|
|
#
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# the mozilla.org SeaMonkey project.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2005
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
# Mark Banner <bugzilla@standard8.demon.co.uk>
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
2010-04-01 18:34:59 +04:00
|
|
|
DEPTH = ../../..
|
2008-07-22 16:21:15 +04:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
# Note: mac icons are handled in /suite/app during the final application
|
|
|
|
# packaging
|
|
|
|
ifneq (,$(filter windows os2 gtk gtk2,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
ifneq (,$(filter windows os2,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
ICON_SUFFIX=.ico
|
|
|
|
else
|
|
|
|
ICON_SUFFIX=.png
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
|
|
ICON_DIR=gtk
|
|
|
|
else
|
|
|
|
ICON_DIR=$(MOZ_WIDGET_TOOLKIT)
|
|
|
|
endif
|
|
|
|
|
|
|
|
DESKTOP_ICONS = \
|
|
|
|
abcardWindow \
|
|
|
|
ablistWindow \
|
|
|
|
addressbookWindow \
|
|
|
|
bmPropsWindow \
|
|
|
|
bookmark-window \
|
|
|
|
downloadManager \
|
|
|
|
editorWindow \
|
|
|
|
findBookmarkWindow \
|
|
|
|
findHistoryWindow \
|
|
|
|
history-window \
|
|
|
|
JSConsoleWindow \
|
|
|
|
main-window \
|
|
|
|
messengerWindow \
|
|
|
|
msgcomposeWindow \
|
|
|
|
venkman-window \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifeq (windows,$(MOZ_WIDGET_TOOLKIT))
|
|
|
|
# Windows icons
|
|
|
|
DESKTOP_ICONS += \
|
|
|
|
gif-file \
|
|
|
|
html-file \
|
|
|
|
misc-file \
|
|
|
|
image-file \
|
|
|
|
jpeg-file \
|
|
|
|
script-file \
|
|
|
|
xml-file \
|
|
|
|
xul-file \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ICON_DIR),gtk)
|
|
|
|
libs:: icons/gtk/seamonkey.png
|
2011-09-04 21:34:00 +04:00
|
|
|
$(INSTALL) $(IFLAGS1) $^ $(DIST)/bin/chrome/icons/default
|
2008-07-22 16:21:15 +04:00
|
|
|
|
|
|
|
install:: icons/gtk/seamonkey.png
|
2011-09-04 21:34:00 +04:00
|
|
|
$(INSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)/chrome/icons/default
|
2008-07-22 16:21:15 +04:00
|
|
|
|
|
|
|
GARBAGE += $(DIST)/bin/chrome/icons/default/seamonkey.png
|
|
|
|
|
|
|
|
DESKTOP_ICONS += default
|
|
|
|
DESKTOP_ICONS_SMALL = $(patsubst %,%16,$(DESKTOP_ICONS))
|
|
|
|
DESKTOP_ICONS_LARGE = $(patsubst %,%48,$(DESKTOP_ICONS))
|
|
|
|
endif
|
|
|
|
|
|
|
|
DESKTOP_ICON_FILES = $(addsuffix $(ICON_SUFFIX), $(DESKTOP_ICONS) $(DESKTOP_ICONS_SMALL) $(DESKTOP_ICONS_LARGE))
|
|
|
|
|
|
|
|
libs:: $(addprefix icons/$(ICON_DIR)/,$(DESKTOP_ICON_FILES))
|
2011-09-04 21:34:00 +04:00
|
|
|
$(INSTALL) $(IFLAGS1) $^ $(DIST)/bin/chrome/icons/default
|
2008-07-22 16:21:15 +04:00
|
|
|
|
|
|
|
install:: $(addprefix icons/$(ICON_DIR)/,$(DESKTOP_ICON_FILES))
|
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)/chrome/icons/default
|
|
|
|
|
|
|
|
GARBAGE += $(addprefix $(DIST)/bin/chrome/icons/default/,$(DESKTOP_ICON_FILES))
|
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
2010-04-01 18:34:59 +04:00
|
|
|
|
|
|
|
export::
|
|
|
|
$(NSINSTALL) -D $(DIST)/branding
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
cp $(srcdir)/icons/windows/seamonkey.ico $(DIST)/branding/seamonkey.ico
|
|
|
|
cp $(srcdir)/package/windows/branding.nsi $(DIST)/branding/branding.nsi
|
|
|
|
cp $(srcdir)/package/windows/wizHeader.bmp $(DIST)/branding/wizHeader.bmp
|
|
|
|
cp $(srcdir)/package/windows/wizHeaderRTL.bmp $(DIST)/branding/wizHeaderRTL.bmp
|
|
|
|
cp $(srcdir)/package/windows/wizWatermark.bmp $(DIST)/branding/wizWatermark.bmp
|
|
|
|
endif
|
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
|
|
|
$(NSINSTALL) -D $(DIST)/branding
|
|
|
|
$(NSINSTALL) -D $(DIST)/branding/icons
|
|
|
|
cp $(srcdir)/icons/mac/command.icns $(DIST)/branding/icons/command.icns
|
|
|
|
cp $(srcdir)/icons/mac/component.icns $(DIST)/branding/icons/component.icns
|
|
|
|
cp $(srcdir)/icons/mac/html.icns $(DIST)/branding/icons/html.icns
|
|
|
|
cp $(srcdir)/icons/mac/mozilla.icns $(DIST)/branding/icons/mozilla.icns
|
|
|
|
cp $(srcdir)/icons/mac/plugin.icns $(DIST)/branding/icons/plugin.icns
|
|
|
|
cp $(srcdir)/icons/mac/pref.icns $(DIST)/branding/icons/pref.icns
|
|
|
|
cp $(srcdir)/icons/mac/seamonkey.icns $(DIST)/branding/icons/seamonkey.icns
|
|
|
|
cp $(srcdir)/icons/mac/text.icns $(DIST)/branding/icons/text.icns
|
|
|
|
cp $(srcdir)/package/mac/dsstore $(DIST)/branding/dsstore
|
|
|
|
cp $(srcdir)/package/mac/background.png $(DIST)/branding/background.png
|
|
|
|
cp $(srcdir)/package/mac/disk.icns $(DIST)/branding/disk.icns
|
|
|
|
endif
|
|
|
|
ifeq ($(OS_ARCH),OS2)
|
|
|
|
cp $(srcdir)/icons/os2/seamonkey.ico $(DIST)/branding/seamonkey.ico
|
|
|
|
endif
|