summaryrefslogtreecommitdiff
path: root/doc/guide
diff options
context:
space:
mode:
authorminskim <minskim@pkgsrc.org>2005-11-13 03:27:20 +0000
committerminskim <minskim@pkgsrc.org>2005-11-13 03:27:20 +0000
commited7f97e875d18461ea6fd147ec9f2b9f342b280e (patch)
treebf50f9019da55a59f5e9b976989dae9eeebb56f8 /doc/guide
parentf8a0fd3f9abe34f9a6eb894f8e215f301df22d6b (diff)
downloadpkgsrc-ed7f97e875d18461ea6fd147ec9f2b9f342b280e.tar.gz
Add a section on how to use print/teTeX/module.mk. Thanks to hubertf@
and tonio@ for review.
Diffstat (limited to 'doc/guide')
-rw-r--r--doc/guide/files/fixes.xml35
1 files changed, 34 insertions, 1 deletions
diff --git a/doc/guide/files/fixes.xml b/doc/guide/files/fixes.xml
index 261ce7d68c7..13db0d5126d 100644
--- a/doc/guide/files/fixes.xml
+++ b/doc/guide/files/fixes.xml
@@ -1,4 +1,4 @@
-<!-- $NetBSD: fixes.xml,v 1.37 2005/11/08 16:39:47 reed Exp $ -->
+<!-- $NetBSD: fixes.xml,v 1.38 2005/11/13 03:27:20 minskim Exp $ -->
<chapter id="fixes"> <?dbhtml filename="fixes.html"?>
<title>Making your package work</title>
@@ -1493,6 +1493,39 @@
deinstalled.</para>
</sect2>
+ <sect2 id="tex-packages">
+ <title>Packages installing TeX modules</title>
+
+ <para>If a package installs TeX packages into the texmf tree,
+ the <filename>ls-R</filename> database of the tree needs to be
+ updated.</para>
+ <note><para>Except the main TeX packages such as teTeX-texmf,
+ packages should install files
+ into <varname>PKG_LOCALTEXMFPREFIX</varname>,
+ not <varname>PKG_TEXMFPREFIX</varname>.</para></note>
+
+ <orderedlist>
+ <listitem><para>Include
+ <filename>../../print/teTeX/module.mk</filename> instead
+ of <filename>../../mk/tex.buildlink3.mk</filename>. This
+ takes care of rebuilding the <filename>ls-R</filename>
+ database at installation and deinstallation time.</para>
+ </listitem>
+
+ <listitem><para>If your package installs files into a texmf
+ tree other than the one
+ at <varname>PKG_LOCALTEXMFPREFIX</varname>,
+ set <varname>TEXMFDIRS</varname> to the list of all texmf
+ trees that need database update.</para>
+ </listitem>
+
+ <listitem><para>Make sure that none of <filename>ls-R</filename>
+ databases are included in <filename>PLIST</filename>, as
+ they will be removed only by the teTeX-bin package.</para>
+ </listitem>
+ </orderedlist>
+ </sect2>
+
</sect1>