diff options
author | joey <joey> | 2002-01-27 00:49:02 +0000 |
---|---|---|
committer | joey <joey> | 2002-01-27 00:49:02 +0000 |
commit | d99c84bf7e7da25e096b3ce638627c3540a53a34 (patch) | |
tree | dcd99f780b04f892fe1a6432d1e6a8ba700f92ea | |
parent | 4f577ba14b2e6e8571246717a1eec408c9b618ae (diff) |
r504: * dh_installman: more documentation about the .TH line. Closes: #129205
* dh_installxfonts:
- Packages that use this should depend on xutils. See man page.
- However, if you really want to, you can skip the dep, and the
postinst will avoid running program that arn't available. Closes: #131053
- Use update-fonts-dir instead of handling encodings ourselves. Yay!
- Pass only the last component of the directory name to
update-fonts-*, since that's what they perfer now.
- Other changes, chould fully comply with Debian X font policy now.
-rwxr-xr-x | dh_installxfonts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dh_installxfonts b/dh_installxfonts index 3611a8c..f8d9d46 100755 --- a/dh_installxfonts +++ b/dh_installxfonts @@ -68,6 +68,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) { autoscript($package, "postinst", "postinst-xfonts", "s:#CMDS#:".join("\n", @cmds).":;"); + autoscript($package, "postrm", "postrm-xfonts", + "s:#CMDS#:".join("\n", @cmds).":;"); } } |