File: 050_disable-tgif.patch

package info (click to toggle)
latex-mk 2.1-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,004 kB
  • sloc: sh: 4,252; makefile: 167
file content (28 lines) | stat: -rw-r--r-- 1,026 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Description: Disables build dependency on tgif
 tgif was removed from testing for various reasons.
 First, its dependencies are not in testing (see https://bugs.debian.org/699301)
 and then its own status is ambiguous (see https://bugs.debian.org/668249).
 This patch disables tgif-related functionality by showing error
 message if the user wants to use it.
 .
 latex-mk (2.1-1.3) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Disable support and dependency on tgif (Closes: #768690)
Author: Tomasz Buchert <tomasz.buchert@inria.fr>
Bug-Debian: https://bugs.debian.org/768690

--- a/latex.mk.in.in
+++ b/latex.mk.in.in
@@ -432,9 +432,11 @@
 # pull in tgif.[g]mk if needed
 
 BMK:.if defined(_USE_TGIF_MK)
+BMK:.error Support for tgif files is not available, see https://bugs.debian.org/768690
 BMK:.include "${LATEX_MK_DIR}/tgif.mk"
 BMK:.endif
 GMK:ifdef _USE_TGIF_MK
+GMK:$(error Support for tgif files is not available, see https://bugs.debian.org/768690)
 GMK:include ${LATEX_MK_DIR}/tgif.gmk
 GMK:endif