]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - pkgs/man-db/man-db.nm
avahi: Update to 0.6.30.
[people/ms/ipfire-3.x.git] / pkgs / man-db / man-db.nm
CommitLineData
91f5b076
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include $(PKGROOT)/Include
26
27PKG_NAME = man-db
906e47eb 28PKG_VER = 2.6.0.2
54eb4a97 29PKG_REL = 2
91f5b076
MT
30
31PKG_MAINTAINER =
b42a752b 32PKG_GROUPS = Base Documentation
91f5b076
MT
33PKG_URL = http://bzr.savannah.gnu.org/r/man-db/
34PKG_LICENSE = GPL
35PKG_SUMMARY = man-db is an on-line manual database.
36
e3360744 37PKG_BUILD_DEPS+= db4-devel gdbm-devel groff less libpipeline-devel
762816dd 38PKG_DEPS += groff less
91f5b076 39
54eb4a97
MT
40# This package should also be known by "man".
41PKG_PROVIDES += man
42
91f5b076
MT
43define PKG_DESCRIPTION
44 man-db is an implementation of the standard Unix documentation \
45 system accessed using the man command. It uses a Berkeley DB database \
46 in place of the traditional flat-text whatis databases. man-db is \
47 used by several popular GNU/Linux distributions.
48endef
49
50PKG_TARBALL = $(THISAPP).tar.gz
51
906e47eb
MT
52# This package installs a lib in /usr/lib/man-db and links all binaries
53# against it. Seems as if the ABI is not stable, yet and so we need to
54# accept that.
55QUALITY_AGENT_WHITELIST_RPATH = /usr/lib/man-db
56
91f5b076
MT
57CONFIGURE_OPTIONS += \
58 --libexecdir=/usr/lib \
59 --sysconfdir=/etc \
60 --disable-setuid \
61 --with-browser=/usr/bin/lynx \
62 --with-col=/usr/bin/col \
63 --with-vgrind=/usr/bin/vgrind \
64 --with-grap=/usr/bin/grap
65
91f5b076
MT
66define STAGE_PREPARE_CMDS
67 cd $(DIR_APP) && sed -i -e '\%\t/usr/man%d' -e '\%\t/usr/local/man%d' \
68 src/man_db.conf.in
69endef