Blame SOURCES/0002-load-site-font-and-site-tmac-from-etc-groff.patch

910785
From c6d8bb3e0ebc03274564d7b2c768e9932cc5f79d Mon Sep 17 00:00:00 2001
910785
From: Jan Vcelak <jvcelak@redhat.com>
910785
Date: Tue, 1 Jan 2013 15:33:45 +0100
910785
Subject: [PATCH] load site-font and site-tmac from /etc/groff
910785
910785
Move site-font and site-tmac configuration from /usr/share/groff to
910785
/etc/groff. That allows permanent custom changes. (Symlinking brought
910785
a lot of problems with RPM. This is safer and cleaner.)
910785
910785
Signed-off-by: Jan Vcelak <jvcelak@redhat.com>
910785
---
910785
 Makefile.in | 6 +++---
910785
 1 file changed, 3 insertions(+), 3 deletions(-)
910785
910785
diff --git a/Makefile.in b/Makefile.in
910785
index 7534e56..d97d1b9 100644
910785
--- a/Makefile.in
910785
+++ b/Makefile.in
910785
@@ -167,7 +167,7 @@ fontdir=$(datasubdir)/font
910785
 oldfontdir=$(datasubdir)/oldfont
910785
 
910785
 # `localfontdir' says where local fonts will be installed (as dev*/*).
910785
-localfontdir=$(dataprogramdir)/site-font
910785
+localfontdir=@sysconfdir@/groff/site-font
910785
 
910785
 # `legacyfontdir' is for compatibility with non-GNU troff.
910785
 legacyfontdir=/usr/lib/font
910785
@@ -179,10 +179,10 @@ fontpath=$(localfontdir)$(RT_SEP)$(fontdir)$(RT_SEP)$(legacyfontdir)
910785
 tmacdir=$(datasubdir)/tmac
910785
 
910785
 # `systemtmacdir' says where to install platform-dependent macros.
910785
-systemtmacdir=$(libprogramdir)/site-tmac
910785
+systemtmacdir=@sysconfdir@/groff/site-tmac
910785
 
910785
 # `localtmacdir' says where local files will be installed.
910785
-localtmacdir=$(dataprogramdir)/site-tmac
910785
+localtmacdir=@sysconfdir@/groff/site-tmac
910785
 
910785
 # `appresdir' says where to install the application resource file for
910785
 # gxditview.
910785
-- 
910785
1.8.0.2
910785