Lines 96-101
Link Here
|
96 |
# ${opt}_QMAKE_OFF When option is disabled, it will add its content to |
96 |
# ${opt}_QMAKE_OFF When option is disabled, it will add its content to |
97 |
# the QMAKE_ARGS. |
97 |
# the QMAKE_ARGS. |
98 |
# |
98 |
# |
|
|
99 |
# ${opt}_IMPLIES When opt is enabled, options named in IMPLIES will |
100 |
# get enabled too. |
101 |
# ${opt}_PREVENTS When opt is enabled, if any options in PREVENTS are |
102 |
# also enabled, it will produce an error. |
103 |
# |
99 |
# ${opt}_USE= FOO=bar When option is enabled, it will enable |
104 |
# ${opt}_USE= FOO=bar When option is enabled, it will enable |
100 |
# USE_FOO+= bar |
105 |
# USE_FOO+= bar |
101 |
# If you need more than one option, you can do |
106 |
# If you need more than one option, you can do |
Lines 387-392
Link Here
|
387 |
NEW_OPTIONS:= ${NEW_OPTIONS:N${opt}} |
392 |
NEW_OPTIONS:= ${NEW_OPTIONS:N${opt}} |
388 |
.endfor |
393 |
.endfor |
389 |
|
394 |
|
|
|
395 |
## Enable options implied by other options |
396 |
# _PREVENTS is handled in bsd.port.mk:pre-check-config |
397 |
.for count in ${PORT_OPTIONS} |
398 |
. for opt in ${PORT_OPTIONS} |
399 |
PORT_OPTIONS+= ${${opt}_IMPLIES} |
400 |
. endfor |
401 |
.endfor |
402 |
|
390 |
# Finally, add options required by slave ports |
403 |
# Finally, add options required by slave ports |
391 |
PORT_OPTIONS+= ${OPTIONS_SLAVE} |
404 |
PORT_OPTIONS+= ${OPTIONS_SLAVE} |
392 |
|
405 |
|