[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/3] gnu: Add man-db
From: |
David Thompson |
Subject: |
[PATCH 2/3] gnu: Add man-db |
Date: |
Sun, 06 Apr 2014 20:44:37 -0400 |
User-agent: |
Notmuch/0.17 (http://notmuchmail.org) Emacs/24.3.1 (x86_64-pc-linux-gnu) |
>From e67306f142b9878f3f08688fc837f2faf967a5cb Mon Sep 17 00:00:00 2001
From: David Thompson <address@hidden>
Date: Sun, 6 Apr 2014 20:25:01 -0400
Subject: [PATCH 2/3] gnu: Add man-db.
* gnu/packages.man.scm (man-db): New variable.
---
gnu/packages/man.scm | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 53 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm
index aeb7c15..47eb892 100644
--- a/gnu/packages/man.scm
+++ b/gnu/packages/man.scm
@@ -20,7 +20,13 @@
#:use-module (guix licenses)
#:use-module (guix download)
#:use-module (guix packages)
- #:use-module (guix build-system gnu))
+ #:use-module (guix build-system gnu)
+ #:use-module (gnu packages flex)
+ #:use-module (gnu packages gdbm)
+ #:use-module (gnu packages groff)
+ #:use-module (gnu packages less)
+ #:use-module (gnu packages lynx)
+ #:use-module (gnu packages pkg-config))
(define-public libpipeline
(package
@@ -41,3 +47,49 @@
"libpipeline is a C library for manipulating pipelines of subprocesses in
a flexible and convenient way.")
(license gpl3+)))
+
+(define-public man-db
+ (package
+ (name "man-db")
+ (version "2.6.6")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://download.savannah.gnu.org/releases/man-db/man-db-"
+ version ".tar.xz"))
+ (sha256
+ (base32
+ "1hv6byj6sg6cp3jyf08gbmdm4pwhvd5hzmb94xl0w7prin6hzabx"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:phases (alist-cons-after
+ 'patch-source-shebangs 'patch-test-shebangs
+ (lambda* (#:key outputs #:allow-other-keys)
+ ;; Patch shebangs in test scripts.
+ (use-modules (srfi srfi-1))
+ (let ((out (assoc-ref outputs "out")))
+ (for-each (lambda (file)
+ (substitute* file
+ (("#! /bin/sh")
+ (string-append "#!" (which "sh")))))
+ (remove file-is-directory?
+ (find-files "src/tests" ".*")))))
+ %standard-phases)
+ #:configure-flags '("--disable-setuid"))) ;; Disable setuid man user.
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (inputs
+ `(("flex" ,flex)
+ ("gdbm" ,gdbm)
+ ("libpipeline" ,libpipeline)
+ ("lynx" ,lynx)))
+ (propagated-inputs
+ `(("groff" ,groff)
+ ("less" ,less)))
+ (home-page "http://man-db.nongnu.org/")
+ (synopsis "Standard Unix documentation system")
+ (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.")
+ (license gpl2+)))
--
1.8.4
- [PATCH 0/3] Add man-db and libpipeline, David Thompson, 2014/04/06
- [PATCH 1/3] gnu: Add libpipeline, David Thompson, 2014/04/06
- [PATCH 2/3] gnu: Add man-db,
David Thompson <=
- Re: [PATCH 2/3] gnu: Add man-db, Mark H Weaver, 2014/04/07
- Message not available
- Re: [PATCH 2/3] gnu: Add man-db, Mark H Weaver, 2014/04/07
- Re: [PATCH 2/3] gnu: Add man-db, David Thompson, 2014/04/08
- Re: [PATCH 2/3] gnu: Add man-db, Ludovic Courtès, 2014/04/08
- Re: [PATCH 2/3] gnu: Add man-db, Thompson, David, 2014/04/08
- Re: [PATCH 2/3] gnu: Add man-db, David Thompson, 2014/04/08
- Re: [PATCH 2/3] gnu: Add man-db, Nikita Karetnikov, 2014/04/08
Re: [PATCH 1/3] gnu: Add libpipeline, Ludovic Courtès, 2014/04/07