Add qt-4.8.5 recipe

* Untested as secondary on gcc2
* Could use some subpackages like _debug/_demos/etc...
  (demos and examples are disabled at the moment)
* Might need some fine tuning of install directories but they're
  generally ok.  This is things like possibly moving qtconfig
  into the preferences directory and putting some of the bin
  commands that are currently in the _devel package into an apps
  dir.
* Several of the libs and some of the data files from the main
  package could probably be put in the _devel package.
This commit is contained in:
Chris Roberts
2013-11-14 20:23:31 -07:00
parent a9cd5138b2
commit 5ac3c55044
5 changed files with 235 additions and 14313 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,30 @@
From 3c8c94f39ddd083200f92005b67b9a88844b3772 Mon Sep 17 00:00:00 2001
From: Chris Roberts <cpr420@gmail.com>
Date: Thu, 14 Nov 2013 15:34:00 -0700
Subject: [PATCH] Adjust font paths for updated Haiku fs layout
---
src/gui/text/qfontdatabase_haiku.cpp | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/gui/text/qfontdatabase_haiku.cpp b/src/gui/text/qfontdatabase_haiku.cpp
index c1b9526..f7b6dd7 100644
--- a/src/gui/text/qfontdatabase_haiku.cpp
+++ b/src/gui/text/qfontdatabase_haiku.cpp
@@ -50,9 +50,10 @@ static void initializeDb()
FT_Library lib = qt_getFreetype();
directory_which FontDirs[] = {
- B_BEOS_FONTS_DIRECTORY,
- B_COMMON_FONTS_DIRECTORY,
- B_USER_FONTS_DIRECTORY
+ B_SYSTEM_FONTS_DIRECTORY,
+ B_SYSTEM_NONPACKAGED_FONTS_DIRECTORY,
+ B_USER_FONTS_DIRECTORY,
+ B_USER_NONPACKAGED_FONTS_DIRECTORY
};
--
1.8.3.4