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
|