]> www.fi.muni.cz Git - evince.git/commitdiff
[windows] Guess texmf.cnf location from mktexpk executable
authorHib Eris <hib@hiberis.nl>
Wed, 27 Jan 2010 07:11:31 +0000 (08:11 +0100)
committerHib Eris <hib@hiberis.nl>
Wed, 27 Jan 2010 16:27:23 +0000 (17:27 +0100)
Fixes bgo#602910.

backend/dvi/Makefile.am
backend/dvi/dvi-document.c
backend/dvi/mdvi-lib/mdvi.h
backend/dvi/mdvi-lib/private.h
backend/dvi/mdvi-lib/setup.c
backend/dvi/texmfcnf.c [new file with mode: 0644]
backend/dvi/texmfcnf.h [new file with mode: 0644]

index 93aad7314493f6223202cf8f008fada258a62503..95b034eb6d3e9203590f08f8c4d78e2f61fa1a92 100644 (file)
@@ -18,6 +18,8 @@ libdvidocument_la_SOURCES =   \
        dvi-document.h          \
        cairo-device.c          \
        cairo-device.h          \
+       texmfcnf.c              \
+       texmfcnf.h              \
        fonts.c                 \
        fonts.h
 
index 5c4ecea5739fc3dbfa55274b7cfa8dd56dd81195..d1411a8e6cc21f95dbdd5ab28e329a4ed19d378b 100644 (file)
@@ -20,6 +20,7 @@
 #include "config.h"
 
 #include "dvi-document.h"
+#include "texmfcnf.h"
 #include "ev-document-thumbnails.h"
 #include "ev-document-misc.h"
 #include "ev-file-exporter.h"
@@ -239,10 +240,14 @@ dvi_document_class_init (DviDocumentClass *klass)
 {
        GObjectClass    *gobject_class = G_OBJECT_CLASS (klass);
        EvDocumentClass *ev_document_class = EV_DOCUMENT_CLASS (klass);
+       gchar *texmfcnf;
 
        gobject_class->finalize = dvi_document_finalize;
 
-       mdvi_init_kpathsea ("evince", MDVI_MFMODE, MDVI_FALLBACK_FONT, MDVI_DPI);
+       texmfcnf = get_texmfcnf();
+       mdvi_init_kpathsea ("evince", MDVI_MFMODE, MDVI_FALLBACK_FONT, MDVI_DPI, texmfcnf);
+       g_free(texmfcnf);
+
        mdvi_register_special ("Color", "color", NULL, dvi_document_do_color_special, 1);
        mdvi_register_fonts ();
 
index 78244a4cddf2ab81123ad30c40775bc408803ab5..e8c58e2f9be0a4a7eb9d1e17a8ec7d552b4c2751 100644 (file)
@@ -490,7 +490,7 @@ extern void flush_font_metrics __PROTO((void));
 
 extern void    mdvi_sort_pages __PROTO((DviContext *, DviPageSort));
 
-extern void mdvi_init_kpathsea __PROTO((const char *, const char *, const char *, int));
+extern void mdvi_init_kpathsea __PROTO((const char *, const char *, const char *, int, const char *));
 
 extern DviContext* mdvi_init_context __PROTO((DviParams *, DviPageSpec *, const char *));
 extern void    mdvi_destroy_context __PROTO((DviContext *));
index 5995f492f065703afe6d67c55494b5d64ca5f2d3..6564c25346766422bba9d7147b853e5aae716e7c 100644 (file)
@@ -39,6 +39,7 @@
 #include <kpathsea/proginit.h>
 #include <kpathsea/progname.h>
 #include <kpathsea/tex-make.h>
+#include <kpathsea/lib.h>
 
 #define ISSP(p)                (*(p) == ' ' || *(p) == '\t')
 #define SKIPSP(p)      while(ISSP(p)) p++
index 1e60a5bdfcaa86ac2702b6ed6e5c1f1903b4ccdd..a75f0282eaa9e026eff880e6e85aa1898c71e73f 100644 (file)
@@ -26,7 +26,8 @@
 #include "private.h"
 
 void   mdvi_init_kpathsea(const char *program, 
-       const char *mfmode, const char *font, int dpi)
+       const char *mfmode, const char *font, int dpi,
+       const char *texmfcnf)
 {
        const char *p;
 
@@ -41,5 +42,7 @@ void  mdvi_init_kpathsea(const char *program,
        kpse_set_program_enabled(kpse_pk_format, 1, kpse_src_compile);
        kpse_set_program_enabled(kpse_tfm_format, 1, kpse_src_compile);
        kpse_set_program_enabled(kpse_ofm_format, 1, kpse_src_compile);
+       if (texmfcnf != NULL)
+               xputenv("TEXMFCNF", texmfcnf);
 }
 
diff --git a/backend/dvi/texmfcnf.c b/backend/dvi/texmfcnf.c
new file mode 100644 (file)
index 0000000..72fbff2
--- /dev/null
@@ -0,0 +1,64 @@
+/*
+ * Copyright (C) 2010, Hib Eris <hib@hiberis.nl>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#include "config.h"
+
+#include "texmfcnf.h"
+
+#include <glib.h>
+#include <stdlib.h>
+#ifdef G_OS_WIN32
+#include <windows.h>
+#endif
+
+gchar *
+get_texmfcnf(void)
+{
+       char *env = getenv("TEXMFCNF");
+       if (env)
+               return g_strdup(env);
+
+#ifdef G_OS_WIN32
+       gchar *texmfcnf = NULL;
+       TCHAR path[_MAX_PATH];
+
+       if (SearchPath(NULL, "mktexpk", ".exe", _MAX_PATH, path, NULL))
+       {
+               gchar *sdir, *sdir_parent, *sdir_grandparent;
+               const gchar *texmfcnf_fmt = "{%s,%s,%s}{,{/share,}/texmf{-local,}/web2c}";
+
+               sdir = g_path_get_dirname(path);
+               sdir_parent = g_path_get_dirname(sdir);
+               sdir_grandparent = g_path_get_dirname(sdir_parent);
+
+               texmfcnf = g_strdup_printf(texmfcnf_fmt,
+                       sdir, sdir_parent, sdir_grandparent);
+
+               g_free(sdir);
+               g_free(sdir_parent);
+               g_free(sdir_grandparent);
+       }
+       return texmfcnf;
+#else
+       return NULL;
+#endif
+}
+
+
+
+
diff --git a/backend/dvi/texmfcnf.h b/backend/dvi/texmfcnf.h
new file mode 100644 (file)
index 0000000..e5c81cb
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 2010, Hib Eris <hib@hiberis.nl>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#ifndef TEXMFCNF_H
+#define TEXMFCNF_H
+
+#include <glib.h>
+
+G_BEGIN_DECLS
+
+gchar *get_texmfcnf(void);
+
+G_END_DECLS
+
+#endif /* TEXMFCNF_H */
+
+
+
+