aboutsummaryrefslogtreecommitdiff
path: root/backends/platform
diff options
context:
space:
mode:
authorBastien Bouclet2019-04-27 12:22:35 +0200
committerBastien Bouclet2019-05-05 08:52:12 +0200
commit1d0d842e2aceeb69ab08b4e65e01b258f57b116f (patch)
tree57abd795759ae29c3f08b620ff23c5486b4dbcd1 /backends/platform
parenta5d93d933ab65d5a7efcc88926ce116618f06fcd (diff)
downloadscummvm-rg350-1d0d842e2aceeb69ab08b4e65e01b258f57b116f.tar.gz
scummvm-rg350-1d0d842e2aceeb69ab08b4e65e01b258f57b116f.tar.bz2
scummvm-rg350-1d0d842e2aceeb69ab08b4e65e01b258f57b116f.zip
BUILD: Add the licence file for the Source Code Pro font
Diffstat (limited to 'backends/platform')
-rwxr-xr-xbackends/platform/maemo/debian/rules2
-rw-r--r--backends/platform/sdl/macosx/appmenu_osx.mm6
-rw-r--r--backends/platform/sdl/win32/win32.mk1
3 files changed, 8 insertions, 1 deletions
diff --git a/backends/platform/maemo/debian/rules b/backends/platform/maemo/debian/rules
index f40b13f862..2a763c9c42 100755
--- a/backends/platform/maemo/debian/rules
+++ b/backends/platform/maemo/debian/rules
@@ -64,7 +64,7 @@ install: build
install -m0644 dists/engine-data/wintermute.zip debian/scummvm/opt/scummvm/share
install -m0644 -d debian/scummvm/usr/share/doc/scummvm
- install -m0644 AUTHORS COPYING COPYING.BSD COPYING.FREEFONT COPYING.LGPL COPYRIGHT NEWS README debian/scummvm/usr/share/doc/scummvm
+ install -m0644 AUTHORS COPYING COPYING.BSD COPYING.FREEFONT COPYING.LGPL COPYING.OFL COPYRIGHT NEWS README debian/scummvm/usr/share/doc/scummvm
binary: binary-arch
binary-arch: build install
diff --git a/backends/platform/sdl/macosx/appmenu_osx.mm b/backends/platform/sdl/macosx/appmenu_osx.mm
index 1d5ab12792..38ce8c49a2 100644
--- a/backends/platform/sdl/macosx/appmenu_osx.mm
+++ b/backends/platform/sdl/macosx/appmenu_osx.mm
@@ -87,6 +87,7 @@ static void openFromBundle(NSString *file) {
- (void) openLicenseGPL;
- (void) openLicenseLGPL;
- (void) openLicenseFreefont;
+- (void) openLicenseOFL;
- (void) openLicenseBSD;
- (void) openNews;
- (void) openUserManual;
@@ -110,6 +111,10 @@ static void openFromBundle(NSString *file) {
openFromBundle(@"COPYING-FREEFONT");
}
+- (void)openLicenseOFL {
+ openFromBundle(@"COPYING-OFL");
+}
+
- (void)openLicenseBSD {
openFromBundle(@"COPYING-BSD");
}
@@ -216,6 +221,7 @@ void replaceApplicationMenuItems() {
addMenuItem(_("GPL License"), stringEncoding, delegate, @selector(openLicenseGPL), @"", helpMenu);
addMenuItem(_("LGPL License"), stringEncoding, delegate, @selector(openLicenseLGPL), @"", helpMenu);
addMenuItem(_("Freefont License"), stringEncoding, delegate, @selector(openLicenseFreefont), @"", helpMenu);
+ addMenuItem(_("OFL License"), stringEncoding, delegate, @selector(openLicenseOFL), @"", helpMenu);
addMenuItem(_("BSD License"), stringEncoding, delegate, @selector(openLicenseBSD), @"", helpMenu);
diff --git a/backends/platform/sdl/win32/win32.mk b/backends/platform/sdl/win32/win32.mk
index 227878eaf0..32f60e10f9 100644
--- a/backends/platform/sdl/win32/win32.mk
+++ b/backends/platform/sdl/win32/win32.mk
@@ -23,6 +23,7 @@ win32dist: all
cp $(srcdir)/COPYING.BSD $(WIN32PATH)/COPYING.BSD.txt
cp $(srcdir)/COPYING.LGPL $(WIN32PATH)/COPYING.LGPL.txt
cp $(srcdir)/COPYING.FREEFONT $(WIN32PATH)/COPYING.FREEFONT.txt
+ cp $(srcdir)/COPYING.OFL $(WIN32PATH)/COPYING.OFL.txt
cp $(srcdir)/COPYRIGHT $(WIN32PATH)/COPYRIGHT.txt
cp $(srcdir)/doc/cz/PrectiMe $(WIN32PATH)/doc/cz/PrectiMe.txt
cp $(srcdir)/doc/de/NEUES $(WIN32PATH)/doc/de/NEUES.txt