source: trunk/third/xscreensaver/xscreensaver.lsm.sh @ 20148

Revision 20148, 2.0 KB checked in by ghudson, 21 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r20147, which included commits to RCS files with non-trunk default branches.
  • Property svn:executable set to *
Line 
1#!/bin/sh
2#
3# generate an lsm file (http://sunsite.unc.edu/pub/Linux/Incoming/LSM-TEMPLATE)
4# that is more-or-less correct for the current version of xscreensaver.
5# jwz, 18-Jan-98
6
7size() {
8    ls -l $* |
9    tail -1 |
10    sed 's/.* \([0-9][0-9][0-9][0-9][0-9]*\) .*/\1/' |
11    sed 's/[0-9][0-9][0-9]$/K/'
12}
13
14VERSION=`sed -n 's/.*\([0-9][0-9]*\.[0-9]*\).*/\1/p' < utils/version.h`
15DATE=`date '+%d%b%y' | tr a-z A-Z`
16
17ADIR=archive/
18TAR_SIZE=`size ${ADIR}xscreensaver-$VERSION.tar.gz`
19README_SIZE=`size README`
20#LSM_SIZE=`size xscreensaver.lsm`
21LSM_SIZE="1K"
22
23echo "Begin3
24Title:          xscreensaver
25Version:        $VERSION
26Entered-date:   $DATE
27Description:    A modular screen saver and locker for the X Window System.
28                Highly customizable: allows the use of any program that
29                can draw on the root window as a display mode.
30                More than 175 display modes are included in this package.
31Keywords:       screen saver, screen lock, lock, xlock, X11
32Author:         jwz@jwz.org (Jamie Zawinski)
33Maintained-by:  jwz@jwz.org (Jamie Zawinski)
34Primary-site:   http://www.jwz.org/xscreensaver/
35                $TAR_SIZE xscreensaver-$VERSION.tar.gz
36                $README_SIZE   xscreensaver.README
37                $LSM_SIZE    xscreensaver.lsm
38Alternate-site: sunsite.unc.edu /pub/Linux/X11/screensavers/
39                $TAR_SIZE xscreensaver-$VERSION.tar.gz
40                $README_SIZE   xscreensaver.README
41                $LSM_SIZE    xscreensaver.lsm
42Alternate-site: ftp.x.org /contrib/applications/
43                $TAR_SIZE xscreensaver-$VERSION.tar.gz
44                $README_SIZE   xscreensaver.README
45                $LSM_SIZE    xscreensaver.lsm
46Platforms:      Linux, Irix, SunOS, Solaris, HPUX, AIX, FreeBSD, NetBSD,
47                BSDI, SCO, OSF1, Ultrix, VMS.
48                Requires X11 and ANSI C.
49                Works with GTK+, GNOME, and/or Motif.
50                Shadow passwords, Kerberos, and OpenGL optionally supported.
51                Multi-headed machines supported.
52Copying-policy: BSD
53End"
54
55exit 0
Note: See TracBrowser for help on using the repository browser.