comparison man/xemacs/packages.texi @ 5551:40a52efbf3a3

Reflect change of location of packages to share/ 2011-08-14 Mike Sperber <mike@xemacs.org> * xemacs-faq.texi: * xemacs/packages.texi: Reflect change of location of packages from lib/ to share/.
author Mike Sperber <sperber@deinprogramm.de>
date Sun, 14 Aug 2011 13:51:14 +0200
parents 6b0000935adc
children 9c17f7be0b92
comparison
equal deleted inserted replaced
5550:b908c7265a2b 5551:40a52efbf3a3
309 309
310 For example if we are installing the @file{xemacs-base} 310 For example if we are installing the @file{xemacs-base}
311 package (version 1.48): 311 package (version 1.48):
312 312
313 @example 313 @example
314 mkdir $prefix/lib/xemacs/xemacs-packages RET # if it does not exist yet 314 mkdir $prefix/share/xemacs/xemacs-packages RET # if it does not exist yet
315 cd $prefix/lib/xemacs/xemacs-packages RET 315 cd $prefix/share/xemacs/xemacs-packages RET
316 gunzip -c /path/to/xemacs-base-1.48-pkg.tar.gz | tar xvf - RET 316 gunzip -c /path/to/xemacs-base-1.48-pkg.tar.gz | tar xvf - RET
317 317
318 Or if you have GNU tar, the last step can be: 318 Or if you have GNU tar, the last step can be:
319 319
320 tar zxvf /path/to/xemacs-base-1.48-pkg.tar.gz RET 320 tar zxvf /path/to/xemacs-base-1.48-pkg.tar.gz RET
322 322
323 For MULE related packages, it is best to untar into the mule-packages 323 For MULE related packages, it is best to untar into the mule-packages
324 hierarchy, i.e. for the @file{mule-base} package, version 1.37: 324 hierarchy, i.e. for the @file{mule-base} package, version 1.37:
325 325
326 @example 326 @example
327 mkdir $prefix/lib/xemacs/mule-packages RET # if it does not exist yet 327 mkdir $prefix/share/xemacs/mule-packages RET # if it does not exist yet
328 cd $prefix/lib/xemacs/mule-packages RET 328 cd $prefix/share/xemacs/mule-packages RET
329 gunzip -c /path/to/mule-base-1.37-pkg.tar.gz | tar xvf - RET 329 gunzip -c /path/to/mule-base-1.37-pkg.tar.gz | tar xvf - RET
330 330
331 Or if you have GNU tar, the last step can be: 331 Or if you have GNU tar, the last step can be:
332 332
333 tar zxvf /path/to/mule-base-1.37-pkg.tar.gz RET 333 tar zxvf /path/to/mule-base-1.37-pkg.tar.gz RET
349 N.B. They are called 'Sumo Tarballs' for good reason. They are 349 N.B. They are called 'Sumo Tarballs' for good reason. They are
350 currently about 19MB and 4.5MB (gzipped) respectively. 350 currently about 19MB and 4.5MB (gzipped) respectively.
351 351
352 Install them by: 352 Install them by:
353 353
354 @code{cd $prefix/lib/xemacs ; gunzip -c <tarballname> | tar xvf - RET} 354 @code{cd $prefix/share/xemacs ; gunzip -c <tarballname> | tar xvf - RET}
355 355
356 Or, if you have GNU tar: 356 Or, if you have GNU tar:
357 357
358 @code{cd $prefix/lib/xemacs ; tar zxvf /path/to/<tarballname> RET} 358 @code{cd $prefix/share/xemacs ; tar zxvf /path/to/<tarballname> RET}
359 359
360 As the Sumo tarballs are not regenerated as often as the individual 360 As the Sumo tarballs are not regenerated as often as the individual
361 packages, it is recommended that you use the automatic package tools 361 packages, it is recommended that you use the automatic package tools
362 afterwards to pick up any recent updates. 362 afterwards to pick up any recent updates.
363 363