diff options
| author | Maxime Devos <maximedevos@telenet.be> | 2021-07-15 18:56:47 +0200 |
|---|---|---|
| committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-07-25 17:52:36 +0200 |
| commit | a682fea916b9f3ff101a76273aa754e11d53244d (patch) | |
| tree | 21643a3ecab782ddaafbe21b65efabcfa6347262 /gnu/packages/ghostscript.scm | |
| parent | 52cc6394033546406b81c146d38104c1d80dc68f (diff) | |
gnu: gs-font: Rename to 'font-ghostscript'.
According to (guix)Fonts, font package names must be prefixed
with 'font-'. Adjust 'gs-fonts' to follow this convention.
* gnu/packages/fontutils.scm
(gs-fonts)[name]: Set to "font-ghostscript".
(gs-fonts): Rename variable to 'font-ghostscript'.
(gs-fonts): Add deprecated package.
* gnu/packages/ghostscript.scm
(ghostscript)[arguments]<#:configure-flags>: Replace 'gs-fonts'
with 'font-ghostscript'.
(ghostscript)[inputs]: Likewise.
* gnu/packages/fontutils.scm (fontconfig)[inputs]: Likewise.
* gnu/packages/gtk.scm
(pango-1.42)[arguments]{disable-layout-test}: Likewise.
* gnu/packages/imagemagick.scm
(graphicsmagick)[arguments]{configure-flags}: Likewise.
(graphicsmagick)[inputs]: Likewise.
* gnu/packages/mp3.scm (ripperx)[propagated-inputs]: Likewise.
* doc/guix.texi (X11 Fonts): Likewise.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu/packages/ghostscript.scm')
| -rw-r--r-- | gnu/packages/ghostscript.scm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm index 378ff6b37da..35e637648c1 100644 --- a/gnu/packages/ghostscript.scm +++ b/gnu/packages/ghostscript.scm | |||
| @@ -204,7 +204,7 @@ printing, and psresize, for adjusting page sizes.") | |||
| 204 | "--enable-dynamic" | 204 | "--enable-dynamic" |
| 205 | "--disable-compile-inits" | 205 | "--disable-compile-inits" |
| 206 | (string-append "--with-fontpath=" | 206 | (string-append "--with-fontpath=" |
| 207 | (assoc-ref %build-inputs "gs-fonts") | 207 | (assoc-ref %build-inputs "font-ghostscript") |
| 208 | "/share/fonts/type1/ghostscript") | 208 | "/share/fonts/type1/ghostscript") |
| 209 | 209 | ||
| 210 | ,@(if (%current-target-system) | 210 | ,@(if (%current-target-system) |
| @@ -278,7 +278,7 @@ printing, and psresize, for adjusting page sizes.") | |||
| 278 | (inputs | 278 | (inputs |
| 279 | `(("fontconfig" ,fontconfig) | 279 | `(("fontconfig" ,fontconfig) |
| 280 | ("freetype" ,freetype) | 280 | ("freetype" ,freetype) |
| 281 | ("gs-fonts" ,gs-fonts) | 281 | ("font-ghostscript" ,font-ghostscript) |
| 282 | ("jbig2dec" ,jbig2dec) | 282 | ("jbig2dec" ,jbig2dec) |
| 283 | ("libjpeg" ,libjpeg-turbo) | 283 | ("libjpeg" ,libjpeg-turbo) |
| 284 | ("libpaper" ,libpaper) | 284 | ("libpaper" ,libpaper) |
| @@ -343,9 +343,9 @@ architecture.") | |||
| 343 | (license license:expat) | 343 | (license license:expat) |
| 344 | (home-page (package-home-page ghostscript)))) | 344 | (home-page (package-home-page ghostscript)))) |
| 345 | 345 | ||
| 346 | (define-public gs-fonts | 346 | (define-public font-ghostscript |
| 347 | (package | 347 | (package |
| 348 | (name "gs-fonts") | 348 | (name "font-ghostscript") |
| 349 | (version "8.11") | 349 | (version "8.11") |
| 350 | (source (origin | 350 | (source (origin |
| 351 | (method url-fetch) | 351 | (method url-fetch) |
| @@ -384,6 +384,9 @@ Ghostscript. It currently includes the 35 standard PostScript fonts.") | |||
| 384 | (license license:gpl2) | 384 | (license license:gpl2) |
| 385 | (home-page "https://sourceforge.net/projects/gs-fonts/"))) | 385 | (home-page "https://sourceforge.net/projects/gs-fonts/"))) |
| 386 | 386 | ||
| 387 | (define-public gs-fonts | ||
| 388 | (deprecated-package "gs-fonts" font-ghostscript)) | ||
| 389 | |||
| 387 | (define-public libspectre | 390 | (define-public libspectre |
| 388 | (package | 391 | (package |
| 389 | (name "libspectre") | 392 | (name "libspectre") |
