1993-08-26 01:19:55 +00:00
|
|
|
#ifndef lint
|
1997-10-08 07:48:21 +00:00
|
|
|
static const char rcsid[] =
|
1998-09-14 19:22:59 +00:00
|
|
|
"$Id: main.c,v 1.17 1998/09/08 10:42:19 jkh Exp $";
|
1993-08-26 01:19:55 +00:00
|
|
|
#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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1997-10-08 07:48:21 +00:00
|
|
|
#include <err.h>
|
1995-11-12 04:55:40 +00:00
|
|
|
#include <sys/param.h>
|
1993-08-26 01:19:55 +00:00
|
|
|
#include "lib.h"
|
|
|
|
#include "add.h"
|
|
|
|
|
1994-12-06 00:51:50 +00:00
|
|
|
static char Options[] = "hvIRfnp:SMt:";
|
1993-08-26 01:19:55 +00:00
|
|
|
|
|
|
|
char *Prefix = NULL;
|
|
|
|
Boolean NoInstall = FALSE;
|
|
|
|
Boolean NoRecord = FALSE;
|
|
|
|
|
|
|
|
char *Mode = NULL;
|
|
|
|
char *Owner = NULL;
|
|
|
|
char *Group = NULL;
|
|
|
|
char *PkgName = NULL;
|
|
|
|
char *Directory = NULL;
|
1995-10-25 15:38:37 +00:00
|
|
|
char FirstPen[FILENAME_MAX];
|
1993-09-05 04:53:51 +00:00
|
|
|
add_mode_t AddMode = NORMAL;
|
1993-08-26 01:19:55 +00:00
|
|
|
|
1995-11-12 04:55:40 +00:00
|
|
|
#define MAX_PKGS 20
|
|
|
|
char pkgnames[MAX_PKGS][MAXPATHLEN];
|
|
|
|
char *pkgs[MAX_PKGS];
|
|
|
|
|
1997-10-08 07:48:21 +00:00
|
|
|
static void usage __P((void));
|
|
|
|
|
1993-08-26 01:19:55 +00:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int ch, err;
|
1995-11-12 04:55:40 +00:00
|
|
|
char **start;
|
1997-10-08 07:48:21 +00:00
|
|
|
char *cp;
|
1993-08-26 01:19:55 +00:00
|
|
|
|
1995-11-12 04:55:40 +00:00
|
|
|
start = argv;
|
1997-03-31 05:11:47 +00:00
|
|
|
while ((ch = getopt(argc, argv, Options)) != -1) {
|
1993-08-26 01:19:55 +00:00
|
|
|
switch(ch) {
|
|
|
|
case 'v':
|
|
|
|
Verbose = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
Prefix = optarg;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'I':
|
|
|
|
NoInstall = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'R':
|
|
|
|
NoRecord = TRUE;
|
|
|
|
break;
|
|
|
|
|
1994-12-06 00:51:50 +00:00
|
|
|
case 'f':
|
|
|
|
Force = TRUE;
|
|
|
|
break;
|
|
|
|
|
1993-08-26 01:19:55 +00:00
|
|
|
case 'n':
|
|
|
|
Fake = TRUE;
|
|
|
|
Verbose = TRUE;
|
|
|
|
break;
|
|
|
|
|
1993-09-05 04:53:51 +00:00
|
|
|
case 't':
|
1995-10-25 15:38:37 +00:00
|
|
|
strcpy(FirstPen, optarg);
|
1993-09-05 04:53:51 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'S':
|
|
|
|
AddMode = SLAVE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'M':
|
|
|
|
AddMode = MASTER;
|
|
|
|
break;
|
|
|
|
|
1993-08-26 01:19:55 +00:00
|
|
|
case 'h':
|
|
|
|
case '?':
|
|
|
|
default:
|
1997-10-08 07:48:21 +00:00
|
|
|
usage();
|
1993-08-26 01:19:55 +00:00
|
|
|
break;
|
|
|
|
}
|
1995-11-12 04:55:40 +00:00
|
|
|
}
|
1995-05-30 03:57:47 +00:00
|
|
|
argc -= optind;
|
1993-08-26 01:19:55 +00:00
|
|
|
argv += optind;
|
|
|
|
|
1995-11-12 04:55:40 +00:00
|
|
|
if (argc > MAX_PKGS) {
|
1997-10-08 07:48:21 +00:00
|
|
|
warnx("too many packages (max %d)", MAX_PKGS);
|
1995-11-12 04:55:40 +00:00
|
|
|
return(1);
|
|
|
|
}
|
1993-08-26 01:19:55 +00:00
|
|
|
|
1995-11-12 04:55:40 +00:00
|
|
|
if (AddMode != SLAVE) {
|
|
|
|
for (ch = 0; ch < MAX_PKGS; pkgs[ch++] = NULL) ;
|
|
|
|
|
|
|
|
/* Get all the remaining package names, if any */
|
|
|
|
for (ch = 0; *argv; ch++, argv++) {
|
1996-03-12 06:12:43 +00:00
|
|
|
if (!strcmp(*argv, "-")) /* stdin? */
|
|
|
|
pkgs[ch] = "-";
|
|
|
|
else if (isURL(*argv)) /* preserve URLs */
|
1995-11-12 04:55:40 +00:00
|
|
|
pkgs[ch] = strcpy(pkgnames[ch], *argv);
|
|
|
|
else { /* expand all pathnames to fullnames */
|
|
|
|
if (fexists(*argv)) /* refers to a file directly */
|
|
|
|
pkgs[ch] = realpath(*argv, pkgnames[ch]);
|
|
|
|
else { /* look for the file in the expected places */
|
|
|
|
if (!(cp = fileFindByPath(NULL, *argv)))
|
1997-10-08 07:48:21 +00:00
|
|
|
warnx("can't find package '%s'", *argv);
|
1995-11-12 04:55:40 +00:00
|
|
|
else
|
|
|
|
pkgs[ch] = strcpy(pkgnames[ch], cp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1993-08-26 01:19:55 +00:00
|
|
|
/* If no packages, yelp */
|
1998-09-08 10:42:26 +00:00
|
|
|
else if (!ch) {
|
|
|
|
warnx("missing package name(s)");
|
1997-10-08 07:48:21 +00:00
|
|
|
usage();
|
1998-09-08 10:42:26 +00:00
|
|
|
}
|
|
|
|
else if (ch > 1 && AddMode == MASTER) {
|
|
|
|
warnx("only one package name may be specified with master mode");
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
/* Make sure the sub-execs we invoke get found */
|
|
|
|
setenv("PATH", "/sbin:/usr/sbin:/bin:/usr/bin", 1);
|
1998-09-14 19:22:59 +00:00
|
|
|
|
|
|
|
/* Set a reasonable umask */
|
|
|
|
umask(022);
|
|
|
|
|
1997-09-18 14:08:40 +00:00
|
|
|
if ((err = pkg_perform(pkgs)) != 0) {
|
1993-08-26 01:19:55 +00:00
|
|
|
if (Verbose)
|
1997-10-08 07:48:21 +00:00
|
|
|
warnx("%d package addition(s) failed", err);
|
1993-08-26 01:19:55 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1997-10-08 07:48:21 +00:00
|
|
|
static void
|
|
|
|
usage()
|
1993-08-26 01:19:55 +00:00
|
|
|
{
|
1997-10-08 07:48:21 +00:00
|
|
|
fprintf(stderr, "%s\n%s\n",
|
|
|
|
"usage: pkg_add [-vInfRMS] [-t template] [-p prefix]",
|
|
|
|
" pkg-name [pkg-name ...]");
|
1993-08-26 01:19:55 +00:00
|
|
|
exit(1);
|
|
|
|
}
|