diff options
author | Mike Auty <ikelos@gentoo.org> | 2021-02-27 19:06:22 +0000 |
---|---|---|
committer | Mike Auty <ikelos@gentoo.org> | 2021-02-27 19:07:37 +0000 |
commit | cf9c9af46fbc95833c3c2a7bab002ca77f498a4d (patch) | |
tree | 32c877913d5c4fc2f1303f823191d90b519984a1 /app-crypt/xca/files | |
parent | media-plugins/vdr-epgsearch: remove old (diff) | |
download | gentoo-cf9c9af46fbc95833c3c2a7bab002ca77f498a4d.tar.gz gentoo-cf9c9af46fbc95833c3c2a7bab002ca77f498a4d.tar.bz2 gentoo-cf9c9af46fbc95833c3c2a7bab002ca77f498a4d.zip |
app-crypt/xca: Fix documentation issue
Bug: https://bugs.gentoo.org/733000
Signed-off-by: Mike Auty <ikelos@gentoo.org>
Diffstat (limited to 'app-crypt/xca/files')
-rw-r--r-- | app-crypt/xca/files/xca-bug-733000.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app-crypt/xca/files/xca-bug-733000.patch b/app-crypt/xca/files/xca-bug-733000.patch new file mode 100644 index 000000000000..044575475c89 --- /dev/null +++ b/app-crypt/xca/files/xca-bug-733000.patch @@ -0,0 +1,28 @@ +diff --git a/doc/Makefile b/doc/Makefile +index d481c5a..dc5b49a 100644 +--- a/doc/Makefile ++++ b/doc/Makefile +@@ -5,13 +5,9 @@ endif + + DELFILES=xca*.html xca.1.gz changelog.html database_schema.html + +-doc: xca.1.gz xca.html changelog.html database_schema.html ++doc: xca.1 xca.html changelog.html database_schema.html + include $(TOPDIR)/Rules.mak + +-%.1.gz: %.1 +- @$(PRINT) " MAN [$(BASENAME)] $@" +- gzip -9 <$^ >$@ +- + xca.html: xca.sgml + rm -f xca*.html + echo 'The documentation for XCA can be viewed online at: <a href="http://hohnstaedt.de/documentation">http://hohnstaedt.de/documentation</a>.' > $@ +@@ -23,7 +19,7 @@ install: $(doc) + $(ENABLE_DOC)install -m 755 -d $(DESTDIR)$(htmldir) + $(ENABLE_DOC)install -m 644 xca*.html $(DESTDIR)$(htmldir) + install -m 755 -d $(DESTDIR)$(mandir)/man1 +- install -m 644 *.1.gz $(DESTDIR)/$(mandir)/man1 ++ install -m 644 *.1 $(DESTDIR)/$(mandir)/man1 + + app: xca.html + mkdir -p $(APPDIR)/Resources |