diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2015-08-05 22:37:25 +0200 |
---|---|---|
committer | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2015-08-05 23:17:09 +0200 |
commit | 43cca375a33db94532e183b312f2fc74705785e6 (patch) | |
tree | d33e0d0a4fa604050be1720bd05dc5f5d7a9a57d /main/mdocml | |
parent | ed8dfe5959129a8895d1565777abbcc2ce4411d2 (diff) | |
download | aports-43cca375a33db94532e183b312f2fc74705785e6.tar.bz2 aports-43cca375a33db94532e183b312f2fc74705785e6.tar.xz |
main/mdocmal: don't rebuild the mandoc.db from scratch every time
mdocmls makewhatis(8) implementation should be able to build the
mandoc.db incrementally. Removing it forces mdocml to regenerate it
completely which can take a lot of time if you have a bunch of man pages
installed on your system and thus slows down package installation.
Furthermore, I also switch the string encoding from ascii to utf-8. In
addition to that I noticed that some files weren't listed in the source
APKBUILD variable.
Seem to work for me but further tests would be appreciated.
Diffstat (limited to 'main/mdocml')
-rw-r--r-- | main/mdocml/APKBUILD | 10 | ||||
-rw-r--r-- | main/mdocml/mdocml.trigger | 4 |
2 files changed, 11 insertions, 3 deletions
diff --git a/main/mdocml/APKBUILD b/main/mdocml/APKBUILD index 739b5ae088..7cdbd72fc4 100644 --- a/main/mdocml/APKBUILD +++ b/main/mdocml/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=mdocml pkgver=1.13.3 -pkgrel=2 +pkgrel=3 pkgdesc="mdoc/man compiler" url="http://mdocml.bsd.lv/" arch="all" @@ -13,7 +13,9 @@ triggers="$pkgname.trigger=/usr/share/man/*" subpackages="$pkgname-doc $pkgname-dev man" source="http://mdocml.bsd.lv/snapshots/mdocml-$pkgver.tar.gz shared-libmandoc.patch + mdocml.post-deinstall default-pager.patch + mdocml.trigger man.conf " @@ -55,13 +57,19 @@ man() { md5sums="7be80e1116a11abe2aabd6b2f04434ef mdocml-1.13.3.tar.gz 8d130a332fbd3268550819ade96c9afd shared-libmandoc.patch +f369b00f82b5cb03477cbea363dc3c65 mdocml.post-deinstall aa3421f2d2da345a7514be51707d6829 default-pager.patch +ecf8c7861089b1491975ce2adbb0648c mdocml.trigger 6e893bef0cf680eec807b230e6619d27 man.conf" sha256sums="23ccab4800d50bf4c327979af5d4aa1a6a2dc490789cb67c4c3ac1bd40b8cad8 mdocml-1.13.3.tar.gz 676dd35caedc759cc83ae1dbf7fde5709d6fe4ed14c652af4cbebc5ccdbdc71b shared-libmandoc.patch +c57b5009009fdb4e8585166b2df404ed41e4caf3cbcbc0bf1d8bf2669637f68c mdocml.post-deinstall f0a393ff3a630cd0e9e412241890b2356153ffb4ef0d419a7979edc4ed5e57e3 default-pager.patch +aed1627d5da8f9eccf900a672c4af49756767a3abcc6abc664ac31152b5c7f43 mdocml.trigger 3381c6ceb99e7db1404fdb44419040c3b441a251d594292e53545b5e4e378e2b man.conf" sha512sums="a3b7304e313b905b3575d79eb7ac861723e0ef3f700199c136abe4d4c698929e99ee0789bfc6e591224fb0006c709afe0e4c1bb578605a767c371ec7dee26024 mdocml-1.13.3.tar.gz bdbe471bcc5d5009ee8a9c4fb2f7903a5114afd8da1d6807c462fefdbe4b508711386b0fe7febb92977f97751c1d4fd486f1e1ecae0b7c1ba4dc28c0a7dda0b6 shared-libmandoc.patch +c677c1b3d3705dfa130d69056a2a4c694802f51d881d0b48d8b280d87a882e0a5b906273840510af439b0c7f08da5d8d99b3f2cba396cf1781633dcb044bf4d9 mdocml.post-deinstall c8a4a11a5aa166670d8f8d4e0dba803068d3f1b6aee483daaf889da661a9281387fcd2f00d2dad7ef5c66e3419df205e2c75bb58fb9b055db284b4ac2f23eb7e default-pager.patch +2635ad618935058a447f7e7674ef90f65f87157b61a75b8cfbba6d6d356948075f32f625bb91abc663bbcfcd012ce524e694b75c79d11149fa6ae259a4fd7cf7 mdocml.trigger 0723c32ab70e5b1c77768ca78d7437b26bed19b90b27876b10cc463359c41332befc0105fc1e23ceae48de5a892f1aa7ac60ef7eb0b6b8f1616726c4300632fe man.conf" diff --git a/main/mdocml/mdocml.trigger b/main/mdocml/mdocml.trigger index 0f64443e69..fc299d1009 100644 --- a/main/mdocml/mdocml.trigger +++ b/main/mdocml/mdocml.trigger @@ -1,4 +1,4 @@ #!/bin/sh -rm -f /usr/share/man/mandoc.db -exec /usr/sbin/makewhatis -a /usr/share/man +exec /usr/sbin/makewhatis \ + -a /usr/share/man -T utf8 |