aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/Xpm/namecvt
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-02 15:02:49 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-02 15:02:49 +0100
commitb16b9e4656e7199c2aec74a4c8ebc7a875d3ba73 (patch)
tree4361edef0d42d5bf5ac984ef72b4fac35426eae7 /nx-X11/extras/Xpm/namecvt
parent0d5a83e986f39982c0924652a3662e60b1f23162 (diff)
downloadnx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.gz
nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.bz2
nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.zip
massive reduction of unneeded files
Diffstat (limited to 'nx-X11/extras/Xpm/namecvt')
-rw-r--r--nx-X11/extras/Xpm/namecvt60
1 files changed, 0 insertions, 60 deletions
diff --git a/nx-X11/extras/Xpm/namecvt b/nx-X11/extras/Xpm/namecvt
deleted file mode 100644
index 0bb610406..000000000
--- a/nx-X11/extras/Xpm/namecvt
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/bin/sh
-#
-# create two scripts to convert the filenames of the XPM distribution
-# run this in the xpm toplevel directory
-# after that you have the following two scripts
-# cvtux2dos will copy the files into fordos/
-# cvtdos2ux will copy from fromdos/ to new/
-#
-# Written by HeDu 5/94 (hedu@cul-ipn.uni-kiel.de)
-#
-
-echo "Making cvtux2dos and cvtdos2ux..."
-
-cp /dev/null cvtux2dos
-echo "#!/bin/sh" > cvtux2dos
-echo "echo Making dos hierarchy..." >> cvtux2dos
-echo "mkdir fordos" >> cvtux2dos
-echo "mkdir fordos/lib" >> cvtux2dos
-echo "mkdir fordos/doc" >> cvtux2dos
-
-cp /dev/null cvtdos2ux
-echo "#!/bin/sh" > cvtdos2ux
-echo "echo Making unix hierarchy..." >> cvtdos2ux
-echo "mkdir new" >> cvtdos2ux
-echo "mkdir new/lib" >> cvtdos2ux
-echo "mkdir new/doc" >> cvtdos2ux
-
-for i in CHANGES FAQ FILES README README.MSW \
- lib/CrBufFrI.c lib/CrBufFrP.c lib/CrDatFrI.c \
- lib/CrDatFrP.c lib/CrIFrBuf.c lib/CrIFrDat.c \
- lib/CrPFrBuf.c lib/CrPFrDat.c lib/RdFToDat.c \
- lib/RdFToI.c lib/RdFToP.c lib/WrFFrDat.c \
- lib/WrFFrI.c lib/WrFFrP.c \
- lib/create.c lib/data.c lib/misc.c lib/parse.c \
- lib/rgb.c lib/rgbtab.h lib/scan.c lib/hashtab.c \
- lib/simx.h lib/simx.c lib/xpm.h lib/XpmI.h \
- lib/Attrib.c lib/Image.c lib/Info.c \
- lib/CrIFrP.c lib/CrPFrI.c lib/RdFToBuf.c lib/WrFFrBuf.c \
- namecvt
-do
- # fold to lower case
- # so they are fine for DOS, sigh
- new=`echo $i | tr '[A-Z]' '[a-z]'`
- echo "cp $i fordos/$new" >> cvtux2dos
- echo "cp fromdos/$new new/$i" >> cvtdos2ux
-done
-
-# special ones
-echo "cp COPYRIGHT fordos/copyrigh.t" >> cvtux2dos
-echo "cp fromdos/copyrigh.t new/COPYRIGHT" >> cvtdos2ux
-echo "cp doc/xpm.PS.gz fordos/doc/xpm_ps.gz" >> cvtux2dos
-echo "cp fromdos/doc/xpm_ps.gz new/doc/xpm.PS.gz" >> cvtdos2ux
-#
-echo "echo done." >> cvtux2dos
-echo "echo done." >> cvtdos2ux
-
-chmod +x cvtux2dos
-chmod +x cvtdos2ux
-
-echo "done."