summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2014-12-11 23:17:12 +0100
committerPhilipp Gesang <phg42.2a@gmail.com>2014-12-11 23:17:12 +0100
commit16a45555ad3677155ea097a8153cf7e266879e13 (patch)
treef9acd1e7dbb2aee69147d00202104883748a9ef4 /scripts
parent57aa7e07532a85c34b7588350122830579f8df51 (diff)
downloadluaotfload-16a45555ad3677155ea097a8153cf7e266879e13.tar.gz
[import] include Luatex-Fonts path in tell lookup
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mkimport31
1 files changed, 23 insertions, 8 deletions
diff --git a/scripts/mkimport b/scripts/mkimport
index 43d76fd..c25459b 100644
--- a/scripts/mkimport
+++ b/scripts/mkimport
@@ -40,7 +40,7 @@ local context_root = "/home/phg/context/tex/texmf-context"
local our_prefix = "fontloader"
local fontloader_subdir = "src/fontloader"
-local paths = {
+local origin_paths = {
context = "tex/context/base",
fontloader = "tex/generic/context/luatex",
}
@@ -222,7 +222,7 @@ local hash_file = function (fname)
end
local derive_category_path = function (cat)
- local subpath = paths[cat] or die ("category " .. cat .. " unknown")
+ local subpath = origin_paths[cat] or die ("category " .. cat .. " unknown")
local location = file.join (context_root, subpath)
if not lfs.isdir (location) then
die ("invalid base path defined for category "
@@ -470,15 +470,29 @@ local import = function (arg)
return 0
end --[[ [local import = function (arg)] ]]
+local find_in_path = function (root, subdir, target)
+ local file = file.join (root, subdir, target)
+ if lfs.isfile (file) then
+ return file
+ end
+end
+
local search_paths = function (target)
for i = 1, #searchdirs do
local root = searchdirs[i]
+
for j = 1, #subdirs do
- local dir = file.join (searchdirs[i], subdirs[j])
- local file = file.join (dir, target)
- if lfs.isfile (file) then return file end
+ local found = find_in_path (root, subdirs[j], target)
+ if found then return found end
end
+
end
+
+ local found = find_in_path (context_root, origin_paths.context, target)
+ if found then return found end
+
+ local found = find_in_path (context_root, origin_paths.fontloader, target)
+ if found then return found end
return false
end
@@ -494,8 +508,9 @@ local search_defs = function (target)
if found then return found end
end
- local dfull = dname .. derive_suffix (def.kind)
- if target == dfull then
+ local dkind = def.kind
+ local dfull = derive_fullname (cat, dname, dkind)
+ if derive_fullname (cat, target, dkind) == dfull then
local found = search_paths (dfull)
if found then return found end
end
@@ -503,7 +518,7 @@ local search_defs = function (target)
local dours = def.ours
if dours then
- local _, ourname = derive_ourname (dours, kind)
+ local _, ourname = derive_ourname (dours, dkind)
if target == dours then
local found = search_paths (ourname)
if found then return found end