From 9f3b96b604a75d38519fca6ab1d2bda2f5ac91ad Mon Sep 17 00:00:00 2001 From: lepied Date: Wed, 18 Jan 1995 13:23:31 +0000 Subject: Debut Versionnement Imagine --- Copyright | 36 ++++++++++++++++++++++++++++++++++++ README | 20 ++++++++++++++++++++ mkinstalldirs | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 91 insertions(+) create mode 100644 Copyright create mode 100644 README create mode 100644 mkinstalldirs diff --git a/Copyright b/Copyright new file mode 100644 index 0000000..a3cc25a --- /dev/null +++ b/Copyright @@ -0,0 +1,36 @@ +/******************* Distribution and Copyright ******************* + * + * This software is copyright by the CENA/DGAC/FRANCE + * All rights reserved. + * + * No part of the material protected by this copyright notice + * may be reproduced or utilized for commercial use in any form + * without written permission of the copyright owner. + * + * It may be reproduced or utilized for R&D use in Non Profit + * Organization. + * + ******************************************************************/ + + +/******************* Disclaimer *********************************** + * + * This software and its documentation are provided "AS IS" and + * without any expressed or implied warranties whatsoever. + * No warranties as to performance, merchantability, or fitness + * for a particular purpose exist. + * + * Because of the diversity of conditions and hardware under + * which this software may be used, no warranty of fitness for + * a particular purpose is offered. The user is advised to + * test the software thoroughly before relying on it. The user + * must assume the entire risk and liability of using this + * software. + * + * In no event shall any person or organization of people be + * held responsible for any direct, indirect, consequential + * or inconsequential damages or lost profits. + * + ******************END-PROLOGUE************************************/ + + diff --git a/README b/README new file mode 100644 index 0000000..cfc17b5 --- /dev/null +++ b/README @@ -0,0 +1,20 @@ + +CARTES VIDEOMAP ET CONVERTISSEUR +================================ + +Les cartes au format VideoMap binaire destinees a radarT +ne sont plus distribuees. Leur portabilite n'est pas assuree +entre une machine BIG ENDIAN et une MACHINE LITTLE ENDIAN. +En clair, celles qui etaient distribuees auparavent avaient +ete fabriquessur SUN3/SPARC, machines BIG ENDIAN, et donc ne +pouvaient fonctionner correctement sur i386/i486, Vax, MIPS +LITTLE ENDIAN (Ultrix, OSF1?), et autres. Par ailleurs le format +de fichier VideoMap reconnu par le convertisseur ne correspond +pas au format 'officiel'. Enfin les besoins exprimes par les +utilisateurs montrent clairement qu'un format plus general et +plus portable est necessaire. +Le convertisseur est toutefois toujours present dans la distribution +et est enregistre a l'initialisation du widget. Ce code est considere +comme une contribution, son utilisation est deconseilleepour du code +a longue duree de vie. + diff --git a/mkinstalldirs b/mkinstalldirs new file mode 100644 index 0000000..0e29377 --- /dev/null +++ b/mkinstalldirs @@ -0,0 +1,35 @@ +#!/bin/sh +# Make directory hierarchy. +# Written by Noah Friedman +# Public domain. + +defaultIFS=' +' +IFS="${IFS-${defaultIFS}}" + +errstatus=0 + +for file in ${1+"$@"} ; do + oIFS="${IFS}" + # Some sh's can't handle IFS=/ for some reason. + IFS='%' + set - `echo ${file} | sed -e 's@/@%@g' -e 's@^%@/@'` + IFS="${oIFS}" + + pathcomp='' + + for d in ${1+"$@"} ; do + pathcomp="${pathcomp}${d}" + + if test ! -d "${pathcomp}"; then + echo "mkdir $pathcomp" 1>&2 + mkdir "${pathcomp}" || errstatus=$? + fi + + pathcomp="${pathcomp}/" + done +done + +exit $errstatus + +# eof -- cgit v1.1