]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blob - man-db/man-db.nm
man-db: Update to 2.7.1
[people/ms/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 = 1
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 db4-devel
28 gdbm-devel
29 groff
30 less
31 libpipeline-devel >= 1.4.0
32 systemd-devel
33 zlib-devel
34 end
35
36 configure_options += \
37 --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" \
38 --disable-setuid \
39 --with-browser=elinks
40
41 install_cmds
42 # Move the libs to /usr/lib, but don't keep the symlinks so nothing
43 # will link against libman and libmandb as they are not stable.
44 mv -v %{BUILDROOT}%{libdir}/man-db/libman{,db}-%{version}.so %{BUILDROOT}%{libdir}
45 rm -rf %{BUILDROOT}%{libdir}/man-db/
46
47 # Remove zsoelim man page which is not part of groff
48 rm -vf %{BUILDROOT}%{datadir}/man/man*/zsoelim.*
49
50 # Create cache directory.
51 mkdir -pv %{BUILDROOT}/var/cache/man
52 end
53 end
54
55 packages
56 package %{name}
57 groups += Base
58
59 requires
60 groff
61 less
62 xz
63 end
64
65 # This package also should be known as man.
66 provides
67 man
68 end
69
70 script posttransin
71 # Update the database right now.
72 rm -rf /var/cache/man/*
73
74 systemctl -q enable man-db.timer
75 systemctl start man-db.timer
76 end
77
78 script posttransup
79 # Update the database right now.
80 rm -rf /var/cache/man/*
81
82 systemctl -q enable man-db.timer
83 systemctl start man-db.timer
84 end
85
86 script preun
87 systemctl stop man-db.timer
88 systemctl -q disable man-db.timer
89 end
90 end
91
92 package %{name}-debuginfo
93 template DEBUGINFO
94 end
95 end