blob: 2ca840577655bb0b1167a5f1d57159b14c16c005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=mdocml
_pkgname=mandoc
pkgver=1.14.5
pkgrel=2
pkgdesc="mdoc/man compiler"
url="http://mdocml.bsd.lv/"
arch="all"
license="ISC and BSD-2-Clause and BSD-3-Clause"
makedepends="zlib-dev"
checkdepends="perl"
install="$pkgname.post-deinstall"
triggers="$pkgname-apropos.trigger=/usr/share/man/*"
subpackages="$pkgname-doc $pkgname-dev man::noarch $pkgname-apropos $pkgname-soelim"
source="http://mdocml.bsd.lv/snapshots/$_pkgname-$pkgver.tar.gz
shared-libmandoc.patch
outdated-warn-disable.patch
fix-tbl-null-pointer.patch
mandoc_configure.patch
"
builddir="$srcdir/$_pkgname-$pkgver"
prepare() {
default_prepare
cd "$builddir"
cat >configure.local<<-__EOF__
PREFIX=/usr
MANDIR=/usr/share/man
LIBDIR=/usr/lib
CFLAGS="$CFLAGS"
UTF8_LOCALE="en_US.UTF-8"
MANPATH_DEFAULT="/usr/share/man:/usr/local/man"
LN="ln -sf"
__EOF__
}
build() {
cd "$builddir"
MANPATH_BASE="/usr/share/man" ./configure
make
}
check() {
cd "$builddir"
LD_LIBRARY_PATH="$builddir" make regress
}
package() {
cd "$builddir"
make -j1 DESTDIR="$pkgdir" base-install lib-install
}
man() {
pkgdesc="dummy package for upgrade compatibility. this can safely be removed"
depends="mdocml"
mkdir -p "$subpkgdir"
}
apropos() {
pkgdesc="makewhatis/whatis and apropos tools and index"
mkdir -p "$subpkgdir"/usr/sbin "$subpkgdir"/usr/bin
mv "$pkgdir"/usr/bin/apropos \
"$pkgdir"/usr/bin/whatis \
"$subpkgdir"/usr/bin/
mv "$pkgdir"/usr/sbin/makewhatis \
"$subpkgdir"/usr/sbin/
}
soelim() {
pkgdesc="so elimination tool"
depends=""
mkdir -p "$subpkgdir"/usr/bin
mv "$pkgdir"/usr/bin/soelim \
"$subpkgdir"/usr/bin/
}
sha512sums="848f290847f3095757f25647e6d73eb7044018b145bf6f9dc8b5db164b1421911efdc5b3b9022ec3a2c5af9687a84d5acedee810f2bd2f7caaa9242dadb2cc52 mandoc-1.14.5.tar.gz
b1bd2c197584948cc8bab2310e759b8942b9f9479254ffb5a8223cfa6ba03c9e1a4d402c5440b8d9f962be9a020287d3dd8556592c17f2b46f15f405d9d373cb shared-libmandoc.patch
ced05e8b57fb9705c6d8d8570cd6b06ad187511a4c243ac2dbc34064aa164ca49e0c877160134161dcb98ebd5e61a5c23d5741f03ef95903ff56193dd07f36a1 outdated-warn-disable.patch
bb46bc3a0f07881e5362b32d478632fb209f9740017c467f2258e9b7ddbece6175bba598287d8c24626c9ee7217eb92ae60e0a30aeafdfc4b0154f4d312cbcca fix-tbl-null-pointer.patch
a44d86fb012acbc05eb233122e7ca3170e5e01c7c49115c2fe83f49891d442ba94601a039018cfa01cc1ef3cd02d5aff4d1e01abd4230b8bc2091e649ad991db mandoc_configure.patch"
|