]> git.ipfire.org Git - ipfire-3.x.git/blob - man-db/man-db.nm
kernel: udpate to 5.2
[ipfire-3.x.git] / man-db / man-db.nm
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) - IPFire Development Team <info@ipfire.org> #
4 ###############################################################################
5
6 name = man-db
7 version = 2.7.1
8 release = 3
9
10 groups = Documentation
11 url = http://savannah.nongnu.org/projects/man-db
12 license = GPL
13 summary = man-db is an on-line manual database.
14
15 description
16 man-db is an implementation of the standard Unix documentation \
17 system accessed using the man command. It uses a Berkeley DB database \
18 in place of the traditional flat-text whatis databases. man-db is \
19 used by several popular GNU/Linux distributions.
20 end
21
22 source_dl = http://download.savannah.gnu.org/releases/man-db/
23 sources = %{thisapp}.tar.xz
24
25 build
26 requires
27 gdbm-devel
28 groff
29 less
30 libpipeline-devel >= 1.4.0
31 systemd-devel
32 zlib-devel
33 end
34
35 configure_options += \
36 --with-sections="1 1p 8 2 3 3p 4 5 6 7 9 0p n l p o 1x 2x 3x 4x 5x 6x 7x 8x" \
37 --disable-setuid \
38 --with-browser=elinks
39
40 install_cmds
41 # Move the libs to /usr/lib, but don't keep the symlinks so nothing
42 # will link against libman and libmandb as they are not stable.
43 mv -v %{BUILDROOT}%{libdir}/man-db/libman{,db}-%{version}.so %{BUILDROOT}%{libdir}
44 rm -rf %{BUILDROOT}%{libdir}/man-db/
45
46 # Remove zsoelim man page which is not part of groff
47 rm -vf %{BUILDROOT}%{datadir}/man/man*/zsoelim.*
48
49 # Create cache directory.
50 mkdir -pv %{BUILDROOT}/var/cache/man
51 end
52 end
53
54 packages
55 package %{name}
56 groups += Base
57
58 requires
59 groff
60 less
61 xz
62 end
63
64 conflicts
65 systemd <= 204
66 end
67
68 # This package also should be known as man.
69 provides
70 man
71 end
72
73 script posttransin
74 # Update the database right now.
75 rm -rf /var/cache/man/*
76
77 systemctl -q enable man-db.timer
78 systemctl start man-db.timer
79 end
80
81 script posttransup
82 # Update the database right now.
83 rm -rf /var/cache/man/*
84
85 systemctl -q enable man-db.timer
86 systemctl start man-db.timer
87 end
88
89 script preun
90 systemctl stop man-db.timer
91 systemctl -q disable man-db.timer
92 end
93 end
94
95 package %{name}-debuginfo
96 template DEBUGINFO
97 end
98 end