File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / rsync / maybe-make-man
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 17 00:32:36 2021 UTC (3 years, 2 months ago) by misho
Branches: rsync, MAIN
CVS tags: v3_2_3, HEAD
rsync 3.2.3

#!/bin/sh

if [ x"$2" = x ]; then
    echo "Usage: $0 SRC_DIR NAME.NUM.md" 1>&2
    exit 1
fi

srcdir="$1"
inname="$2"
flagfile="$srcdir/.md2man-works"

if [ ! -d "$srcdir" ]; then
    echo "The specified SRC_DIR is not a directory: $srcdir" 1>&2
    exit 1
fi

if [ ! -f "$flagfile" ]; then
    # We test our smallest manpage just to see if the python setup works.
    if "$srcdir/md2man" --test "$srcdir/rsync-ssl.1.md" >/dev/null 2>&1; then
	touch $flagfile
    else
	outname=`echo "$inname" | sed 's/\.md$//'`
	if [ -f "$outname" ]; then
	    exit 0
	elif [ -f "$srcdir/$outname" ]; then
	    echo "Copying $srcdir/$outname"
	    cp -p "$srcdir/$outname" .
	    exit 0
	else
	    echo "ERROR: $outname cannot be created."
	    if [ -f "$HOME/build_farm/build_test.fns" ]; then
		exit 0 # No exit errorno to avoid a build failure in the samba build farm
	    else
		exit 1
	    fi
	fi
    fi
fi

"$srcdir/md2man" "$srcdir/$inname"

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>