aboutsummaryrefslogtreecommitdiff
path: root/share/tools
diff options
context:
space:
mode:
authorEitan Adler <eadler@FreeBSD.org>2015-04-06 06:04:55 +0000
committerEitan Adler <eadler@FreeBSD.org>2015-04-06 06:04:55 +0000
commit4fa8971c5486a5cb322fd0ee141569c238aaf6e0 (patch)
tree4b0802a1b874c18f54fbd23494cd9eb4415a6b00 /share/tools
parent596691a0dfc529cfdb638056f02e6e71d75148c3 (diff)
downloaddoc-4fa8971c5486a5cb322fd0ee141569c238aaf6e0.tar.gz
doc-4fa8971c5486a5cb322fd0ee141569c238aaf6e0.zip
buildpnms.sh couldn't possibly work due to a bad path to gozer
also this script is for send-pr which is dead
Notes
Notes: svn path=/head/; revision=46487
Diffstat (limited to 'share/tools')
-rwxr-xr-xshare/tools/buildpnms.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/share/tools/buildpnms.sh b/share/tools/buildpnms.sh
deleted file mode 100755
index 08f282de54..0000000000
--- a/share/tools/buildpnms.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# Shell script to generate the .pnm files required for the send-pr
-# mechanism. This is not used by the build process, as it requires
-# X libraries for the gozer program; rather they are generated and
-# committed into www/en/gifs/
-
-GOZER=/usr/X11R6/bin/gozer
-PNGTOPNM=/usr/local/bin/pngtopnm
-VERBOSE=/usr/bin/false
-
-# Generate 8 character code from A-Z0-9 (no I,O,0,1 for clarity)
-availchars="A B C D E F G H J K L M N P Q R S T U V W X Y Z 2 3 4 5 6 7 8 9"
-
-for char in ${availchars}
-do
- ${VERBOSE} Making ${char}.png...
- ${GOZER} -x 2 -t ${char} -f "#990000" -b "#ffffff" ${char}.png
- ${VERBOSE} DONE
- ${VERBOSE} Converting ${char}.png to ${char}.pnm...
- ${PNGTOPNM} ${char}.png > ${char}.pnm
- ${VERBOSE} DONE
- ${VERBOSE} Removing ${char}.png...
- rm ${char}.png
- ${VERBOSE} DONE
-done
-