chiark / gitweb /
make bible-kjv-text recommend bible-kjv rather than depend on it (fix for #626321)
[bible-kjv.git] / bible.pkg
1 ###############################################################################
2 #
3 # File:         bible.pkg
4 # RCS:          $Header: /home/matthew/cvs/bible-kjv-4.10/bible.pkg,v 2.0 2003/01/08 15:29:51 matthew Exp $
5 # Description:  Ninstall package for Bible Retrieval System
6 # Author:       Chip Chapin, Hewlett Packard Company
7 # Created:      Tue Sep  5 19:52:06 1989
8 # Modified:     Tue Apr 27 08:55:08 1993 (Chip Chapin) chip@hpclbis
9 # Language:     ninstall
10 # Package:      Bible Retrieval System
11 # Status:       Experimental (Do Not Distribute)
12 #
13 ###############################################################################
14 #
15 # Revisions:
16 #
17 # Tue Apr 27 08:49:54 1993 (Chip Chapin) chip@hpclbis
18 #  Fix error.
19 # Mon Apr 26 11:35:15 1993 (Chip Chapin) chip@hpclbis
20 #  Restructured source file distribution.
21 # Mon Dec 21 19:07:23 1992 (Chip Chapin) chip@hpclbis
22 #  Revised for release 2.0, supporting concordance files.
23 ###############################################################################
24 # $Log: bible.pkg,v $
25 # Revision 2.0  2003/01/08 15:29:51  matthew
26 # versions collected from the net
27 #
28 # Revision 1.12  93/04/26  12:23:58  12:23:58  chip (Chip Chapin)
29 # Release 4.00
30 # Public release of portable datafile version.
31
32 # Revision 1.11  93/04/23  13:08:15  13:08:15  chip (Chip Chapin)
33 # PORTABILITY RELEASE
34 # This version supports portable data files, usable on machines with
35 # differing native byte-orders.
36 # Also, this version compiles and runs on non-HPUX systems.  It has been
37 # tested on SunOS 4.? and ULTRIX 4.?, using SPARC and DEC 3100 hardware
38 # respectively.  Note that the data file format has rolled again.
39
40 # Revision 1.10  93/01/05  11:02:28  11:02:28  chip (Chip Chapin)
41 # Release 2.2a: Fix command bug.
42
43 # Revision 1.9  93/01/05  10:49:20  10:49:20  chip (Chip Chapin)
44 # Release 2.2, Added ?w command and line formatting to ?l output.
45
46 # Revision 1.8  93/01/04  16:21:06  16:21:06  chip (Chip Chapin)
47 # Release 2.1, implements ?in and ?or commands.
48
49 # Revision 1.7  92/12/24  11:38:17  11:38:17  chip (Chip Chapin)
50 # Minor release 2.04a, fixes certain compile warnings.
51
52 # Revision 1.6  92/12/22  11:29:03  11:29:03  chip (Chip Chapin)
53 # Minor release 2.01 -- fix a couple of bugs.
54
55 # Revision 1.5  92/12/21  20:02:11  20:02:11  chip (Chip Chapin)
56 # Release 2.0.  This release adds the concordance, and some small fixes.
57
58 # Revision 1.4  89/10/05  12:20:16  12:20:16  chip (Chip Chapin)
59 # Added "sourceonly" subpackage.
60
61 # Revision 1.3  89/10/03  12:11:18  12:11:18  chip (Chip Chapin)
62 # Oops!  Put bible.data back in /usr/local/lib.
63 # Also, use -S instead of -D when installing bible.data.
64
65 # Revision 1.2  89/10/02  23:33:22  23:33:22  chip (Chip Chapin)
66
67 # Revision 1.1  89/10/02  23:08:38  23:08:38  chip (Chip Chapin)
68 # Initial revision
69 #
70 ###############################################################################
71
72
73 begin bible
74   directory /mnt/ftp/pub/bible ;
75   comment "BRS: Bible Retrieval System [-O, v4.00 930426, 2.8MB]";
76   exclude src tools-src local-data rawdata ;
77
78   begin manual
79     comment "man page, in /usr/local/man/man1.Z" ;
80
81     owner bin;
82     group bin;
83     install -D -m 0644 bible.1.Z /usr/local/man/man1.Z/bible.1 ;
84   end
85
86   begin bin (machine ("9000/[34]*"))
87     comment "s[34]00 executable, in /usr/local/bin" ;
88
89     owner bin;
90     group bin;
91     install -D -m 0755 bible.hp-s300 /usr/local/bin/bible ;
92   end
93
94   begin bin (machine ("9000/[78]*"))
95     comment "s[78]00 executable, in /usr/local/bin" ;
96
97     owner bin;
98     group bin;
99     install -D -m 0755 bible.hp-s800 /usr/local/bin/bible ;
100   end
101
102   begin data
103     comment "Data files, in /usr/local/lib" ;
104
105     owner bin;
106     group bin;
107     install -S -m 0644 bible.data bible.data.conc /usr/local/lib/ ;
108   end
109
110   begin src
111     comment "BRS program sources, (no data) in current dir [v4.00 930426,200KB]";
112
113     owner *;
114     group *;
115     install -D -m 0644 bible.tar.Z bible.tar.Z ;
116   end
117   
118   begin tools-src
119     comment "BRS tools sources, in current directory [v4.00 930426, 45KB]" ;
120
121     owner *;
122     group *;
123     install -D -m 0644 bible-tools.tar.Z bible-tools.tar.Z ;
124   end
125   
126   begin local-data
127     comment "Data files, in current directory [v4.00 930426 2.6MB]" ;
128
129     owner *;
130     group *;
131     install -S -m 0644 bible.data bible.data ;
132     install -S -m 0644 bible.data.conc bible.data.conc ;
133   end
134
135   begin rawdata
136     comment "Raw KJV text, (compressed) in current dir [v4.00 930426, 1.6MB]" ;
137
138     owner *;
139     group *;
140     install -D -m 0644 bible.rawtext.Z bible.rawtext.Z ;
141   end
142   
143 end # bible.pkg