summaryrefslogtreecommitdiff
path: root/mk/pkgtasks/files.mk
blob: 6acc8c16e959b4b38fecad7e5530b4c0db9879a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# $NetBSD: files.mk,v 1.6 2017/08/10 05:37:44 jlam Exp $
#
# Copyright (c) 2017 The NetBSD Foundation, Inc.
# All rights reserved.
#
# This code is derived from software contributed to The NetBSD Foundation
# by Johnny C. Lam.
#
# 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.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

# Generate the data file for the files package task.

###
# CONF_FILES
# REQD_FILES
# _INIT_SCRIPTS
#	List of pairs of files that should be copied and removed when
#	the package is installed and removed.  The pairs are of the
#	form:
#
#		<source> <target>
#
#	During installation, if the target file does not exist, then the
#	source file is copied into place.  During removal, if the target
#	file does not differ from the source file, then the target file
#	is also removed.
#
#	CONF_FILES triggers system changes only if PKG_CONFIG is "yes".
#	REQD_FILES always trigger system changes (PKG_CONFIG is ignored).
#	_INIT_SCRIPTS trigger system changes only if PKG_CONFIG and
#	PKG_INIT_SCRIPTS are both "yes".
#
#	The use-case for REQD_FILES is very specialized, and most packages
#	should be using CONF_FILES instead.
#
#	If the source and target pathnames are relative paths, then they
#	are taken to be relative to ${PREFIX}.
#
# CONF_FILES_MODE
# REQD_FILES_MODE
# _INIT_SCRIPTS_MODE
#	These are the file modes for the target files listed in CONF_FILES,
#	REQD_FILES, and _INIT_SCRIPTS, respectively.
#
# CONF_FILES_PERMS
# REQD_FILES_PERMS
# _INIT_SCRIPTS_PERMS
#	List of sublists representing files with ownership and explicit
#	modes that should be copied and removed when the package is
#	installed and removed.  The sublists are of the form:
#
#		<source> <target> <owner> <group> <mode>
#
#	These variables have the same usage as the similarly-named
#	variables that don't end in "_PERMS".
#
# The _INIT_SCRIPTS* variables are a hook for bsd.init.mk into the config
# file framework.  They should not be used by packages.
#
_PKG_VARS.pkgtasks+=	CONF_FILES CONF_FILES_MODE CONF_FILES_PERMS \
			REQD_FILES REQD_FILES_MODE REQD_FILES_PERMS
CONF_FILES?=		# empty
CONF_FILES_MODE?=	0644
CONF_FILES_PERMS?=	# empty
REQD_FILES?=		# empty
REQD_FILES_MODE?=	0644
REQD_FILES_PERMS?=	# empty
_INIT_SCRIPTS?=		# empty
_INIT_SCRIPTS_MODE?=	0755
_INIT_SCRIPTS_PERMS?=	# empty

# Trigger pkgtasks dependency if needed.
_PKGTASKS_DATAVARS.files+=		\
	CONF_FILES CONF_FILES_PERMS	\
	REQD_FILES REQD_FILES_PERMS	\
	_INIT_SCRIPTS _INIT_SCRIPTS_PERMS
.for _var_ in ${_PKGTASKS_DATAVARS.files}
.  if !empty(${_var_})
USE_PKGTASKS=		yes
.  endif
.endfor

# Strip leading "${PREFIX}/" from the file pathnames.
_CONF_FILES=		${CONF_FILES:S|^${PREFIX}/||g}
_CONF_FILES_PERMS=	${CONF_FILES_PERMS:S|^${PREFIX}/||g}
_REQD_FILES=		${REQD_FILES:S|^${PREFIX}/||g}
_REQD_FILES_PERMS=	${REQD_FILES_PERMS:S|^${PREFIX}/||g}
__INIT_SCRIPTS=		${_INIT_SCRIPTS:S|^${PREFIX}/||g}
__INIT_SCRIPTS_PERMS=	${_INIT_SCRIPTS_PERMS:S|^${PREFIX}/||g}

# ASSERT: The variables have the right number of words and that
#	no target file is listed in more than one variable.
#
_ALL_TARGET_FILES.files=	# empty
.for _var_ in CONF_FILES REQD_FILES _INIT_SCRIPTS
.  if empty(${_var_}) || empty(${_var_}:C/.*/2/:M*:S/2 2//gW)
# ${_var_} has a multiple of 2 words.
.    for s t in ${${_var_}}
_FILE_VARLIST.${t}+=		${_var_}
_ALL_TARGET_FILES.files+=	${t}
.    endfor
.  else
PKG_FAIL_REASON+=	${_var_:Q}" must have a multiple of 2 words."
.  endif
.endfor
.for _var_ in CONF_FILES_PERMS REQD_FILES_PERMS _INIT_SCRIPT_PERMS
.  if empty(${_var_}) || empty(${_var_}:C/.*/5/:M*:S/5 5 5 5 5//gW)
# ${_var_} has a multiple of 5 words.
.    for s t o g m in ${${_var_}}
_FILE_VARLIST.${t}+=		${_var_}
_ALL_TARGET_FILES.files+=	${t}
.    endfor
.  else
PKG_FAIL_REASON+=	${_var_:Q}" must have a multiple of 5 words."
.  endif
.endfor
.for t in ${_ALL_TARGET_FILES.files:O:u}
.  if ${_FILE_VARLIST.${t}:[#]} != 1
PKG_FAIL_REASON+=       ${t:Q}" is listed more than once: "${_FILE_VARLIST.${t}:Q}
.  endif
.endfor

# Hook into directories.mk to create ${PKG_SYSCONFDIR} in the package
# tasks.
#
# The following variables used are set within bsd.pkg.mk:
#
#	PKG_SYSCONFDIR
#	PKG_SYSCONFDIR_PERMS
#	PKG_SYSCONFSUBDIR
#
.if defined(PKG_SYSCONFSUBDIR) && !empty(PKG_SYSCONFSUBDIR)
# Always create ${PKG_SYSCONFDIR} if ${PKG_SYSCONFSUBDIR} is non-empty.
MAKE_DIRS_PERMS+=	${PKG_SYSCONFDIR} ${PKG_SYSCONFDIR_PERMS}
_ALL_DIRS.directories+=	${PKG_SYSCONFDIR}
.elif !empty(_ALL_TARGET_FILES.files:M${PKG_SYSCONFDIR}/*)
# Create ${PKG_SYSCONFDIR} if any target files are in that directory.
MAKE_DIRS+=		${PKG_SYSCONFDIR}
_ALL_DIRS.directories+=	${PKG_SYSCONFDIR}
.endif

# ASSERT: The directories that contain target files are listed in
#	one of the directory variables.  This makes use of
#	${_ALL_DIRS.directories}, which is defined in directories.mk.
#
.for t in ${_ALL_TARGET_FILES.files:O:u}
_FILEMATCH.${t}=	${_ALL_DIRS.directories:@d@${t:M${d}/*}@}
.  if empty(_FILEMATCH.${t})
PKG_FAIL_REASON+=	"This package may need MAKE_DIRS+="${t:C|/[^/]*$||:Q}
.  endif
.endfor

_PKGTASKS_DATA.files=	${_PKGTASKS_DIR}/files
_PKGTASKS_DATAFILES+=	${_PKGTASKS_DATA.files}

${_PKGTASKS_DATA.files}:
	${RUN}${MKDIR} ${.TARGET:H:Q}
	${RUN}exec > ${.TARGET:Q}.tmp
	${RUN}set -- args ${_CONF_FILES}; shift;			\
	while ${TEST} "$$#" -gt 0; do					\
		egfile="$$1"; file="$$2"; shift 2;			\
		${ECHO} "# FILE: $$file c $$egfile "${CONF_FILES_MODE:Q} \
			>> ${.TARGET:Q}.tmp;				\
	done
	${RUN}set -- args ${_CONF_FILES_PERMS}; shift;			\
	while ${TEST} "$$#" -gt 0; do					\
		egfile="$$1"; file="$$2";				\
		owner="$$3"; group="$$4"; mode="$$5"; shift 5;		\
		${ECHO} "# FILE: $$file c $$egfile $$mode $$owner $$group" \
			>> ${.TARGET:Q}.tmp;				\
	done
	${RUN}set -- args ${_REQD_FILES}; shift;			\
	while ${TEST} "$$#" -gt 0; do					\
		egfile="$$1"; file="$$2"; shift 2;			\
		${ECHO} "# FILE: $$file cf $$egfile "${REQD_FILES_MODE:Q} \
			>> ${.TARGET:Q}.tmp;				\
	done
	${RUN}set -- args ${_REQD_FILES_PERMS}; shift;			\
	while ${TEST} "$$#" -gt 0; do					\
		egfile="$$1"; file="$$2";				\
		owner="$$3"; group="$$4"; mode="$$5"; shift 5;		\
		${ECHO} "# FILE: $$file cf $$egfile $$mode $$owner $$group" \
			>> ${.TARGET:Q}.tmp;				\
	done
	${RUN}set -- args ${__INIT_SCRIPTS}; shift;			\
	while ${TEST} "$$#" -gt 0; do					\
		egfile="$$1"; file="$$2"; shift 2;			\
		${ECHO} "# FILE: $$file cr $$egfile "${_INIT_SCRIPTS_MODE:Q} \
			>> ${.TARGET:Q}.tmp;				\
	done
	${RUN}set -- args ${__INIT_SCRIPTS_PERMS}; shift;		\
	while ${TEST} "$$#" -gt 0; do					\
		egfile="$$1"; file="$$2";				\
		owner="$$3"; group="$$4"; mode="$$5"; shift 5;		\
		${ECHO} "# FILE: $$file cr $$egfile $$mode $$owner $$group" \
			>> ${.TARGET:Q}.tmp;				\
	done
	${RUN}${MV} ${.TARGET:Q}.tmp ${.TARGET:Q}

privileged-install-hook: _pkgtasks-files-postinstall-check

_pkgtasks-files-postinstall-check: .PHONY
	${RUN}set -- args ${_CONF_FILES}; shift;			\
	while ${TEST} "$$#" -gt 0; do					\
		${TEST} "$$#" -gt 2 || break;				\
		egfile=${DESTDIR:Q}${PREFIX:Q}"/$$1"; shift 2;		\
		${TEST} -f "$$egfile" || ${TEST} -c "$$egfile" ||	\
		${FAIL_MSG} "CONF_FILES $$egfile does not exist.";	\
	done
	${RUN}set -- args ${_CONF_FILES_PERMS}; shift;			\
	while ${TEST} "$$#" -gt 0; do					\
		${TEST} "$$#" -gt 5 || break;				\
		egfile=${DESTDIR:Q}${PREFIX:Q}"/$$1"; shift 5;		\
		${TEST} -f "$$egfile" || ${TEST} -c "$$egfile" ||	\
		${FAIL_MSG} "CONF_FILES_PERMS $$egfile does not exist.";\
	done
	${RUN}set -- args ${_REQD_FILES}; shift;			\
	while ${TEST} "$$#" -gt 0; do					\
		${TEST} "$$#" -gt 2 || break;				\
		egfile=${DESTDIR:Q}${PREFIX:Q}"/$$1"; shift 2;		\
		${TEST} -f "$$egfile" || ${TEST} -c "$$egfile" ||	\
		${FAIL_MSG} "REQD_FILES $$egfile does not exist.";	\
	done
	${RUN}set -- args ${_REQD_FILES_PERMS}; shift;			\
	while ${TEST} "$$#" -gt 0; do					\
		${TEST} "$$#" -gt 5 || break;				\
		egfile=${DESTDIR:Q}${PREFIX:Q}"/$$1"; shift 5;		\
		${TEST} -f "$$egfile" || ${TEST} -c "$$egfile" ||	\
		${FAIL_MSG} "REQD_FILES_PERMS $$egfile does not exist.";\
	done
	${RUN}set -- args ${__INIT_SCRIPTS}; shift;			\
	while ${TEST} "$$#" -gt 0; do					\
		${TEST} "$$#" -gt 2 || break;				\
		egfile=${DESTDIR:Q}${PREFIX:Q}"/$$1"; shift 2;		\
		${TEST} -f "$$egfile" || ${TEST} -c "$$egfile" ||	\
		${FAIL_MSG} "REQD_FILES $$egfile does not exist.";	\
	done
	${RUN}set -- args ${__INIT_SCRIPTS_PERMS}; shift;		\
	while ${TEST} "$$#" -gt 0; do					\
		${TEST} "$$#" -gt 5 || break;				\
		egfile=${DESTDIR:Q}${PREFIX:Q}"/$$1"; shift 5;		\
		${TEST} -f "$$egfile" || ${TEST} -c "$$egfile" ||	\
		${FAIL_MSG} "REQD_FILES_PERMS $$egfile does not exist.";\
	done