Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / usr.sbin / pkg_install / create / create.h
1 /* $FreeBSD: src/usr.sbin/pkg_install/create/create.h,v 1.15.2.5 2002/05/29 18:31:11 obrien Exp $ */
2 /* $DragonFly: src/usr.sbin/pkg_install/create/Attic/create.h,v 1.2 2003/06/17 04:29:59 dillon Exp $ */
3
4 /*
5  * FreeBSD install - a package for the installation and maintainance
6  * of non-core utilities.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * Jordan K. Hubbard
18  * 18 July 1993
19  *
20  * Include and define various things wanted by the create command.
21  *
22  */
23
24 #ifndef _INST_CREATE_H_INCLUDE
25 #define _INST_CREATE_H_INCLUDE
26
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     *ExcludeFrom;
39 extern char     *Mtree;
40 extern char     *Pkgdeps;
41 extern char     *Origin;
42 extern char     *InstalledPkg;
43 extern char     PlayPen[];
44 extern int      Dereference;
45 extern int      PlistOnly;
46
47 enum zipper {NONE, GZIP, BZIP, BZIP2 };
48 extern enum zipper      Zipper;
49
50 void            check_list(const char *, Package *);
51 int             pkg_perform(char **);
52 void            copy_plist(const char *, Package *);
53
54 #endif  /* _INST_CREATE_H_INCLUDE */