[Debian-tex-commits] SVN tex-common commit + diffs: r2870 - in tex-common/trunk: debian scripts
Norbert Preining
preining at alioth.debian.org
Mon May 21 12:24:57 UTC 2007
Author: preining
Date: 2007-05-21 12:24:57 +0000 (Mon, 21 May 2007)
New Revision: 2870
Modified:
tex-common/trunk/debian/changelog
tex-common/trunk/scripts/dh_installtex
Log:
dh_installtex: rewrite $engine to metafont if $engine = mf|mf-nowin
Modified: tex-common/trunk/debian/changelog
===================================================================
--- tex-common/trunk/debian/changelog 2007-05-21 12:23:25 UTC (rev 2869)
+++ tex-common/trunk/debian/changelog 2007-05-21 12:24:57 UTC (rev 2870)
@@ -13,9 +13,10 @@
* (first) rework of Debian-on-TeX document for TeX Live only [np]
* add a list of old files from teTeX which can be removed
* Do not install unused 01tetex.cnf and its md5sum file [fk]
-
- -- Frank Küster <frank at debian.org> Fri, 18 May 2007 09:31:09 +0200
+ * dh_installtex: rewrite $engine to metafont if $engine = mf|mf-nowin
+ -- Norbert Preining <preining at debian.org> Mon, 21 May 2007 14:24:31 +0200
+
tex-common (1.7) unstable; urgency=low
* Undo the changes of the autoscripts snippets ordering, debhelper has
Modified: tex-common/trunk/scripts/dh_installtex
===================================================================
--- tex-common/trunk/scripts/dh_installtex 2007-05-21 12:23:25 UTC (rev 2869)
+++ tex-common/trunk/scripts/dh_installtex 2007-05-21 12:24:57 UTC (rev 2870)
@@ -564,7 +564,11 @@
installformatlink: do {
foreach my $pair (@fmtpairs) {
my ($format,$engine) = $pair =~ m/^(.*)\t(.*)$/;
- push @postrmfmtdata, "$engine/$format";
+ if ($engine =~ m/^(mf|mf-nowin)$/) {
+ push @postrmfmtdata, "metafont/$format";
+ } else {
+ push @postrmfmtdata, "$engine/$format";
+ }
push @postrmfmtdata, "$format";
push @fmtdata, "$format";
if ($doformatlinks && ($format ne $engine)) {
More information about the Debian-tex-commits
mailing list