home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / compsrcs / misc / volume38 / lude / part11 < prev    next >
Encoding:
Text File  |  1993-07-11  |  65.1 KB  |  1,937 lines

  1. Newsgroups: comp.sources.misc
  2. From: laplante@crim.ca (Pierre Laplante)
  3. Subject: v38i043:  lude - A Distributed Software Library, Part11/12
  4. Message-ID: <1993Jul11.224804.16943@sparky.imd.sterling.com>
  5. X-Md4-Signature: 34296496c0deef30c8447c2191790b99
  6. Sender: kent@sparky.imd.sterling.com (Kent Landfield)
  7. Organization: Sterling Software
  8. Date: Sun, 11 Jul 1993 22:48:04 GMT
  9. Approved: kent@sparky.sterling.com
  10.  
  11. Submitted-by: laplante@crim.ca (Pierre Laplante)
  12. Posting-number: Volume 38, Issue 43
  13. Archive-name: lude/part11
  14. Environment: UNIX
  15.  
  16. #! /bin/sh
  17. # This is a shell archive.  Remove anything before this line, then feed it
  18. # into a shell via "sh file" or similar.  To overwrite existing files,
  19. # type "sh file -c".
  20. # Contents: 
  21. #   lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl
  22. #   lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl
  23. #   lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude
  24. #   lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm
  25. #   lude-1.1/src/orig/Makefile.in
  26. #   lude-1.1/src/orig/bug-report/template
  27. #   lude-1.1/src/orig/html/Makefile lude-1.1/src/orig/html/Makefile.in
  28. #   lude-1.1/src/orig/html/default_fra.UU
  29. #   lude-1.1/src/orig/info/Makefile.in lude-1.1/src/orig/lang/Makefile
  30. #   lude-1.1/src/orig/lang/Makefile.in lude-1.1/src/orig/lang/lude
  31. #   lude-1.1/src/orig/lang/ludeadm lude-1.1/src/orig/lang/ludelist
  32. #   lude-1.1/src/orig/lang/ludemisc
  33. #   lude-1.1/src/orig/src/BldRegexpMinRqr.pl
  34. #   lude-1.1/src/orig/src/Makefile lude-1.1/src/orig/src/Makefile.in
  35. #   lude-1.1/src/orig/src/config.pl lude-1.1/src/orig/src/config.pl.in
  36. # Wrapped by kent@sparky on Sun Jul 11 15:49:16 1993
  37. PATH=/bin:/usr/bin:/usr/ucb:/usr/local/bin:/usr/lbin ; export PATH
  38. echo If this archive is complete, you will see the following message:
  39. echo '          "shar: End of archive 11 (of 12)."'
  40. if test -f 'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl' -a "${1}" != "-c" ; then 
  41.   echo shar: Will not clobber existing file \"'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl'\"
  42. else
  43.   echo shar: Extracting \"'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl'\" \(1639 characters\)
  44.   sed "s/^X//" >'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl' <<'END_OF_FILE'
  45. X#  Utility to build and manipulate regular expression.
  46. X#  Copyright (C) 1992 Stephane Boucher, Ecole Polytechnique de Montreal.
  47. X# 
  48. X#   This program is free software; you can redistribute it and/or modify
  49. X#   it under the terms of the GNU General Public License as published by
  50. X#   the Free Software Foundation; either version 1, or (at your option)
  51. X#   any later version.
  52. X# 
  53. X#   This program is distributed in the hope that it will be useful,
  54. X#   but WITHOUT ANY WARRANTY; without even the implied warranty of
  55. X#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  56. X#   GNU General Public License for more details.
  57. X# 
  58. X#   You should have received a copy of the GNU General Public License
  59. X#   along with this program; if not, write to the Free Software
  60. X#   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  61. X#
  62. X# In other words, you are welcome to use, share and improve this program.
  63. X# You are forbidden to forbid anyone else to use, share and improve
  64. X# what you give them.   Help stamp out software-hoarding!
  65. X
  66. X$FULL_VERSION.= '$Id: BldRegexpMinRqr.pl,v 1.2 1992/11/12 01:22:29 sbo Exp $' ."\n";
  67. X#
  68. X#
  69. X#
  70. Xsub BldRegexpMinRqr {
  71. X    # $_[0]    Option String
  72. X    # $_[1]    Lenght of the part that is required. The rest of the string is
  73. X    #          optional
  74. X    
  75. X    if (scalar(@_) != 2) {
  76. X    die "Incorrect number of params, stopped";
  77. X    }
  78. X
  79. X    local($OptLen, $Regexp) = length($_[0]);
  80. X
  81. X    if ($_[1] > $OptLen) { 
  82. X    die "Incorrect param value, stopped";
  83. X    }
  84. X
  85. X    $Regexp  = substr($_[0],0,$_[1]);
  86. X    $Regexp .= '(';
  87. X    $Regexp .= join('(', split(//, substr($_[0],$_[1])));
  88. X    $Regexp .= ')?' x ($OptLen - $_[1]);
  89. X}
  90. X
  91. X1;
  92. END_OF_FILE
  93.   if test 1639 -ne `wc -c <'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl'`; then
  94.     echo shar: \"'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl'\" unpacked with wrong size!
  95.   fi
  96.   # end of 'lude-1.1/run/crim/sun4.1_sparc/include/lude/BldRegexpMinRqr.pl'
  97. fi
  98. if test -f 'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl' -a "${1}" != "-c" ; then 
  99.   echo shar: Will not clobber existing file \"'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl'\"
  100. else
  101.   echo shar: Extracting \"'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl'\" \(1509 characters\)
  102.   sed "s/^X//" >'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl' <<'END_OF_FILE'
  103. X# Generated automatically from config.pl.in by configure.
  104. X# Directory where bin,lib,include ... are located.
  105. X$LOCAL_DIR    = '/usr/local';
  106. X# Directory where the various server can be accessded.
  107. X$SERVER_DIR   = "$LOCAL_DIR/server";
  108. X# Directory containing the softwares' directories.
  109. X$SOFT_DIR     = "$LOCAL_DIR/soft";
  110. X
  111. X$IAFA_FILE    = "IAFA-PACKAGES";
  112. X$LUDE_FILE    = "LUDE";
  113. X
  114. X#
  115. X# TFS - transluscent filesystem (optional)
  116. X#
  117. X$CONF_HAVE_TFS=      1;
  118. X# Performe a tfs mount (only on sun, to my knowledge)
  119. X$PROG_MOUNT_TFS=    'mount_tfs';
  120. X# Performe a tfs mount (only on sun, to my knowledge)
  121. X$PROG_UMOUNT_TFS=   'umount_tfs';
  122. X
  123. X# Display the hostname
  124. X$CONF_HAVE_HOSTNAME= 1;
  125. X$PROG_HOSTNAME=     'hostname';
  126. X
  127. X# Display the domainname
  128. X$CONF_HAVE_DOMAINNAME= 1;
  129. X$PROG_DOMAINNAME=   'domainname';
  130. X
  131. X# Minimum functionnality required:
  132. X#  -x -> extract from tar
  133. X#  -c -> create tar
  134. X#  -v -> verbose
  135. X#  -f -> to specify the tar file
  136. X$PROG_TAR=          'tar';
  137. X
  138. X# Minimum functionnality required:
  139. X#  Perform a binary comparison and return 0 if the two
  140. X#  files specified in parameters are the same, and return
  141. X#  something different than 0 if the two files are different.
  142. X$PROG_CMP=          'cmp';
  143. X
  144. X# Program to regenerate the whatis database for man
  145. X$PROG_MAKEWHATIS=   'catman -w -M';
  146. X
  147. X# ':' seperated list of paths containing system manpages.
  148. X# This should not include /usr/local/man
  149. X$CONF_SYS_MAN_PATH= '/usr/man';
  150. X
  151. X# Default language to use for the output of the various lude tools
  152. X$CONF_LANG_DEFAULT= 'english';
  153. X
  154. X1;
  155. END_OF_FILE
  156.   if test 1509 -ne `wc -c <'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl'`; then
  157.     echo shar: \"'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl'\" unpacked with wrong size!
  158.   fi
  159.   # end of 'lude-1.1/run/crim/sun4.1_sparc/include/lude/config.pl'
  160. fi
  161. if test -f 'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude' -a "${1}" != "-c" ; then 
  162.   echo shar: Will not clobber existing file \"'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude'\"
  163. else
  164.   echo shar: Extracting \"'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude'\" \(3113 characters\)
  165.   sed "s/^X//" >'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude' <<'END_OF_FILE'
  166. Xfrancais english
  167. Xarray MSGS
  168. XWARN_COPY
  169. X 0 Fin de copie.
  170. X 1 End Of Copy.
  171. XWARN_RMCOPY
  172. X 0 Fin de l'enlevement de copie.
  173. X 1 End Of Rmcopy.
  174. XWARN_LINK
  175. X 0 Fin de la realisation des liens.
  176. X 1 End Of Link.
  177. XWARN_RMLINK
  178. X 0 Fin de l'enlevement des liens.
  179. X 1 End Of Rmlink.
  180. XWARN_INDEX
  181. X 0 Fin de index.
  182. X 1 End Of Rmlink.
  183. XWARN_EXPLODE_DONE
  184. X 0 Fin de l'explosion de %s.
  185. X 1 Finished Exploding %s.
  186. XWARN_LINK_THERE_AND_CORRECT
  187. X 0 Le lien est deja la et correct (%s <- %s).
  188. X 1 The Link Is Already There And Correct (%s <- %s).
  189. XERR_EXPLODE
  190. X 0 L'explosion ne peut etre faite a cause d'un lien symbolique incorrect: linkval(%s) = %s.
  191. X 1 Explosion Can't Be Performed Due To Incorrect Symlink: linkval(%s) = %s.
  192. XERR_CANNOT_CP_SOFT_ON_ITSELF
  193. X 0 Impossible de copier un logiciel par dessus lui meme.
  194. X 1 Cannot Copy A Software Onto Itself. 
  195. XUSAGE
  196. X 0 Utilisation: $Progname
  197. X c  [-debug debuglevel] {ajuster le niveau de deverminage}
  198. X c  [-software software] {Specifie le logiciel a installer}
  199. X c  [-modification modification] {Specifie la modification}
  200. X c  [-server serveur] {Specifie le serveur}
  201. X c  [-target serveur] {Specifie vers quel serveur copier}
  202. X c  [-lntarget serveur] {Specifie vers quel serveur  copier}
  203. X c  [-help|-?] {pour avoir de l'aide}
  204. X c  [-install|-uninstall] (effectue une installation/desinstallation complete}
  205. X c  [-copy [src] [run] [none]] { Notez que install est toujours copie}
  206. X c    {specifie quel(s} section(s) copier (au moins une section est requise)}
  207. X c    {Les choix sont separes par des virgules}
  208. X c  [-class class] {Specifie la classe}
  209. X c    {Par defaut, la classe de la machine est utilisee}
  210. X c  [-link|-rmlink|-rmcopy|-index] [-test]
  211. X c  [-show] {Affiche les operations effectues, sans les executer}
  212. X c  [-force] [-preserve backup_suffix]
  213. X c  [-version|-full-version]
  214. X 1 USAGE: $Progname
  215. X c  [-debug debuglevel] {set debug level}
  216. X c  [-software software] {Specify the software to install}
  217. X c  [-modification modification] {Specify the modification}
  218. X c  [-server server] {Specify which server}
  219. X c  [-target server] {Specify on which server to copy}
  220. X c  [-lntarget server] {Specify on which server to copy}
  221. X c  [-help|-?] {to get help}
  222. X c  [-install|-uninstall] (perform a full install/uninstall}
  223. X c  [-copy [src] [run] [none]] {Note that install is always copied }
  224. X c    {specify which part to copy (at least one of the above required}
  225. X c    {Each choice is comma separated}
  226. X c  [-class class] {Specify which class to copy}
  227. X c    {default is class of the machine}
  228. X c  [-link|-rmlink|-rmcopy|-index] [-test]
  229. X c  [-show] (Show the operation done without doing it)
  230. X c  [-force] [-preserve backup_suffix]
  231. X c  [-version|-full-version]
  232. X#
  233. X# Verbose messages
  234. X#
  235. XVERB_START_RMLINK
  236. X 0 Debut de l'enlevement des liens ...
  237. X 1 Starting The Removal Of Links ...
  238. XVERB_START_COPY
  239. X 0 Debut de la copie de %s ...
  240. X 1 Starting The Copying Of %s ...
  241. XVERB_START_RMCOPY
  242. X 0 Debut de l'enlevement d'une copie ...
  243. X 1 Starting The Removal Of A Copy ... 
  244. XVERB_START_LINK
  245. X 0 Debut de la realisation des liens ...
  246. X 1 Starting To Link ...
  247. XVERB_START_INDEX
  248. X 0 Debut de la construction des index  ...
  249. X 1 Starting To Build The Index Files ...
  250. END_OF_FILE
  251.   if test 3113 -ne `wc -c <'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude'`; then
  252.     echo shar: \"'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude'\" unpacked with wrong size!
  253.   fi
  254.   # end of 'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/lude'
  255. fi
  256. if test -f 'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm' -a "${1}" != "-c" ; then 
  257.   echo shar: Will not clobber existing file \"'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm'\"
  258. else
  259.   echo shar: Extracting \"'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm'\" \(3256 characters\)
  260.   sed "s/^X//" >'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm' <<'END_OF_FILE'
  261. Xfrancais english
  262. Xarray MSGS
  263. XERR_TFS_NOT_SUPPORTED
  264. X 0 Les systemes de fichiers transluscides ne sont pas supportes sur ce systeme.
  265. X 1 Transluscent File Systems Are Not Supported On This System.
  266. XERR_CANT_LOCK_BECAUSE_OF_SYMLINK
  267. X 0 Impossible de bloquer le logiciel a cause du lien symbolique %s.
  268. X 1 Can't lock the software because of symlink %s.
  269. XERR_CANT_LOCK_BECAUSE_NO_LOCK_FILE
  270. X 0 Impossible de bloquer le logiciel a cause du lien symbolique %s.
  271. X 1 Can't lock the software because of symlink %s.
  272. XERR_CANT_RELEASE_BECAUSE_OF_SYMLINK
  273. X 0 Impossible de relacher le logiciel a cause du lien symbolique %s.
  274. X 1 Can't release the software because of symlink %s.
  275. XERR_CANT_RELEASE_BECAUSE_NO_LOCK_FILE
  276. X 0 Impossible de relacher le logiciel car le fichier %s est absent.
  277. X 1 Can't release the software because file %s is not there.
  278. XERR_CANT_MOUNT_TFS_BECAUSE_OF_SYMLINK
  279. X 0 Impossible de realiser le mount tfs a cause du lien symbolique %s.
  280. X 1 Can't mount the tfs because of symlink %s.
  281. XERR_CANT_UMOUNT_TFS_BECAUSE_OF_SYMLINK
  282. X 0 Impossible de realiser le umount tfs a cause du lien symbolique %s.
  283. X 1 Can't umount the tfs because of symlink %s.
  284. XERR_CANT_DUPLICATE_BECAUSE_OF_SYMLINK
  285. X 0 Impossible de duplicater a cause du lien symbolique %s.
  286. X 1 Can't duplicate because of symlink %s.
  287. XERR_CANT_UNDUPLICATE_BECAUSE_OF_SYMLINK
  288. X 0 Impossible de deduplicater a cause du lien symbolique %s.
  289. X 1 Can't unduplicate because of symlink %s.
  290. XUSAGE
  291. X 0 UTILISATION: ludeadm
  292. X c  -software logiciel           {Specifie le logiciel}
  293. X c  [-modification modification] {Specifie la modification}
  294. X c  [-server server]             {Specifie le serveur}
  295. X c  [-class class]               {Specifie la classe}
  296. X c  [-create] [-lock] [-release] [-mount_tfs] [-umount_tfs]
  297. X c  [-duplicate|-unduplicate]
  298. X c  [-version|-full-version]
  299. X 1 USAGE: ludeadm
  300. X c  -software software           {Specify the software}
  301. X c  [-modification modification] {Specify the modification}
  302. X c  [-server server]             {Specify the server}
  303. X c  [-class class]               {Specify the class}
  304. X c  [-create] [-lock] [-release] [-mount_tfs] [-umount_tfs]
  305. X c  [-duplicate|-unduplicate]
  306. X c  [-version|-full-version]
  307. XVERB_START_CREATE
  308. X 0 Debut de la creation de la modification ...
  309. X 1 Starting the creation of the modification ...
  310. XVERB_CREATE_DONE
  311. X 0 Creation complete.
  312. X 1 Create done.
  313. XVERB_START_MOUNT_TFS
  314. X 0 Debut du mount tfs ...
  315. X 1 Starting the tfs mount ...
  316. XVERB_MOUNT_TFS_DONE
  317. X 0 mount tfs complete.
  318. X 1 tfs mount done.
  319. XVERB_START_UMOUNT_TFS
  320. X 0 Debut du umount tfs ...
  321. X 1 Starting the tfs umount ...
  322. XVERB_UMOUNT_TFS_DONE
  323. X 0 umount tfs complete. 
  324. X 1 tfs umount done.
  325. XVERB_START_LOCK
  326. X 0 Mise en non disponibilite du logiciel ...
  327. X 1 Locking the software ..
  328. XVERB_LOCK_DONE
  329. X 0 Mise en non disponibilite du logiciel complete.
  330. X 1 Locking Done.
  331. XVERB_START_RELEASE
  332. X 0 Mise en disponibilite du logiciel ...
  333. X 1 Releasing the software ...
  334. XVERB_RELEASE_DONE
  335. X 0 Mise en disponibilite du logiciel complete.
  336. X 1 Release done.
  337. XVERB_START_DUPLICATE
  338. X 0 Debut de la duplication pour %s ...
  339. X 1 Duplicating to %s ...
  340. XVERB_START_UNDUPLICATE
  341. X 0 Debut de la de-duplication de %s...
  342. X 1 Unduplicating  %s ...
  343. XVERB_DUPLICATE_DONE
  344. X 0 Duplication termine.
  345. X 1 Duplication Done.
  346. XVERB_UNDUPLICATE_DONE
  347. X 0 De-duplication termine.
  348. X 1 Unluplication Done.
  349. END_OF_FILE
  350.   if test 3256 -ne `wc -c <'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm'`; then
  351.     echo shar: \"'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm'\" unpacked with wrong size!
  352.   fi
  353.   # end of 'lude-1.1/run/crim/sun4.1_sparc/lib/lude/lang/ludeadm'
  354. fi
  355. if test -f 'lude-1.1/src/orig/Makefile.in' -a "${1}" != "-c" ; then 
  356.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/Makefile.in'\"
  357. else
  358.   echo shar: Extracting \"'lude-1.1/src/orig/Makefile.in'\" \(1982 characters\)
  359.   sed "s/^X//" >'lude-1.1/src/orig/Makefile.in' <<'END_OF_FILE'
  360. X# Makefile for the lude project.
  361. X
  362. X# Copyright (C) 1992,1993 Stephane Boucher, Ecole Polytechnique de Montreal.
  363. X#
  364. X# This program is free software; you can redistribute it and/or modify
  365. X# it under the terms of the GNU General Public License as published by
  366. X# the Free Software Foundation; either version 1, or (at your option)
  367. X# any later version.
  368. X#
  369. X# This program is distributed in the hope that it will be useful,
  370. X# but WITHOUT ANY WARRANTY; without even the implied warranty of
  371. X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  372. X# GNU General Public License for more details.
  373. X#
  374. X# You should have received a copy of the GNU General Public License
  375. X# along with this program; if not, write to the Free Software
  376. X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  377. X
  378. X# $Id: Makefile.in,v 1.3 1993/03/18 15:36:39 sbo Exp $
  379. X
  380. X# Root of the path where the directories bin, include, lib, etc.
  381. X# This is the class that the machine is identified by.
  382. Xfirst_class=@FIRST_CLASS@
  383. X
  384. X# Other class names that identify the system. They are listed
  385. X# in decreasing order of preference. This filed can be left blank.
  386. Xother_classes=@OTHER_CLASSES@
  387. X
  388. X# can be found.
  389. X# The standard way to install it is:
  390. X# $prefix=/usr/local/lude-version/run/mod/class
  391. X# The class part should preferably the same as first_class
  392. Xprefix=@PREFIX@
  393. X
  394. XMAKE=@MAKE@
  395. XTAR=@TAR@
  396. XCOMPRESS=@COMPRESS@
  397. XMKDIR=@MKDIR@
  398. XCP=@CP@
  399. XMV=@MV@
  400. XCHMOD=@CHMOD@
  401. XCAT=@CAT@
  402. X
  403. X
  404. Xdefault:
  405. X    @sh -c ' \
  406. X    $(ECHO)    "To install lude do the following:"; \
  407. X    $(ECHO) "$(MAKE) prefix=/usr/local/soft/lude-version/run/mod/class class=some_class install"'
  408. X
  409. Xinstall:
  410. X    cd src; $(MAKE) install
  411. X    cd lang; $(MAKE) install
  412. X    cd html; $(MAKE) install
  413. X    
  414. X
  415. Xinstall.info:
  416. X    cd info; $(MAKE) install
  417. X
  418. Xclean:
  419. X    cd src; $(MAKE) clean
  420. X    cd info; $(MAKE) clean
  421. X    cd lang; $(MAKE) clean
  422. X    cd html; $(MAKE) clean
  423. X    $(RM) *~ #*# core
  424. X
  425. Xfull-clean: clean
  426. X    cd src; $(MAKE) full-clean
  427. X    cd info; $(MAKE) full-clean
  428. X    cd lang; $(MAKE) full-clean
  429. X    $(RM) config.status configure Makefile
  430. END_OF_FILE
  431.   if test 1982 -ne `wc -c <'lude-1.1/src/orig/Makefile.in'`; then
  432.     echo shar: \"'lude-1.1/src/orig/Makefile.in'\" unpacked with wrong size!
  433.   fi
  434.   # end of 'lude-1.1/src/orig/Makefile.in'
  435. fi
  436. if test -f 'lude-1.1/src/orig/bug-report/template' -a "${1}" != "-c" ; then 
  437.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/bug-report/template'\"
  438. else
  439.   echo shar: Extracting \"'lude-1.1/src/orig/bug-report/template'\" \(704 characters\)
  440.   sed "s/^X//" >'lude-1.1/src/orig/bug-report/template' <<'END_OF_FILE'
  441. X============================================================
  442. X          BUG REPORT / RAPPORT DE PROBLEME
  443. X============================================================
  444. XSys. D'exploitation/OS:
  445. X
  446. XConfiguration materiel/Hardware config:
  447. X
  448. X------------------------------------------------------------
  449. XVersion de Perl version:
  450. X(obtained with perl -v)
  451. XVersion de Lude version:
  452. X(obtained with lude -version)
  453. X============================================================
  454. XDescription:
  455. X
  456. X------------------------------------------------------------
  457. XEx[ea]mple:
  458. X
  459. X------------------------------------------------------------
  460. XCorrection/patch:
  461. X(si possible/if any)
  462. X
  463. X============================================================
  464. END_OF_FILE
  465.   if test 704 -ne `wc -c <'lude-1.1/src/orig/bug-report/template'`; then
  466.     echo shar: \"'lude-1.1/src/orig/bug-report/template'\" unpacked with wrong size!
  467.   fi
  468.   # end of 'lude-1.1/src/orig/bug-report/template'
  469. fi
  470. if test -f 'lude-1.1/src/orig/html/Makefile' -a "${1}" != "-c" ; then 
  471.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/html/Makefile'\"
  472. else
  473.   echo shar: Extracting \"'lude-1.1/src/orig/html/Makefile'\" \(2560 characters\)
  474.   sed "s/^X//" >'lude-1.1/src/orig/html/Makefile' <<'END_OF_FILE'
  475. X# Generated automatically from Makefile.in by configure.
  476. X# Makefile for the language section of the lude project.
  477. X
  478. X# Copyright (C) 1993 Stephane Boucher.
  479. X#
  480. X# This program is free software; you can redistribute it and/or modify
  481. X# it under the terms of the GNU General Public License as published by
  482. X# the Free Software Foundation; either version 1, or (at your option)
  483. X# any later version.
  484. X#
  485. X# This program is distributed in the hope that it will be useful,
  486. X# but WITHOUT ANY WARRANTY; without even the implied warranty of
  487. X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  488. X# GNU General Public License for more details.
  489. X#
  490. X# You should have received a copy of the GNU General Public License
  491. X# along with this program; if not, write to the Free Software
  492. X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  493. X
  494. X# $Id: Makefile.in,v 1.3 1993/06/16 18:55:49 laplante Exp $
  495. X
  496. X# Root of the path where the directories bin, include, lib, etc.
  497. X# can be found.
  498. X# The standard way to install it is:
  499. X# $prefix=/usr/local/soft/lude-version/run/mod/class
  500. X# The class part should preferably the same as first_class
  501. Xprefix=/usr/local/soft/lude-1.1/run/crim/sun4.1_sparc
  502. X
  503. XLANG_ABREV=eng
  504. X
  505. Xwwwdir=$(prefix)/lib/WWW
  506. X
  507. Xwwwldir=$(prefix)/lib/WWW/lude
  508. X
  509. Xwaisdir=$(prefix)/lib/WAIS
  510. X
  511. Xinfodir=$(prefix)/info
  512. X
  513. XWWW_FILES=default.html local.html
  514. X
  515. XWWWL_FILES=dirh.top dirh.end
  516. X
  517. XWAIS_FILES=lude.html
  518. X
  519. XINFO_FILES=diri.top
  520. X
  521. XCHMOD=chmod
  522. XSH=sh
  523. XMKDIR=mkdir
  524. XCP=cp
  525. XECHO=echo
  526. XSED=sed
  527. X
  528. Xinstall:
  529. X    @$(SH) -c '\
  530. X    if test ! -d $(wwwdir); then $(MKDIR) $(wwwdir); fi; \
  531. X    $(ECHO) "Installing html files:"; \
  532. X    for f in $(WWW_FILES); do \
  533. X      $(ECHO) "  Installing $$f..."; \
  534. X      $(CP) `$(ECHO) $$f|$(SED) -e s,\.html,_$(LANG_ABREV).html,` $(wwwdir)/$$f;\
  535. X      $(CHMOD) 644 $(wwwdir)/$$f; \
  536. X    done; \
  537. X    if test ! -d $(wwwldir); then $(MKDIR) $(wwwldir); fi; \
  538. X    for f in $(WWWL_FILES); do \
  539. X      $(ECHO) "  Installing $$f..."; \
  540. X      $(CP) `$(ECHO) $$f|$(SED) -e s,\\\\.,_$(LANG_ABREV).,` $(wwwldir)/$$f;\
  541. X      $(CHMOD) 644 $(wwwldir)/$$f; \
  542. X    done; \
  543. X    if test ! -d $(infodir); then $(MKDIR) $(infodir); fi; \
  544. X    for f in $(INFO_FILES); do \
  545. X      $(ECHO) "  Installing $$f..."; \
  546. X      $(CP) `$(ECHO) $$f|$(SED) -e s,\\\\.,_$(LANG_ABREV).,` $(infodir)/$$f;\
  547. X      $(CHMOD) 644 $(infodir)/$$f; \
  548. X    done; \
  549. X    if test ! -d $(waisdir); then $(MKDIR) $(waisdir); fi; \
  550. X    for f in $(WAIS_FILES); do \
  551. X      $(ECHO) "  Installing $$f..."; \
  552. X      $(CP) `$(ECHO) $$f|$(SED) -e s,\.html,_$(LANG_ABREV).html,` $(waisdir)/$$f;\
  553. X      $(CHMOD) 644 $(waisdir)/$$f; \
  554. X    done;'
  555. X
  556. Xclean:
  557. X    $(RM) *~ core *.o #*#
  558. X
  559. Xfull-clean: clean
  560. X    $(RM) Makefile 
  561. END_OF_FILE
  562.   if test 2560 -ne `wc -c <'lude-1.1/src/orig/html/Makefile'`; then
  563.     echo shar: \"'lude-1.1/src/orig/html/Makefile'\" unpacked with wrong size!
  564.   fi
  565.   # end of 'lude-1.1/src/orig/html/Makefile'
  566. fi
  567. if test -f 'lude-1.1/src/orig/html/Makefile.in' -a "${1}" != "-c" ; then 
  568.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/html/Makefile.in'\"
  569. else
  570.   echo shar: Extracting \"'lude-1.1/src/orig/html/Makefile.in'\" \(2499 characters\)
  571.   sed "s/^X//" >'lude-1.1/src/orig/html/Makefile.in' <<'END_OF_FILE'
  572. X# Makefile for the language section of the lude project.
  573. X
  574. X# Copyright (C) 1993 Stephane Boucher.
  575. X#
  576. X# This program is free software; you can redistribute it and/or modify
  577. X# it under the terms of the GNU General Public License as published by
  578. X# the Free Software Foundation; either version 1, or (at your option)
  579. X# any later version.
  580. X#
  581. X# This program is distributed in the hope that it will be useful,
  582. X# but WITHOUT ANY WARRANTY; without even the implied warranty of
  583. X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  584. X# GNU General Public License for more details.
  585. X#
  586. X# You should have received a copy of the GNU General Public License
  587. X# along with this program; if not, write to the Free Software
  588. X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  589. X
  590. X# $Id: Makefile.in,v 1.3 1993/06/16 18:55:49 laplante Exp $
  591. X
  592. X# Root of the path where the directories bin, include, lib, etc.
  593. X# can be found.
  594. X# The standard way to install it is:
  595. X# $prefix=/usr/local/soft/lude-version/run/mod/class
  596. X# The class part should preferably the same as first_class
  597. Xprefix=@PREFIX@
  598. X
  599. XLANG_ABREV=@CONF_LANG_DEFAULT_ABREV@
  600. X
  601. Xwwwdir=$(prefix)/lib/WWW
  602. X
  603. Xwwwldir=$(prefix)/lib/WWW/lude
  604. X
  605. Xwaisdir=$(prefix)/lib/WAIS
  606. X
  607. Xinfodir=$(prefix)/info
  608. X
  609. XWWW_FILES=default.html local.html
  610. X
  611. XWWWL_FILES=dirh.top dirh.end
  612. X
  613. XWAIS_FILES=lude.html
  614. X
  615. XINFO_FILES=diri.top
  616. X
  617. XCHMOD=@CHMOD@
  618. XSH=@SH@
  619. XMKDIR=@MKDIR@
  620. XCP=@CP@
  621. XECHO=@ECHO@
  622. XSED=@SED@
  623. X
  624. Xinstall:
  625. X    @$(SH) -c '\
  626. X    if test ! -d $(wwwdir); then $(MKDIR) $(wwwdir); fi; \
  627. X    $(ECHO) "Installing html files:"; \
  628. X    for f in $(WWW_FILES); do \
  629. X      $(ECHO) "  Installing $$f..."; \
  630. X      $(CP) `$(ECHO) $$f|$(SED) -e s,\.html,_$(LANG_ABREV).html,` $(wwwdir)/$$f;\
  631. X      $(CHMOD) 644 $(wwwdir)/$$f; \
  632. X    done; \
  633. X    if test ! -d $(wwwldir); then $(MKDIR) $(wwwldir); fi; \
  634. X    for f in $(WWWL_FILES); do \
  635. X      $(ECHO) "  Installing $$f..."; \
  636. X      $(CP) `$(ECHO) $$f|$(SED) -e s,\\\\.,_$(LANG_ABREV).,` $(wwwldir)/$$f;\
  637. X      $(CHMOD) 644 $(wwwldir)/$$f; \
  638. X    done; \
  639. X    if test ! -d $(infodir); then $(MKDIR) $(infodir); fi; \
  640. X    for f in $(INFO_FILES); do \
  641. X      $(ECHO) "  Installing $$f..."; \
  642. X      $(CP) `$(ECHO) $$f|$(SED) -e s,\\\\.,_$(LANG_ABREV).,` $(infodir)/$$f;\
  643. X      $(CHMOD) 644 $(infodir)/$$f; \
  644. X    done; \
  645. X    if test ! -d $(waisdir); then $(MKDIR) $(waisdir); fi; \
  646. X    for f in $(WAIS_FILES); do \
  647. X      $(ECHO) "  Installing $$f..."; \
  648. X      $(CP) `$(ECHO) $$f|$(SED) -e s,\.html,_$(LANG_ABREV).html,` $(waisdir)/$$f;\
  649. X      $(CHMOD) 644 $(waisdir)/$$f; \
  650. X    done;'
  651. X
  652. Xclean:
  653. X    $(RM) *~ core *.o #*#
  654. X
  655. Xfull-clean: clean
  656. X    $(RM) Makefile 
  657. END_OF_FILE
  658.   if test 2499 -ne `wc -c <'lude-1.1/src/orig/html/Makefile.in'`; then
  659.     echo shar: \"'lude-1.1/src/orig/html/Makefile.in'\" unpacked with wrong size!
  660.   fi
  661.   # end of 'lude-1.1/src/orig/html/Makefile.in'
  662. fi
  663. if test -f 'lude-1.1/src/orig/html/default_fra.UU' -a "${1}" != "-c" ; then 
  664.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/html/default_fra.UU'\"
  665. else
  666.   echo shar: Extracting \"'lude-1.1/src/orig/html/default_fra.UU'\" \(2284 characters\)
  667.   sed "s/^X//" >'lude-1.1/src/orig/html/default_fra.UU' <<'END_OF_FILE'
  668. Xbegin 644 lude-1.1/src/orig/html/default_fra.html
  669. XM/'1I=&QE/E=O<FQD(%=I9&4@5V5B("A75U<I/"]T:71L93X*/&@Q/E!O:6YT
  670. XM(&0G96YT<NEE('!O=7(@;&4@5V]R;&0@5VED92!796(\+V@Q/@I#92!F:6-H
  671. XM:65R('-E<G0@9&4@<&]I;G0@9&4@8V]N=&%C="!P;W5R(&]B=&5N:7(@;"=I
  672. XM;F9O<FUA=&EO;@ID:7-P;VYI8FQE('-U<B!L97,@<V5R=F5U<G,@5V]R;&0@
  673. XM5VED92!796(@*%=75RDL"E=I9&4@07)E82!);F9O<FUA=&EO;B!3>7-T96T@
  674. XM*%=!25,I(&5T($=O<&AE<BX*;"=I;F9O<FUA=&EO;B!D:7-P;VYI8FQE(&-O
  675. XM;7!R96YD(&%U<W-I(&)I96X@9&5S(&EN9&5X"F1E(&)I8FQI;W1HZ'%U97,L
  676. XM(&1E<R!R87!P;W)T<R!T96-H;FEQ=65S+"!D97,@8F%S97,@9&4@9&]N;NEE
  677. XM<R *9^EO9W)A<&AI<75E<R!E="!D97,@;&]G:6-I96QS('%U92!D97,@<'+I
  678. XM=FES:6]N<R!MZ73I;W)O;&]G:7%U97,N"CQ$3#X*/$14/CQA(&AR968];&]C
  679. XM86PN:'1M;#YI;F9O(&QO8V%L93PO83X*/$1$/DEN9F]R;6%T:6]N(&QO8V%L
  680. XM92!A('!R;W!O<R!D92!V;W1R92!S:71E+"!S;VX@;W)G86YI<V%T:6]N+" *
  681. XM;&5S(')E<W-O=7)C97,@9&ES<&]N:6)L97,L(&AO<F%I<F5S(&1E('/I;6EN
  682. XM86ER97,@970@<'+I=FES:6]N<PIMZ73I;W)O;&]G:7%U97,@;&]C86QE<RX*
  683. XM/$14/CQA(&AR968]:'1T<#HO+VQO8V%L:&]S=#HX,"]U<W(O;&]C86PO;&EB
  684. XM+U=75R]L=61E+V1I<BYH=&UL/DQO9VET:.AQ=64\+V$^"CQ$1#Y,:7-T92!D
  685. XM92!L;V=I8VEE;',@9&ES<&]N:6)L97,@;&]C86QE;65N="P@9&%N<R!L82!L
  686. XM;V=I=&CH<75E"DQ51$4L(&5T(&1O8W5M96YT871I;VX@8V]R<F5S<&]N9&%N
  687. XM=&4N"CQ$5#X\82!H<F5F/6AT=' Z+R]L;V-A;&AO<W0Z.#$O;&]C86QH;W-T
  688. XM.C(Q,"]L=61E/DQO9VET:.AQ=64\+V$^"CQ$1#Y);F1E>"!D97,@;&]G:6-I
  689. XM96QS(&1I<W!O;FEB;&5S(&QO8V%L96UE;G0L(&1A;G,@;&$@;&]G:71HZ'%U
  690. XM90I,541%+"!P;W5R(')E8VAE<F-H97,@<&%R(&UO=',@8VSI<RX*/$14/CQA
  691. XM(&AR968]:'1T<#HO+VEN9F\N8V5R;BYC:"XO:'EP97)T97AT+T1A=&%3;W5R
  692. XM8V5S+V)Y4W5B:F5C="]/=F5R=FEE=RYH=&UL/E!A<B!S=6IE=#PO83X*/$1$
  693. XM/DEN9F]R;6%T:6]N(&1I<W!O;FEB;&4@9&%N<R!L97,@8F%S97,@9&4@9&]N
  694. XM;NEE<R!I;G1E<FYA=&EO;F%L97,*970@8VQA<W-I9FGI92!P87(@<W5J970N
  695. XM"CQ$5#X\82!H<F5F/6AT=' Z+R]I;F9O+F-E<FXN8V@N+VAY<&5R=&5X="]$
  696. XM871A4V]U<F-E<R]">4%C8V5S<RYH=&UL/E!A<B!T>7!E/"]A/@H\1$0^26YF
  697. XM;W)M871I;VX@9&ES<&]N:6)L92!D86YS(&QE<R!B87-E<R!D92!D;VYNZ65S
  698. XM(&EN=&5R;F%T:6]N86QE<PIE="!C;&%S<VEF:>EE('!A<B!T>7!E(&1E('-E
  699. XM<G9E=7(@*%=75RP@5T%)4RP@1V]P:&5R+BXN*2!P=6ES('!A<@IL;V-A;&ES
  700. XM871I;VX@9^EO9W)A<&AI<75E+@H\1%0^/&$@:')E9CUH='1P.B\O:6YF;RYC
  701. XM97)N+F-H+VAY<&5R=&5X="]75U<O5&AE4')O:F5C="YH=&UL/E!R;VIE="!7
  702. XM5U<\+V$^"CQ$1#Y);F9O<FUA=&EO;B!S=7(@;&4@<')O:F5T(%=O<FQD(%=I
  703. XM9&4@5V5B(&1E(&)A<V4@9&4@9&]N;NEE(&AY<&5R=&5X=&4*9&ES=')I8G7I
  704. XH92!P;W5R(&QE('!A<G1A9V4@9"=I;F9O<FUA=&EO;BX*/"]$3#X*"G)I
  705. Xend
  706. END_OF_FILE
  707.   if test 2284 -ne `wc -c <'lude-1.1/src/orig/html/default_fra.UU'`; then
  708.     echo shar: \"'lude-1.1/src/orig/html/default_fra.UU'\" unpacked with wrong size!
  709.   else
  710.     echo shar: Uudecoding \"'lude-1.1/src/orig/html/default_fra.html'\" \(1615 characters\)
  711.     cat lude-1.1/src/orig/html/default_fra.UU | uudecode
  712.     if test 1615 -ne `wc -c <'lude-1.1/src/orig/html/default_fra.html'`; then
  713.       echo shar: \"'lude-1.1/src/orig/html/default_fra.html'\" uudecoded with wrong size!
  714.     else
  715.       rm lude-1.1/src/orig/html/default_fra.UU
  716.     fi
  717.   fi
  718.   # end of 'lude-1.1/src/orig/html/default_fra.UU'
  719. fi
  720. if test -f 'lude-1.1/src/orig/info/Makefile.in' -a "${1}" != "-c" ; then 
  721.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/info/Makefile.in'\"
  722. else
  723.   echo shar: Extracting \"'lude-1.1/src/orig/info/Makefile.in'\" \(1626 characters\)
  724.   sed "s/^X//" >'lude-1.1/src/orig/info/Makefile.in' <<'END_OF_FILE'
  725. X# Makefile for the lude project.
  726. X
  727. X# Copyright (C) 1992,1993 Stephane Boucher, Ecole Polytechnique de Montreal.
  728. X#
  729. X# This program is free software; you can redistribute it and/or modify
  730. X# it under the terms of the GNU General Public License as published by
  731. X# the Free Software Foundation; either version 1, or (at your option)
  732. X# any later version.
  733. X#
  734. X# This program is distributed in the hope that it will be useful,
  735. X# but WITHOUT ANY WARRANTY; without even the implied warranty of
  736. X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  737. X# GNU General Public License for more details.
  738. X#
  739. X# You should have received a copy of the GNU General Public License
  740. X# along with this program; if not, write to the Free Software
  741. X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  742. X
  743. X# $Id: Makefile.in,v 1.5 1993/03/18 15:37:28 sbo Exp $
  744. X
  745. X# Root of the path where the directories bin, include, lib, etc.
  746. X# can be found.
  747. X# The standard way to install it is:
  748. X# $prefix=/usr/local/soft/lude-version/run/mod/class
  749. X# The class part should preferably the same as first_class
  750. Xprefix=@PREFIX@
  751. X
  752. X# Directory where the emacs' info files should be placed.
  753. Xinfodir=$(prefix)/info
  754. X
  755. XLANG_INFO=@LANG_INFO@
  756. X
  757. XVERSION=@VERSION@
  758. X
  759. XMAKE=@MAKE@
  760. XCHMOD=@CHMOD@
  761. XEMACS=@EMACS@
  762. XSH=@SH@
  763. XMKDIR=@MKDIR@
  764. XCP=@CP@
  765. X
  766. X# Install the emacs' info file
  767. Xinstall:
  768. X    @$(SH) -c 'if test ! -d $(infodir); then $(MKDIR) $(infodir); fi;'
  769. X    @$(SH) -c 'for l in $(LANG_INFO); do \
  770. X       $(EMACS) -batch lude_$${l}.texi -f texinfo-format-buffer -f save-buffer; \
  771. X      $(CP) lude_$${l}.info $(infodir); \
  772. X    done;'
  773. X
  774. Xclean:
  775. X    $(RM) lude_???.info *~ #*#
  776. X
  777. Xfull-clean: clean
  778. X    $(RM) Makefile
  779. END_OF_FILE
  780.   if test 1626 -ne `wc -c <'lude-1.1/src/orig/info/Makefile.in'`; then
  781.     echo shar: \"'lude-1.1/src/orig/info/Makefile.in'\" unpacked with wrong size!
  782.   fi
  783.   # end of 'lude-1.1/src/orig/info/Makefile.in'
  784. fi
  785. if test -f 'lude-1.1/src/orig/lang/Makefile' -a "${1}" != "-c" ; then 
  786.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/lang/Makefile'\"
  787. else
  788.   echo shar: Extracting \"'lude-1.1/src/orig/lang/Makefile'\" \(1828 characters\)
  789.   sed "s/^X//" >'lude-1.1/src/orig/lang/Makefile' <<'END_OF_FILE'
  790. X# Generated automatically from Makefile.in by configure.
  791. X# Makefile for the language section of the lude project.
  792. X
  793. X# Copyright (C) 1992,1993 Stephane Boucher.
  794. X#
  795. X# This program is free software; you can redistribute it and/or modify
  796. X# it under the terms of the GNU General Public License as published by
  797. X# the Free Software Foundation; either version 1, or (at your option)
  798. X# any later version.
  799. X#
  800. X# This program is distributed in the hope that it will be useful,
  801. X# but WITHOUT ANY WARRANTY; without even the implied warranty of
  802. X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  803. X# GNU General Public License for more details.
  804. X#
  805. X# You should have received a copy of the GNU General Public License
  806. X# along with this program; if not, write to the Free Software
  807. X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  808. X
  809. X# $Id: Makefile.in,v 1.4 1993/03/18 15:37:47 sbo Exp $
  810. X
  811. X# Root of the path where the directories bin, include, lib, etc.
  812. X# can be found.
  813. X# The standard way to install it is:
  814. X# $prefix=/usr/local/soft/lude-version/run/mod/class
  815. X# The class part should preferably the same as first_class
  816. Xprefix=/usr/local/soft/lude-1.1/run/crim/sun4.1_sparc
  817. X
  818. X# Directory where the libraries should be placed.
  819. Xlibdir=$(prefix)/lib/lude
  820. X
  821. X# Files that contain language dependent data 
  822. X# (i.e. all the message strings)
  823. XLANG_FILES=lude ludeadm ludelist ludeindex ludemisc ludedatafiles
  824. X
  825. XDIST_VERSION=@DIST_VERSION@
  826. Xdistdir=void
  827. X
  828. XCHMOD=chmod
  829. XSH=sh
  830. XMKDIR=mkdir
  831. XCP=cp
  832. XECHO=echo
  833. X
  834. Xinstall:
  835. X    @$(SH) -c '\
  836. X    if test ! -d $(libdir)/lang; then $(MKDIR) $(libdir)/lang; fi; \
  837. X    $(ECHO) "Installing language files:"; \
  838. X    for l in $(LANG_FILES); do \
  839. X      $(ECHO) "  Installing $$l..."; \
  840. X      $(CP) $$l $(libdir)/lang/$$l; \
  841. X      $(CHMOD) 644 $(libdir)/lang/$$l; \
  842. X    done;'
  843. X
  844. Xclean:
  845. X    $(RM) *~ core *.o #*#
  846. X
  847. Xfull-clean: clean
  848. X    $(RM) Makefile 
  849. END_OF_FILE
  850.   if test 1828 -ne `wc -c <'lude-1.1/src/orig/lang/Makefile'`; then
  851.     echo shar: \"'lude-1.1/src/orig/lang/Makefile'\" unpacked with wrong size!
  852.   fi
  853.   # end of 'lude-1.1/src/orig/lang/Makefile'
  854. fi
  855. if test -f 'lude-1.1/src/orig/lang/Makefile.in' -a "${1}" != "-c" ; then 
  856.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/lang/Makefile.in'\"
  857. else
  858.   echo shar: Extracting \"'lude-1.1/src/orig/lang/Makefile.in'\" \(1733 characters\)
  859.   sed "s/^X//" >'lude-1.1/src/orig/lang/Makefile.in' <<'END_OF_FILE'
  860. X# Makefile for the language section of the lude project.
  861. X
  862. X# Copyright (C) 1992,1993 Stephane Boucher.
  863. X#
  864. X# This program is free software; you can redistribute it and/or modify
  865. X# it under the terms of the GNU General Public License as published by
  866. X# the Free Software Foundation; either version 1, or (at your option)
  867. X# any later version.
  868. X#
  869. X# This program is distributed in the hope that it will be useful,
  870. X# but WITHOUT ANY WARRANTY; without even the implied warranty of
  871. X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  872. X# GNU General Public License for more details.
  873. X#
  874. X# You should have received a copy of the GNU General Public License
  875. X# along with this program; if not, write to the Free Software
  876. X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  877. X
  878. X# $Id: Makefile.in,v 1.4 1993/03/18 15:37:47 sbo Exp $
  879. X
  880. X# Root of the path where the directories bin, include, lib, etc.
  881. X# can be found.
  882. X# The standard way to install it is:
  883. X# $prefix=/usr/local/soft/lude-version/run/mod/class
  884. X# The class part should preferably the same as first_class
  885. Xprefix=@PREFIX@
  886. X
  887. X# Directory where the libraries should be placed.
  888. Xlibdir=$(prefix)/lib/lude
  889. X
  890. X# Files that contain language dependent data 
  891. X# (i.e. all the message strings)
  892. XLANG_FILES=lude ludeadm ludelist ludeindex ludemisc ludedatafiles
  893. X
  894. XDIST_VERSION=@DIST_VERSION@
  895. Xdistdir=void
  896. X
  897. XCHMOD=chmod
  898. XSH=sh
  899. XMKDIR=mkdir
  900. XCP=cp
  901. XECHO=echo
  902. X
  903. Xinstall:
  904. X    @$(SH) -c '\
  905. X    if test ! -d $(libdir)/lang; then $(MKDIR) $(libdir)/lang; fi; \
  906. X    $(ECHO) "Installing language files:"; \
  907. X    for l in $(LANG_FILES); do \
  908. X      $(ECHO) "  Installing $$l..."; \
  909. X      $(CP) $$l $(libdir)/lang/$$l; \
  910. X      $(CHMOD) 644 $(libdir)/lang/$$l; \
  911. X    done;'
  912. X
  913. Xclean:
  914. X    $(RM) *~ core *.o #*#
  915. X
  916. Xfull-clean: clean
  917. X    $(RM) Makefile 
  918. END_OF_FILE
  919.   if test 1733 -ne `wc -c <'lude-1.1/src/orig/lang/Makefile.in'`; then
  920.     echo shar: \"'lude-1.1/src/orig/lang/Makefile.in'\" unpacked with wrong size!
  921.   fi
  922.   # end of 'lude-1.1/src/orig/lang/Makefile.in'
  923. fi
  924. if test -f 'lude-1.1/src/orig/lang/lude' -a "${1}" != "-c" ; then 
  925.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/lang/lude'\"
  926. else
  927.   echo shar: Extracting \"'lude-1.1/src/orig/lang/lude'\" \(3113 characters\)
  928.   sed "s/^X//" >'lude-1.1/src/orig/lang/lude' <<'END_OF_FILE'
  929. Xfrancais english
  930. Xarray MSGS
  931. XWARN_COPY
  932. X 0 Fin de copie.
  933. X 1 End Of Copy.
  934. XWARN_RMCOPY
  935. X 0 Fin de l'enlevement de copie.
  936. X 1 End Of Rmcopy.
  937. XWARN_LINK
  938. X 0 Fin de la realisation des liens.
  939. X 1 End Of Link.
  940. XWARN_RMLINK
  941. X 0 Fin de l'enlevement des liens.
  942. X 1 End Of Rmlink.
  943. XWARN_INDEX
  944. X 0 Fin de index.
  945. X 1 End Of Rmlink.
  946. XWARN_EXPLODE_DONE
  947. X 0 Fin de l'explosion de %s.
  948. X 1 Finished Exploding %s.
  949. XWARN_LINK_THERE_AND_CORRECT
  950. X 0 Le lien est deja la et correct (%s <- %s).
  951. X 1 The Link Is Already There And Correct (%s <- %s).
  952. XERR_EXPLODE
  953. X 0 L'explosion ne peut etre faite a cause d'un lien symbolique incorrect: linkval(%s) = %s.
  954. X 1 Explosion Can't Be Performed Due To Incorrect Symlink: linkval(%s) = %s.
  955. XERR_CANNOT_CP_SOFT_ON_ITSELF
  956. X 0 Impossible de copier un logiciel par dessus lui meme.
  957. X 1 Cannot Copy A Software Onto Itself. 
  958. XUSAGE
  959. X 0 Utilisation: $Progname
  960. X c  [-debug debuglevel] {ajuster le niveau de deverminage}
  961. X c  [-software software] {Specifie le logiciel a installer}
  962. X c  [-modification modification] {Specifie la modification}
  963. X c  [-server serveur] {Specifie le serveur}
  964. X c  [-target serveur] {Specifie vers quel serveur copier}
  965. X c  [-lntarget serveur] {Specifie vers quel serveur  copier}
  966. X c  [-help|-?] {pour avoir de l'aide}
  967. X c  [-install|-uninstall] (effectue une installation/desinstallation complete}
  968. X c  [-copy [src] [run] [none]] { Notez que install est toujours copie}
  969. X c    {specifie quel(s} section(s) copier (au moins une section est requise)}
  970. X c    {Les choix sont separes par des virgules}
  971. X c  [-class class] {Specifie la classe}
  972. X c    {Par defaut, la classe de la machine est utilisee}
  973. X c  [-link|-rmlink|-rmcopy|-index] [-test]
  974. X c  [-show] {Affiche les operations effectues, sans les executer}
  975. X c  [-force] [-preserve backup_suffix]
  976. X c  [-version|-full-version]
  977. X 1 USAGE: $Progname
  978. X c  [-debug debuglevel] {set debug level}
  979. X c  [-software software] {Specify the software to install}
  980. X c  [-modification modification] {Specify the modification}
  981. X c  [-server server] {Specify which server}
  982. X c  [-target server] {Specify on which server to copy}
  983. X c  [-lntarget server] {Specify on which server to copy}
  984. X c  [-help|-?] {to get help}
  985. X c  [-install|-uninstall] (perform a full install/uninstall}
  986. X c  [-copy [src] [run] [none]] {Note that install is always copied }
  987. X c    {specify which part to copy (at least one of the above required}
  988. X c    {Each choice is comma separated}
  989. X c  [-class class] {Specify which class to copy}
  990. X c    {default is class of the machine}
  991. X c  [-link|-rmlink|-rmcopy|-index] [-test]
  992. X c  [-show] (Show the operation done without doing it)
  993. X c  [-force] [-preserve backup_suffix]
  994. X c  [-version|-full-version]
  995. X#
  996. X# Verbose messages
  997. X#
  998. XVERB_START_RMLINK
  999. X 0 Debut de l'enlevement des liens ...
  1000. X 1 Starting The Removal Of Links ...
  1001. XVERB_START_COPY
  1002. X 0 Debut de la copie de %s ...
  1003. X 1 Starting The Copying Of %s ...
  1004. XVERB_START_RMCOPY
  1005. X 0 Debut de l'enlevement d'une copie ...
  1006. X 1 Starting The Removal Of A Copy ... 
  1007. XVERB_START_LINK
  1008. X 0 Debut de la realisation des liens ...
  1009. X 1 Starting To Link ...
  1010. XVERB_START_INDEX
  1011. X 0 Debut de la construction des index  ...
  1012. X 1 Starting To Build The Index Files ...
  1013. END_OF_FILE
  1014.   if test 3113 -ne `wc -c <'lude-1.1/src/orig/lang/lude'`; then
  1015.     echo shar: \"'lude-1.1/src/orig/lang/lude'\" unpacked with wrong size!
  1016.   fi
  1017.   # end of 'lude-1.1/src/orig/lang/lude'
  1018. fi
  1019. if test -f 'lude-1.1/src/orig/lang/ludeadm' -a "${1}" != "-c" ; then 
  1020.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/lang/ludeadm'\"
  1021. else
  1022.   echo shar: Extracting \"'lude-1.1/src/orig/lang/ludeadm'\" \(3256 characters\)
  1023.   sed "s/^X//" >'lude-1.1/src/orig/lang/ludeadm' <<'END_OF_FILE'
  1024. Xfrancais english
  1025. Xarray MSGS
  1026. XERR_TFS_NOT_SUPPORTED
  1027. X 0 Les systemes de fichiers transluscides ne sont pas supportes sur ce systeme.
  1028. X 1 Transluscent File Systems Are Not Supported On This System.
  1029. XERR_CANT_LOCK_BECAUSE_OF_SYMLINK
  1030. X 0 Impossible de bloquer le logiciel a cause du lien symbolique %s.
  1031. X 1 Can't lock the software because of symlink %s.
  1032. XERR_CANT_LOCK_BECAUSE_NO_LOCK_FILE
  1033. X 0 Impossible de bloquer le logiciel a cause du lien symbolique %s.
  1034. X 1 Can't lock the software because of symlink %s.
  1035. XERR_CANT_RELEASE_BECAUSE_OF_SYMLINK
  1036. X 0 Impossible de relacher le logiciel a cause du lien symbolique %s.
  1037. X 1 Can't release the software because of symlink %s.
  1038. XERR_CANT_RELEASE_BECAUSE_NO_LOCK_FILE
  1039. X 0 Impossible de relacher le logiciel car le fichier %s est absent.
  1040. X 1 Can't release the software because file %s is not there.
  1041. XERR_CANT_MOUNT_TFS_BECAUSE_OF_SYMLINK
  1042. X 0 Impossible de realiser le mount tfs a cause du lien symbolique %s.
  1043. X 1 Can't mount the tfs because of symlink %s.
  1044. XERR_CANT_UMOUNT_TFS_BECAUSE_OF_SYMLINK
  1045. X 0 Impossible de realiser le umount tfs a cause du lien symbolique %s.
  1046. X 1 Can't umount the tfs because of symlink %s.
  1047. XERR_CANT_DUPLICATE_BECAUSE_OF_SYMLINK
  1048. X 0 Impossible de duplicater a cause du lien symbolique %s.
  1049. X 1 Can't duplicate because of symlink %s.
  1050. XERR_CANT_UNDUPLICATE_BECAUSE_OF_SYMLINK
  1051. X 0 Impossible de deduplicater a cause du lien symbolique %s.
  1052. X 1 Can't unduplicate because of symlink %s.
  1053. XUSAGE
  1054. X 0 UTILISATION: ludeadm
  1055. X c  -software logiciel           {Specifie le logiciel}
  1056. X c  [-modification modification] {Specifie la modification}
  1057. X c  [-server server]             {Specifie le serveur}
  1058. X c  [-class class]               {Specifie la classe}
  1059. X c  [-create] [-lock] [-release] [-mount_tfs] [-umount_tfs]
  1060. X c  [-duplicate|-unduplicate]
  1061. X c  [-version|-full-version]
  1062. X 1 USAGE: ludeadm
  1063. X c  -software software           {Specify the software}
  1064. X c  [-modification modification] {Specify the modification}
  1065. X c  [-server server]             {Specify the server}
  1066. X c  [-class class]               {Specify the class}
  1067. X c  [-create] [-lock] [-release] [-mount_tfs] [-umount_tfs]
  1068. X c  [-duplicate|-unduplicate]
  1069. X c  [-version|-full-version]
  1070. XVERB_START_CREATE
  1071. X 0 Debut de la creation de la modification ...
  1072. X 1 Starting the creation of the modification ...
  1073. XVERB_CREATE_DONE
  1074. X 0 Creation complete.
  1075. X 1 Create done.
  1076. XVERB_START_MOUNT_TFS
  1077. X 0 Debut du mount tfs ...
  1078. X 1 Starting the tfs mount ...
  1079. XVERB_MOUNT_TFS_DONE
  1080. X 0 mount tfs complete.
  1081. X 1 tfs mount done.
  1082. XVERB_START_UMOUNT_TFS
  1083. X 0 Debut du umount tfs ...
  1084. X 1 Starting the tfs umount ...
  1085. XVERB_UMOUNT_TFS_DONE
  1086. X 0 umount tfs complete. 
  1087. X 1 tfs umount done.
  1088. XVERB_START_LOCK
  1089. X 0 Mise en non disponibilite du logiciel ...
  1090. X 1 Locking the software ..
  1091. XVERB_LOCK_DONE
  1092. X 0 Mise en non disponibilite du logiciel complete.
  1093. X 1 Locking Done.
  1094. XVERB_START_RELEASE
  1095. X 0 Mise en disponibilite du logiciel ...
  1096. X 1 Releasing the software ...
  1097. XVERB_RELEASE_DONE
  1098. X 0 Mise en disponibilite du logiciel complete.
  1099. X 1 Release done.
  1100. XVERB_START_DUPLICATE
  1101. X 0 Debut de la duplication pour %s ...
  1102. X 1 Duplicating to %s ...
  1103. XVERB_START_UNDUPLICATE
  1104. X 0 Debut de la de-duplication de %s...
  1105. X 1 Unduplicating  %s ...
  1106. XVERB_DUPLICATE_DONE
  1107. X 0 Duplication termine.
  1108. X 1 Duplication Done.
  1109. XVERB_UNDUPLICATE_DONE
  1110. X 0 De-duplication termine.
  1111. X 1 Unluplication Done.
  1112. END_OF_FILE
  1113.   if test 3256 -ne `wc -c <'lude-1.1/src/orig/lang/ludeadm'`; then
  1114.     echo shar: \"'lude-1.1/src/orig/lang/ludeadm'\" unpacked with wrong size!
  1115.   fi
  1116.   # end of 'lude-1.1/src/orig/lang/ludeadm'
  1117. fi
  1118. if test -f 'lude-1.1/src/orig/lang/ludelist' -a "${1}" != "-c" ; then 
  1119.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/lang/ludelist'\"
  1120. else
  1121.   echo shar: Extracting \"'lude-1.1/src/orig/lang/ludelist'\" \(3468 characters\)
  1122.   sed "s/^X//" >'lude-1.1/src/orig/lang/ludelist' <<'END_OF_FILE'
  1123. Xfrancais english
  1124. X#
  1125. X# Keywords as found in the folg files
  1126. X#
  1127. Xassoc Logkw
  1128. XPACKAGE-NAME
  1129. X 0 package-name
  1130. X 1 package-name
  1131. XTITLE
  1132. X 0 title
  1133. X 1 title
  1134. XVERSION
  1135. X 0 version
  1136. X 1 version
  1137. XDESCRIPTION
  1138. X 0 documentation
  1139. X 1 description
  1140. XABSTRACT
  1141. X 0 resume
  1142. X 1 abstract
  1143. XAUTHOR
  1144. X 0 author
  1145. X 1 author
  1146. XAUTHOR-TELEPHONE
  1147. X 0 author-telephone
  1148. X 1 author-telephone
  1149. XAUTHOR-FAX
  1150. X 0 author-fax
  1151. X 1 author-fax
  1152. XAUTHOR-POSTAL
  1153. X 0 author-postal
  1154. X 1 author-postal
  1155. XAUTHOR-EMAIL
  1156. X 0 author-email
  1157. X 1 author-email
  1158. XMAINTAINED-BY
  1159. X 0 maintained-by
  1160. X 1 maintained-by
  1161. XPOSTAL-ADDRESS
  1162. X 0 postal-address
  1163. X 1 postal-address
  1164. XTELEPHONE
  1165. X 0 telephone
  1166. X 1 telephone
  1167. XFAX
  1168. X 0 fax
  1169. X 1 fax
  1170. XELECTRONIC-ADDRESS
  1171. X 0 electronic-address
  1172. X 1 electronic-address
  1173. XMAINTAINED-AT
  1174. X 0 maintained-at
  1175. X 1 maintained-at
  1176. XDISTRIBUTION-TYPE
  1177. X 0 distribution-type
  1178. X 1 distribution-type
  1179. XRESTRICTIONS
  1180. X 0 restrictions
  1181. X 1 restrictions
  1182. XDISCUSSION-GROUPS
  1183. X 0 discussion-groups
  1184. X 1 discussion-groups
  1185. XCOPYING-POLICY
  1186. X 0 copying-policy
  1187. X 1 copying-policy
  1188. XMODIFIED-BY
  1189. X 0 modified-by
  1190. X 1 modified-by
  1191. XKEYWORDS
  1192. X 0 keywords
  1193. X 1 keywords
  1194. XURI
  1195. X 0 uri
  1196. X 1 uri
  1197. XINSTALL
  1198. X 0 installation
  1199. X 1 install
  1200. XUSAGE
  1201. X 0 utilisation
  1202. X 1 usage
  1203. XADAPTED-BY
  1204. X 0 adapted-by
  1205. X 1 adapted-by
  1206. XDATE-ADAPTED
  1207. X 0 date-adapted
  1208. X 1 date-adapted
  1209. XLUDE-VERSION
  1210. X 0 lude-version
  1211. X 1 lude-version
  1212. X#
  1213. X# Keywords as printed for the user
  1214. X#
  1215. Xassoc Prkw
  1216. XSERVER
  1217. X 0 Serveur
  1218. X 1 Server
  1219. XMODIFICATION
  1220. X 0 Modification
  1221. X 1 Modification
  1222. XCLASS
  1223. X 0 Classe
  1224. X 1 Class
  1225. XPACKAGE-NAME
  1226. X 0 Logiciel
  1227. X 1 Package name
  1228. XTITLE
  1229. X 0 Titre
  1230. X 1 Title
  1231. XVERSION
  1232. X 0 Version
  1233. X 1 Version
  1234. XDESCRIPTION
  1235. X 0 Documentation
  1236. X 1 Description
  1237. XABSTRACT
  1238. X 0 Resume
  1239. X 1 Abstract
  1240. XAUTHOR
  1241. X 0 Auteur
  1242. X 1 Author
  1243. XAUTHOR-TELEPHONE
  1244. X 0 Numero de telephone de l'auteur
  1245. X 1 Author's phone number
  1246. XAUTHOR-FAX
  1247. X 0 Numero de telecopieur de l'auteur
  1248. X 1 author's fax number
  1249. XAUTHOR-POSTAL
  1250. X 0 Adresse postal de l'auteur
  1251. X 1 author's postal address
  1252. XAUTHOR-EMAIL
  1253. X 0 Adresse electronique de l'auteur
  1254. X 1 author's email address
  1255. XMAINTAINED-BY
  1256. X 0 Maintenu par
  1257. X 1 Maintained by
  1258. XPOSTAL-ADDRESS
  1259. X 0 Adresse postal
  1260. X 1 Postal address
  1261. XTELEPHONE
  1262. X 0 Numero de telephone
  1263. X 1 phone number
  1264. XFAX
  1265. X 0 Numero de telecopieur
  1266. X 1 Fax number
  1267. XELECTRONIC-ADDRESS
  1268. X 0 Adresse electronique
  1269. X 1 Electronic address
  1270. XMAINTAINED-AT
  1271. X 0 Maintenu a
  1272. X 1 Maintained at
  1273. XDISTRIBUTION-TYPE
  1274. X 0 Type de distribution
  1275. X 1 Distribution type
  1276. XRESTRICTIONS
  1277. X 0 Restrictions
  1278. X 1 Restrictions
  1279. XDISCUSSION-GROUPS
  1280. X 0 Groupes de discussion
  1281. X 1 Discussion groups
  1282. XCOPYING-POLICY
  1283. X 0 Copying policy
  1284. X 1 Copying policy
  1285. XMODIFIED-BY
  1286. X 0 Modifie par
  1287. X 1 Modified by
  1288. XKEYWORDS
  1289. X 0 Mots cles
  1290. X 1 Keywords
  1291. XURI
  1292. X 0 uri
  1293. X 1 uri
  1294. XINSTALL
  1295. X 0 Installation
  1296. X 1 Install
  1297. XUSAGE
  1298. X 0 Utilisation
  1299. X 1 Usage
  1300. XADAPTED-BY
  1301. X 0 Adapte par
  1302. X 1 Adapted by
  1303. XDATE-ADAPTED
  1304. X 0 Date d'adaptation
  1305. X 1 Date adapted
  1306. XLUDE-VERSION
  1307. X 0 Version de lude utilisee pour l'installation
  1308. X 1 Lude version used for the installation
  1309. Xarray MSGS
  1310. XUSAGE
  1311. X 0 UTILISATION: $0
  1312. X c  [-software logiciel]         {Specifie le logiciel}
  1313. X c  [-modification modification] {Specifie la modification}
  1314. X c  [-language (francais|english)]
  1315. X c  [-server serveur]            {Specifie le serveur}
  1316. X c  [-class classe]              {Specifie la classe}
  1317. X c  [-raw|-short|-long]          {Type de listage}
  1318. X c  [-version|-full-version]
  1319. X 1 USAGE: $0
  1320. X c  [-software software]         {Specify the software}
  1321. X c  [-modification modification] {Specify the modification}
  1322. X c  [-language (francais|english)]
  1323. X c  [-server server]             {Specify the server}
  1324. X c  [-class class]               {Specify the class}
  1325. X c  [-raw|-short|-long]          {Type of listing}
  1326. X c  [-version|-full-version]
  1327. END_OF_FILE
  1328.   if test 3468 -ne `wc -c <'lude-1.1/src/orig/lang/ludelist'`; then
  1329.     echo shar: \"'lude-1.1/src/orig/lang/ludelist'\" unpacked with wrong size!
  1330.   fi
  1331.   # end of 'lude-1.1/src/orig/lang/ludelist'
  1332. fi
  1333. if test -f 'lude-1.1/src/orig/lang/ludemisc' -a "${1}" != "-c" ; then 
  1334.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/lang/ludemisc'\"
  1335. else
  1336.   echo shar: Extracting \"'lude-1.1/src/orig/lang/ludemisc'\" \(4277 characters\)
  1337.   sed "s/^X//" >'lude-1.1/src/orig/lang/ludemisc' <<'END_OF_FILE'
  1338. Xfrancais english
  1339. Xarray MSGS
  1340. XWARN_NOTLINK
  1341. X 0 Le fichier %s n'est pas un lien symbolique. Le lien ne sera pas fait.
  1342. X 1 File %s is not a link. Link wont be removed.
  1343. XWARN_WRONG_LINK
  1344. X 0 Le fichier est un lien symbolique vers le mauvais repertoire: %s.
  1345. X 1 File %s is a link to the wrong directory: %s.
  1346. XWARN_NOFILE
  1347. X 0 Le fichier %s n'existe pas.
  1348. X 1 File %s does not exist. Link wont be remove.
  1349. XWARN_NOCMD
  1350. X 0 La commande %s n'est pas dans le chemin $ENV{'PATH'}
  1351. X 1 Command %s is not in the path $ENV{'PATH'}
  1352. XWARN_CMD
  1353. X 0 Execution de %s
  1354. X 1 Execution of %s
  1355. XWARN_NOINFO
  1356. X 0 Ce logiciel n'a pas de fichier(s) info.
  1357. X 1 This software does not have info files.
  1358. XWARN_DIR
  1359. X 0 Le repertoire %s n'existe pas.
  1360. X 1 Directory %s does not exist.
  1361. XWARN_OUT
  1362. X 0 %s
  1363. X 1 %s
  1364. XWARN_RMDIR
  1365. X 0 Impossible d'enlever le repertoire %s: %s
  1366. X 1 Can't rmdir %s: %s
  1367. XWARN_MKDIR
  1368. X 0 Impossible de creer le repertoire %s: %s
  1369. X 1 Can't make directory %s: %s
  1370. XWARN_SYMLINK
  1371. X 0 Impossible de creer le lien symbolique entre %s et %s: %s
  1372. X 1 Can't make symlink between %s and %s: %s
  1373. XWARN_RMSYMLINK
  1374. X 0 Impossible d'enlever le lien symbolique %s
  1375. X 1 Can't remove symlink %s
  1376. XWARN_EXEC
  1377. X 0 Impossible d'executer %s: %s
  1378. X 1 Can't execute %s: %s
  1379. XWARN_NOTINSTALLED
  1380. X 0 Ce logiciel n'est pas completement installe.
  1381. X 1 The software is not completely installed.
  1382. XWARN_MSG
  1383. X 0 Avertissement: %s.
  1384. X 1 Warning: %s.
  1385. XERR_NO_LUDE_VERSION_USED_FOR_SOFT
  1386. X 0 La version utilise pour installer le logiciel n'est pas valide ou n'a pas ete trouve.
  1387. X 1 The Version used to install the software is not valid or was not found.
  1388. XERR_VAR
  1389. X 0 La variable %s doit etre initialise.
  1390. X 1 Variable %s Must Be Initialize
  1391. XERR_DIR
  1392. X 0 Le repertoire \"%s\" n'existe pas.
  1393. X 1 Directory \"%s\" Does Not Exist.
  1394. XERR_FILE
  1395. X 0 Le fichier \"%s\" n'existe pas.
  1396. X 1 File \"%s\" Does Not Exist.
  1397. XERR_OPEN
  1398. X 0 Impossible d'ouvrir le fichier \"%s\": %s
  1399. X 1 Can't Open File \"%s\": %s
  1400. XERR_REN
  1401. X 0 Impossible de renommer le fichier \"%s\": %s
  1402. X 1 Can't Rename File \"%s\": %s
  1403. XERR_USAGE
  1404. X 0 Erreur d'utilisation.
  1405. X 1 Error On Utilisation.
  1406. XERR_ARG
  1407. X 0 L'argument %s doit etre suivit de %s.
  1408. X 1 Argument %s Must Be Followed By %s.
  1409. XERR_NOSER
  1410. X 0 Le logiciel %s n'existe pas.
  1411. X 1 The Software %s Does Not Exist.
  1412. XINVALID_ARGUMENT
  1413. X 0 L'argument %s est invalide.
  1414. X 1 Argument %s Is Invalid.
  1415. XERR_ARG_REQUIRED
  1416. X 0 L'argument %s est requis.
  1417. X 1 Argument %s Is Required.
  1418. XERR_CMD
  1419. X 0 Pas de %s dans $ENV{'PATH'}.
  1420. X 1 No %s In $ENV{'PATH'}.
  1421. XERR_MKDIR
  1422. X 0 Impossible de creer le repertoire \"%s\": %d
  1423. X 1 Can't Make Directory \"%s\": %d
  1424. XERR_SYMLINK
  1425. X 0 Impossible de faire le lien symbolique entre \"%s\" et \"%s\": %s
  1426. X 1 Can't Make Symlink Between \"%s\" and \"%s\": %s
  1427. XERR_RMDIR
  1428. X 0 Impossible d'enlever le repertoire \"%s\": %s
  1429. X 1 Can't Rmdir \"%s\": %s
  1430. XERR_INVCMD
  1431. X 0 Commande de \"Mapping\" invalide: \"%s\"
  1432. X 1 Invalid Mapping Command: \"%s\"
  1433. XERR_WRONG_FILE_TYPE
  1434. X 0 Type de fichier incorrect: \"%s\". Devrait etre un fichier ordinaire, un lien symbolique ou un repertoire.
  1435. X 1 Wrong File Type: \"%s\". Should Be A Regular File, A Symlink Or A Directory.
  1436. XERR_INTERNAL
  1437. X 0 Erreur interne %s.
  1438. X 1 Internal Error %s.
  1439. XERR_INCOMP_ARGS
  1440. X 0 Impossible d'utiliser %s avec n'importe quel de %s.
  1441. X 1 Can't Use %s With Any Of %s.
  1442. XERR_ARG_REQUIRES
  1443. X 0 L'argument %s requiert %s.
  1444. X 1 Argument %s requires %s.
  1445. XERR_RMSYMLINK
  1446. X 0 Impossible d'enlever le lien symbolique: \"%s\".
  1447. X 1 Can't Remove Symlink: \"%s\".
  1448. XERR_UNLINK
  1449. X 0 Impossible d'enlever le fichier: \"%s\".
  1450. X 1 Can't Remove File: \"%s\".
  1451. XERR_ACCESS
  1452. X 0 Impossible d'acceder \"%s\".
  1453. X 1 Can't Access \"%s\".
  1454. XERR_NO_R_PERM
  1455. X 0 Pas de permission de lire: %d.
  1456. X 1 Don't Have Read Permission: %d.
  1457. XERR_NO_W_PERM
  1458. X 0 Pas de permission d'ecriture: %d.
  1459. X 1 Don't Have Write Permission: %d.
  1460. XERR_HIST
  1461. X 0 Erreur pendant la mise a jour du fichier history. 
  1462. X 1 Error While Trying To Update The History File.
  1463. XERR_READ
  1464. X 0 Erreur de lecture dans le fichier %s.
  1465. X 1 Error Reading From File %s.
  1466. XERR_WRITE
  1467. X 0 Erreur d'ecriture dans le fichier %s.
  1468. X 1 Error Writing To File %s.
  1469. XERR_READ_DIR
  1470. X 0 Impossible de lire le repertoire %s.
  1471. X 1 Can't Read Directory %s.
  1472. XERR_WRITE_DIR
  1473. X 0 Impossible d'ecrire dans le repertoire %s.
  1474. X 1 Can't Write To Directory %s.
  1475. XERR_DIR_TYPE_EXPECTED
  1476. X 0 Un repertoire etait attendu pour %s. 
  1477. X 1 A Directory Was Expected For %s.
  1478. XERR_VALUE_DIR
  1479. X 0 Le repertoire %s n'est pas valide.
  1480. X 1 Directory %s Is Invalid.
  1481. END_OF_FILE
  1482.   if test 4277 -ne `wc -c <'lude-1.1/src/orig/lang/ludemisc'`; then
  1483.     echo shar: \"'lude-1.1/src/orig/lang/ludemisc'\" unpacked with wrong size!
  1484.   fi
  1485.   # end of 'lude-1.1/src/orig/lang/ludemisc'
  1486. fi
  1487. if test -f 'lude-1.1/src/orig/src/BldRegexpMinRqr.pl' -a "${1}" != "-c" ; then 
  1488.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/src/BldRegexpMinRqr.pl'\"
  1489. else
  1490.   echo shar: Extracting \"'lude-1.1/src/orig/src/BldRegexpMinRqr.pl'\" \(1639 characters\)
  1491.   sed "s/^X//" >'lude-1.1/src/orig/src/BldRegexpMinRqr.pl' <<'END_OF_FILE'
  1492. X#  Utility to build and manipulate regular expression.
  1493. X#  Copyright (C) 1992 Stephane Boucher, Ecole Polytechnique de Montreal.
  1494. X# 
  1495. X#   This program is free software; you can redistribute it and/or modify
  1496. X#   it under the terms of the GNU General Public License as published by
  1497. X#   the Free Software Foundation; either version 1, or (at your option)
  1498. X#   any later version.
  1499. X# 
  1500. X#   This program is distributed in the hope that it will be useful,
  1501. X#   but WITHOUT ANY WARRANTY; without even the implied warranty of
  1502. X#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  1503. X#   GNU General Public License for more details.
  1504. X# 
  1505. X#   You should have received a copy of the GNU General Public License
  1506. X#   along with this program; if not, write to the Free Software
  1507. X#   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  1508. X#
  1509. X# In other words, you are welcome to use, share and improve this program.
  1510. X# You are forbidden to forbid anyone else to use, share and improve
  1511. X# what you give them.   Help stamp out software-hoarding!
  1512. X
  1513. X$FULL_VERSION.= '$Id: BldRegexpMinRqr.pl,v 1.2 1992/11/12 01:22:29 sbo Exp $' ."\n";
  1514. X#
  1515. X#
  1516. X#
  1517. Xsub BldRegexpMinRqr {
  1518. X    # $_[0]    Option String
  1519. X    # $_[1]    Lenght of the part that is required. The rest of the string is
  1520. X    #          optional
  1521. X    
  1522. X    if (scalar(@_) != 2) {
  1523. X    die "Incorrect number of params, stopped";
  1524. X    }
  1525. X
  1526. X    local($OptLen, $Regexp) = length($_[0]);
  1527. X
  1528. X    if ($_[1] > $OptLen) { 
  1529. X    die "Incorrect param value, stopped";
  1530. X    }
  1531. X
  1532. X    $Regexp  = substr($_[0],0,$_[1]);
  1533. X    $Regexp .= '(';
  1534. X    $Regexp .= join('(', split(//, substr($_[0],$_[1])));
  1535. X    $Regexp .= ')?' x ($OptLen - $_[1]);
  1536. X}
  1537. X
  1538. X1;
  1539. END_OF_FILE
  1540.   if test 1639 -ne `wc -c <'lude-1.1/src/orig/src/BldRegexpMinRqr.pl'`; then
  1541.     echo shar: \"'lude-1.1/src/orig/src/BldRegexpMinRqr.pl'\" unpacked with wrong size!
  1542.   fi
  1543.   # end of 'lude-1.1/src/orig/src/BldRegexpMinRqr.pl'
  1544. fi
  1545. if test -f 'lude-1.1/src/orig/src/Makefile' -a "${1}" != "-c" ; then 
  1546.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/src/Makefile'\"
  1547. else
  1548.   echo shar: Extracting \"'lude-1.1/src/orig/src/Makefile'\" \(3555 characters\)
  1549.   sed "s/^X//" >'lude-1.1/src/orig/src/Makefile' <<'END_OF_FILE'
  1550. X# Generated automatically from Makefile.in by configure.
  1551. X# Makefile for the lude project.
  1552. X
  1553. X# Copyright (C) 1992,1993 Stephane Boucher.
  1554. X#
  1555. X# This program is free software; you can redistribute it and/or modify
  1556. X# it under the terms of the GNU General Public License as published by
  1557. X# the Free Software Foundation; either version 1, or (at your option)
  1558. X# any later version.
  1559. X#
  1560. X# This program is distributed in the hope that it will be useful,
  1561. X# but WITHOUT ANY WARRANTY; without even the implied warranty of
  1562. X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  1563. X# GNU General Public License for more details.
  1564. X#
  1565. X# You should have received a copy of the GNU General Public License
  1566. X# along with this program; if not, write to the Free Software
  1567. X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  1568. X
  1569. X# $Id: Makefile.in,v 1.7 1993/06/01 16:56:56 dagenais Exp $
  1570. X
  1571. XVERSION=1.1
  1572. X
  1573. X# This is the class that the machine is identified by.
  1574. Xfirst_class=sun4.1_sparc
  1575. X
  1576. X# Other class names that identify the system. They are listed
  1577. X# in decreasing order of preference. This filed can be left blank.
  1578. Xother_classes=
  1579. X
  1580. X# Root of the path where the directories bin, include, lib, etc.
  1581. X# can be found.
  1582. X# The standard way to install it is:
  1583. X# $prefix=/usr/local/soft/lude-version/run/mod/class
  1584. X# The class part should preferably the same as first_class
  1585. Xprefix=/usr/local/soft/lude-1.1/run/crim/sun4.1_sparc
  1586. X
  1587. X# Directory where the executable should be placed
  1588. Xbindir=$(prefix)/bin
  1589. X
  1590. X# Directory where the include files should be placed.
  1591. X# This includes the perl libraries.
  1592. Xincdir=$(prefix)/include/lude
  1593. X
  1594. X# Directory where the libraries should be placed.
  1595. Xlibdir=$(prefix)/lib/lude
  1596. X
  1597. X
  1598. X# Perl program
  1599. XPL_PROG=lude ludeadm ludelist ludeindex man2html
  1600. X
  1601. X# Perl Include files
  1602. XPL_INC=ludeinc ludeadminc ludelistinc ludeindexinc \
  1603. X       BldRegexpMinRqr.pl ludemisc fileutil.pl ludelang.pl config.pl
  1604. X
  1605. X# Name of the template file used when creating new modification
  1606. X# for a software
  1607. XLUDE_MODIF_FILE_TMPL=LUDE-MODIF.tmpl
  1608. XLUDE_CLASS_FILE_TMPL=LUDE-CLASS.tmpl
  1609. XIAFA_FILE_TMPL=IAFA-PACKAGES.tmpl
  1610. X
  1611. X# Various command used during installationg
  1612. XMAKE=make
  1613. XSH=sh
  1614. XCAT=cat
  1615. XCHMOD=chmod
  1616. XCP=cp
  1617. XECHO=echo
  1618. XMKDIR=mkdir
  1619. XSED=sed
  1620. X
  1621. X# Installs the programs, library, include files
  1622. Xinstall:
  1623. X    @$(SH) -c '\
  1624. X    if test ! -d $(bindir); then $(MKDIR) $(bindir); fi; \
  1625. X    for p in $(PL_PROG); do \
  1626. X      $(ECHO) "Installing $$p..."; \
  1627. X      $(SED) -e "s;%PL_INCDIR%;$(incdir);" \
  1628. X             -e "s;%LUDE_MODIF_FILE_TMPL%;$(libdir)/$(LUDE_MODIF_FILE_TMPL);" \
  1629. X             -e "s;%LUDE_CLASS_FILE_TMPL%;$(libdir)/$(LUDE_CLASS_FILE_TMPL);" \
  1630. X             -e "s;%IAFA_FILE_TMPL%;$(libdir)/$(IAFA_FILE_TMPL);" \
  1631. X             -e "s;%LANG_PATH%;$(libdir)/lang;" \
  1632. X         -e "s;%VERSION%;$(VERSION);" \
  1633. X                 $$p >$(bindir)/$$p; \
  1634. X      $(CHMOD) 755 $(bindir)/$$p; \
  1635. X    done; \
  1636. X    if test ! -d $(incdir); then $(MKDIR) $(incdir); fi; \
  1637. X    for i in $(PL_INC); do \
  1638. X      $(ECHO) "Installing $$i..."; \
  1639. X      $(CP) $$i $(incdir)/$$i; \
  1640. X      $(CHMOD) 644 $(incdir)/$$i; \
  1641. X    done; \
  1642. X    if test ! -d $(libdir); then $(MKDIR) $(libdir); fi; \
  1643. X    for l in  $(LUDE_MODIF_FILE_TMPL) $(LUDE_CLASS_FILE_TMPL) \
  1644. X          $(IAFA_FILE_TMPL); do \
  1645. X      $(ECHO) "Installing $$l..."; \
  1646. X      $(SED) -e "s;%VERSION%;$(VERSION);" \
  1647. X             $$l >$(libdir)/$$l; \
  1648. X      $(CHMOD) 644 $(libdir)/$$l; \
  1649. X    done; \
  1650. X    $(ECHO) "Installing class..."; \
  1651. X    $(SED) -e "s;%FIRST_CLASS%;$(first_class);" \
  1652. X           -e "s;%OTHER_CLASSES%;$(other_classes);" \
  1653. X               class >$(bindir)/class; \
  1654. X    $(CHMOD) 755 $(bindir)/class;'
  1655. X
  1656. Xclean:
  1657. X    $(RM) *~ core *.o #*#
  1658. X
  1659. Xfull-clean: clean
  1660. X    $(RM) Makefile config.pl
  1661. X
  1662. X
  1663. END_OF_FILE
  1664.   if test 3555 -ne `wc -c <'lude-1.1/src/orig/src/Makefile'`; then
  1665.     echo shar: \"'lude-1.1/src/orig/src/Makefile'\" unpacked with wrong size!
  1666.   fi
  1667.   # end of 'lude-1.1/src/orig/src/Makefile'
  1668. fi
  1669. if test -f 'lude-1.1/src/orig/src/Makefile.in' -a "${1}" != "-c" ; then 
  1670.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/src/Makefile.in'\"
  1671. else
  1672.   echo shar: Extracting \"'lude-1.1/src/orig/src/Makefile.in'\" \(3498 characters\)
  1673.   sed "s/^X//" >'lude-1.1/src/orig/src/Makefile.in' <<'END_OF_FILE'
  1674. X# Makefile for the lude project.
  1675. X
  1676. X# Copyright (C) 1992,1993 Stephane Boucher.
  1677. X#
  1678. X# This program is free software; you can redistribute it and/or modify
  1679. X# it under the terms of the GNU General Public License as published by
  1680. X# the Free Software Foundation; either version 1, or (at your option)
  1681. X# any later version.
  1682. X#
  1683. X# This program is distributed in the hope that it will be useful,
  1684. X# but WITHOUT ANY WARRANTY; without even the implied warranty of
  1685. X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  1686. X# GNU General Public License for more details.
  1687. X#
  1688. X# You should have received a copy of the GNU General Public License
  1689. X# along with this program; if not, write to the Free Software
  1690. X# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  1691. X
  1692. X# $Id: Makefile.in,v 1.7 1993/06/01 16:56:56 dagenais Exp $
  1693. X
  1694. XVERSION=@VERSION@
  1695. X
  1696. X# This is the class that the machine is identified by.
  1697. Xfirst_class=@FIRST_CLASS@
  1698. X
  1699. X# Other class names that identify the system. They are listed
  1700. X# in decreasing order of preference. This filed can be left blank.
  1701. Xother_classes=@OTHER_CLASSES@
  1702. X
  1703. X# Root of the path where the directories bin, include, lib, etc.
  1704. X# can be found.
  1705. X# The standard way to install it is:
  1706. X# $prefix=/usr/local/soft/lude-version/run/mod/class
  1707. X# The class part should preferably the same as first_class
  1708. Xprefix=@PREFIX@
  1709. X
  1710. X# Directory where the executable should be placed
  1711. Xbindir=$(prefix)/bin
  1712. X
  1713. X# Directory where the include files should be placed.
  1714. X# This includes the perl libraries.
  1715. Xincdir=$(prefix)/include/lude
  1716. X
  1717. X# Directory where the libraries should be placed.
  1718. Xlibdir=$(prefix)/lib/lude
  1719. X
  1720. X
  1721. X# Perl program
  1722. XPL_PROG=lude ludeadm ludelist ludeindex man2html
  1723. X
  1724. X# Perl Include files
  1725. XPL_INC=ludeinc ludeadminc ludelistinc ludeindexinc \
  1726. X       BldRegexpMinRqr.pl ludemisc fileutil.pl ludelang.pl config.pl
  1727. X
  1728. X# Name of the template file used when creating new modification
  1729. X# for a software
  1730. XLUDE_MODIF_FILE_TMPL=LUDE-MODIF.tmpl
  1731. XLUDE_CLASS_FILE_TMPL=LUDE-CLASS.tmpl
  1732. XIAFA_FILE_TMPL=IAFA-PACKAGES.tmpl
  1733. X
  1734. X# Various command used during installationg
  1735. XMAKE=@MAKE@
  1736. XSH=@SH@
  1737. XCAT=@CAT@
  1738. XCHMOD=@CHMOD@
  1739. XCP=@CP@
  1740. XECHO=@ECHO@
  1741. XMKDIR=@MKDIR@
  1742. XSED=@SED@
  1743. X
  1744. X# Installs the programs, library, include files
  1745. Xinstall:
  1746. X    @$(SH) -c '\
  1747. X    if test ! -d $(bindir); then $(MKDIR) $(bindir); fi; \
  1748. X    for p in $(PL_PROG); do \
  1749. X      $(ECHO) "Installing $$p..."; \
  1750. X      $(SED) -e "s;%PL_INCDIR%;$(incdir);" \
  1751. X             -e "s;%LUDE_MODIF_FILE_TMPL%;$(libdir)/$(LUDE_MODIF_FILE_TMPL);" \
  1752. X             -e "s;%LUDE_CLASS_FILE_TMPL%;$(libdir)/$(LUDE_CLASS_FILE_TMPL);" \
  1753. X             -e "s;%IAFA_FILE_TMPL%;$(libdir)/$(IAFA_FILE_TMPL);" \
  1754. X             -e "s;%LANG_PATH%;$(libdir)/lang;" \
  1755. X         -e "s;%VERSION%;$(VERSION);" \
  1756. X                 $$p >$(bindir)/$$p; \
  1757. X      $(CHMOD) 755 $(bindir)/$$p; \
  1758. X    done; \
  1759. X    if test ! -d $(incdir); then $(MKDIR) $(incdir); fi; \
  1760. X    for i in $(PL_INC); do \
  1761. X      $(ECHO) "Installing $$i..."; \
  1762. X      $(CP) $$i $(incdir)/$$i; \
  1763. X      $(CHMOD) 644 $(incdir)/$$i; \
  1764. X    done; \
  1765. X    if test ! -d $(libdir); then $(MKDIR) $(libdir); fi; \
  1766. X    for l in  $(LUDE_MODIF_FILE_TMPL) $(LUDE_CLASS_FILE_TMPL) \
  1767. X          $(IAFA_FILE_TMPL); do \
  1768. X      $(ECHO) "Installing $$l..."; \
  1769. X      $(SED) -e "s;%VERSION%;$(VERSION);" \
  1770. X             $$l >$(libdir)/$$l; \
  1771. X      $(CHMOD) 644 $(libdir)/$$l; \
  1772. X    done; \
  1773. X    $(ECHO) "Installing class..."; \
  1774. X    $(SED) -e "s;%FIRST_CLASS%;$(first_class);" \
  1775. X           -e "s;%OTHER_CLASSES%;$(other_classes);" \
  1776. X               class >$(bindir)/class; \
  1777. X    $(CHMOD) 755 $(bindir)/class;'
  1778. X
  1779. Xclean:
  1780. X    $(RM) *~ core *.o #*#
  1781. X
  1782. Xfull-clean: clean
  1783. X    $(RM) Makefile config.pl
  1784. X
  1785. X
  1786. END_OF_FILE
  1787.   if test 3498 -ne `wc -c <'lude-1.1/src/orig/src/Makefile.in'`; then
  1788.     echo shar: \"'lude-1.1/src/orig/src/Makefile.in'\" unpacked with wrong size!
  1789.   fi
  1790.   # end of 'lude-1.1/src/orig/src/Makefile.in'
  1791. fi
  1792. if test -f 'lude-1.1/src/orig/src/config.pl' -a "${1}" != "-c" ; then 
  1793.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/src/config.pl'\"
  1794. else
  1795.   echo shar: Extracting \"'lude-1.1/src/orig/src/config.pl'\" \(1509 characters\)
  1796.   sed "s/^X//" >'lude-1.1/src/orig/src/config.pl' <<'END_OF_FILE'
  1797. X# Generated automatically from config.pl.in by configure.
  1798. X# Directory where bin,lib,include ... are located.
  1799. X$LOCAL_DIR    = '/usr/local';
  1800. X# Directory where the various server can be accessded.
  1801. X$SERVER_DIR   = "$LOCAL_DIR/server";
  1802. X# Directory containing the softwares' directories.
  1803. X$SOFT_DIR     = "$LOCAL_DIR/soft";
  1804. X
  1805. X$IAFA_FILE    = "IAFA-PACKAGES";
  1806. X$LUDE_FILE    = "LUDE";
  1807. X
  1808. X#
  1809. X# TFS - transluscent filesystem (optional)
  1810. X#
  1811. X$CONF_HAVE_TFS=      1;
  1812. X# Performe a tfs mount (only on sun, to my knowledge)
  1813. X$PROG_MOUNT_TFS=    'mount_tfs';
  1814. X# Performe a tfs mount (only on sun, to my knowledge)
  1815. X$PROG_UMOUNT_TFS=   'umount_tfs';
  1816. X
  1817. X# Display the hostname
  1818. X$CONF_HAVE_HOSTNAME= 1;
  1819. X$PROG_HOSTNAME=     'hostname';
  1820. X
  1821. X# Display the domainname
  1822. X$CONF_HAVE_DOMAINNAME= 1;
  1823. X$PROG_DOMAINNAME=   'domainname';
  1824. X
  1825. X# Minimum functionnality required:
  1826. X#  -x -> extract from tar
  1827. X#  -c -> create tar
  1828. X#  -v -> verbose
  1829. X#  -f -> to specify the tar file
  1830. X$PROG_TAR=          'tar';
  1831. X
  1832. X# Minimum functionnality required:
  1833. X#  Perform a binary comparison and return 0 if the two
  1834. X#  files specified in parameters are the same, and return
  1835. X#  something different than 0 if the two files are different.
  1836. X$PROG_CMP=          'cmp';
  1837. X
  1838. X# Program to regenerate the whatis database for man
  1839. X$PROG_MAKEWHATIS=   'catman -w -M';
  1840. X
  1841. X# ':' seperated list of paths containing system manpages.
  1842. X# This should not include /usr/local/man
  1843. X$CONF_SYS_MAN_PATH= '/usr/man';
  1844. X
  1845. X# Default language to use for the output of the various lude tools
  1846. X$CONF_LANG_DEFAULT= 'english';
  1847. X
  1848. X1;
  1849. END_OF_FILE
  1850.   if test 1509 -ne `wc -c <'lude-1.1/src/orig/src/config.pl'`; then
  1851.     echo shar: \"'lude-1.1/src/orig/src/config.pl'\" unpacked with wrong size!
  1852.   fi
  1853.   # end of 'lude-1.1/src/orig/src/config.pl'
  1854. fi
  1855. if test -f 'lude-1.1/src/orig/src/config.pl.in' -a "${1}" != "-c" ; then 
  1856.   echo shar: Will not clobber existing file \"'lude-1.1/src/orig/src/config.pl.in'\"
  1857. else
  1858.   echo shar: Extracting \"'lude-1.1/src/orig/src/config.pl.in'\" \(1575 characters\)
  1859.   sed "s/^X//" >'lude-1.1/src/orig/src/config.pl.in' <<'END_OF_FILE'
  1860. X# Directory where bin,lib,include ... are located.
  1861. X$LOCAL_DIR    = '/usr/local';
  1862. X# Directory where the various server can be accessded.
  1863. X$SERVER_DIR   = "$LOCAL_DIR/server";
  1864. X# Directory containing the softwares' directories.
  1865. X$SOFT_DIR     = "$LOCAL_DIR/soft";
  1866. X
  1867. X$IAFA_FILE    = "IAFA-PACKAGES";
  1868. X$LUDE_FILE    = "LUDE";
  1869. X
  1870. X#
  1871. X# TFS - transluscent filesystem (optional)
  1872. X#
  1873. X$CONF_HAVE_TFS=      @CONF_HAVE_TFS@;
  1874. X# Performe a tfs mount (only on sun, to my knowledge)
  1875. X$PROG_MOUNT_TFS=    '@PROG_MOUNT_TFS@';
  1876. X# Performe a tfs mount (only on sun, to my knowledge)
  1877. X$PROG_UMOUNT_TFS=   '@PROG_UMOUNT_TFS@';
  1878. X
  1879. X# Display the hostname
  1880. X$CONF_HAVE_HOSTNAME= @CONF_HAVE_HOSTNAME@;
  1881. X$PROG_HOSTNAME=     '@PROG_HOSTNAME@';
  1882. X
  1883. X# Display the domainname
  1884. X$CONF_HAVE_DOMAINNAME= @CONF_HAVE_DOMAINNAME@;
  1885. X$PROG_DOMAINNAME=   '@PROG_DOMAINNAME@';
  1886. X
  1887. X# Minimum functionnality required:
  1888. X#  -x -> extract from tar
  1889. X#  -c -> create tar
  1890. X#  -v -> verbose
  1891. X#  -f -> to specify the tar file
  1892. X$PROG_TAR=          '@PROG_TAR@';
  1893. X
  1894. X# Minimum functionnality required:
  1895. X#  Perform a binary comparison and return 0 if the two
  1896. X#  files specified in parameters are the same, and return
  1897. X#  something different than 0 if the two files are different.
  1898. X$PROG_CMP=          '@PROG_CMP@';
  1899. X
  1900. X# Program to regenerate the whatis database for man
  1901. X$PROG_MAKEWHATIS=   '@PROG_MAKEWHATIS@';
  1902. X
  1903. X# ':' seperated list of paths containing system manpages.
  1904. X# This should not include /usr/local/man
  1905. X$CONF_SYS_MAN_PATH= '@CONF_SYS_MAN_PATH@';
  1906. X
  1907. X# Default language to use for the output of the various lude tools
  1908. X$CONF_LANG_DEFAULT= '@CONF_LANG_DEFAULT@';
  1909. X
  1910. X1;
  1911. END_OF_FILE
  1912.   if test 1575 -ne `wc -c <'lude-1.1/src/orig/src/config.pl.in'`; then
  1913.     echo shar: \"'lude-1.1/src/orig/src/config.pl.in'\" unpacked with wrong size!
  1914.   fi
  1915.   # end of 'lude-1.1/src/orig/src/config.pl.in'
  1916. fi
  1917. echo shar: End of archive 11 \(of 12\).
  1918. cp /dev/null ark11isdone
  1919. MISSING=""
  1920. for I in 1 2 3 4 5 6 7 8 9 10 11 12 ; do
  1921.     if test ! -f ark${I}isdone ; then
  1922.     MISSING="${MISSING} ${I}"
  1923.     fi
  1924. done
  1925. if test "${MISSING}" = "" ; then
  1926.     echo You have unpacked all 12 archives.
  1927.     rm -f ark[1-9]isdone ark[1-9][0-9]isdone
  1928. else
  1929.     echo You still must unpack the following archives:
  1930.     echo "        " ${MISSING}
  1931. fi
  1932. exit 0
  1933. exit 0 # Just in case...
  1934.