1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
/* $OpenBSD: main.c,v 1.8 1998/10/13 23:09:50 marc Exp $ */
#ifndef lint
static const char *rcsid = "$OpenBSD: main.c,v 1.8 1998/10/13 23:09:50 marc Exp $";
#endif
/*
* FreeBSD install - a package for the installation and maintainance
* of non-core utilities.
*
* Jordan K. Hubbard
* 18 July 1993
*
* This is the create module.
*
*/
#include <err.h>
#include "lib.h"
#include "create.h"
static char Options[] = "Ohvf:p:P:C:c:d:i:k:r:t:X:D:m:s:";
char *Prefix = NULL;
char *Comment = NULL;
char *Desc = NULL;
char *SrcDir = NULL;
char *Display = NULL;
char *Install = NULL;
char *DeInstall = NULL;
char *Contents = NULL;
char *Require = NULL;
char *ExcludeFrom = NULL;
char *Mtree = NULL;
char *Pkgdeps = NULL;
char *Pkgcfl = NULL;
char PlayPen[FILENAME_MAX];
size_t PlayPenSize = sizeof(PlayPen);
int Dereference = 0;
int PlistOnly = 0;
static void usage __P((void));
int
main(int argc, char **argv)
{
int ch;
char **pkgs, **start;
pkgs = start = argv;
while ((ch = getopt(argc, argv, Options)) != -1)
switch(ch) {
case 'v':
Verbose = TRUE;
break;
case 'O':
PlistOnly = YES;
break;
case 'p':
Prefix = optarg;
break;
case 's':
SrcDir = optarg;
break;
case 'f':
Contents = optarg;
break;
case 'c':
Comment = optarg;
break;
case 'd':
Desc = optarg;
break;
case 'i':
Install = optarg;
break;
case 'k':
DeInstall = optarg;
break;
case 'r':
Require = optarg;
break;
case 't':
strcpy(PlayPen, optarg);
break;
case 'X':
/* XXX this won't work until someone adds the gtar -X option
(--exclude-from-file) to paxtar - so long it is disabled
in perform.c */
printf("WARNING: the -X option is not supported in OpenBSD\n");
ExcludeFrom = optarg;
break;
case 'h':
Dereference = 1;
break;
case 'D':
Display = optarg;
break;
case 'm':
Mtree = optarg;
break;
case 'P':
Pkgdeps = optarg;
break;
case 'C':
Pkgcfl = optarg;
break;
case '?':
default:
usage();
break;
}
argc -= optind;
argv += optind;
/* Get all the remaining package names, if any */
while (*argv)
*pkgs++ = *argv++;
/* If no packages, yelp */
if (pkgs == start)
warnx("missing package name"), usage();
*pkgs = NULL;
if (start[1])
warnx("only one package name allowed ('%s' extraneous)", start[1]),
usage();
if (!pkg_perform(start)) {
if (Verbose)
warnx("package creation failed");
return 1;
}
else
return 0;
}
static void
usage()
{
fprintf(stderr, "%s\n%s\n%s\n%s\n",
"usage: pkg_create [-Ohv] [-P dpkgs] [-C cpkgs] [-p prefix] [-f contents]",
" [-i iscript] [-k dscript] [-r rscript] [-t template]",
" [-X excludefile] [-D displayfile] [-m mtreefile]",
" -c comment -d description -f packlist pkg-name");
exit(1);
}
|