]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blobdiff - pkgs/man-db/man-db.nm
Change file layout of the makefiles.
[people/arne_f/ipfire-3.x.git] / pkgs / man-db / man-db.nm
index 3f0ee45db6d9bfa8cba7e84f9f44384371484dd3..2d6ad4cc43ee05db373de698f821a3b0d51a8fc3 100644 (file)
@@ -1,69 +1,69 @@
 ###############################################################################
-#                                                                             #
-# IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt                 #
-#                                                                             #
-# This program is free software: you can redistribute it and/or modify        #
-# it under the terms of the GNU General Public License as published by        #
-# the Free Software Foundation, either version 3 of the License, or           #
-# (at your option) any later version.                                         #
-#                                                                             #
-# This program is distributed in the hope that it will be useful,             #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
-# GNU General Public License for more details.                                #
-#                                                                             #
-# You should have received a copy of the GNU General Public License           #
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
-#                                                                             #
+# IPFire.org    - An Open Source Firewall Solution                            #
+# Copyright (C) - IPFire Development Team <info@ipfire.org>                   #
 ###############################################################################
 
-###############################################################################
-# Definitions
-###############################################################################
-
-include $(PKGROOT)/Include
-
-PKG_NAME       = man-db
-PKG_VER        = 2.6.0.2
-PKG_REL        = 2
-
-PKG_MAINTAINER =
-PKG_GROUPS     = Base Documentation
-PKG_URL        = http://bzr.savannah.gnu.org/r/man-db/
-PKG_LICENSE    = GPL
-PKG_SUMMARY    = man-db is an on-line manual database.
+name       = man-db
+version    = 2.6.0.2
+release    = 2
 
-PKG_BUILD_DEPS+= db4-devel gdbm-devel groff less libpipeline-devel
-PKG_DEPS      += groff less
+groups     = Base Documentation
+url        = http://bzr.savannah.gnu.org/r/man-db/
+license    = GPL
+summary    = man-db is an on-line manual database.
 
-# This package should also be known by "man".
-PKG_PROVIDES  += man
-
-define PKG_DESCRIPTION
+description
        man-db is an implementation of the standard Unix documentation \
        system accessed using the man command. It uses a Berkeley DB database \
        in place of the traditional flat-text whatis databases. man-db is \
        used by several popular GNU/Linux distributions.
-endef
+end
+
+source_dl  =
+
+build
+       requires
+               db4-devel
+               gdbm-devel
+               groff
+               less
+               libpipeline-devel
+       end
+
+       configure_options += \
+               --libexecdir=/usr/lib \
+               --sysconfdir=/etc \
+               --disable-setuid \
+               --with-browser=/usr/bin/lynx \
+               --with-col=/usr/bin/col \
+               --with-vgrind=/usr/bin/vgrind \
+               --with-grap=/usr/bin/grap
 
-PKG_TARBALL    = $(THISAPP).tar.gz
+       prepare_cmds
+               sed -i -e '\%\t/usr/man%d' -e '\%\t/usr/local/man%d' \
+                       src/man_db.conf.in
+       end
+end
 
 # This package installs a lib in /usr/lib/man-db and links all binaries
 # against it. Seems as if the ABI is not stable, yet and so we need to
 # accept that.
-QUALITY_AGENT_WHITELIST_RPATH = /usr/lib/man-db
+quality-agent
+       whitelist_rpath
+               /usr/lib/man-db
+       end
+end
 
-CONFIGURE_OPTIONS += \
-       --libexecdir=/usr/lib \
-       --sysconfdir=/etc \
-       --disable-setuid \
-       --with-browser=/usr/bin/lynx \
-       --with-col=/usr/bin/col \
-       --with-vgrind=/usr/bin/vgrind \
-       --with-grap=/usr/bin/grap
+packages
+       package %{name}
+               requires
+                       groff
+                       less
+               end
 
-define STAGE_PREPARE_CMDS
-       cd $(DIR_APP) && sed -i -e '\%\t/usr/man%d' -e '\%\t/usr/local/man%d' \
-               src/man_db.conf.in
-endef
+               # This package also should be known as man.
+               provides
+                       man
+               end
+       end
+end