From 28740cdccd206506496bc19086fe8be292004abb Mon Sep 17 00:00:00 2001 From: LEVAI Daniel Date: Wed, 23 May 2018 07:16:52 +0700 Subject: system/mandoc: Added (UNIX manpage compiler). Signed-off-by: Willy Sudiarto Raharjo --- system/mandoc/README | 20 ++++++ system/mandoc/configure-noconflict.local.gz | Bin 0 -> 211 bytes system/mandoc/configure-replace.local.gz | Bin 0 -> 205 bytes system/mandoc/man.conf.example | 16 +++++ system/mandoc/mandoc.SlackBuild | 108 ++++++++++++++++++++++++++++ system/mandoc/mandoc.info | 10 +++ system/mandoc/slack-desc | 19 +++++ 7 files changed, 173 insertions(+) create mode 100644 system/mandoc/README create mode 100644 system/mandoc/configure-noconflict.local.gz create mode 100644 system/mandoc/configure-replace.local.gz create mode 100644 system/mandoc/man.conf.example create mode 100644 system/mandoc/mandoc.SlackBuild create mode 100644 system/mandoc/mandoc.info create mode 100644 system/mandoc/slack-desc (limited to 'system/mandoc') diff --git a/system/mandoc/README b/system/mandoc/README new file mode 100644 index 0000000000..4d7be3acbc --- /dev/null +++ b/system/mandoc/README @@ -0,0 +1,20 @@ +mandoc is a suite of tools compiling mandoc, the roff macro package of choice for +BSD manual pages, and man, the predominant historical package for UNIX manuals. +It is small, ISO C, ISC-licensed, and quite fast. + +The tool set features mandoc, based on the libmandoc validating compiler, to +format output for UNIX terminals (with support for wide-character locales), +XHTML, HTML, PostScript, and PDF. It also includes preconv, for recoding +multibyte manuals; demandoc, for emitting only text parts of manuals; mandocdb, +for indexing manuals; and apropos, whatis, and man.cgi (via catman) for +semantic search of manual content. + +There is an environment variable called REPLACE_MAN, that if set to a non-empty +string, will instruct the slackbuild script to replace the stock man package +(you should remove(pkg) it first, though). + +After installing, make sure to (re)create the mandoc specific "whatis" +database(s) in your manpath(s), eg.: +# mandocdb /usr/man /usr/local/man +... or, if you've chosen to replace man, then: +# makewhatis /usr/man /usr/local/man diff --git a/system/mandoc/configure-noconflict.local.gz b/system/mandoc/configure-noconflict.local.gz new file mode 100644 index 0000000000..46e1ce8d55 Binary files /dev/null and b/system/mandoc/configure-noconflict.local.gz differ diff --git a/system/mandoc/configure-replace.local.gz b/system/mandoc/configure-replace.local.gz new file mode 100644 index 0000000000..a5f8eea710 Binary files /dev/null and b/system/mandoc/configure-replace.local.gz differ diff --git a/system/mandoc/man.conf.example b/system/mandoc/man.conf.example new file mode 100644 index 0000000000..8c637c12b7 --- /dev/null +++ b/system/mandoc/man.conf.example @@ -0,0 +1,16 @@ +# $OpenBSD: man.conf,v 1.2 2015/03/27 21:17:16 schwarze Exp $ +# man(1)/apropos(1)/makewhatis(8) configuration, see man.conf(5). +# This sample file shows the default settings. + +# Default search path for manual pages. +# Copy these three lines, then add, delete, or reorder as desired. +manpath /usr/man +#manpath /usr/X11R6/man +#manpath /usr/local/man + +# Options for terminal output. +output width 78 +output indent 5 + +# Option for PostScript and PDF output. +output paper letter diff --git a/system/mandoc/mandoc.SlackBuild b/system/mandoc/mandoc.SlackBuild new file mode 100644 index 0000000000..b670290747 --- /dev/null +++ b/system/mandoc/mandoc.SlackBuild @@ -0,0 +1,108 @@ +#!/bin/sh + +# Copyright (c) 2014-2018 LEVAI Daniel +# All rights reserved. +# +# * Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# * Redistributions of source code must retain the above copyright notice +# this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, +# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY +# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=mandoc +VERSION=${VERSION:-1.14.3} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ];then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +if [ -z "${REPLACE_MAN}" ];then + gzip -dc "${CWD}"/configure-noconflict.local.gz >./configure.local +else + gzip -dc "${CWD}"/configure-replace.local.gz >./configure.local +fi +./configure + +CFLAGS=$SLKCFLAGS \ + make +make install \ + DESTDIR=$PKG \ + PREFIX=/usr \ + LIBDIR=/usr/lib${LIBDIRSUFFIX} + +# Fix symlinks +for link in $(find ${PKG}/usr/bin ${PKG}/usr/sbin -type l);do + TARGET=$(readlink ${link}) + ln -fs ${TARGET##${PKG}} ${link} +done + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a TODO NEWS $PKG/usr/doc/$PRGNAM-$VERSION/ +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +cat $CWD/man.conf.example > $PKG/usr/doc/$PRGNAM-$VERSION/man.conf.example + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/mandoc/mandoc.info b/system/mandoc/mandoc.info new file mode 100644 index 0000000000..9a1f4f3f23 --- /dev/null +++ b/system/mandoc/mandoc.info @@ -0,0 +1,10 @@ +PRGNAM="mandoc" +VERSION="1.14.3" +HOMEPAGE="http://mandoc.bsd.lv/" +DOWNLOAD="http://mandoc.bsd.lv/snapshots/mandoc-1.14.3.tar.gz" +MD5SUM="3d49ca1eb15b49b5d15c708027fd27c9" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="LEVAI Daniel" +EMAIL="leva@ecentrum.hu" diff --git a/system/mandoc/slack-desc b/system/mandoc/slack-desc new file mode 100644 index 0000000000..1f7b5d6c7b --- /dev/null +++ b/system/mandoc/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +mandoc: mandoc (UNIX manpage compiler) +mandoc: +mandoc: mandoc is a suite of tools compiling mdoc, the roff macro package of +mandoc: choice for BSD manual pages, and man, the predominant historical +mandoc: package for UNIX manuals. +mandoc: It is small, ISO C, ISC-licensed, and quite fast. +mandoc: +mandoc: Homepage: http://mandoc.bsd.lv/ +mandoc: +mandoc: +mandoc: -- cgit v1.2.3