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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
|
# $NetBSD: makevars.map,v 1.88 2006/05/10 17:14:08 rillig Exp $
#
# This file contains the guessed type of some variables, according to
# their current use in pkgsrc.
#
# The type YesNo is used for variables that are checked using
# .if defined(VAR) && !empty(VAR:M[Yy][Ee][Ss])
#
# The type Yes is used for variables that are checked using
# .if defined(VAR)
#
# Type type List is used for lists of things. There are two types of lists,
# InternalList and List, which are described in the pkgsrc guide, chapter
# "Makefiles". When a "+" is appended to the List keyword, it means that
# this variable should only be initialized to the empty list or have some
# values appended using the "+=" operator. All other operations will
# generate a warning.
# The following variables are taken from mk/defaults/mk.conf, 1.118
ALLOW_VULNERABLE_PACKAGES Yes []
MANINSTALL List of { maninstall catinstall } []
MANZ Yes []
GZIP List of ShellWord []
MKCRYPTO YesNo []
OBJHOSTNAME Yes []
OBJMACHINE Yes []
PKG_SUFX Filename []
PKGSRC_LOCKTYPE { none sleep once } []
PKGSRC_SLEEPSECS Integer []
USETBL Yes []
ABI { 32 64 } []
PKG_DEVELOPER Yes []
USE_ABI_DEPENDS YesNo []
PKG_REGISTER_SHELLS { YES NO } []
PKGSRC_COMPILER List of { ccc ccache distcc f2c icc ido gcc mipspro mipspro-ucode sunpro xlc } []
PKGSRC_MESSAGE_RECIPIENTS List of Mail_Address
PKGSRC_SHOW_BUILD_DEFS YesNo []
PKGSRC_SHOW_PATCH_ERRORMSG YesNo []
PKGSRC_RUN_TEST YesNo []
PREFER_PKGSRC List of PkgBase []
PREFER_NATIVE List of PkgBase []
PREFER_NATIVE_PTHREADS YesNo []
LOCALBASE Pathname []
CROSSBASE Pathname []
VARBASE Pathname []
X11_TYPE { native XFree86 xorg }
X11BASE Pathname []
MOTIFBASE Pathname []
PKGINFODIR Pathname []
PKGMANDIR Pathname []
USE_XPKGWEDGE YesNo []
BSDSRCDIR Pathname []
BSDXSRCDIR Pathname []
DISTDIR Pathname []
DIST_PATH Pathlist []
DEFAULT_VIEW Unchecked []
FETCH_CMD ShellCommand []
FETCH_RESUME_ARGS List of ShellWord []
FETCH_OUTPUT_ARGS List of ShellWord []
LIBTOOLIZE_PLIST YesNo []
PKG_INSTALLATION_PREFS List of { overwrite pkgviews } []
PKG_RESUME_TRANSFERS YesNo []
PKG_SYSCONFBASE Pathname []
RCD_SCRIPTS_DIR Pathname []
PACKAGES Pathname []
PKGVULNDIR Pathname []
PASSIVE_FETCH Yes []
PATCH_FUZZ_FACTOR { -F0 -F1 -F2 -F3 } []
ACCEPTABLE_LICENSES List of Identifier []
SPECIFIC_PKGS Yes []
SITE_SPECIFIC_PKGS List of PkgPath []
HOST_SPECIFIC_PKGS List of PkgPath []
GROUP_SPECIFIC_PKGS List of PkgPath []
USER_SPECIFIC_PKGS List of PkgPath []
EXTRACT_USING { gtar nbtar pax } []
FAILOVER_FETCH Yes []
MASTER_SORT List of Unchecked []
MASTER_SORT_REGEX List of Unchecked []
PATCH_DEBUG Yes []
PKG_FC ShellCommand []
IMAKE ShellCommand []
IMAKEOPTS List of ShellWord []
PRE_ROOT_CMD ShellCommand []
SETGIDGAME YesNo []
SU_CMD ShellCommand []
SU_CMD_PATH_APPEND Pathlist []
FATAL_OBJECT_FMT_SKEW YesNo []
WARN_NO_OBJECT_FMT YesNo []
SMART_MESSAGES Yes []
BINPKG_SITES List of URL []
BIN_INSTALL_FLAG List of ShellWord []
LOCALPATCHES Pathname []
# some other variables, sorted alphabetically
ALL_ENV List of ShellWord
ALTERNATIVES_FILE Filename
ALTERNATIVES_SRC List of Pathname
APACHE_MODULE Yes
AUTOCONF_REQD List of Version [*:a]
AUTOMAKE_OVERRIDE List of Pathmask
BDB185_DEFAULT Unchecked []
BDBBASE Unchecked []
BDB_ACCEPTED List of { db1 db2 db3 db4 }
BDB_DEFAULT Unchecked []
BDB_LIBS Unchecked []
BDB_TYPE Unchecked []
BROKEN Message
BROKEN_GETTEXT_DETECTION YesNo [m:s,c:s]
BROKEN_IN List of BrokenIn [m:s]
BUILDLINK_ABI_DEPENDS List of Dependency [b:da,m:a] # b:d?
BUILDLINK_API_DEPENDS List of Dependency [b:da,m:a, builtin.mk:a] # b:d?
BUILDLINK_CONTENTS_FILTER List of ShellWord
# ^^ ShellCommand
BUILDLINK_CFLAGS List of CFlag
BUILDLINK_CPPFLAGS List of CFlag
BUILDLINK_DEPENDS InternalList of Dependency [b:a]
BUILDLINK_DEPMETHOD BuildlinkDepmethod [b:d,m:as,c:a,*.mk:a]
BUILDLINK_DEPTH BuildlinkDepth [b:s]
BUILDLINK_FILES List of Pathmask [b:a, builtin.mk:a]
BUILDLINK_FILES_CMD List of ShellWord
# ^^ ShellCommand
BUILDLINK_INCDIRS List of Pathname [b:ad] # b:d?
BUILDLINK_JAVA_PREFIX Pathname
BUILDLINK_LDADD List of LdFlag [builtin.mk:ads]
BUILDLINK_LDFLAGS List of LdFlag
BUILDLINK_LIBDIRS List of Pathname [b:a]
BUILDLINK_LIBS List of LdFlag [b:a]
BUILDLINK_PACKAGES BuildlinkPackages [b:as]
BUILDLINK_PASSTHRU_DIRS List of Pathname [m:a,c:a,b:a,h:a]
BUILDLINK_PASSTHRU_RPATHDIRS List of Pathname [m:a,c:a,b:a,h:a]
BUILDLINK_PKGSRCDIR RelativePkgDir [b:d]
BUILDLINK_PREFIX Pathname [builtin.mk:s]
BUILDLINK_RPATHDIRS List of Pathname
BUILDLINK_TARGETS List of Identifier
BUILDLINK_TRANSFORM List of WrapperTransform [m:a,builtin.mk:a,h:a,b:a]
BUILD_DEFS List of Varname [m:a,c:a,o:a]
BUILD_DEPENDS InternalList of DependencyWithPath [c:a,m:a,o:a,*.mk:a]
BUILD_DIRS List of WrksrcSubdirectory [m:as,c:as]
BUILD_ENV List of ShellWord [*:a]
BUILD_TARGET List of Identifier [m:as,c:as]
BUILD_USES_MSGFMT Yes
BUILTIN_PKG Identifier [builtin.mk:s]
BUILTIN_FIND_FILES_VAR List of Varname [builtin.mk:s]
BUILTIN_FIND_FILES List of Pathname [builtin.mk:s]
BUILTIN_FIND_GREP List of ShellWord [builtin.mk:s]
BUILTIN_FIND_LIBS List of Pathname [builtin.mk:s]
BUILTIN_X11_TYPE Unchecked []
BUILTIN_X11_VERSION Unchecked []
CATEGORIES List of Category [m:as,c:as]
CC_VERSION Unchecked []
CC ShellCommand [m:]
CFLAGS List of CFlag [m:a,c:a,o:a,h:a]
CHECK_BUILTIN YesNo [builtin.mk:d,m:s]
CHECK_FILES_SKIP List of Pathmask [m:a,c:a]
CHECK_INTERPRETER_SKIP List of Pathmask [m:a,c:a]
CHECK_SHLIBS YesNo [m:s]
CHECK_WRKREF_SKIP List of Pathmask [m:a,c:a]
COMMENT Comment [m:as,c:as] # m:a?, c:a?
CONFIGURE_ARGS List of ShellWord [c:a,m:a,o:a,h:a,builtin.mk:a]
CONFIGURE_DIRS List of WrksrcSubdirectory [m:s,c:s]
CONFIGURE_ENV List of ShellWord [*:a]
CONFIGURE_HAS_INFODIR YesNo
CONFIGURE_HAS_MANDIR YesNo [m:s]
CONFIGURE_SCRIPT Pathname [m:s]
CONFIG_GUESS_OVERRIDE List of Pathmask [m:as,c:as]
CONFIG_STATUS_OVERRIDE List of Pathmask [m:as,c:as]
CONFIG_SHELL ShellWord [m:s,c:s]
CONFIG_SUB_OVERRIDE List of Pathmask [m:as,c:as]
CONFLICTS List of Dependency [m:as,c:a]
CONF_FILES List of ShellWord [m:as,c:a]
CONF_FILES_MODE { 0644 0640 0600 0400 } [m:as,c:a]
CONF_FILES_PERMS List of ShellWord [m:as,c:a,o:a]
CPPFLAGS List of CFlag [m:a,h:a,c:a,o:a]
CRYPTO Yes [m:s]
CXX ShellCommand [m:]
CXXFLAGS List of CFlag [m:a,c:a,o:a,h:a]
DEINSTALL_FILE Pathname [m:s]
DEINSTALL_SRC List of Pathname [m:s,c:ds]
DEINSTALL_TEMPLATE List of Pathname
DEPENDS InternalList of DependencyWithPath [*:a]
DESCR_SRC List of Pathname [m:s,c:ds]
DEVOSSAUDIO Pathname
DEVOSSSOUND Pathname
DISTFILES List of Filename [m:as,c:ads]
DISTINFO_FILE RelativePkgPath [m:s,c:ds]
DISTNAME Filename [m:s,c:ads, Makefile.*:s]
DIST_SUBDIR Filename [m:s,c:ds]
DJB_BUILD_TARGETS List of Identifier
DJB_CONFIG_CMDS List of ShellWord
# ^^ ShellCommand, terminated by a semicolon
DJB_CONFIG_HOME Filename
DJB_INSTALL_TARGETS List of Identifier
DJB_MAKE_TARGETS List of Identifier
DJB_RESTRICTED YesNo [m:s]
DJB_SLASHPACKAGE YesNo
DLOPEN_REQUIRE_PTHREADS YesNo
DL_AUTO_VARS Yes
DL_LIBS List of LdFlag
EGDIR Pathname [m:s,c:s]
# ^^ This variable is not defined by the system, but has been established
# as a convention.
EMACS_BIN Unchecked []
EMACS_ETCPREFIX Unchecked []
EMACS_FLAVOR Unchecked []
EMACS_INFOPREFIX Unchecked []
EMACS_LISPPREFIX Unchecked []
EMACS_MODULES List of Identifier [m:as,c:as]
EMACS_PKGNAME_PREFIX Unchecked []
EMACS_TYPE Unchecked []
EMACS_USE_LEIM Yes
EMACS_VERSIONS_ACCEPTED List of { emacs21 emacs21nox emacs20 xemacs215 xemacs214 } [m:s]
EMACS_VERSION_REQD List of Version
# ^^ of Version
EVAL_PREFIX InternalList of ShellWord [m:a,c:a]
# ^^ FIXME: Looks like a type mismatch.
EXTRACT_CMD ShellCommand [m:s]
EXTRACT_ELEMENTS List of Pathmask [m:s]
EXTRACT_ONLY List of Pathname [m:as,c:as]
EXTRACT_OPTS List of ShellWord [m:as,c:as]
EXTRACT_OPTS_BIN List of ShellWord [m:as,c:as]
EXTRACT_OPTS_LHA List of ShellWord [m:as,c:as]
EXTRACT_OPTS_PAX List of ShellWord [m:as,c:as]
EXTRACT_OPTS_RAR List of ShellWord [m:as,c:as]
EXTRACT_OPTS_TAR List of ShellWord [m:as,c:as]
EXTRACT_OPTS_ZIP List of ShellWord [m:as,c:as]
EXTRACT_OPTS_ZOO List of ShellWord [m:as,c:as]
EXTRACT_SUFX DistSuffix [c:s,m:s]
FAMBASE Unchecked []
FAM_ACCEPTED List of { fam gamin }
FAM_DEFAULT Unchecked []
FAM_TYPE Unchecked []
FETCH_BEFORE_ARGS List of ShellWord [m:as]
FILESDIR RelativePkgPath [m:s,c:ds]
FILES_SUBST List of ShellWord [*:a]
FILES_SUBST_SED List of ShellWord
FONTS_DIRS List of Pathname [m:as,c:a]
GCC_REQD List of Version [*:a]
GENERATE_PLIST List of ShellWord [m:a,c:a]
# ^^ List of Shellcommand, terminated with a semicolon
GNU_ARCH { mips }
GNU_CONFIGURE Yes [c:s,m:s]
GNU_CONFIGURE_MANDIR Pathname [m:s,c:s]
GNU_CONFIGURE_PREFIX Pathname
HAS_CONFIGURE Yes [m:s,c:s]
HEADER_TEMPLATE List of Pathname
HOMEPAGE URL [m:s,c:ds]
INCOMPAT_CURSES List of PlatformTriple [m:as]
INCOMPAT_ICONV List of PlatformTriple
INFO_DIR Pathname
# ^^ relative to PREFIX
INFO_FILES List of Pathmask [m:s]
INSTALL ShellCommand []
INSTALLATION_DIRS List of Pathname [m:as,c:a]
INSTALL_DATA ShellCommand []
INSTALL_DATA_DIR ShellCommand []
INSTALL_DIRS List of WrksrcSubdirectory [m:as,c:as]
INSTALL_FILE Pathname [m:s]
INSTALL_GAME ShellCommand []
INSTALL_GAME_DATA ShellCommand []
INSTALL_LIB ShellCommand []
INSTALL_LIB_DIR ShellCommand []
INSTALL_MAKE_FLAGS List of ShellWord [m:as,*:a]
INSTALL_MAN ShellCommand []
INSTALL_MAN_DIR ShellCommand []
INSTALL_PROGRAM ShellCommand []
INSTALL_PROGRAM_DIR ShellCommand []
INSTALL_SCRIPT ShellCommand []
INSTALL_SCRIPTS_ENV List of ShellWord
INSTALL_SCRIPT_DIR ShellCommand []
INSTALL_SRC List of Pathname [m:s,c:ds]
INSTALL_TARGET List of Identifier [m:as,c:as]
INSTALL_TEMPLATE List of Pathname
INSTALL_UNSTRIPPED YesNo [m:s]
INTERACTIVE_STAGE List of { fetch extract configure build install } [m:s]
IS_BUILTIN YesNoFromCommand [builtin.mk:s]
JAVA_CLASSPATH ShellWord
JAVA_NAME Filename
JAVA_UNLIMIT List of { cmdsize datasize stacksize }
JAVA_WRAPPERS InternalList of Filename
KRB5BASE Unchecked []
KRB5_ACCEPTED List of { heimdal mit-krb5 }
KRB5_DEFAULT Unchecked []
KRB5_TYPE Unchecked []
LDFLAGS List of LdFlag [m:a,c:a,h:a]
LIBOSSAUDIO Pathname
LIBS List of LdFlag [m:a,o:a,h:a]
LIBTOOL_OVERRIDE List of Pathmask [m:as]
LICENCE License
LICENSE License [m:s,c:s]
LTCONFIG_OVERRIDE List of Pathmask [m:as,c:a]
MAINTAINER Mail_Address [m:s,c:ds]
MAKEFILE Pathname [m:s,c:s]
MAKEFLAGS List of ShellWord [m:a,c:a,b:a,h:a]
MAKEVARS List of Varname [builtin.mk:a,b:a]
MAKE_DIRS List of Pathname
MAKE_DIRS_PERMS List of ShellWord
MAKE_ENV List of ShellWord [*:a]
MAKE_FLAGS List of ShellWord [*:a]
MANCOMPRESSED YesNo [m:s,c:ds]
MANCOMPRESSED_IF_MANZ Yes [m:s,c:ds]
MASTER_SITES List of URL [c:ads,m:as]
MASTER_SITE_APACHE List of URL
MASTER_SITE_BACKUP List of URL
MASTER_SITE_CYGWIN List of URL
MASTER_SITE_DEBIAN List of URL
MASTER_SITE_FREEBSD List of URL
MASTER_SITE_FREEBSD_LOCAL List of URL
MASTER_SITE_GNOME List of URL
MASTER_SITE_GNU List of URL
MASTER_SITE_GNUSTEP List of URL
MASTER_SITE_IFARCHIVE List of URL
MASTER_SITE_MOZILLA List of URL
MASTER_SITE_MYSQL List of URL
MASTER_SITE_OPENOFFICE List of URL
MASTER_SITE_PERL_CPAN List of URL
MASTER_SITE_R_CRAN List of URL
MASTER_SITE_SOURCEFORGE List of URL
MASTER_SITE_SOURCEFORGE_JP List of URL
MASTER_SITE_SUNSITE List of URL
MASTER_SITE_SUSE List of URL
MASTER_SITE_TEX_CTAN List of URL
MASTER_SITE_XCONTRIB List of URL
MASTER_SITE_XEMACS List of URL
MESSAGE_SRC List of Pathname [m:as,o:ads]
MESSAGE_SUBST List of ShellWord [c:a,m:a,o:a]
MYSQL_VERSIONS_ACCEPTED List of { 40 41 50 } [m:s]
MYSQL_VERSION_DEFAULT Unchecked []
NOT_FOR_COMPILER List of { ccc gcc icc ido mipspro mipspro-ucode sunpro xlc } [m:as,c:a]
NOT_FOR_PLATFORM List of PlatformTriple [m:as,c:a]
NO_BIN_ON_CDROM Restricted [m:s,c:s]
NO_BIN_ON_FTP Restricted [m:s,c:s]
NO_BUILD Yes [m:s,c:s]
NO_CHECKSUM Yes [m:s]
NO_CONFIGURE Yes [m:s,c:s]
NO_EXPORT_CPP Yes [m:s]
NO_EXTRACT Yes
NO_INSTALL_MANPAGES Yes [m:s]
NO_MTREE Yes [m:s]
NO_PACKAGE Message [m:s]
NO_PKGTOOLS_REQD_CHECK Yes [m:s]
NO_PKG_REGISTER Yes [m:s]
NO_SRC_ON_CDROM Restricted [m:s,c:s]
NO_SRC_ON_FTP Restricted [m:s,c:s]
ONLY_FOR_COMPILER List of { ccc gcc icc ido mipspro mipspro-ucode sunpro xlc } [m:as,c:a]
ONLY_FOR_PLATFORM List of PlatformTriple [m:as,c:a]
OPSYSVARS List of Varname [m:a,c:a]
OSVERSION_SPECIFIC Yes [m:s,c:s]
OWN_DIRS List of Pathname [m:as,c:a]
OWN_DIRS_PERMS List of ShellWord [m:as,o:a]
PAMBASE Unchecked []
PAM_ACCEPTED List of { linux-pam openpam solaris-pam }
PAM_DEFAULT Unchecked []
PAM_TYPE Unchecked []
PATCHDIR RelativePkgPath [m:s,c:ds]
PATCHFILES List of Filename [m:as,o:as,c:as]
PATCH_ARGS List of ShellWord
PATCH_DIST_ARGS List of ShellWord [m:as]
PATCH_DIST_CAT ShellCommand
PATCH_DIST_STRIP ShellWord [o:s,c:a,m:as]
PATCH_SITES List of URL [m:s,o:s,c:s]
PATCH_STRIP ShellWord
PERL5_PACKLIST Perl5Packlist [m:s,o:sa]
PGSQL_VERSIONS_ACCEPTED List of { 73 74 80 }
PGSQL_VERSION_DEFAULT Unchecked []
PKGBASE Unchecked []
PKGCONFIG_OVERRIDE List of Pathmask [m:as,c:a]
PKGDIR RelativePkgDir
PKGNAME PkgName [m:s,c:s]
PKGNAME_NOREV Unchecked []
PKGREPOSITORY Unchecked []
PKGREVISION PkgRevision [m:s]
PKGTOOLS_ENV List of ShellWord
PKGVERSION Version [m:,c:]
PKGWILDCARD Unchecked []
PKG_APACHE Unchecked []
PKG_APACHE_ACCEPTED List of { apache13 apache2 }
PKG_APACHE_DEFAULT Unchecked []
PKG_DEBUG_LEVEL Unchecked []
PKG_DEFAULT_OPTIONS Unchecked []
PKG_FAIL_REASON List of ShellWord [*:a]
PKG_GECOS Unchecked [m:s]
PKG_GID Unchecked [m:s]
PKG_GROUPS List of ShellWord [m:as]
PKG_HOME Pathname [m:s]
PKG_HACKS List of Identifier [h:a]
PKG_INSTALLATION_TYPES List of { overwrite pkgviews } [m:s,c:s]
PKG_JAVA_HOME Unchecked []
PKG_JVM Unchecked []
PKG_JVMS_ACCEPTED List of { blackdown-jdk13 jdk jdk14 kaffe sun-jdk13 sun-jdk14 sun-jdk15 }
PKG_JVM_DEFAULT Unchecked []
PKG_LEGACY_OPTIONS List of Option
PKG_LIBTOOL Pathname
PKG_OPTIONS List of Option [o:,m:,c:]
PKG_OPTIONS_DEPRECATED_WARNINGS List of ShellWord
PKG_OPTIONS_GROUP List of Option [o:s,m:s]
PKG_OPTIONS_LEGACY_OPTS List of Unchecked [m:a,c:a,o:a]
PKG_OPTIONS_LEGACY_VARS List of Unchecked [m:a,c:a,o:a]
PKG_OPTIONS_NONEMPTY_SETS List of Option
PKG_OPTIONS_OPTIONAL_GROUPS List of Identifier [o:as]
PKG_OPTIONS_REQUIRED_GROUPS List of Identifier [o:s,m:s]
PKG_OPTIONS_SET List of Option
PKG_OPTIONS_VAR PkgOptionsVar [o:s,m:s,c:s]
PKG_PRESERVE Yes [m:s]
PKG_SHELL Pathname [m:s,c:s]
PKG_SHLIBTOOL Pathname
PKG_SKIP_REASON List of ShellWord
PKG_SUGGESTED_OPTIONS List of Option [o:as,m:as,c:s]
PKG_SUPPORTED_OPTIONS List of Option [o:as,m:as,c:s]
PKG_SYSCONFDIR Pathname
PKG_SYSCONFSUBDIR Pathname [m:s,c:s]
PKG_SYSCONFVAR Identifier
# ^^ FIXME: name/type mismatch.
PKG_UID Unchecked [m:s]
PKG_USERS List of ShellWord [m:as]
PLIST_SRC List of RelativePkgPath [m:as,o:a,c:ads]
PLIST_SUBST List of ShellWord [c:a,o:a,m:a]
PLIST_TYPE { dynamic static }
PREPEND_PATH List of Pathname
PRINT_PLIST_AWK AwkCommand [*:a]
PTHREAD_AUTO_VARS YesNo [m:s]
PTHREAD_OPTS List of { native optional require } [m:as,c:a,b:a]
PTHREAD_TYPE Unchecked []
RCD_SCRIPTS List of Filename [m:s,c:as]
RCD_SCRIPT_SRC List of Pathname [m:s]
REPLACE String [m:s]
REPLACE_EMACS List of Pathmask
REPLACE_FILES List of Pathmask [m:as,c:as]
REPLACE_INTERPRETER List of Identifier [m:a,c:a]
REPLACE_PERL List of Pathmask [m:as,c:a]
REQD_DIRS List of Pathname [m:as]
REQD_FILES List of Pathname [m:as]
REQD_FILES_MODE { 0644 0640 0600 0400 } [m:as]
RESTRICTED Message [m:s,c:ds]
SCRIPTS_ENV List of ShellWord
SHLIB_HANDLING { YES NO no }
SPECIAL_PERMS List of ShellWord [m:as]
SHLIBTOOL_OVERRIDE List of Pathmask [m:as,c:a]
SITES List of URL [m:as,c:as]
SUBST_CLASSES List of Identifier [m:a,c:a,h:a]
SUBST_FILES List of Pathmask [m:as,c:as,h:as,o:as]
SUBST_FILTER_CMD ShellCommand [m:s,c:s,h:s,o:s]
SUBST_MESSAGE Message [m:s,c:s,h:s,o:s]
SUBST_SED SedCommands [m:as,c:as,h:as,o:as]
SUBST_STAGE Stage [m:s,c:s,h:s,o:s]
SVR4_PKGNAME SVR4PkgName [m:s]
TEST_DIRS List of WrksrcSubdirectory [m:as,c:as]
TEST_ENV List of ShellWord
TEST_TARGET List of Identifier [m:s]
TEX_ACCEPTED List of { teTeX1 teTeX2 teTeX3 } [m:s,c:s]
TEX_DEPMETHOD { build run } [m:s,c:s]
TEXINFO_REQD List of Version [*:a]
TOOLS_ALIASES List of Filename
TOOLS_BROKEN List of Tool
TOOLS_CREATE List of Tool
TOOLS_GNU_MISSING List of Tool
TOOLS_NOOP List of Tool
TOOLS_PATH Pathname
UNLIMIT_RESOURCES List of { datasize stacksize memorysize } [m:as,c:a]
UNWRAP_FILES List of Pathmask [m:a,c:a]
USE_BUILTIN YesNoFromCommand [builtin.mk:s]
USE_CROSSBASE Yes [m:s]
USE_DIRS List of { xdg-1.1 gnome2-1.5 gnome1-1.5 xdg-1.2 gnome1-1.0 texmf-1.0 texmf-1.1 xdg-1.3 XFree86-1.0 xorg-1.0 texmf-dirs-1.0 gnome2-1.6 gnome2-1.3 theme-1.0 XFree86-1.1 } [m:a,c:a]
USE_GNU_CONFIGURE_HOST YesNo
USE_GNU_ICONV Yes [m:s,c:s]
USE_GNU_READLINE Yes [m:s]
USE_IMAKE Yes [m:s]
USE_JAVA { run yes } [m:s]
USE_JAVA2 { YES yes 1.4 1.5 } [m:s]
USE_LANGUAGES List of { c c++ fortran java objc } [m:as,c:as,o:a]
USE_LIBTOOL Yes [m:s,c:s]
USE_MAKEINFO Yes
USE_MSGFMT_PLURALS Yes
USE_NCURSES Yes [m:s]
USE_OLD_DES_API YesNo [m:s,c:s]
USE_PKGINSTALL Yes
USE_PKGLOCALEDIR YesNo [m:s,c:s]
USE_PKGSRC_GCC Unchecked []
USE_TOOLS List of Tool [m:a,c:a,o:a]
USE_X11 Yes [m:s,c:s]
USE_X11BASE Yes [m:s,c:s]
WRAPPER_REORDER_CMDS List of WrapperReorder [b:a,c:a,m:a]
WRAPPER_TRANSFORM_CMDS List of WrapperTransform [b:a,c:a,m:a]
WRKSRC WrkdirSubdirectory [m:s,c:ds]
X11_PKGSRCDIR Unchecked []
XAW_TYPE { 3d neXtaw standard xpm }
XMKMF_FLAGS List of ShellWord
|