turns printfs back on
[freebsd-src/fkvm-freebsd.git] / usr.sbin / pkg_install / create / create.h
blob310aba0114c5ae7a44c106a54177ce2a6327e1a2
1 /* $FreeBSD$ */
3 /*
4 * FreeBSD install - a package for the installation and maintainance
5 * of non-core utilities.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * Jordan K. Hubbard
17 * 18 July 1993
19 * Include and define various things wanted by the create command.
23 #ifndef _INST_CREATE_H_INCLUDE
24 #define _INST_CREATE_H_INCLUDE
26 extern match_t MatchType;
27 extern char *Prefix;
28 extern char *Comment;
29 extern char *Desc;
30 extern char *Display;
31 extern char *Install;
32 extern char *PostInstall;
33 extern char *DeInstall;
34 extern char *PostDeInstall;
35 extern char *Contents;
36 extern char *Require;
37 extern char *SrcDir;
38 extern char *BaseDir;
39 extern char *ExcludeFrom;
40 extern char *Mtree;
41 extern char *Pkgdeps;
42 extern char *Conflicts;
43 extern char *Origin;
44 extern char *InstalledPkg;
45 extern char PlayPen[];
46 extern int Dereference;
47 extern int PlistOnly;
48 extern int Recursive;
49 extern int Regenerate;
51 enum zipper {NONE, GZIP, BZIP, BZIP2 };
52 extern enum zipper Zipper;
54 void add_cksum(Package *, PackingList, const char *);
55 void check_list(const char *, Package *);
56 void copy_plist(const char *, Package *);
58 #endif /* _INST_CREATE_H_INCLUDE */