139 lines
3.2 KiB
C
139 lines
3.2 KiB
C
|
#ifndef lint
|
||
|
static char *rcsid = "$Header: /usr1/cvs/jkh/pkg_install/info/main.c,v 1.4 1993/08/26 08:47:05 jkh Exp $";
|
||
|
#endif
|
||
|
|
||
|
/*
|
||
|
*
|
||
|
* FreeBSD install - a package for the installation and maintainance
|
||
|
* of non-core utilities.
|
||
|
*
|
||
|
* Redistribution and use in source and binary forms, with or without
|
||
|
* modification, are permitted provided that the following conditions
|
||
|
* are met:
|
||
|
* 1. Redistributions of source code must retain the above copyright
|
||
|
* notice, this list of conditions and the following disclaimer.
|
||
|
* 2. Redistributions in binary form must reproduce the above copyright
|
||
|
* notice, this list of conditions and the following disclaimer in the
|
||
|
* documentation and/or other materials provided with the distribution.
|
||
|
*
|
||
|
* Jordan K. Hubbard
|
||
|
* 18 July 1993
|
||
|
*
|
||
|
* This is the add module.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "lib.h"
|
||
|
#include "info.h"
|
||
|
|
||
|
static char Options[] = "acdfikrpIvh";
|
||
|
|
||
|
int Flags = 0;
|
||
|
Boolean AllInstalled = FALSE;
|
||
|
|
||
|
int
|
||
|
main(int argc, char **argv)
|
||
|
{
|
||
|
int ch;
|
||
|
char **pkgs, **start;
|
||
|
char *prog_name = argv[0];
|
||
|
|
||
|
pkgs = start = argv;
|
||
|
while ((ch = getopt(argc, argv, Options)) != EOF)
|
||
|
switch(ch) {
|
||
|
case 'a':
|
||
|
AllInstalled = TRUE;
|
||
|
break;
|
||
|
|
||
|
case 'v':
|
||
|
Verbose = TRUE;
|
||
|
/* Reasonable definition of 'everything' */
|
||
|
Flags = SHOW_COMMENT | SHOW_DESC | SHOW_PLIST | SHOW_INSTALL |
|
||
|
SHOW_DEINSTALL | SHOW_REQUIRE;
|
||
|
break;
|
||
|
|
||
|
case 'I':
|
||
|
Flags |= SHOW_INDEX;
|
||
|
break;
|
||
|
|
||
|
case 'p':
|
||
|
Flags |= SHOW_PREFIX;
|
||
|
break;
|
||
|
|
||
|
case 'c':
|
||
|
Flags |= SHOW_COMMENT;
|
||
|
break;
|
||
|
|
||
|
case 'd':
|
||
|
Flags |= SHOW_DESC;
|
||
|
break;
|
||
|
|
||
|
case 'f':
|
||
|
Flags |= SHOW_PLIST;
|
||
|
break;
|
||
|
|
||
|
case 'i':
|
||
|
Flags |= SHOW_INSTALL;
|
||
|
break;
|
||
|
|
||
|
case 'k':
|
||
|
Flags |= SHOW_DEINSTALL;
|
||
|
break;
|
||
|
|
||
|
case 'r':
|
||
|
Flags |= SHOW_REQUIRE;
|
||
|
break;
|
||
|
|
||
|
case 'h':
|
||
|
case '?':
|
||
|
default:
|
||
|
usage(prog_name, NULL);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
argc -= optind;
|
||
|
argv += optind;
|
||
|
|
||
|
/* Set some reasonable defaults */
|
||
|
if (!Flags)
|
||
|
Flags = SHOW_COMMENT | SHOW_DESC;
|
||
|
|
||
|
/* Get all the remaining package names, if any */
|
||
|
while (*argv)
|
||
|
*pkgs++ = *argv++;
|
||
|
|
||
|
/* If no packages, yelp */
|
||
|
if (pkgs == start && !AllInstalled)
|
||
|
usage(prog_name, "Missing package name(s)");
|
||
|
*pkgs = NULL;
|
||
|
return pkg_perform(start);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
usage(const char *name, const char *fmt, ...)
|
||
|
{
|
||
|
va_list args;
|
||
|
|
||
|
va_start(args, fmt);
|
||
|
if (fmt) {
|
||
|
fprintf(stderr, "%s: ", name);
|
||
|
vfprintf(stderr, fmt, args);
|
||
|
fprintf(stderr, "\n\n");
|
||
|
}
|
||
|
va_end(args);
|
||
|
fprintf(stderr, "Usage: %s [args] pkg [ .. pkg ]\n", name);
|
||
|
fprintf(stderr, "Where args are one or more of:\n\n");
|
||
|
fprintf(stderr, "-a show all installed packages (if any)\n");
|
||
|
fprintf(stderr, "-I print 'index' of packages\n");
|
||
|
fprintf(stderr, "-c print `one line comment'\n");
|
||
|
fprintf(stderr, "-d print description\n");
|
||
|
fprintf(stderr, "-f show packing list\n");
|
||
|
fprintf(stderr, "-i show install script\n");
|
||
|
fprintf(stderr, "-k show deinstall script\n");
|
||
|
fprintf(stderr, "-r show requirements script\n");
|
||
|
fprintf(stderr, "-p show prefix\n");
|
||
|
fprintf(stderr, "-v show all information\n");
|
||
|
fprintf(stderr, "\n[no args = -c -d]\n");
|
||
|
exit(1);
|
||
|
}
|