1999-08-27 21:35:59 -04:00
|
|
|
/* $FreeBSD$ */
|
1993-08-25 21:19:55 -04:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* 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
|
|
|
|
|
*
|
|
|
|
|
* Include and define various things wanted by the create command.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _INST_CREATE_H_INCLUDE
|
|
|
|
|
#define _INST_CREATE_H_INCLUDE
|
|
|
|
|
|
2005-11-08 15:48:26 -05:00
|
|
|
extern match_t MatchType;
|
1993-08-25 21:19:55 -04:00
|
|
|
extern char *Prefix;
|
|
|
|
|
extern char *Comment;
|
|
|
|
|
extern char *Desc;
|
1994-12-05 19:51:50 -05:00
|
|
|
extern char *Display;
|
1993-08-25 21:19:55 -04:00
|
|
|
extern char *Install;
|
1998-12-16 08:59:31 -05:00
|
|
|
extern char *PostInstall;
|
1993-08-25 21:19:55 -04:00
|
|
|
extern char *DeInstall;
|
1998-12-16 08:59:31 -05:00
|
|
|
extern char *PostDeInstall;
|
1993-08-25 21:19:55 -04:00
|
|
|
extern char *Contents;
|
|
|
|
|
extern char *Require;
|
1997-06-06 08:19:11 -04:00
|
|
|
extern char *SrcDir;
|
2004-06-29 14:56:59 -04:00
|
|
|
extern char *BaseDir;
|
1993-09-12 16:45:31 -04:00
|
|
|
extern char *ExcludeFrom;
|
1994-12-05 19:51:50 -05:00
|
|
|
extern char *Mtree;
|
1995-04-09 11:05:01 -04:00
|
|
|
extern char *Pkgdeps;
|
2003-04-17 05:56:05 -04:00
|
|
|
extern char *Conflicts;
|
2000-10-23 03:01:31 -04:00
|
|
|
extern char *Origin;
|
2001-10-08 13:01:35 -04:00
|
|
|
extern char *InstalledPkg;
|
1997-06-06 08:19:11 -04:00
|
|
|
extern char PlayPen[];
|
1994-05-19 14:27:41 -04:00
|
|
|
extern int Dereference;
|
1995-04-21 20:03:18 -04:00
|
|
|
extern int PlistOnly;
|
2005-06-05 23:24:14 -04:00
|
|
|
extern int Recursive;
|
2008-05-27 01:10:54 -04:00
|
|
|
extern int Regenerate;
|
2002-04-20 17:20:58 -04:00
|
|
|
|
2010-10-12 06:04:44 -04:00
|
|
|
enum zipper {NONE, GZIP, BZIP, BZIP2, XZ };
|
2002-04-20 17:20:58 -04:00
|
|
|
extern enum zipper Zipper;
|
1993-08-25 21:19:55 -04:00
|
|
|
|
2004-06-29 14:56:59 -04:00
|
|
|
void add_cksum(Package *, PackingList, const char *);
|
2001-10-10 02:58:42 -04:00
|
|
|
void check_list(const char *, Package *);
|
|
|
|
|
void copy_plist(const char *, Package *);
|
1993-08-25 21:19:55 -04:00
|
|
|
|
|
|
|
|
#endif /* _INST_CREATE_H_INCLUDE */
|