2023-07-10 13:35:50 +00:00
|
|
|
From c59b56642d10997a35553ae08e6b341b565794f7 Mon Sep 17 00:00:00 2001
|
|
|
|
From: groff owner <groff-owner@fedoraproject.org>
|
|
|
|
Date: Mon, 10 Jul 2023 11:51:30 +0000
|
|
|
|
Subject: [PATCH] load site-font and site-tmac from /etc/groff
|
2011-10-12 14:27:53 +00:00
|
|
|
|
2013-01-01 16:04:33 +00:00
|
|
|
Move site-font and site-tmac configuration from /usr/share/groff to
|
|
|
|
/etc/groff. That allows permanent custom changes. (Symlinking brought
|
|
|
|
a lot of problems with RPM. This is safer and cleaner.)
|
2011-10-12 14:27:53 +00:00
|
|
|
|
2013-01-01 16:04:33 +00:00
|
|
|
---
|
|
|
|
Makefile.in | 6 +++---
|
|
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/Makefile.in b/Makefile.in
|
2023-07-10 13:35:50 +00:00
|
|
|
index a47df30..e9618d1 100644
|
2011-10-12 14:27:53 +00:00
|
|
|
--- a/Makefile.in
|
|
|
|
+++ b/Makefile.in
|
2023-07-10 13:35:50 +00:00
|
|
|
@@ -3857,7 +3857,7 @@ fontdir = $(datasubdir)/font
|
2020-03-26 10:53:26 +00:00
|
|
|
oldfontdir = $(datasubdir)/oldfont
|
2011-10-12 14:27:53 +00:00
|
|
|
|
|
|
|
# `localfontdir' says where local fonts will be installed (as dev*/*).
|
2020-03-26 10:53:26 +00:00
|
|
|
-localfontdir = $(dataprogramdir)/site-font
|
|
|
|
+localfontdir = @sysconfdir@/groff/site-font
|
2011-10-12 14:27:53 +00:00
|
|
|
|
2023-07-10 13:35:50 +00:00
|
|
|
# `legacyfontdir' is for compatibility with AT&T/DWB troff.
|
2020-03-26 10:53:26 +00:00
|
|
|
legacyfontdir = /usr/lib/font
|
2023-07-10 13:35:50 +00:00
|
|
|
@@ -3869,10 +3869,10 @@ fontpath = $(localfontdir)$(RT_SEP)$(fontdir)$(RT_SEP)$(legacyfontdir)
|
2020-03-26 10:53:26 +00:00
|
|
|
tmacdir = $(datasubdir)/tmac
|
2011-10-12 14:27:53 +00:00
|
|
|
|
|
|
|
# `systemtmacdir' says where to install platform-dependent macros.
|
2020-03-26 10:53:26 +00:00
|
|
|
-systemtmacdir = $(libprogramdir)/site-tmac
|
|
|
|
+systemtmacdir = @sysconfdir@/groff/site-tmac
|
2011-10-12 14:27:53 +00:00
|
|
|
|
|
|
|
# `localtmacdir' says where local files will be installed.
|
2020-03-26 10:53:26 +00:00
|
|
|
-localtmacdir = $(dataprogramdir)/site-tmac
|
|
|
|
+localtmacdir = @sysconfdir@/groff/site-tmac
|
2011-10-12 14:27:53 +00:00
|
|
|
|
2023-07-10 13:35:50 +00:00
|
|
|
# appdefdir
|
|
|
|
# `appdefdir' says where to install the application defaults file for
|
2013-01-01 16:04:33 +00:00
|
|
|
--
|
2023-07-10 13:35:50 +00:00
|
|
|
2.41.0
|
2013-01-01 16:04:33 +00:00
|
|
|
|