home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-07-11 | 65.1 KB | 1,937 lines |
- Newsgroups: comp.sources.misc
- From: laplante@crim.ca (Pierre Laplante)
- Subject: v38i043: lude - A Distributed Software Library, Part11/12
- Message-ID: <1993Jul11.224804.16943@sparky.imd.sterling.com>
- X-Md4-Signature: 34296496c0deef30c8447c2191790b99
- Sender: kent@sparky.imd.sterling.com (Kent Landfield)
- Organization: Sterling Software
- Date: Sun, 11 Jul 1993 22:48:04 GMT
- Approved: kent@sparky.sterling.com
-
- Submitted-by: laplante@crim.ca (Pierre Laplante)
- Posting-number: Volume 38, Issue 43
- Archive-name: lude/part11
- Environment: UNIX
-
- #! /bin/sh
- # This is a shell archive. Remove anything before this line, then feed it
- # into a shell via "sh file" or similar. To overwrite existing files,
- # type "sh file -c".
- # Contents:
- # lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl
- # lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl
- # lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude
- # lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm
- # lude-1.1/src/orig/Makefile.in
- # lude-1.1/src/orig/bug-report/template
- # lude-1.1/src/orig/html/Makefile lude-1.1/src/orig/html/Makefile.in
- # lude-1.1/src/orig/html/default_fra.UU
- # lude-1.1/src/orig/info/Makefile.in lude-1.1/src/orig/lang/Makefile
- # lude-1.1/src/orig/lang/Makefile.in lude-1.1/src/orig/lang/lude
- # lude-1.1/src/orig/lang/ludeadm lude-1.1/src/orig/lang/ludelist
- # lude-1.1/src/orig/lang/ludemisc
- # lude-1.1/src/orig/src/BldRegexpMinRqr.pl
- # lude-1.1/src/orig/src/Makefile lude-1.1/src/orig/src/Makefile.in
- # lude-1.1/src/orig/src/config.pl lude-1.1/src/orig/src/config.pl.in
- # Wrapped by kent@sparky on Sun Jul 11 15:49:16 1993
- PATH=/bin:/usr/bin:/usr/ucb:/usr/local/bin:/usr/lbin ; export PATH
- echo If this archive is complete, you will see the following message:
- echo ' "shar: End of archive 11 (of 12)."'
- if test -f 'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl'\"
- else
- echo shar: Extracting \"'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl'\" \(1639 characters\)
- sed "s/^X//" >'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl' <<'END_OF_FILE'
- X# Utility to build and manipulate regular expression.
- X# Copyright (C) 1992 Stephane Boucher, Ecole Polytechnique de Montreal.
- X#
- X# This program is free software; you can redistribute it and/or modify
- X# it under the terms of the GNU General Public License as published by
- X# the Free Software Foundation; either version 1, or (at your option)
- X# any later version.
- X#
- X# This program is distributed in the hope that it will be useful,
- X# but WITHOUT ANY WARRANTY; without even the implied warranty of
- X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- X# GNU General Public License for more details.
- X#
- X# You should have received a copy of the GNU General Public License
- X# along with this program; if not, write to the Free Software
- X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- X#
- X# In other words, you are welcome to use, share and improve this program.
- X# You are forbidden to forbid anyone else to use, share and improve
- X# what you give them. Help stamp out software-hoarding!
- X
- X$FULL_VERSION.= '$Id: BldRegexpMinRqr.pl,v 1.2 1992/11/12 01:22:29 sbo Exp $' ."\n";
- X
- X#
- X#
- X#
- Xsub BldRegexpMinRqr {
- X # $_[0] Option String
- X # $_[1] Lenght of the part that is required. The rest of the string is
- X # optional
- X
- X if (scalar(@_) != 2) {
- X die "Incorrect number of params, stopped";
- X }
- X
- X local($OptLen, $Regexp) = length($_[0]);
- X
- X if ($_[1] > $OptLen) {
- X die "Incorrect param value, stopped";
- X }
- X
- X $Regexp = substr($_[0],0,$_[1]);
- X $Regexp .= '(';
- X $Regexp .= join('(', split(//, substr($_[0],$_[1])));
- X $Regexp .= ')?' x ($OptLen - $_[1]);
- X}
- X
- X1;
- END_OF_FILE
- if test 1639 -ne `wc -c <'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl'`; then
- echo shar: \"'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl'
- fi
- if test -f 'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl'\"
- else
- echo shar: Extracting \"'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl'\" \(1509 characters\)
- sed "s/^X//" >'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl' <<'END_OF_FILE'
- X# Generated automatically from config.pl.in by configure.
- X# Directory where bin,lib,include ... are located.
- X$LOCAL_DIR = '/usr/local';
- X# Directory where the various server can be accessded.
- X$SERVER_DIR = "$LOCAL_DIR/server";
- X# Directory containing the softwares' directories.
- X$SOFT_DIR = "$LOCAL_DIR/soft";
- X
- X$IAFA_FILE = "IAFA-PACKAGES";
- X$LUDE_FILE = "LUDE";
- X
- X#
- X# TFS - transluscent filesystem (optional)
- X#
- X$CONF_HAVE_TFS= 1;
- X# Performe a tfs mount (only on sun, to my knowledge)
- X$PROG_MOUNT_TFS= 'mount_tfs';
- X# Performe a tfs mount (only on sun, to my knowledge)
- X$PROG_UMOUNT_TFS= 'umount_tfs';
- X
- X# Display the hostname
- X$CONF_HAVE_HOSTNAME= 1;
- X$PROG_HOSTNAME= 'hostname';
- X
- X# Display the domainname
- X$CONF_HAVE_DOMAINNAME= 1;
- X$PROG_DOMAINNAME= 'domainname';
- X
- X# Minimum functionnality required:
- X# -x -> extract from tar
- X# -c -> create tar
- X# -v -> verbose
- X# -f -> to specify the tar file
- X$PROG_TAR= 'tar';
- X
- X# Minimum functionnality required:
- X# Perform a binary comparison and return 0 if the two
- X# files specified in parameters are the same, and return
- X# something different than 0 if the two files are different.
- X$PROG_CMP= 'cmp';
- X
- X# Program to regenerate the whatis database for man
- X$PROG_MAKEWHATIS= 'catman -w -M';
- X
- X# ':' seperated list of paths containing system manpages.
- X# This should not include /usr/local/man
- X$CONF_SYS_MAN_PATH= '/usr/man';
- X
- X# Default language to use for the output of the various lude tools
- X$CONF_LANG_DEFAULT= 'english';
- X
- X1;
- END_OF_FILE
- if test 1509 -ne `wc -c <'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl'`; then
- echo shar: \"'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl'
- fi
- if test -f 'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude'\"
- else
- echo shar: Extracting \"'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude'\" \(3113 characters\)
- sed "s/^X//" >'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude' <<'END_OF_FILE'
- Xfrancais english
- Xarray MSGS
- XWARN_COPY
- X 0 Fin de copie.
- X 1 End Of Copy.
- XWARN_RMCOPY
- X 0 Fin de l'enlevement de copie.
- X 1 End Of Rmcopy.
- XWARN_LINK
- X 0 Fin de la realisation des liens.
- X 1 End Of Link.
- XWARN_RMLINK
- X 0 Fin de l'enlevement des liens.
- X 1 End Of Rmlink.
- XWARN_INDEX
- X 0 Fin de index.
- X 1 End Of Rmlink.
- XWARN_EXPLODE_DONE
- X 0 Fin de l'explosion de %s.
- X 1 Finished Exploding %s.
- XWARN_LINK_THERE_AND_CORRECT
- X 0 Le lien est deja la et correct (%s <- %s).
- X 1 The Link Is Already There And Correct (%s <- %s).
- XERR_EXPLODE
- X 0 L'explosion ne peut etre faite a cause d'un lien symbolique incorrect: linkval(%s) = %s.
- X 1 Explosion Can't Be Performed Due To Incorrect Symlink: linkval(%s) = %s.
- XERR_CANNOT_CP_SOFT_ON_ITSELF
- X 0 Impossible de copier un logiciel par dessus lui meme.
- X 1 Cannot Copy A Software Onto Itself.
- XUSAGE
- X 0 Utilisation: $Progname
- X c [-debug debuglevel] {ajuster le niveau de deverminage}
- X c [-software software] {Specifie le logiciel a installer}
- X c [-modification modification] {Specifie la modification}
- X c [-server serveur] {Specifie le serveur}
- X c [-target serveur] {Specifie vers quel serveur copier}
- X c [-lntarget serveur] {Specifie vers quel serveur copier}
- X c [-help|-?] {pour avoir de l'aide}
- X c [-install|-uninstall] (effectue une installation/desinstallation complete}
- X c [-copy [src] [run] [none]] { Notez que install est toujours copie}
- X c {specifie quel(s} section(s) copier (au moins une section est requise)}
- X c {Les choix sont separes par des virgules}
- X c [-class class] {Specifie la classe}
- X c {Par defaut, la classe de la machine est utilisee}
- X c [-link|-rmlink|-rmcopy|-index] [-test]
- X c [-show] {Affiche les operations effectues, sans les executer}
- X c [-force] [-preserve backup_suffix]
- X c [-version|-full-version]
- X 1 USAGE: $Progname
- X c [-debug debuglevel] {set debug level}
- X c [-software software] {Specify the software to install}
- X c [-modification modification] {Specify the modification}
- X c [-server server] {Specify which server}
- X c [-target server] {Specify on which server to copy}
- X c [-lntarget server] {Specify on which server to copy}
- X c [-help|-?] {to get help}
- X c [-install|-uninstall] (perform a full install/uninstall}
- X c [-copy [src] [run] [none]] {Note that install is always copied }
- X c {specify which part to copy (at least one of the above required}
- X c {Each choice is comma separated}
- X c [-class class] {Specify which class to copy}
- X c {default is class of the machine}
- X c [-link|-rmlink|-rmcopy|-index] [-test]
- X c [-show] (Show the operation done without doing it)
- X c [-force] [-preserve backup_suffix]
- X c [-version|-full-version]
- X#
- X# Verbose messages
- X#
- XVERB_START_RMLINK
- X 0 Debut de l'enlevement des liens ...
- X 1 Starting The Removal Of Links ...
- XVERB_START_COPY
- X 0 Debut de la copie de %s ...
- X 1 Starting The Copying Of %s ...
- XVERB_START_RMCOPY
- X 0 Debut de l'enlevement d'une copie ...
- X 1 Starting The Removal Of A Copy ...
- XVERB_START_LINK
- X 0 Debut de la realisation des liens ...
- X 1 Starting To Link ...
- XVERB_START_INDEX
- X 0 Debut de la construction des index ...
- X 1 Starting To Build The Index Files ...
- END_OF_FILE
- if test 3113 -ne `wc -c <'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude'`; then
- echo shar: \"'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude'
- fi
- if test -f 'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm'\"
- else
- echo shar: Extracting \"'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm'\" \(3256 characters\)
- sed "s/^X//" >'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm' <<'END_OF_FILE'
- Xfrancais english
- Xarray MSGS
- XERR_TFS_NOT_SUPPORTED
- X 0 Les systemes de fichiers transluscides ne sont pas supportes sur ce systeme.
- X 1 Transluscent File Systems Are Not Supported On This System.
- XERR_CANT_LOCK_BECAUSE_OF_SYMLINK
- X 0 Impossible de bloquer le logiciel a cause du lien symbolique %s.
- X 1 Can't lock the software because of symlink %s.
- XERR_CANT_LOCK_BECAUSE_NO_LOCK_FILE
- X 0 Impossible de bloquer le logiciel a cause du lien symbolique %s.
- X 1 Can't lock the software because of symlink %s.
- XERR_CANT_RELEASE_BECAUSE_OF_SYMLINK
- X 0 Impossible de relacher le logiciel a cause du lien symbolique %s.
- X 1 Can't release the software because of symlink %s.
- XERR_CANT_RELEASE_BECAUSE_NO_LOCK_FILE
- X 0 Impossible de relacher le logiciel car le fichier %s est absent.
- X 1 Can't release the software because file %s is not there.
- XERR_CANT_MOUNT_TFS_BECAUSE_OF_SYMLINK
- X 0 Impossible de realiser le mount tfs a cause du lien symbolique %s.
- X 1 Can't mount the tfs because of symlink %s.
- XERR_CANT_UMOUNT_TFS_BECAUSE_OF_SYMLINK
- X 0 Impossible de realiser le umount tfs a cause du lien symbolique %s.
- X 1 Can't umount the tfs because of symlink %s.
- XERR_CANT_DUPLICATE_BECAUSE_OF_SYMLINK
- X 0 Impossible de duplicater a cause du lien symbolique %s.
- X 1 Can't duplicate because of symlink %s.
- XERR_CANT_UNDUPLICATE_BECAUSE_OF_SYMLINK
- X 0 Impossible de deduplicater a cause du lien symbolique %s.
- X 1 Can't unduplicate because of symlink %s.
- XUSAGE
- X 0 UTILISATION: ludeadm
- X c -software logiciel {Specifie le logiciel}
- X c [-modification modification] {Specifie la modification}
- X c [-server server] {Specifie le serveur}
- X c [-class class] {Specifie la classe}
- X c [-create] [-lock] [-release] [-mount_tfs] [-umount_tfs]
- X c [-duplicate|-unduplicate]
- X c [-version|-full-version]
- X 1 USAGE: ludeadm
- X c -software software {Specify the software}
- X c [-modification modification] {Specify the modification}
- X c [-server server] {Specify the server}
- X c [-class class] {Specify the class}
- X c [-create] [-lock] [-release] [-mount_tfs] [-umount_tfs]
- X c [-duplicate|-unduplicate]
- X c [-version|-full-version]
- XVERB_START_CREATE
- X 0 Debut de la creation de la modification ...
- X 1 Starting the creation of the modification ...
- XVERB_CREATE_DONE
- X 0 Creation complete.
- X 1 Create done.
- XVERB_START_MOUNT_TFS
- X 0 Debut du mount tfs ...
- X 1 Starting the tfs mount ...
- XVERB_MOUNT_TFS_DONE
- X 0 mount tfs complete.
- X 1 tfs mount done.
- XVERB_START_UMOUNT_TFS
- X 0 Debut du umount tfs ...
- X 1 Starting the tfs umount ...
- XVERB_UMOUNT_TFS_DONE
- X 0 umount tfs complete.
- X 1 tfs umount done.
- XVERB_START_LOCK
- X 0 Mise en non disponibilite du logiciel ...
- X 1 Locking the software ..
- XVERB_LOCK_DONE
- X 0 Mise en non disponibilite du logiciel complete.
- X 1 Locking Done.
- XVERB_START_RELEASE
- X 0 Mise en disponibilite du logiciel ...
- X 1 Releasing the software ...
- XVERB_RELEASE_DONE
- X 0 Mise en disponibilite du logiciel complete.
- X 1 Release done.
- XVERB_START_DUPLICATE
- X 0 Debut de la duplication pour %s ...
- X 1 Duplicating to %s ...
- XVERB_START_UNDUPLICATE
- X 0 Debut de la de-duplication de %s...
- X 1 Unduplicating %s ...
- XVERB_DUPLICATE_DONE
- X 0 Duplication termine.
- X 1 Duplication Done.
- XVERB_UNDUPLICATE_DONE
- X 0 De-duplication termine.
- X 1 Unluplication Done.
- END_OF_FILE
- if test 3256 -ne `wc -c <'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm'`; then
- echo shar: \"'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm'
- fi
- if test -f 'lude-1.1/src/orig/Makefile.in' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/Makefile.in'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/Makefile.in'\" \(1982 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/Makefile.in' <<'END_OF_FILE'
- X# Makefile for the lude project.
- X
- X# Copyright (C) 1992,1993 Stephane Boucher, Ecole Polytechnique de Montreal.
- X#
- X# This program is free software; you can redistribute it and/or modify
- X# it under the terms of the GNU General Public License as published by
- X# the Free Software Foundation; either version 1, or (at your option)
- X# any later version.
- X#
- X# This program is distributed in the hope that it will be useful,
- X# but WITHOUT ANY WARRANTY; without even the implied warranty of
- X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- X# GNU General Public License for more details.
- X#
- X# You should have received a copy of the GNU General Public License
- X# along with this program; if not, write to the Free Software
- X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- X
- X# $Id: Makefile.in,v 1.3 1993/03/18 15:36:39 sbo Exp $
- X
- X# Root of the path where the directories bin, include, lib, etc.
- X# This is the class that the machine is identified by.
- Xfirst_class=@FIRST_CLASS@
- X
- X# Other class names that identify the system. They are listed
- X# in decreasing order of preference. This filed can be left blank.
- Xother_classes=@OTHER_CLASSES@
- X
- X# can be found.
- X# The standard way to install it is:
- X# $prefix=/usr/local/lude-version/run/mod/class
- X# The class part should preferably the same as first_class
- Xprefix=@PREFIX@
- X
- XMAKE=@MAKE@
- XTAR=@TAR@
- XCOMPRESS=@COMPRESS@
- XMKDIR=@MKDIR@
- XCP=@CP@
- XMV=@MV@
- XCHMOD=@CHMOD@
- XCAT=@CAT@
- X
- X
- Xdefault:
- X @sh -c ' \
- X $(ECHO) "To install lude do the following:"; \
- X $(ECHO) "$(MAKE) prefix=/usr/local/soft/lude-version/run/mod/class class=some_class install"'
- X
- Xinstall:
- X cd src; $(MAKE) install
- X cd lang; $(MAKE) install
- X cd html; $(MAKE) install
- X
- X
- Xinstall.info:
- X cd info; $(MAKE) install
- X
- Xclean:
- X cd src; $(MAKE) clean
- X cd info; $(MAKE) clean
- X cd lang; $(MAKE) clean
- X cd html; $(MAKE) clean
- X $(RM) *~ #*# core
- X
- Xfull-clean: clean
- X cd src; $(MAKE) full-clean
- X cd info; $(MAKE) full-clean
- X cd lang; $(MAKE) full-clean
- X $(RM) config.status configure Makefile
- END_OF_FILE
- if test 1982 -ne `wc -c <'lude-1.1/src/orig/Makefile.in'`; then
- echo shar: \"'lude-1.1/src/orig/Makefile.in'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/Makefile.in'
- fi
- if test -f 'lude-1.1/src/orig/bug-report/template' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/bug-report/template'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/bug-report/template'\" \(704 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/bug-report/template' <<'END_OF_FILE'
- X============================================================
- X BUG REPORT / RAPPORT DE PROBLEME
- X============================================================
- XSys. D'exploitation/OS:
- X
- XConfiguration materiel/Hardware config:
- X
- X------------------------------------------------------------
- XVersion de Perl version:
- X(obtained with perl -v)
- XVersion de Lude version:
- X(obtained with lude -version)
- X============================================================
- XDescription:
- X
- X------------------------------------------------------------
- XEx[ea]mple:
- X
- X------------------------------------------------------------
- XCorrection/patch:
- X(si possible/if any)
- X
- X============================================================
- END_OF_FILE
- if test 704 -ne `wc -c <'lude-1.1/src/orig/bug-report/template'`; then
- echo shar: \"'lude-1.1/src/orig/bug-report/template'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/bug-report/template'
- fi
- if test -f 'lude-1.1/src/orig/html/Makefile' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/html/Makefile'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/html/Makefile'\" \(2560 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/html/Makefile' <<'END_OF_FILE'
- X# Generated automatically from Makefile.in by configure.
- X# Makefile for the language section of the lude project.
- X
- X# Copyright (C) 1993 Stephane Boucher.
- X#
- X# This program is free software; you can redistribute it and/or modify
- X# it under the terms of the GNU General Public License as published by
- X# the Free Software Foundation; either version 1, or (at your option)
- X# any later version.
- X#
- X# This program is distributed in the hope that it will be useful,
- X# but WITHOUT ANY WARRANTY; without even the implied warranty of
- X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- X# GNU General Public License for more details.
- X#
- X# You should have received a copy of the GNU General Public License
- X# along with this program; if not, write to the Free Software
- X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- X
- X# $Id: Makefile.in,v 1.3 1993/06/16 18:55:49 laplante Exp $
- X
- X# Root of the path where the directories bin, include, lib, etc.
- X# can be found.
- X# The standard way to install it is:
- X# $prefix=/usr/local/soft/lude-version/run/mod/class
- X# The class part should preferably the same as first_class
- Xprefix=/usr/local/soft/lude-1.1/run/crim/sun4.1_sparc
- X
- XLANG_ABREV=eng
- X
- Xwwwdir=$(prefix)/lib/WWW
- X
- Xwwwldir=$(prefix)/lib/WWW/lude
- X
- Xwaisdir=$(prefix)/lib/WAIS
- X
- Xinfodir=$(prefix)/info
- X
- XWWW_FILES=default.html local.html
- X
- XWWWL_FILES=dirh.top dirh.end
- X
- XWAIS_FILES=lude.html
- X
- XINFO_FILES=diri.top
- X
- XCHMOD=chmod
- XSH=sh
- XMKDIR=mkdir
- XCP=cp
- XECHO=echo
- XSED=sed
- X
- Xinstall:
- X @$(SH) -c '\
- X if test ! -d $(wwwdir); then $(MKDIR) $(wwwdir); fi; \
- X $(ECHO) "Installing html files:"; \
- X for f in $(WWW_FILES); do \
- X $(ECHO) " Installing $$f..."; \
- X $(CP) `$(ECHO) $$f|$(SED) -e s,\.html,_$(LANG_ABREV).html,` $(wwwdir)/$$f;\
- X $(CHMOD) 644 $(wwwdir)/$$f; \
- X done; \
- X if test ! -d $(wwwldir); then $(MKDIR) $(wwwldir); fi; \
- X for f in $(WWWL_FILES); do \
- X $(ECHO) " Installing $$f..."; \
- X $(CP) `$(ECHO) $$f|$(SED) -e s,\\\\.,_$(LANG_ABREV).,` $(wwwldir)/$$f;\
- X $(CHMOD) 644 $(wwwldir)/$$f; \
- X done; \
- X if test ! -d $(infodir); then $(MKDIR) $(infodir); fi; \
- X for f in $(INFO_FILES); do \
- X $(ECHO) " Installing $$f..."; \
- X $(CP) `$(ECHO) $$f|$(SED) -e s,\\\\.,_$(LANG_ABREV).,` $(infodir)/$$f;\
- X $(CHMOD) 644 $(infodir)/$$f; \
- X done; \
- X if test ! -d $(waisdir); then $(MKDIR) $(waisdir); fi; \
- X for f in $(WAIS_FILES); do \
- X $(ECHO) " Installing $$f..."; \
- X $(CP) `$(ECHO) $$f|$(SED) -e s,\.html,_$(LANG_ABREV).html,` $(waisdir)/$$f;\
- X $(CHMOD) 644 $(waisdir)/$$f; \
- X done;'
- X
- Xclean:
- X $(RM) *~ core *.o #*#
- X
- Xfull-clean: clean
- X $(RM) Makefile
- END_OF_FILE
- if test 2560 -ne `wc -c <'lude-1.1/src/orig/html/Makefile'`; then
- echo shar: \"'lude-1.1/src/orig/html/Makefile'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/html/Makefile'
- fi
- if test -f 'lude-1.1/src/orig/html/Makefile.in' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/html/Makefile.in'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/html/Makefile.in'\" \(2499 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/html/Makefile.in' <<'END_OF_FILE'
- X# Makefile for the language section of the lude project.
- X
- X# Copyright (C) 1993 Stephane Boucher.
- X#
- X# This program is free software; you can redistribute it and/or modify
- X# it under the terms of the GNU General Public License as published by
- X# the Free Software Foundation; either version 1, or (at your option)
- X# any later version.
- X#
- X# This program is distributed in the hope that it will be useful,
- X# but WITHOUT ANY WARRANTY; without even the implied warranty of
- X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- X# GNU General Public License for more details.
- X#
- X# You should have received a copy of the GNU General Public License
- X# along with this program; if not, write to the Free Software
- X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- X
- X# $Id: Makefile.in,v 1.3 1993/06/16 18:55:49 laplante Exp $
- X
- X# Root of the path where the directories bin, include, lib, etc.
- X# can be found.
- X# The standard way to install it is:
- X# $prefix=/usr/local/soft/lude-version/run/mod/class
- X# The class part should preferably the same as first_class
- Xprefix=@PREFIX@
- X
- XLANG_ABREV=@CONF_LANG_DEFAULT_ABREV@
- X
- Xwwwdir=$(prefix)/lib/WWW
- X
- Xwwwldir=$(prefix)/lib/WWW/lude
- X
- Xwaisdir=$(prefix)/lib/WAIS
- X
- Xinfodir=$(prefix)/info
- X
- XWWW_FILES=default.html local.html
- X
- XWWWL_FILES=dirh.top dirh.end
- X
- XWAIS_FILES=lude.html
- X
- XINFO_FILES=diri.top
- X
- XCHMOD=@CHMOD@
- XSH=@SH@
- XMKDIR=@MKDIR@
- XCP=@CP@
- XECHO=@ECHO@
- XSED=@SED@
- X
- Xinstall:
- X @$(SH) -c '\
- X if test ! -d $(wwwdir); then $(MKDIR) $(wwwdir); fi; \
- X $(ECHO) "Installing html files:"; \
- X for f in $(WWW_FILES); do \
- X $(ECHO) " Installing $$f..."; \
- X $(CP) `$(ECHO) $$f|$(SED) -e s,\.html,_$(LANG_ABREV).html,` $(wwwdir)/$$f;\
- X $(CHMOD) 644 $(wwwdir)/$$f; \
- X done; \
- X if test ! -d $(wwwldir); then $(MKDIR) $(wwwldir); fi; \
- X for f in $(WWWL_FILES); do \
- X $(ECHO) " Installing $$f..."; \
- X $(CP) `$(ECHO) $$f|$(SED) -e s,\\\\.,_$(LANG_ABREV).,` $(wwwldir)/$$f;\
- X $(CHMOD) 644 $(wwwldir)/$$f; \
- X done; \
- X if test ! -d $(infodir); then $(MKDIR) $(infodir); fi; \
- X for f in $(INFO_FILES); do \
- X $(ECHO) " Installing $$f..."; \
- X $(CP) `$(ECHO) $$f|$(SED) -e s,\\\\.,_$(LANG_ABREV).,` $(infodir)/$$f;\
- X $(CHMOD) 644 $(infodir)/$$f; \
- X done; \
- X if test ! -d $(waisdir); then $(MKDIR) $(waisdir); fi; \
- X for f in $(WAIS_FILES); do \
- X $(ECHO) " Installing $$f..."; \
- X $(CP) `$(ECHO) $$f|$(SED) -e s,\.html,_$(LANG_ABREV).html,` $(waisdir)/$$f;\
- X $(CHMOD) 644 $(waisdir)/$$f; \
- X done;'
- X
- Xclean:
- X $(RM) *~ core *.o #*#
- X
- Xfull-clean: clean
- X $(RM) Makefile
- END_OF_FILE
- if test 2499 -ne `wc -c <'lude-1.1/src/orig/html/Makefile.in'`; then
- echo shar: \"'lude-1.1/src/orig/html/Makefile.in'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/html/Makefile.in'
- fi
- if test -f 'lude-1.1/src/orig/html/default_fra.UU' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/html/default_fra.UU'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/html/default_fra.UU'\" \(2284 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/html/default_fra.UU' <<'END_OF_FILE'
- Xbegin 644 lude-1.1/src/orig/html/default_fra.html
- XM/'1I=&QE/E=O<FQD(%=I9&4@5V5B("A75U<I/"]T:71L93X*/&@Q/E!O:6YT
- XM(&0G96YT<NEE('!O=7(@;&4@5V]R;&0@5VED92!796(\+V@Q/@I#92!F:6-H
- XM:65R('-E<G0@9&4@<&]I;G0@9&4@8V]N=&%C="!P;W5R(&]B=&5N:7(@;"=I
- XM;F9O<FUA=&EO;@ID:7-P;VYI8FQE('-U<B!L97,@<V5R=F5U<G,@5V]R;&0@
- XM5VED92!796(@*%=75RDL"E=I9&4@07)E82!);F9O<FUA=&EO;B!3>7-T96T@
- XM*%=!25,I(&5T($=O<&AE<BX*;"=I;F9O<FUA=&EO;B!D:7-P;VYI8FQE(&-O
- XM;7!R96YD(&%U<W-I(&)I96X@9&5S(&EN9&5X"F1E(&)I8FQI;W1HZ'%U97,L
- XM(&1E<R!R87!P;W)T<R!T96-H;FEQ=65S+"!D97,@8F%S97,@9&4@9&]N;NEE
- XM<R *9^EO9W)A<&AI<75E<R!E="!D97,@;&]G:6-I96QS('%U92!D97,@<'+I
- XM=FES:6]N<R!MZ73I;W)O;&]G:7%U97,N"CQ$3#X*/$14/CQA(&AR968];&]C
- XM86PN:'1M;#YI;F9O(&QO8V%L93PO83X*/$1$/DEN9F]R;6%T:6]N(&QO8V%L
- XM92!A('!R;W!O<R!D92!V;W1R92!S:71E+"!S;VX@;W)G86YI<V%T:6]N+" *
- XM;&5S(')E<W-O=7)C97,@9&ES<&]N:6)L97,L(&AO<F%I<F5S(&1E('/I;6EN
- XM86ER97,@970@<'+I=FES:6]N<PIMZ73I;W)O;&]G:7%U97,@;&]C86QE<RX*
- XM/$14/CQA(&AR968]:'1T<#HO+VQO8V%L:&]S=#HX,"]U<W(O;&]C86PO;&EB
- XM+U=75R]L=61E+V1I<BYH=&UL/DQO9VET:.AQ=64\+V$^"CQ$1#Y,:7-T92!D
- XM92!L;V=I8VEE;',@9&ES<&]N:6)L97,@;&]C86QE;65N="P@9&%N<R!L82!L
- XM;V=I=&CH<75E"DQ51$4L(&5T(&1O8W5M96YT871I;VX@8V]R<F5S<&]N9&%N
- XM=&4N"CQ$5#X\82!H<F5F/6AT=' Z+R]L;V-A;&AO<W0Z.#$O;&]C86QH;W-T
- XM.C(Q,"]L=61E/DQO9VET:.AQ=64\+V$^"CQ$1#Y);F1E>"!D97,@;&]G:6-I
- XM96QS(&1I<W!O;FEB;&5S(&QO8V%L96UE;G0L(&1A;G,@;&$@;&]G:71HZ'%U
- XM90I,541%+"!P;W5R(')E8VAE<F-H97,@<&%R(&UO=',@8VSI<RX*/$14/CQA
- XM(&AR968]:'1T<#HO+VEN9F\N8V5R;BYC:"XO:'EP97)T97AT+T1A=&%3;W5R
- XM8V5S+V)Y4W5B:F5C="]/=F5R=FEE=RYH=&UL/E!A<B!S=6IE=#PO83X*/$1$
- XM/DEN9F]R;6%T:6]N(&1I<W!O;FEB;&4@9&%N<R!L97,@8F%S97,@9&4@9&]N
- XM;NEE<R!I;G1E<FYA=&EO;F%L97,*970@8VQA<W-I9FGI92!P87(@<W5J970N
- XM"CQ$5#X\82!H<F5F/6AT=' Z+R]I;F9O+F-E<FXN8V@N+VAY<&5R=&5X="]$
- XM871A4V]U<F-E<R]">4%C8V5S<RYH=&UL/E!A<B!T>7!E/"]A/@H\1$0^26YF
- XM;W)M871I;VX@9&ES<&]N:6)L92!D86YS(&QE<R!B87-E<R!D92!D;VYNZ65S
- XM(&EN=&5R;F%T:6]N86QE<PIE="!C;&%S<VEF:>EE('!A<B!T>7!E(&1E('-E
- XM<G9E=7(@*%=75RP@5T%)4RP@1V]P:&5R+BXN*2!P=6ES('!A<@IL;V-A;&ES
- XM871I;VX@9^EO9W)A<&AI<75E+@H\1%0^/&$@:')E9CUH='1P.B\O:6YF;RYC
- XM97)N+F-H+VAY<&5R=&5X="]75U<O5&AE4')O:F5C="YH=&UL/E!R;VIE="!7
- XM5U<\+V$^"CQ$1#Y);F9O<FUA=&EO;B!S=7(@;&4@<')O:F5T(%=O<FQD(%=I
- XM9&4@5V5B(&1E(&)A<V4@9&4@9&]N;NEE(&AY<&5R=&5X=&4*9&ES=')I8G7I
- XH92!P;W5R(&QE('!A<G1A9V4@9"=I;F9O<FUA=&EO;BX*/"]$3#X*"G)I
- X
- Xend
- END_OF_FILE
- if test 2284 -ne `wc -c <'lude-1.1/src/orig/html/default_fra.UU'`; then
- echo shar: \"'lude-1.1/src/orig/html/default_fra.UU'\" unpacked with wrong size!
- else
- echo shar: Uudecoding \"'lude-1.1/src/orig/html/default_fra.html'\" \(1615 characters\)
- cat lude-1.1/src/orig/html/default_fra.UU | uudecode
- if test 1615 -ne `wc -c <'lude-1.1/src/orig/html/default_fra.html'`; then
- echo shar: \"'lude-1.1/src/orig/html/default_fra.html'\" uudecoded with wrong size!
- else
- rm lude-1.1/src/orig/html/default_fra.UU
- fi
- fi
- # end of 'lude-1.1/src/orig/html/default_fra.UU'
- fi
- if test -f 'lude-1.1/src/orig/info/Makefile.in' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/info/Makefile.in'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/info/Makefile.in'\" \(1626 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/info/Makefile.in' <<'END_OF_FILE'
- X# Makefile for the lude project.
- X
- X# Copyright (C) 1992,1993 Stephane Boucher, Ecole Polytechnique de Montreal.
- X#
- X# This program is free software; you can redistribute it and/or modify
- X# it under the terms of the GNU General Public License as published by
- X# the Free Software Foundation; either version 1, or (at your option)
- X# any later version.
- X#
- X# This program is distributed in the hope that it will be useful,
- X# but WITHOUT ANY WARRANTY; without even the implied warranty of
- X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- X# GNU General Public License for more details.
- X#
- X# You should have received a copy of the GNU General Public License
- X# along with this program; if not, write to the Free Software
- X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- X
- X# $Id: Makefile.in,v 1.5 1993/03/18 15:37:28 sbo Exp $
- X
- X# Root of the path where the directories bin, include, lib, etc.
- X# can be found.
- X# The standard way to install it is:
- X# $prefix=/usr/local/soft/lude-version/run/mod/class
- X# The class part should preferably the same as first_class
- Xprefix=@PREFIX@
- X
- X# Directory where the emacs' info files should be placed.
- Xinfodir=$(prefix)/info
- X
- XLANG_INFO=@LANG_INFO@
- X
- XVERSION=@VERSION@
- X
- XMAKE=@MAKE@
- XCHMOD=@CHMOD@
- XEMACS=@EMACS@
- XSH=@SH@
- XMKDIR=@MKDIR@
- XCP=@CP@
- X
- X# Install the emacs' info file
- Xinstall:
- X @$(SH) -c 'if test ! -d $(infodir); then $(MKDIR) $(infodir); fi;'
- X @$(SH) -c 'for l in $(LANG_INFO); do \
- X $(EMACS) -batch lude_$${l}.texi -f texinfo-format-buffer -f save-buffer; \
- X $(CP) lude_$${l}.info $(infodir); \
- X done;'
- X
- Xclean:
- X $(RM) lude_???.info *~ #*#
- X
- Xfull-clean: clean
- X $(RM) Makefile
- END_OF_FILE
- if test 1626 -ne `wc -c <'lude-1.1/src/orig/info/Makefile.in'`; then
- echo shar: \"'lude-1.1/src/orig/info/Makefile.in'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/info/Makefile.in'
- fi
- if test -f 'lude-1.1/src/orig/lang/Makefile' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/lang/Makefile'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/lang/Makefile'\" \(1828 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/lang/Makefile' <<'END_OF_FILE'
- X# Generated automatically from Makefile.in by configure.
- X# Makefile for the language section of the lude project.
- X
- X# Copyright (C) 1992,1993 Stephane Boucher.
- X#
- X# This program is free software; you can redistribute it and/or modify
- X# it under the terms of the GNU General Public License as published by
- X# the Free Software Foundation; either version 1, or (at your option)
- X# any later version.
- X#
- X# This program is distributed in the hope that it will be useful,
- X# but WITHOUT ANY WARRANTY; without even the implied warranty of
- X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- X# GNU General Public License for more details.
- X#
- X# You should have received a copy of the GNU General Public License
- X# along with this program; if not, write to the Free Software
- X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- X
- X# $Id: Makefile.in,v 1.4 1993/03/18 15:37:47 sbo Exp $
- X
- X# Root of the path where the directories bin, include, lib, etc.
- X# can be found.
- X# The standard way to install it is:
- X# $prefix=/usr/local/soft/lude-version/run/mod/class
- X# The class part should preferably the same as first_class
- Xprefix=/usr/local/soft/lude-1.1/run/crim/sun4.1_sparc
- X
- X# Directory where the libraries should be placed.
- Xlibdir=$(prefix)/lib/lude
- X
- X# Files that contain language dependent data
- X# (i.e. all the message strings)
- XLANG_FILES=lude ludeadm ludelist ludeindex ludemisc ludedatafiles
- X
- XDIST_VERSION=@DIST_VERSION@
- Xdistdir=void
- X
- XCHMOD=chmod
- XSH=sh
- XMKDIR=mkdir
- XCP=cp
- XECHO=echo
- X
- Xinstall:
- X @$(SH) -c '\
- X if test ! -d $(libdir)/lang; then $(MKDIR) $(libdir)/lang; fi; \
- X $(ECHO) "Installing language files:"; \
- X for l in $(LANG_FILES); do \
- X $(ECHO) " Installing $$l..."; \
- X $(CP) $$l $(libdir)/lang/$$l; \
- X $(CHMOD) 644 $(libdir)/lang/$$l; \
- X done;'
- X
- Xclean:
- X $(RM) *~ core *.o #*#
- X
- Xfull-clean: clean
- X $(RM) Makefile
- END_OF_FILE
- if test 1828 -ne `wc -c <'lude-1.1/src/orig/lang/Makefile'`; then
- echo shar: \"'lude-1.1/src/orig/lang/Makefile'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/lang/Makefile'
- fi
- if test -f 'lude-1.1/src/orig/lang/Makefile.in' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/lang/Makefile.in'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/lang/Makefile.in'\" \(1733 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/lang/Makefile.in' <<'END_OF_FILE'
- X# Makefile for the language section of the lude project.
- X
- X# Copyright (C) 1992,1993 Stephane Boucher.
- X#
- X# This program is free software; you can redistribute it and/or modify
- X# it under the terms of the GNU General Public License as published by
- X# the Free Software Foundation; either version 1, or (at your option)
- X# any later version.
- X#
- X# This program is distributed in the hope that it will be useful,
- X# but WITHOUT ANY WARRANTY; without even the implied warranty of
- X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- X# GNU General Public License for more details.
- X#
- X# You should have received a copy of the GNU General Public License
- X# along with this program; if not, write to the Free Software
- X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- X
- X# $Id: Makefile.in,v 1.4 1993/03/18 15:37:47 sbo Exp $
- X
- X# Root of the path where the directories bin, include, lib, etc.
- X# can be found.
- X# The standard way to install it is:
- X# $prefix=/usr/local/soft/lude-version/run/mod/class
- X# The class part should preferably the same as first_class
- Xprefix=@PREFIX@
- X
- X# Directory where the libraries should be placed.
- Xlibdir=$(prefix)/lib/lude
- X
- X# Files that contain language dependent data
- X# (i.e. all the message strings)
- XLANG_FILES=lude ludeadm ludelist ludeindex ludemisc ludedatafiles
- X
- XDIST_VERSION=@DIST_VERSION@
- Xdistdir=void
- X
- XCHMOD=chmod
- XSH=sh
- XMKDIR=mkdir
- XCP=cp
- XECHO=echo
- X
- Xinstall:
- X @$(SH) -c '\
- X if test ! -d $(libdir)/lang; then $(MKDIR) $(libdir)/lang; fi; \
- X $(ECHO) "Installing language files:"; \
- X for l in $(LANG_FILES); do \
- X $(ECHO) " Installing $$l..."; \
- X $(CP) $$l $(libdir)/lang/$$l; \
- X $(CHMOD) 644 $(libdir)/lang/$$l; \
- X done;'
- X
- Xclean:
- X $(RM) *~ core *.o #*#
- X
- Xfull-clean: clean
- X $(RM) Makefile
- END_OF_FILE
- if test 1733 -ne `wc -c <'lude-1.1/src/orig/lang/Makefile.in'`; then
- echo shar: \"'lude-1.1/src/orig/lang/Makefile.in'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/lang/Makefile.in'
- fi
- if test -f 'lude-1.1/src/orig/lang/lude' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/lang/lude'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/lang/lude'\" \(3113 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/lang/lude' <<'END_OF_FILE'
- Xfrancais english
- Xarray MSGS
- XWARN_COPY
- X 0 Fin de copie.
- X 1 End Of Copy.
- XWARN_RMCOPY
- X 0 Fin de l'enlevement de copie.
- X 1 End Of Rmcopy.
- XWARN_LINK
- X 0 Fin de la realisation des liens.
- X 1 End Of Link.
- XWARN_RMLINK
- X 0 Fin de l'enlevement des liens.
- X 1 End Of Rmlink.
- XWARN_INDEX
- X 0 Fin de index.
- X 1 End Of Rmlink.
- XWARN_EXPLODE_DONE
- X 0 Fin de l'explosion de %s.
- X 1 Finished Exploding %s.
- XWARN_LINK_THERE_AND_CORRECT
- X 0 Le lien est deja la et correct (%s <- %s).
- X 1 The Link Is Already There And Correct (%s <- %s).
- XERR_EXPLODE
- X 0 L'explosion ne peut etre faite a cause d'un lien symbolique incorrect: linkval(%s) = %s.
- X 1 Explosion Can't Be Performed Due To Incorrect Symlink: linkval(%s) = %s.
- XERR_CANNOT_CP_SOFT_ON_ITSELF
- X 0 Impossible de copier un logiciel par dessus lui meme.
- X 1 Cannot Copy A Software Onto Itself.
- XUSAGE
- X 0 Utilisation: $Progname
- X c [-debug debuglevel] {ajuster le niveau de deverminage}
- X c [-software software] {Specifie le logiciel a installer}
- X c [-modification modification] {Specifie la modification}
- X c [-server serveur] {Specifie le serveur}
- X c [-target serveur] {Specifie vers quel serveur copier}
- X c [-lntarget serveur] {Specifie vers quel serveur copier}
- X c [-help|-?] {pour avoir de l'aide}
- X c [-install|-uninstall] (effectue une installation/desinstallation complete}
- X c [-copy [src] [run] [none]] { Notez que install est toujours copie}
- X c {specifie quel(s} section(s) copier (au moins une section est requise)}
- X c {Les choix sont separes par des virgules}
- X c [-class class] {Specifie la classe}
- X c {Par defaut, la classe de la machine est utilisee}
- X c [-link|-rmlink|-rmcopy|-index] [-test]
- X c [-show] {Affiche les operations effectues, sans les executer}
- X c [-force] [-preserve backup_suffix]
- X c [-version|-full-version]
- X 1 USAGE: $Progname
- X c [-debug debuglevel] {set debug level}
- X c [-software software] {Specify the software to install}
- X c [-modification modification] {Specify the modification}
- X c [-server server] {Specify which server}
- X c [-target server] {Specify on which server to copy}
- X c [-lntarget server] {Specify on which server to copy}
- X c [-help|-?] {to get help}
- X c [-install|-uninstall] (perform a full install/uninstall}
- X c [-copy [src] [run] [none]] {Note that install is always copied }
- X c {specify which part to copy (at least one of the above required}
- X c {Each choice is comma separated}
- X c [-class class] {Specify which class to copy}
- X c {default is class of the machine}
- X c [-link|-rmlink|-rmcopy|-index] [-test]
- X c [-show] (Show the operation done without doing it)
- X c [-force] [-preserve backup_suffix]
- X c [-version|-full-version]
- X#
- X# Verbose messages
- X#
- XVERB_START_RMLINK
- X 0 Debut de l'enlevement des liens ...
- X 1 Starting The Removal Of Links ...
- XVERB_START_COPY
- X 0 Debut de la copie de %s ...
- X 1 Starting The Copying Of %s ...
- XVERB_START_RMCOPY
- X 0 Debut de l'enlevement d'une copie ...
- X 1 Starting The Removal Of A Copy ...
- XVERB_START_LINK
- X 0 Debut de la realisation des liens ...
- X 1 Starting To Link ...
- XVERB_START_INDEX
- X 0 Debut de la construction des index ...
- X 1 Starting To Build The Index Files ...
- END_OF_FILE
- if test 3113 -ne `wc -c <'lude-1.1/src/orig/lang/lude'`; then
- echo shar: \"'lude-1.1/src/orig/lang/lude'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/lang/lude'
- fi
- if test -f 'lude-1.1/src/orig/lang/ludeadm' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/lang/ludeadm'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/lang/ludeadm'\" \(3256 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/lang/ludeadm' <<'END_OF_FILE'
- Xfrancais english
- Xarray MSGS
- XERR_TFS_NOT_SUPPORTED
- X 0 Les systemes de fichiers transluscides ne sont pas supportes sur ce systeme.
- X 1 Transluscent File Systems Are Not Supported On This System.
- XERR_CANT_LOCK_BECAUSE_OF_SYMLINK
- X 0 Impossible de bloquer le logiciel a cause du lien symbolique %s.
- X 1 Can't lock the software because of symlink %s.
- XERR_CANT_LOCK_BECAUSE_NO_LOCK_FILE
- X 0 Impossible de bloquer le logiciel a cause du lien symbolique %s.
- X 1 Can't lock the software because of symlink %s.
- XERR_CANT_RELEASE_BECAUSE_OF_SYMLINK
- X 0 Impossible de relacher le logiciel a cause du lien symbolique %s.
- X 1 Can't release the software because of symlink %s.
- XERR_CANT_RELEASE_BECAUSE_NO_LOCK_FILE
- X 0 Impossible de relacher le logiciel car le fichier %s est absent.
- X 1 Can't release the software because file %s is not there.
- XERR_CANT_MOUNT_TFS_BECAUSE_OF_SYMLINK
- X 0 Impossible de realiser le mount tfs a cause du lien symbolique %s.
- X 1 Can't mount the tfs because of symlink %s.
- XERR_CANT_UMOUNT_TFS_BECAUSE_OF_SYMLINK
- X 0 Impossible de realiser le umount tfs a cause du lien symbolique %s.
- X 1 Can't umount the tfs because of symlink %s.
- XERR_CANT_DUPLICATE_BECAUSE_OF_SYMLINK
- X 0 Impossible de duplicater a cause du lien symbolique %s.
- X 1 Can't duplicate because of symlink %s.
- XERR_CANT_UNDUPLICATE_BECAUSE_OF_SYMLINK
- X 0 Impossible de deduplicater a cause du lien symbolique %s.
- X 1 Can't unduplicate because of symlink %s.
- XUSAGE
- X 0 UTILISATION: ludeadm
- X c -software logiciel {Specifie le logiciel}
- X c [-modification modification] {Specifie la modification}
- X c [-server server] {Specifie le serveur}
- X c [-class class] {Specifie la classe}
- X c [-create] [-lock] [-release] [-mount_tfs] [-umount_tfs]
- X c [-duplicate|-unduplicate]
- X c [-version|-full-version]
- X 1 USAGE: ludeadm
- X c -software software {Specify the software}
- X c [-modification modification] {Specify the modification}
- X c [-server server] {Specify the server}
- X c [-class class] {Specify the class}
- X c [-create] [-lock] [-release] [-mount_tfs] [-umount_tfs]
- X c [-duplicate|-unduplicate]
- X c [-version|-full-version]
- XVERB_START_CREATE
- X 0 Debut de la creation de la modification ...
- X 1 Starting the creation of the modification ...
- XVERB_CREATE_DONE
- X 0 Creation complete.
- X 1 Create done.
- XVERB_START_MOUNT_TFS
- X 0 Debut du mount tfs ...
- X 1 Starting the tfs mount ...
- XVERB_MOUNT_TFS_DONE
- X 0 mount tfs complete.
- X 1 tfs mount done.
- XVERB_START_UMOUNT_TFS
- X 0 Debut du umount tfs ...
- X 1 Starting the tfs umount ...
- XVERB_UMOUNT_TFS_DONE
- X 0 umount tfs complete.
- X 1 tfs umount done.
- XVERB_START_LOCK
- X 0 Mise en non disponibilite du logiciel ...
- X 1 Locking the software ..
- XVERB_LOCK_DONE
- X 0 Mise en non disponibilite du logiciel complete.
- X 1 Locking Done.
- XVERB_START_RELEASE
- X 0 Mise en disponibilite du logiciel ...
- X 1 Releasing the software ...
- XVERB_RELEASE_DONE
- X 0 Mise en disponibilite du logiciel complete.
- X 1 Release done.
- XVERB_START_DUPLICATE
- X 0 Debut de la duplication pour %s ...
- X 1 Duplicating to %s ...
- XVERB_START_UNDUPLICATE
- X 0 Debut de la de-duplication de %s...
- X 1 Unduplicating %s ...
- XVERB_DUPLICATE_DONE
- X 0 Duplication termine.
- X 1 Duplication Done.
- XVERB_UNDUPLICATE_DONE
- X 0 De-duplication termine.
- X 1 Unluplication Done.
- END_OF_FILE
- if test 3256 -ne `wc -c <'lude-1.1/src/orig/lang/ludeadm'`; then
- echo shar: \"'lude-1.1/src/orig/lang/ludeadm'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/lang/ludeadm'
- fi
- if test -f 'lude-1.1/src/orig/lang/ludelist' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/lang/ludelist'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/lang/ludelist'\" \(3468 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/lang/ludelist' <<'END_OF_FILE'
- Xfrancais english
- X#
- X# Keywords as found in the folg files
- X#
- Xassoc Logkw
- XPACKAGE-NAME
- X 0 package-name
- X 1 package-name
- XTITLE
- X 0 title
- X 1 title
- XVERSION
- X 0 version
- X 1 version
- XDESCRIPTION
- X 0 documentation
- X 1 description
- XABSTRACT
- X 0 resume
- X 1 abstract
- XAUTHOR
- X 0 author
- X 1 author
- XAUTHOR-TELEPHONE
- X 0 author-telephone
- X 1 author-telephone
- XAUTHOR-FAX
- X 0 author-fax
- X 1 author-fax
- XAUTHOR-POSTAL
- X 0 author-postal
- X 1 author-postal
- XAUTHOR-EMAIL
- X 0 author-email
- X 1 author-email
- XMAINTAINED-BY
- X 0 maintained-by
- X 1 maintained-by
- XPOSTAL-ADDRESS
- X 0 postal-address
- X 1 postal-address
- XTELEPHONE
- X 0 telephone
- X 1 telephone
- XFAX
- X 0 fax
- X 1 fax
- XELECTRONIC-ADDRESS
- X 0 electronic-address
- X 1 electronic-address
- XMAINTAINED-AT
- X 0 maintained-at
- X 1 maintained-at
- XDISTRIBUTION-TYPE
- X 0 distribution-type
- X 1 distribution-type
- XRESTRICTIONS
- X 0 restrictions
- X 1 restrictions
- XDISCUSSION-GROUPS
- X 0 discussion-groups
- X 1 discussion-groups
- XCOPYING-POLICY
- X 0 copying-policy
- X 1 copying-policy
- XMODIFIED-BY
- X 0 modified-by
- X 1 modified-by
- XKEYWORDS
- X 0 keywords
- X 1 keywords
- XURI
- X 0 uri
- X 1 uri
- XINSTALL
- X 0 installation
- X 1 install
- XUSAGE
- X 0 utilisation
- X 1 usage
- XADAPTED-BY
- X 0 adapted-by
- X 1 adapted-by
- XDATE-ADAPTED
- X 0 date-adapted
- X 1 date-adapted
- XLUDE-VERSION
- X 0 lude-version
- X 1 lude-version
- X#
- X# Keywords as printed for the user
- X#
- Xassoc Prkw
- XSERVER
- X 0 Serveur
- X 1 Server
- XMODIFICATION
- X 0 Modification
- X 1 Modification
- XCLASS
- X 0 Classe
- X 1 Class
- XPACKAGE-NAME
- X 0 Logiciel
- X 1 Package name
- XTITLE
- X 0 Titre
- X 1 Title
- XVERSION
- X 0 Version
- X 1 Version
- XDESCRIPTION
- X 0 Documentation
- X 1 Description
- XABSTRACT
- X 0 Resume
- X 1 Abstract
- XAUTHOR
- X 0 Auteur
- X 1 Author
- XAUTHOR-TELEPHONE
- X 0 Numero de telephone de l'auteur
- X 1 Author's phone number
- XAUTHOR-FAX
- X 0 Numero de telecopieur de l'auteur
- X 1 author's fax number
- XAUTHOR-POSTAL
- X 0 Adresse postal de l'auteur
- X 1 author's postal address
- XAUTHOR-EMAIL
- X 0 Adresse electronique de l'auteur
- X 1 author's email address
- XMAINTAINED-BY
- X 0 Maintenu par
- X 1 Maintained by
- XPOSTAL-ADDRESS
- X 0 Adresse postal
- X 1 Postal address
- XTELEPHONE
- X 0 Numero de telephone
- X 1 phone number
- XFAX
- X 0 Numero de telecopieur
- X 1 Fax number
- XELECTRONIC-ADDRESS
- X 0 Adresse electronique
- X 1 Electronic address
- XMAINTAINED-AT
- X 0 Maintenu a
- X 1 Maintained at
- XDISTRIBUTION-TYPE
- X 0 Type de distribution
- X 1 Distribution type
- XRESTRICTIONS
- X 0 Restrictions
- X 1 Restrictions
- XDISCUSSION-GROUPS
- X 0 Groupes de discussion
- X 1 Discussion groups
- XCOPYING-POLICY
- X 0 Copying policy
- X 1 Copying policy
- XMODIFIED-BY
- X 0 Modifie par
- X 1 Modified by
- XKEYWORDS
- X 0 Mots cles
- X 1 Keywords
- XURI
- X 0 uri
- X 1 uri
- XINSTALL
- X 0 Installation
- X 1 Install
- XUSAGE
- X 0 Utilisation
- X 1 Usage
- XADAPTED-BY
- X 0 Adapte par
- X 1 Adapted by
- XDATE-ADAPTED
- X 0 Date d'adaptation
- X 1 Date adapted
- XLUDE-VERSION
- X 0 Version de lude utilisee pour l'installation
- X 1 Lude version used for the installation
- Xarray MSGS
- XUSAGE
- X 0 UTILISATION: $0
- X c [-software logiciel] {Specifie le logiciel}
- X c [-modification modification] {Specifie la modification}
- X c [-language (francais|english)]
- X c [-server serveur] {Specifie le serveur}
- X c [-class classe] {Specifie la classe}
- X c [-raw|-short|-long] {Type de listage}
- X c [-version|-full-version]
- X 1 USAGE: $0
- X c [-software software] {Specify the software}
- X c [-modification modification] {Specify the modification}
- X c [-language (francais|english)]
- X c [-server server] {Specify the server}
- X c [-class class] {Specify the class}
- X c [-raw|-short|-long] {Type of listing}
- X c [-version|-full-version]
- END_OF_FILE
- if test 3468 -ne `wc -c <'lude-1.1/src/orig/lang/ludelist'`; then
- echo shar: \"'lude-1.1/src/orig/lang/ludelist'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/lang/ludelist'
- fi
- if test -f 'lude-1.1/src/orig/lang/ludemisc' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/lang/ludemisc'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/lang/ludemisc'\" \(4277 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/lang/ludemisc' <<'END_OF_FILE'
- Xfrancais english
- Xarray MSGS
- XWARN_NOTLINK
- X 0 Le fichier %s n'est pas un lien symbolique. Le lien ne sera pas fait.
- X 1 File %s is not a link. Link wont be removed.
- XWARN_WRONG_LINK
- X 0 Le fichier est un lien symbolique vers le mauvais repertoire: %s.
- X 1 File %s is a link to the wrong directory: %s.
- XWARN_NOFILE
- X 0 Le fichier %s n'existe pas.
- X 1 File %s does not exist. Link wont be remove.
- XWARN_NOCMD
- X 0 La commande %s n'est pas dans le chemin $ENV{'PATH'}
- X 1 Command %s is not in the path $ENV{'PATH'}
- XWARN_CMD
- X 0 Execution de %s
- X 1 Execution of %s
- XWARN_NOINFO
- X 0 Ce logiciel n'a pas de fichier(s) info.
- X 1 This software does not have info files.
- XWARN_DIR
- X 0 Le repertoire %s n'existe pas.
- X 1 Directory %s does not exist.
- XWARN_OUT
- X 0 %s
- X 1 %s
- XWARN_RMDIR
- X 0 Impossible d'enlever le repertoire %s: %s
- X 1 Can't rmdir %s: %s
- XWARN_MKDIR
- X 0 Impossible de creer le repertoire %s: %s
- X 1 Can't make directory %s: %s
- XWARN_SYMLINK
- X 0 Impossible de creer le lien symbolique entre %s et %s: %s
- X 1 Can't make symlink between %s and %s: %s
- XWARN_RMSYMLINK
- X 0 Impossible d'enlever le lien symbolique %s
- X 1 Can't remove symlink %s
- XWARN_EXEC
- X 0 Impossible d'executer %s: %s
- X 1 Can't execute %s: %s
- XWARN_NOTINSTALLED
- X 0 Ce logiciel n'est pas completement installe.
- X 1 The software is not completely installed.
- XWARN_MSG
- X 0 Avertissement: %s.
- X 1 Warning: %s.
- XERR_NO_LUDE_VERSION_USED_FOR_SOFT
- X 0 La version utilise pour installer le logiciel n'est pas valide ou n'a pas ete trouve.
- X 1 The Version used to install the software is not valid or was not found.
- XERR_VAR
- X 0 La variable %s doit etre initialise.
- X 1 Variable %s Must Be Initialize
- XERR_DIR
- X 0 Le repertoire \"%s\" n'existe pas.
- X 1 Directory \"%s\" Does Not Exist.
- XERR_FILE
- X 0 Le fichier \"%s\" n'existe pas.
- X 1 File \"%s\" Does Not Exist.
- XERR_OPEN
- X 0 Impossible d'ouvrir le fichier \"%s\": %s
- X 1 Can't Open File \"%s\": %s
- XERR_REN
- X 0 Impossible de renommer le fichier \"%s\": %s
- X 1 Can't Rename File \"%s\": %s
- XERR_USAGE
- X 0 Erreur d'utilisation.
- X 1 Error On Utilisation.
- XERR_ARG
- X 0 L'argument %s doit etre suivit de %s.
- X 1 Argument %s Must Be Followed By %s.
- XERR_NOSER
- X 0 Le logiciel %s n'existe pas.
- X 1 The Software %s Does Not Exist.
- XINVALID_ARGUMENT
- X 0 L'argument %s est invalide.
- X 1 Argument %s Is Invalid.
- XERR_ARG_REQUIRED
- X 0 L'argument %s est requis.
- X 1 Argument %s Is Required.
- XERR_CMD
- X 0 Pas de %s dans $ENV{'PATH'}.
- X 1 No %s In $ENV{'PATH'}.
- XERR_MKDIR
- X 0 Impossible de creer le repertoire \"%s\": %d
- X 1 Can't Make Directory \"%s\": %d
- XERR_SYMLINK
- X 0 Impossible de faire le lien symbolique entre \"%s\" et \"%s\": %s
- X 1 Can't Make Symlink Between \"%s\" and \"%s\": %s
- XERR_RMDIR
- X 0 Impossible d'enlever le repertoire \"%s\": %s
- X 1 Can't Rmdir \"%s\": %s
- XERR_INVCMD
- X 0 Commande de \"Mapping\" invalide: \"%s\"
- X 1 Invalid Mapping Command: \"%s\"
- XERR_WRONG_FILE_TYPE
- X 0 Type de fichier incorrect: \"%s\". Devrait etre un fichier ordinaire, un lien symbolique ou un repertoire.
- X 1 Wrong File Type: \"%s\". Should Be A Regular File, A Symlink Or A Directory.
- XERR_INTERNAL
- X 0 Erreur interne %s.
- X 1 Internal Error %s.
- XERR_INCOMP_ARGS
- X 0 Impossible d'utiliser %s avec n'importe quel de %s.
- X 1 Can't Use %s With Any Of %s.
- XERR_ARG_REQUIRES
- X 0 L'argument %s requiert %s.
- X 1 Argument %s requires %s.
- XERR_RMSYMLINK
- X 0 Impossible d'enlever le lien symbolique: \"%s\".
- X 1 Can't Remove Symlink: \"%s\".
- XERR_UNLINK
- X 0 Impossible d'enlever le fichier: \"%s\".
- X 1 Can't Remove File: \"%s\".
- XERR_ACCESS
- X 0 Impossible d'acceder \"%s\".
- X 1 Can't Access \"%s\".
- XERR_NO_R_PERM
- X 0 Pas de permission de lire: %d.
- X 1 Don't Have Read Permission: %d.
- XERR_NO_W_PERM
- X 0 Pas de permission d'ecriture: %d.
- X 1 Don't Have Write Permission: %d.
- XERR_HIST
- X 0 Erreur pendant la mise a jour du fichier history.
- X 1 Error While Trying To Update The History File.
- XERR_READ
- X 0 Erreur de lecture dans le fichier %s.
- X 1 Error Reading From File %s.
- XERR_WRITE
- X 0 Erreur d'ecriture dans le fichier %s.
- X 1 Error Writing To File %s.
- XERR_READ_DIR
- X 0 Impossible de lire le repertoire %s.
- X 1 Can't Read Directory %s.
- XERR_WRITE_DIR
- X 0 Impossible d'ecrire dans le repertoire %s.
- X 1 Can't Write To Directory %s.
- XERR_DIR_TYPE_EXPECTED
- X 0 Un repertoire etait attendu pour %s.
- X 1 A Directory Was Expected For %s.
- XERR_VALUE_DIR
- X 0 Le repertoire %s n'est pas valide.
- X 1 Directory %s Is Invalid.
- END_OF_FILE
- if test 4277 -ne `wc -c <'lude-1.1/src/orig/lang/ludemisc'`; then
- echo shar: \"'lude-1.1/src/orig/lang/ludemisc'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/lang/ludemisc'
- fi
- if test -f 'lude-1.1/src/orig/src/BldRegexpMinRqr.pl' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/src/BldRegexpMinRqr.pl'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/src/BldRegexpMinRqr.pl'\" \(1639 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/src/BldRegexpMinRqr.pl' <<'END_OF_FILE'
- X# Utility to build and manipulate regular expression.
- X# Copyright (C) 1992 Stephane Boucher, Ecole Polytechnique de Montreal.
- X#
- X# This program is free software; you can redistribute it and/or modify
- X# it under the terms of the GNU General Public License as published by
- X# the Free Software Foundation; either version 1, or (at your option)
- X# any later version.
- X#
- X# This program is distributed in the hope that it will be useful,
- X# but WITHOUT ANY WARRANTY; without even the implied warranty of
- X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- X# GNU General Public License for more details.
- X#
- X# You should have received a copy of the GNU General Public License
- X# along with this program; if not, write to the Free Software
- X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- X#
- X# In other words, you are welcome to use, share and improve this program.
- X# You are forbidden to forbid anyone else to use, share and improve
- X# what you give them. Help stamp out software-hoarding!
- X
- X$FULL_VERSION.= '$Id: BldRegexpMinRqr.pl,v 1.2 1992/11/12 01:22:29 sbo Exp $' ."\n";
- X
- X#
- X#
- X#
- Xsub BldRegexpMinRqr {
- X # $_[0] Option String
- X # $_[1] Lenght of the part that is required. The rest of the string is
- X # optional
- X
- X if (scalar(@_) != 2) {
- X die "Incorrect number of params, stopped";
- X }
- X
- X local($OptLen, $Regexp) = length($_[0]);
- X
- X if ($_[1] > $OptLen) {
- X die "Incorrect param value, stopped";
- X }
- X
- X $Regexp = substr($_[0],0,$_[1]);
- X $Regexp .= '(';
- X $Regexp .= join('(', split(//, substr($_[0],$_[1])));
- X $Regexp .= ')?' x ($OptLen - $_[1]);
- X}
- X
- X1;
- END_OF_FILE
- if test 1639 -ne `wc -c <'lude-1.1/src/orig/src/BldRegexpMinRqr.pl'`; then
- echo shar: \"'lude-1.1/src/orig/src/BldRegexpMinRqr.pl'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/src/BldRegexpMinRqr.pl'
- fi
- if test -f 'lude-1.1/src/orig/src/Makefile' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/src/Makefile'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/src/Makefile'\" \(3555 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/src/Makefile' <<'END_OF_FILE'
- X# Generated automatically from Makefile.in by configure.
- X# Makefile for the lude project.
- X
- X# Copyright (C) 1992,1993 Stephane Boucher.
- X#
- X# This program is free software; you can redistribute it and/or modify
- X# it under the terms of the GNU General Public License as published by
- X# the Free Software Foundation; either version 1, or (at your option)
- X# any later version.
- X#
- X# This program is distributed in the hope that it will be useful,
- X# but WITHOUT ANY WARRANTY; without even the implied warranty of
- X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- X# GNU General Public License for more details.
- X#
- X# You should have received a copy of the GNU General Public License
- X# along with this program; if not, write to the Free Software
- X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- X
- X# $Id: Makefile.in,v 1.7 1993/06/01 16:56:56 dagenais Exp $
- X
- XVERSION=1.1
- X
- X# This is the class that the machine is identified by.
- Xfirst_class=sun4.1_sparc
- X
- X# Other class names that identify the system. They are listed
- X# in decreasing order of preference. This filed can be left blank.
- Xother_classes=
- X
- X# Root of the path where the directories bin, include, lib, etc.
- X# can be found.
- X# The standard way to install it is:
- X# $prefix=/usr/local/soft/lude-version/run/mod/class
- X# The class part should preferably the same as first_class
- Xprefix=/usr/local/soft/lude-1.1/run/crim/sun4.1_sparc
- X
- X# Directory where the executable should be placed
- Xbindir=$(prefix)/bin
- X
- X# Directory where the include files should be placed.
- X# This includes the perl libraries.
- Xincdir=$(prefix)/include/lude
- X
- X# Directory where the libraries should be placed.
- Xlibdir=$(prefix)/lib/lude
- X
- X
- X# Perl program
- XPL_PROG=lude ludeadm ludelist ludeindex man2html
- X
- X# Perl Include files
- XPL_INC=ludeinc ludeadminc ludelistinc ludeindexinc \
- X BldRegexpMinRqr.pl ludemisc fileutil.pl ludelang.pl config.pl
- X
- X# Name of the template file used when creating new modification
- X# for a software
- XLUDE_MODIF_FILE_TMPL=LUDE-MODIF.tmpl
- XLUDE_CLASS_FILE_TMPL=LUDE-CLASS.tmpl
- XIAFA_FILE_TMPL=IAFA-PACKAGES.tmpl
- X
- X# Various command used during installationg
- XMAKE=make
- XSH=sh
- XCAT=cat
- XCHMOD=chmod
- XCP=cp
- XECHO=echo
- XMKDIR=mkdir
- XSED=sed
- X
- X# Installs the programs, library, include files
- Xinstall:
- X @$(SH) -c '\
- X if test ! -d $(bindir); then $(MKDIR) $(bindir); fi; \
- X for p in $(PL_PROG); do \
- X $(ECHO) "Installing $$p..."; \
- X $(SED) -e "s;%PL_INCDIR%;$(incdir);" \
- X -e "s;%LUDE_MODIF_FILE_TMPL%;$(libdir)/$(LUDE_MODIF_FILE_TMPL);" \
- X -e "s;%LUDE_CLASS_FILE_TMPL%;$(libdir)/$(LUDE_CLASS_FILE_TMPL);" \
- X -e "s;%IAFA_FILE_TMPL%;$(libdir)/$(IAFA_FILE_TMPL);" \
- X -e "s;%LANG_PATH%;$(libdir)/lang;" \
- X -e "s;%VERSION%;$(VERSION);" \
- X $$p >$(bindir)/$$p; \
- X $(CHMOD) 755 $(bindir)/$$p; \
- X done; \
- X if test ! -d $(incdir); then $(MKDIR) $(incdir); fi; \
- X for i in $(PL_INC); do \
- X $(ECHO) "Installing $$i..."; \
- X $(CP) $$i $(incdir)/$$i; \
- X $(CHMOD) 644 $(incdir)/$$i; \
- X done; \
- X if test ! -d $(libdir); then $(MKDIR) $(libdir); fi; \
- X for l in $(LUDE_MODIF_FILE_TMPL) $(LUDE_CLASS_FILE_TMPL) \
- X $(IAFA_FILE_TMPL); do \
- X $(ECHO) "Installing $$l..."; \
- X $(SED) -e "s;%VERSION%;$(VERSION);" \
- X $$l >$(libdir)/$$l; \
- X $(CHMOD) 644 $(libdir)/$$l; \
- X done; \
- X $(ECHO) "Installing class..."; \
- X $(SED) -e "s;%FIRST_CLASS%;$(first_class);" \
- X -e "s;%OTHER_CLASSES%;$(other_classes);" \
- X class >$(bindir)/class; \
- X $(CHMOD) 755 $(bindir)/class;'
- X
- Xclean:
- X $(RM) *~ core *.o #*#
- X
- Xfull-clean: clean
- X $(RM) Makefile config.pl
- X
- X
- END_OF_FILE
- if test 3555 -ne `wc -c <'lude-1.1/src/orig/src/Makefile'`; then
- echo shar: \"'lude-1.1/src/orig/src/Makefile'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/src/Makefile'
- fi
- if test -f 'lude-1.1/src/orig/src/Makefile.in' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/src/Makefile.in'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/src/Makefile.in'\" \(3498 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/src/Makefile.in' <<'END_OF_FILE'
- X# Makefile for the lude project.
- X
- X# Copyright (C) 1992,1993 Stephane Boucher.
- X#
- X# This program is free software; you can redistribute it and/or modify
- X# it under the terms of the GNU General Public License as published by
- X# the Free Software Foundation; either version 1, or (at your option)
- X# any later version.
- X#
- X# This program is distributed in the hope that it will be useful,
- X# but WITHOUT ANY WARRANTY; without even the implied warranty of
- X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- X# GNU General Public License for more details.
- X#
- X# You should have received a copy of the GNU General Public License
- X# along with this program; if not, write to the Free Software
- X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- X
- X# $Id: Makefile.in,v 1.7 1993/06/01 16:56:56 dagenais Exp $
- X
- XVERSION=@VERSION@
- X
- X# This is the class that the machine is identified by.
- Xfirst_class=@FIRST_CLASS@
- X
- X# Other class names that identify the system. They are listed
- X# in decreasing order of preference. This filed can be left blank.
- Xother_classes=@OTHER_CLASSES@
- X
- X# Root of the path where the directories bin, include, lib, etc.
- X# can be found.
- X# The standard way to install it is:
- X# $prefix=/usr/local/soft/lude-version/run/mod/class
- X# The class part should preferably the same as first_class
- Xprefix=@PREFIX@
- X
- X# Directory where the executable should be placed
- Xbindir=$(prefix)/bin
- X
- X# Directory where the include files should be placed.
- X# This includes the perl libraries.
- Xincdir=$(prefix)/include/lude
- X
- X# Directory where the libraries should be placed.
- Xlibdir=$(prefix)/lib/lude
- X
- X
- X# Perl program
- XPL_PROG=lude ludeadm ludelist ludeindex man2html
- X
- X# Perl Include files
- XPL_INC=ludeinc ludeadminc ludelistinc ludeindexinc \
- X BldRegexpMinRqr.pl ludemisc fileutil.pl ludelang.pl config.pl
- X
- X# Name of the template file used when creating new modification
- X# for a software
- XLUDE_MODIF_FILE_TMPL=LUDE-MODIF.tmpl
- XLUDE_CLASS_FILE_TMPL=LUDE-CLASS.tmpl
- XIAFA_FILE_TMPL=IAFA-PACKAGES.tmpl
- X
- X# Various command used during installationg
- XMAKE=@MAKE@
- XSH=@SH@
- XCAT=@CAT@
- XCHMOD=@CHMOD@
- XCP=@CP@
- XECHO=@ECHO@
- XMKDIR=@MKDIR@
- XSED=@SED@
- X
- X# Installs the programs, library, include files
- Xinstall:
- X @$(SH) -c '\
- X if test ! -d $(bindir); then $(MKDIR) $(bindir); fi; \
- X for p in $(PL_PROG); do \
- X $(ECHO) "Installing $$p..."; \
- X $(SED) -e "s;%PL_INCDIR%;$(incdir);" \
- X -e "s;%LUDE_MODIF_FILE_TMPL%;$(libdir)/$(LUDE_MODIF_FILE_TMPL);" \
- X -e "s;%LUDE_CLASS_FILE_TMPL%;$(libdir)/$(LUDE_CLASS_FILE_TMPL);" \
- X -e "s;%IAFA_FILE_TMPL%;$(libdir)/$(IAFA_FILE_TMPL);" \
- X -e "s;%LANG_PATH%;$(libdir)/lang;" \
- X -e "s;%VERSION%;$(VERSION);" \
- X $$p >$(bindir)/$$p; \
- X $(CHMOD) 755 $(bindir)/$$p; \
- X done; \
- X if test ! -d $(incdir); then $(MKDIR) $(incdir); fi; \
- X for i in $(PL_INC); do \
- X $(ECHO) "Installing $$i..."; \
- X $(CP) $$i $(incdir)/$$i; \
- X $(CHMOD) 644 $(incdir)/$$i; \
- X done; \
- X if test ! -d $(libdir); then $(MKDIR) $(libdir); fi; \
- X for l in $(LUDE_MODIF_FILE_TMPL) $(LUDE_CLASS_FILE_TMPL) \
- X $(IAFA_FILE_TMPL); do \
- X $(ECHO) "Installing $$l..."; \
- X $(SED) -e "s;%VERSION%;$(VERSION);" \
- X $$l >$(libdir)/$$l; \
- X $(CHMOD) 644 $(libdir)/$$l; \
- X done; \
- X $(ECHO) "Installing class..."; \
- X $(SED) -e "s;%FIRST_CLASS%;$(first_class);" \
- X -e "s;%OTHER_CLASSES%;$(other_classes);" \
- X class >$(bindir)/class; \
- X $(CHMOD) 755 $(bindir)/class;'
- X
- Xclean:
- X $(RM) *~ core *.o #*#
- X
- Xfull-clean: clean
- X $(RM) Makefile config.pl
- X
- X
- END_OF_FILE
- if test 3498 -ne `wc -c <'lude-1.1/src/orig/src/Makefile.in'`; then
- echo shar: \"'lude-1.1/src/orig/src/Makefile.in'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/src/Makefile.in'
- fi
- if test -f 'lude-1.1/src/orig/src/config.pl' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/src/config.pl'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/src/config.pl'\" \(1509 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/src/config.pl' <<'END_OF_FILE'
- X# Generated automatically from config.pl.in by configure.
- X# Directory where bin,lib,include ... are located.
- X$LOCAL_DIR = '/usr/local';
- X# Directory where the various server can be accessded.
- X$SERVER_DIR = "$LOCAL_DIR/server";
- X# Directory containing the softwares' directories.
- X$SOFT_DIR = "$LOCAL_DIR/soft";
- X
- X$IAFA_FILE = "IAFA-PACKAGES";
- X$LUDE_FILE = "LUDE";
- X
- X#
- X# TFS - transluscent filesystem (optional)
- X#
- X$CONF_HAVE_TFS= 1;
- X# Performe a tfs mount (only on sun, to my knowledge)
- X$PROG_MOUNT_TFS= 'mount_tfs';
- X# Performe a tfs mount (only on sun, to my knowledge)
- X$PROG_UMOUNT_TFS= 'umount_tfs';
- X
- X# Display the hostname
- X$CONF_HAVE_HOSTNAME= 1;
- X$PROG_HOSTNAME= 'hostname';
- X
- X# Display the domainname
- X$CONF_HAVE_DOMAINNAME= 1;
- X$PROG_DOMAINNAME= 'domainname';
- X
- X# Minimum functionnality required:
- X# -x -> extract from tar
- X# -c -> create tar
- X# -v -> verbose
- X# -f -> to specify the tar file
- X$PROG_TAR= 'tar';
- X
- X# Minimum functionnality required:
- X# Perform a binary comparison and return 0 if the two
- X# files specified in parameters are the same, and return
- X# something different than 0 if the two files are different.
- X$PROG_CMP= 'cmp';
- X
- X# Program to regenerate the whatis database for man
- X$PROG_MAKEWHATIS= 'catman -w -M';
- X
- X# ':' seperated list of paths containing system manpages.
- X# This should not include /usr/local/man
- X$CONF_SYS_MAN_PATH= '/usr/man';
- X
- X# Default language to use for the output of the various lude tools
- X$CONF_LANG_DEFAULT= 'english';
- X
- X1;
- END_OF_FILE
- if test 1509 -ne `wc -c <'lude-1.1/src/orig/src/config.pl'`; then
- echo shar: \"'lude-1.1/src/orig/src/config.pl'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/src/config.pl'
- fi
- if test -f 'lude-1.1/src/orig/src/config.pl.in' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'lude-1.1/src/orig/src/config.pl.in'\"
- else
- echo shar: Extracting \"'lude-1.1/src/orig/src/config.pl.in'\" \(1575 characters\)
- sed "s/^X//" >'lude-1.1/src/orig/src/config.pl.in' <<'END_OF_FILE'
- X# Directory where bin,lib,include ... are located.
- X$LOCAL_DIR = '/usr/local';
- X# Directory where the various server can be accessded.
- X$SERVER_DIR = "$LOCAL_DIR/server";
- X# Directory containing the softwares' directories.
- X$SOFT_DIR = "$LOCAL_DIR/soft";
- X
- X$IAFA_FILE = "IAFA-PACKAGES";
- X$LUDE_FILE = "LUDE";
- X
- X#
- X# TFS - transluscent filesystem (optional)
- X#
- X$CONF_HAVE_TFS= @CONF_HAVE_TFS@;
- X# Performe a tfs mount (only on sun, to my knowledge)
- X$PROG_MOUNT_TFS= '@PROG_MOUNT_TFS@';
- X# Performe a tfs mount (only on sun, to my knowledge)
- X$PROG_UMOUNT_TFS= '@PROG_UMOUNT_TFS@';
- X
- X# Display the hostname
- X$CONF_HAVE_HOSTNAME= @CONF_HAVE_HOSTNAME@;
- X$PROG_HOSTNAME= '@PROG_HOSTNAME@';
- X
- X# Display the domainname
- X$CONF_HAVE_DOMAINNAME= @CONF_HAVE_DOMAINNAME@;
- X$PROG_DOMAINNAME= '@PROG_DOMAINNAME@';
- X
- X# Minimum functionnality required:
- X# -x -> extract from tar
- X# -c -> create tar
- X# -v -> verbose
- X# -f -> to specify the tar file
- X$PROG_TAR= '@PROG_TAR@';
- X
- X# Minimum functionnality required:
- X# Perform a binary comparison and return 0 if the two
- X# files specified in parameters are the same, and return
- X# something different than 0 if the two files are different.
- X$PROG_CMP= '@PROG_CMP@';
- X
- X# Program to regenerate the whatis database for man
- X$PROG_MAKEWHATIS= '@PROG_MAKEWHATIS@';
- X
- X# ':' seperated list of paths containing system manpages.
- X# This should not include /usr/local/man
- X$CONF_SYS_MAN_PATH= '@CONF_SYS_MAN_PATH@';
- X
- X# Default language to use for the output of the various lude tools
- X$CONF_LANG_DEFAULT= '@CONF_LANG_DEFAULT@';
- X
- X1;
- END_OF_FILE
- if test 1575 -ne `wc -c <'lude-1.1/src/orig/src/config.pl.in'`; then
- echo shar: \"'lude-1.1/src/orig/src/config.pl.in'\" unpacked with wrong size!
- fi
- # end of 'lude-1.1/src/orig/src/config.pl.in'
- fi
- echo shar: End of archive 11 \(of 12\).
- cp /dev/null ark11isdone
- MISSING=""
- for I in 1 2 3 4 5 6 7 8 9 10 11 12 ; do
- if test ! -f ark${I}isdone ; then
- MISSING="${MISSING} ${I}"
- fi
- done
- if test "${MISSING}" = "" ; then
- echo You have unpacked all 12 archives.
- rm -f ark[1-9]isdone ark[1-9][0-9]isdone
- else
- echo You still must unpack the following archives:
- echo " " ${MISSING}
- fi
- exit 0
- exit 0 # Just in case...
-