Takashi Iwai
e013354e58
- don't install to /usr/share/groff/current but to the symlinked target directory OBS-URL: https://build.opensuse.org/request/show/213100 OBS-URL: https://build.opensuse.org/package/show/M17N:fonts/ghostscript-fonts-grops?expand=0&rev=3
77 lines
2.4 KiB
RPMSpec
77 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package ghostscript-fonts-grops
|
|
#
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: ghostscript-fonts-grops
|
|
Version: 1.22.2
|
|
Release: 0
|
|
Url: http://www.gnu.org/software/groff/groff.html
|
|
Requires: groff = %{version}
|
|
Summary: Ghostscript fonts imported to groff for use with grops
|
|
License: GPL-2.0
|
|
Group: Productivity/Publishing/Troff
|
|
Source: gsalias.txt
|
|
BuildArch: noarch
|
|
BuildRequires: fontforge
|
|
BuildRequires: ghostscript
|
|
BuildRequires: groff-full
|
|
|
|
%description
|
|
A version of PostScript® driver for Groff to support characters outside ISO Latin 1 character set.
|
|
|
|
%prep
|
|
|
|
%build
|
|
%define gs_fonts %{_datadir}/ghostscript/fonts
|
|
%define import_font() ln -s -T "%{gs_fonts}/%1.afm" "%2.afm" && pfbtopfa "%{gs_fonts}/%1.pfb" "devps/%1.pfa"
|
|
|
|
cp -t. '%{_datadir}'/ghostscript/*/doc/COPYING
|
|
mkdir devps
|
|
while read fn fa
|
|
# Grops font generator expects conventional font file names;
|
|
# the substitutes provided by ghostscript must be linked accordingly.
|
|
# The link is needed only at build time.
|
|
# Ghostscript substitutes stripped fonts, full fonts must be embedded in the printout.
|
|
# Groff only knows how to embed PFA fonts.
|
|
do %{import_font $fn $fa}
|
|
done < '%{S:0}'
|
|
cd devps
|
|
ln -s -t. '%{_datadir}/groff/current/font/devps/generate'
|
|
make -fgenerate/Makefile afmdir=..
|
|
# Register fonts to be embedded
|
|
cd ..
|
|
for f in *.afm
|
|
do pf="$(readlink "${f}")"
|
|
pf="${pf##*/}"
|
|
pf="${pf:0:-4}.pfa"
|
|
read<"devps/${pf}" decl fn ver
|
|
echo "${fn}" "${pf}"
|
|
done >>devps/download
|
|
|
|
%install
|
|
groffver=$(readlink %{_datadir}/groff/current)
|
|
target="%{buildroot}%{_datadir}/groff/$groffver/font/gs"
|
|
install -d "${target}"
|
|
mv "-t${target}" devps
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc COPYING
|
|
%{_datadir}/*
|
|
|
|
%changelog
|