freebsd-dev/usr.sbin/pkg_install/create/main.c

182 lines
2.9 KiB
C
Raw Normal View History

#ifndef lint
static const char rcsid[] =
1999-08-28 01:35:59 +00:00
"$FreeBSD$";
#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[] = "YNOhvyf:p:P:c:d:i:I:k:K:r:t:X:D:m:s:o:";
char *Prefix = NULL;
char *Comment = NULL;
char *Desc = NULL;
1997-06-06 12:19:11 +00:00
char *SrcDir = NULL;
char *Display = NULL;
char *Install = NULL;
char *PostInstall = NULL;
char *DeInstall = NULL;
char *PostDeInstall = NULL;
char *Contents = NULL;
char *Require = NULL;
char *ExcludeFrom = NULL;
char *Mtree = NULL;
char *Pkgdeps = NULL;
char *Origin = NULL;
1997-06-06 12:19:11 +00:00
char PlayPen[FILENAME_MAX];
int Dereference = FALSE;
int PlistOnly = FALSE;
int UseBzip2 = FALSE;
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 'N':
AutoAnswer = NO;
break;
case 'Y':
AutoAnswer = YES;
break;
case 'O':
PlistOnly = TRUE;
break;
case 'p':
Prefix = optarg;
break;
1997-06-06 12:19:11 +00:00
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 'I':
PostInstall = optarg;
break;
case 'k':
DeInstall = optarg;
break;
case 'K':
PostDeInstall = optarg;
break;
case 'r':
Require = optarg;
break;
case 't':
1995-10-25 15:38:37 +00:00
strcpy(PlayPen, optarg);
break;
case 'X':
ExcludeFrom = optarg;
break;
case 'h':
Dereference = TRUE;
break;
case 'D':
Display = optarg;
break;
case 'm':
Mtree = optarg;
break;
case 'P':
Pkgdeps = optarg;
break;
case 'o':
Origin = optarg;
break;
case 'y':
UseBzip2 = TRUE;
break;
case '?':
default:
usage();
break;
}
1995-05-30 03:57:47 +00:00
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%s\n",
"usage: pkg_create [-YNOhvy] [-P pkgs] [-p prefix] [-f contents] [-i iscript]",
" [-I piscript] [-k dscript] [-K pdscript] [-r rscript] ",
" [-t template] [-X excludefile] [-D displayfile] ",
" [-m mtreefile] [-o origin] -c comment -d description ",
" -f packlist pkg-name");
exit(1);
}