Initial revision
0 parent commit 060168552139ff1e5c180086c506e71d50159026
@tundra tundra authored on 5 May 2003
Showing 5 changed files
View
9
Makefile 0 → 100644
# FreeBSD Ports Makefile For 'nohtml'
# $Id: Makefile,v 1.1 2003/05/05 21:32:41 tundra Exp $
 
all: # Do nothing - this is a python script that needs no build
 
install:
${BSD_INSTALL_SCRIPT} nohtml.py ${PREFIX}/bin
${BSD_INSTALL_MAN} nohtml.1.gz ${PREFIX}/man/man1
View
58
mknohtml 0 → 100755
#!/bin/sh
# Build a release of nohtml
# $Id: mknohtml,v 1.1 2003/05/05 21:32:41 tundra Exp $
 
COLOR=
#COLOR=--color
PROGFILE="nohtml.py"
SUPPFILES="Makefile nohtml.1 nohtml-license.txt"
DOCFILES="nohtml.html nohtml.ps nohtml.pdf nohtml.py.ps READ-1ST.txt WHATSNEW.txt nohtml.txt"
 
# Check Command Line Args
 
DIR="nohtml-"$1
 
if [ $# -ne 1 ]
then
echo "usage: mknohtml version-number"
exit
fi
 
# Create Working Directory
 
mkdir $DIR
 
# Extract Files From RCS
 
co -r$1 $PROGFILE
chmod 755 $PROGFILE
co $SUPPFILES
co $DOCFILES
 
# Pretty Print The Source Code
 
enscript -Epython -fCourier8 -i2 -L77 -C --mark-wrapped-lines=arrow $COLOR -pnohtml.py.ps nohtml.py
 
# Build Documentation
 
rman -fHTML -l nohtml nohtml.1 > nohtml.html
groff -man -Tps nohtml.1 >nohtml.ps
gs -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=nohtml.pdf nohtml.ps
groff -man -Tascii nohtml.1 | col -xb >nohtml.txt
chmod 644 $DOCFILES *txt
gzip *.1
 
# Build And Save The Release
 
mv $PROGFILE $SUPPFILES $DOCFILES $DIR
mv *.gz $DIR
rlog $PROGFILE >$DIR/CHANGELOG.txt
flip -vm $DIR/*txt
tar -czvf $DIR.tar.gz $DIR
mv $DIR.tar.gz Releases
 
# Remove Working Directory
rm -rf $DIR
 
 
View
nohtml-license.txt 0 → 100644
View
nohtml.1 0 → 100644
View
nohtml.py 0 → 100755