2000-06-17 03:48:23 +04:00
|
|
|
/* $NetBSD: main.c,v 1.15 2000/06/16 23:48:23 sjg Exp $ */
|
1997-06-05 16:59:18 +04:00
|
|
|
|
1997-10-17 18:53:18 +04:00
|
|
|
#include <sys/cdefs.h>
|
1997-06-05 12:54:23 +04:00
|
|
|
#ifndef lint
|
1997-06-05 16:59:18 +04:00
|
|
|
#if 0
|
1997-10-16 04:31:32 +04:00
|
|
|
static char *rcsid = "from FreeBSD Id: main.c,v 1.16 1997/10/08 07:45:43 charnier Exp";
|
1997-06-05 16:59:18 +04:00
|
|
|
#else
|
2000-06-17 03:48:23 +04:00
|
|
|
__RCSID("$NetBSD: main.c,v 1.15 2000/06/16 23:48:23 sjg Exp $");
|
1997-06-05 16:59:18 +04:00
|
|
|
#endif
|
1997-06-05 12:54:23 +04: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-16 04:31:32 +04:00
|
|
|
#include <err.h>
|
1997-06-05 12:54:23 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include "lib.h"
|
|
|
|
#include "add.h"
|
|
|
|
|
|
|
|
static char Options[] = "hvIRfnp:SMt:";
|
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
char *Prefix = NULL;
|
|
|
|
Boolean NoInstall = FALSE;
|
|
|
|
Boolean NoRecord = FALSE;
|
1997-06-05 12:54:23 +04:00
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
char *Mode = NULL;
|
|
|
|
char *Owner = NULL;
|
|
|
|
char *Group = NULL;
|
|
|
|
char *PkgName = NULL;
|
|
|
|
char *Directory = NULL;
|
|
|
|
char FirstPen[FILENAME_MAX];
|
|
|
|
add_mode_t AddMode = NORMAL;
|
1997-06-05 12:54:23 +04:00
|
|
|
|
1998-10-12 16:03:24 +04:00
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
1999-08-24 04:48:37 +04:00
|
|
|
fprintf(stderr, "%s\n%s\n",
|
|
|
|
"usage: pkg_add [-vInfRMS] [-t template] [-p prefix]",
|
|
|
|
" pkg-name [pkg-name ...]");
|
|
|
|
exit(1);
|
1998-10-12 16:03:24 +04:00
|
|
|
}
|
1997-10-16 04:31:32 +04:00
|
|
|
|
1997-06-05 12:54:23 +04:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
1999-08-24 04:48:37 +04:00
|
|
|
int ch, error;
|
|
|
|
lpkg_head_t pkgs;
|
|
|
|
lpkg_t *lpp;
|
|
|
|
char *cp;
|
|
|
|
char pkgname[MAXPATHLEN];
|
|
|
|
|
|
|
|
while ((ch = getopt(argc, argv, Options)) != -1) {
|
|
|
|
switch (ch) {
|
|
|
|
case 'v':
|
|
|
|
Verbose = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
Prefix = optarg;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'I':
|
|
|
|
NoInstall = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'R':
|
|
|
|
NoRecord = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
Force = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'n':
|
|
|
|
Fake = TRUE;
|
|
|
|
Verbose = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 't':
|
|
|
|
strcpy(FirstPen, optarg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'S':
|
|
|
|
AddMode = SLAVE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'M':
|
|
|
|
AddMode = MASTER;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'h':
|
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
}
|
1997-06-05 12:54:23 +04:00
|
|
|
}
|
1999-08-24 04:48:37 +04:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
TAILQ_INIT(&pkgs);
|
|
|
|
|
|
|
|
if (AddMode != SLAVE) {
|
|
|
|
/* Get all the remaining package names, if any */
|
|
|
|
for (ch = 0; *argv; ch++, argv++) {
|
|
|
|
if (!strcmp(*argv, "-")) /* stdin? */
|
|
|
|
lpp = alloc_lpkg("-");
|
|
|
|
else if (IS_URL(*argv)) /* preserve URLs */
|
|
|
|
lpp = alloc_lpkg(*argv);
|
|
|
|
else { /* expand all pathnames to fullnames */
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
if (fexists(*argv)) { /* refers to a file directly */
|
1999-11-10 21:51:47 +03:00
|
|
|
if (!(cp = realpath(*argv, pkgname))) {
|
|
|
|
lpp = NULL;
|
|
|
|
warn("realpath failed for '%s'", *argv);
|
|
|
|
} else
|
|
|
|
lpp = alloc_lpkg(cp);
|
2000-01-20 02:28:28 +03:00
|
|
|
} else if (ispkgpattern(*argv)) {
|
|
|
|
if ((s = findbestmatchingname(dirname_of(*argv),
|
1999-08-24 04:48:37 +04:00
|
|
|
basename_of(*argv))) != NULL) {
|
2000-01-20 02:28:28 +03:00
|
|
|
char tmp[FILENAME_MAX];
|
|
|
|
|
|
|
|
snprintf(tmp, sizeof(tmp), "%s/%s", dirname_of(*argv), s);
|
|
|
|
|
|
|
|
if (Verbose)
|
|
|
|
printf("Using %s for %s\n", tmp, *argv);
|
|
|
|
|
|
|
|
if (!(cp = realpath(tmp, pkgname))) {
|
|
|
|
lpp = NULL;
|
|
|
|
warn("realpath failed for '%s'", tmp);
|
|
|
|
} else
|
|
|
|
lpp = alloc_lpkg(cp);
|
|
|
|
} else {
|
|
|
|
lpp = NULL;
|
|
|
|
warnx("can't find package pattern '%s'", *argv);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Maybe just a pkg name w/o pattern was given */
|
|
|
|
char tmp[FILENAME_MAX];
|
|
|
|
|
|
|
|
snprintf(tmp, sizeof(tmp), "%s-[0-9]*.tgz", *argv);
|
|
|
|
s=findbestmatchingname(dirname_of(tmp),
|
|
|
|
basename_of(tmp));
|
|
|
|
if (s) {
|
|
|
|
char tmp2[FILENAME_MAX];
|
|
|
|
|
|
|
|
snprintf(tmp2, sizeof(tmp2), "%s/%s", dirname_of(tmp), s);
|
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
if (Verbose)
|
2000-01-20 02:28:28 +03:00
|
|
|
printf("Using %s for %s\n", tmp2, *argv);
|
1999-08-24 04:48:37 +04:00
|
|
|
|
2000-01-20 02:28:28 +03:00
|
|
|
if (!(cp = realpath(tmp2, pkgname))) {
|
1999-11-10 21:51:47 +03:00
|
|
|
lpp = NULL;
|
2000-01-20 02:28:28 +03:00
|
|
|
warn("realpath failed for '%s'", tmp2);
|
1999-11-10 21:51:47 +03:00
|
|
|
} else
|
|
|
|
lpp = alloc_lpkg(cp);
|
1999-08-24 04:48:37 +04:00
|
|
|
} else {
|
2000-01-20 02:28:28 +03:00
|
|
|
/* No go there... */
|
1999-08-24 04:48:37 +04:00
|
|
|
/* look for the file(pattern) in the expected places */
|
|
|
|
if (!(cp = fileFindByPath(NULL, *argv))) {
|
|
|
|
lpp = NULL;
|
|
|
|
warnx("can't find package '%s'", *argv);
|
|
|
|
} else
|
|
|
|
lpp = alloc_lpkg(cp);
|
2000-01-20 02:28:28 +03:00
|
|
|
}
|
1999-08-24 04:48:37 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (lpp)
|
|
|
|
TAILQ_INSERT_TAIL(&pkgs, lpp, lp_link);
|
1997-06-05 12:54:23 +04:00
|
|
|
}
|
|
|
|
}
|
1999-08-24 04:48:37 +04:00
|
|
|
/* If no packages, yelp */
|
|
|
|
else if (!ch)
|
|
|
|
warnx("missing package name(s)"), usage();
|
|
|
|
else if (ch > 1 && AddMode == MASTER)
|
|
|
|
warnx("only one package name may be specified with master mode"),
|
|
|
|
usage();
|
|
|
|
if ((error = pkg_perform(&pkgs)) != 0) {
|
|
|
|
if (Verbose)
|
|
|
|
warnx("%d package addition(s) failed", error);
|
2000-06-17 03:48:23 +04:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
exit(0);
|
1997-06-05 12:54:23 +04:00
|
|
|
}
|