192 lines
3.3 KiB
C
192 lines
3.3 KiB
C
/* $NetBSD: main.c,v 1.13 1999/03/22 05:02:40 hubertf Exp $ */
|
|
|
|
#include <sys/cdefs.h>
|
|
#ifndef lint
|
|
#if 0
|
|
static const char *rcsid = "from FreeBSD Id: main.c,v 1.17 1997/10/08 07:46:23 charnier Exp";
|
|
#else
|
|
__RCSID("$NetBSD: main.c,v 1.13 1999/03/22 05:02:40 hubertf Exp $");
|
|
#endif
|
|
#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[] = "ORhlvFf:p:P:C:c:d:i:k:r:t:X:D:m:s:b:B:";
|
|
|
|
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 *BuildVersion = NULL;
|
|
char *BuildInfo = NULL;
|
|
char PlayPen[FILENAME_MAX];
|
|
size_t PlayPenSize = sizeof(PlayPen);
|
|
int Dereference = 0;
|
|
int PlistOnly = 0;
|
|
int RelativeLinks = 0;
|
|
int ReorderDirs = 0;
|
|
Boolean File2Pkg = FALSE;
|
|
|
|
static void
|
|
usage(void)
|
|
{
|
|
fprintf(stderr, "%s\n%s\n%s\n%s\n%s\n",
|
|
"usage: pkg_create [-ORhlv] [-P dpkgs] [-C cpkgs] [-p prefix] [-f contents]",
|
|
" [-i iscript] [-k dscript] [-r rscript] [-t template]",
|
|
" [-X excludefile] [-D displayfile] [-m mtreefile]",
|
|
" [-b build-version-file] [-B build-info-file]",
|
|
" -c comment -d description -f packlist pkg-name");
|
|
exit(1);
|
|
}
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
int ch;
|
|
lpkg_head_t pkgs;
|
|
lpkg_t *lpp;
|
|
|
|
while ((ch = getopt(argc, argv, Options)) != -1)
|
|
switch(ch) {
|
|
case 'v':
|
|
Verbose = TRUE;
|
|
break;
|
|
|
|
case 'O':
|
|
PlistOnly = 1;
|
|
break;
|
|
|
|
case 'R':
|
|
ReorderDirs = 1;
|
|
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 'l':
|
|
RelativeLinks = 1;
|
|
break;
|
|
|
|
case 'r':
|
|
Require = optarg;
|
|
break;
|
|
|
|
case 't':
|
|
strcpy(PlayPen, optarg);
|
|
break;
|
|
|
|
case 'X':
|
|
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 'b':
|
|
BuildVersion = optarg;
|
|
break;
|
|
|
|
case 'B':
|
|
BuildInfo = optarg;
|
|
break;
|
|
|
|
case '?':
|
|
default:
|
|
usage();
|
|
break;
|
|
}
|
|
|
|
argc -= optind;
|
|
argv += optind;
|
|
|
|
TAILQ_INIT(&pkgs);
|
|
|
|
/* Get all the remaining package names, if any */
|
|
while (*argv) {
|
|
lpp = alloc_lpkg(*argv);
|
|
TAILQ_INSERT_TAIL(&pkgs, lpp, lp_link);
|
|
argv++;
|
|
}
|
|
|
|
/* If no packages, yelp */
|
|
lpp = TAILQ_FIRST(&pkgs);
|
|
if (lpp == NULL)
|
|
warnx("missing package name"), usage();
|
|
lpp = TAILQ_NEXT(lpp, lp_link);
|
|
if (lpp != NULL)
|
|
warnx("only one package name allowed ('%s' extraneous)",
|
|
lpp->lp_name),
|
|
usage();
|
|
if (!pkg_perform(&pkgs)) {
|
|
if (Verbose)
|
|
warnx("package creation failed");
|
|
return 1;
|
|
}
|
|
else
|
|
return 0;
|
|
}
|