~ubuntu-branches/ubuntu/quantal/openmotif/quantal

« back to all changes in this revision

Viewing changes to config/util/mkshadow/README

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Bauer
  • Date: 2010-06-23 12:12:31 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100623121231-u89gxdp51sg9wjj2
Tags: 2.3.0-1
* New Maintainer (Closes: #379258) 
* Acknowledge NMU changes
* New upstream release (Closes: #494375)
* Get rid of security patches as they are already part of new upstream
  release (00-xpmvuln.openmotif.patch, 342092-CVE-2005-3964.patch)
* Bump Standards to 3.8.4
* Added {misc:Depends} to make the package lintian cleaner
* Fix weak-library-dev-dependency by adding ${binary:Version}) for the
  -dev Package of openmotif
* Let package depend on autotools-dev to use newer autotools-helper-files
* Work around an autoconf-bug (Gentoo-Bug #1475)
* Added Client-side anti-aliased fonts support via XFT
* Added UTF-8 and UTF8_STRING atom support
* Ability to show text and pixmaps in Label, LabelGadget and all
  derived widgets
* Support of PNG/JPEG image formats in the same way as XPM is supported
* Increase FILE_OFFSET_BITS to 64 to show files >2GB in file-selector
  Idea taken from Magne Oestlyngen (Closes: #288537)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
The mkshadow programs makes a "shadow tree" of a directory tree.
 
2
It logically copies all of the "MASTER" directory into ".".
 
3
However, ordinary files, and RCS/SCCS directories are "copied"
 
4
by creating a sybolic link to the corresponding file in MASTER.
 
5
 
 
6
The wildmat.c file is by Rich Salz, and from comp.sources.misc, volume 17.
 
7
The savedir.c file is lightly modified from the version written
 
8
by David MacKenzie for GNU fileutils; the Free Software Foundation
 
9
has graciously agreed to waive their usual copyright so this
 
10
program can be distributed by the X Consortium.
 
11
 
 
12
If you have problems compiling savedir.c, try setting the DIRENT make
 
13
variable as suggested in the Makefile.
 
14
 
 
15
 * Usage: mkshadow [-X exclude_file] [-x exclude_pattern] ... MASTER
 
16
 * Makes the current directory be a "shadow copy" of MASTER.
 
17
 * Sort of like a recursive copy of MASTER to .
 
18
 * However, symbolic links are used instead of actually
 
19
 * copying (non-directory) files.
 
20
 * Also, directories named RCS or SCCS are shared (with a symbolic link).
 
21
 * Warning messages are printed for files (and directories) in .
 
22
 * that don't match a corresponding file in MASTER (though
 
23
 * symbolic links are silently removed).
 
24
 * Also, a warning message is printed for non-directory files
 
25
 * under . that are  not symbolic links.
 
26
 *
 
27
 * Files and directories can be excluded from the sharing
 
28
 * with the -X and -x flags. The flag `-x pattern' (or `-xpattern')
 
29
 * means that mkshadow should ignore any file whose name matches
 
30
 * the pattern. The pattern is a "globbing" pattern, i.e. the
 
31
 * characters *?[^-] are interpreted as by the shell.
 
32
 * If the pattern contains a '/' is is matched against the complete
 
33
 * current path (relative to '.'); otherwise, it is matched
 
34
 * against the last component of the path.
 
35
 * A `-X filename' flag means to read a set of exclusion patterns
 
36
 * from the named file, one pattern to a line.
 
37
 
 
38
Author: Per Bothner. bothner@cygnus.com. November 1990, 1993.