From ef2e26c91b80556af033d3335e55f5dfa6fff31d Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 13 Aug 2003 01:53:07 +0000 Subject: first public release of samba4 code (This used to be commit b0510b5428b3461aeb9bbe3cc95f62fc73e2b97f) --- source4/script/installman.sh | 71 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 source4/script/installman.sh (limited to 'source4/script/installman.sh') diff --git a/source4/script/installman.sh b/source4/script/installman.sh new file mode 100644 index 0000000000..5b6bba69ed --- /dev/null +++ b/source4/script/installman.sh @@ -0,0 +1,71 @@ +#!/bin/sh +#5 July 96 Dan.Shearer@unisa.edu.au removed hardcoded values +# +# 13 Aug 2001 Rafal Szczesniak +# modified to accomodate international man pages (inspired +# by Japanese edition's approach) + +MANDIR=$1 +SRCDIR=$2/ +langs=$3 + +if [ $# -ge 4 ] ; then + GROFF=$4 # sh cmd line, including options +fi + + +for lang in $langs; do + if [ "X$lang" = Xen ]; then + echo Installing default man pages in $MANDIR/ + lang=. + else + echo Installing \"$lang\" man pages in $MANDIR/lang/$lang + fi + + langdir=$MANDIR/$lang + for d in $MANDIR $langdir $langdir/man1 $langdir/man5 $langdir/man7 $langdir/man8; do + if [ ! -d $d ]; then + mkdir $d + if [ ! -d $d ]; then + echo Failed to make directory $d, does $USER have privileges? + exit 1 + fi + fi + done + + for sect in 1 5 7 8 ; do + for m in $langdir/man$sect ; do + for s in $SRCDIR../docs/manpages/$lang/*$sect; do + FNAME=$m/`basename $s` + + # Test for writability. Involves + # blowing away existing files. + + if (rm -f $FNAME && touch $FNAME); then + rm $FNAME + if [ "x$GROFF" = x ] ; then + cp $s $m # Copy raw nroff + else + echo "\t$FNAME" # groff'ing can be slow, give the user + # a warm fuzzy. + $GROFF $s > $FNAME # Process nroff, because man(1) (on + # this system) doesn't . + fi + chmod 0644 $FNAME + else + echo Cannot create $FNAME... does $USER have privileges? + fi + done + done + done +done +cat << EOF +====================================================================== +The man pages have been installed. You may uninstall them using the command +the command "make uninstallman" or make "uninstall" to uninstall binaries, +man pages and shell scripts. +====================================================================== +EOF + +exit 0 + -- cgit From fa8d539e0fbce952266a246364e5e9cd537b29fd Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 27 Jun 2005 12:09:52 +0000 Subject: r7943: Add 'make manpages', fix 'make installman' and 'make uninstallman'. Not part of the "all" make target yet, as it requires xsltproc (This used to be commit fd3f4636438cf1d9c0dd802064033271b9e4d935) --- source4/script/installman.sh | 71 +++++++++----------------------------------- 1 file changed, 14 insertions(+), 57 deletions(-) (limited to 'source4/script/installman.sh') diff --git a/source4/script/installman.sh b/source4/script/installman.sh index 5b6bba69ed..00c7114396 100644 --- a/source4/script/installman.sh +++ b/source4/script/installman.sh @@ -1,64 +1,22 @@ #!/bin/sh -#5 July 96 Dan.Shearer@unisa.edu.au removed hardcoded values -# -# 13 Aug 2001 Rafal Szczesniak -# modified to accomodate international man pages (inspired -# by Japanese edition's approach) MANDIR=$1 -SRCDIR=$2/ -langs=$3 - -if [ $# -ge 4 ] ; then - GROFF=$4 # sh cmd line, including options -fi - - -for lang in $langs; do - if [ "X$lang" = Xen ]; then - echo Installing default man pages in $MANDIR/ - lang=. - else - echo Installing \"$lang\" man pages in $MANDIR/lang/$lang - fi - - langdir=$MANDIR/$lang - for d in $MANDIR $langdir $langdir/man1 $langdir/man5 $langdir/man7 $langdir/man8; do - if [ ! -d $d ]; then - mkdir $d - if [ ! -d $d ]; then - echo Failed to make directory $d, does $USER have privileges? - exit 1 - fi +shift 1 +MANPAGES=$* + +for I in $MANPAGES +do + SECTION=`echo $I | grep -o '.$'` + DIR="$MANDIR/man$SECTION" + if [ ! -d "$DIR" ] + then + mkdir "$DIR" fi - done - - for sect in 1 5 7 8 ; do - for m in $langdir/man$sect ; do - for s in $SRCDIR../docs/manpages/$lang/*$sect; do - FNAME=$m/`basename $s` - - # Test for writability. Involves - # blowing away existing files. - - if (rm -f $FNAME && touch $FNAME); then - rm $FNAME - if [ "x$GROFF" = x ] ; then - cp $s $m # Copy raw nroff - else - echo "\t$FNAME" # groff'ing can be slow, give the user - # a warm fuzzy. - $GROFF $s > $FNAME # Process nroff, because man(1) (on - # this system) doesn't . - fi - chmod 0644 $FNAME - else - echo Cannot create $FNAME... does $USER have privileges? - fi - done - done - done + + echo "Installing manpage \"$I\" in $DIR" + cp $I $DIR done + cat << EOF ====================================================================== The man pages have been installed. You may uninstall them using the command @@ -68,4 +26,3 @@ man pages and shell scripts. EOF exit 0 - -- cgit From 09ee7a470ba052d184f94336cd7635efca387ace Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 28 Sep 2005 14:42:04 +0000 Subject: r10582: Nicer output (try to avoid linewraps) (This used to be commit 908b88843ffe1026341166d0338a835121c8e641) --- source4/script/installman.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source4/script/installman.sh') diff --git a/source4/script/installman.sh b/source4/script/installman.sh index 00c7114396..ae99bceacf 100644 --- a/source4/script/installman.sh +++ b/source4/script/installman.sh @@ -12,8 +12,10 @@ do then mkdir "$DIR" fi + + BASE=`basename $I` - echo "Installing manpage \"$I\" in $DIR" + echo "Installing manpage \"$BASE\" in $DIR" cp $I $DIR done -- cgit From e12a4cb2f38c1f6612fc81690f69056ffdddf004 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 21 Dec 2007 05:21:31 +0100 Subject: [GLUE] fix some executable bits on shell scripts metze (This used to be commit 76f1f7d7017977e49d100627db728cef1a8a95c0) --- source4/script/installman.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 source4/script/installman.sh (limited to 'source4/script/installman.sh') diff --git a/source4/script/installman.sh b/source4/script/installman.sh old mode 100644 new mode 100755 -- cgit