|
Lines 318-324
Link Here
|
| 318 |
# checkpatch - Do a "patch -C" instead of a "patch". Note that it may |
318 |
# checkpatch - Do a "patch -C" instead of a "patch". Note that it may |
| 319 |
# give incorrect results if multiple patches deal with |
319 |
# give incorrect results if multiple patches deal with |
| 320 |
# the same file. |
320 |
# the same file. |
| 321 |
# checksum - Use files/md5 to ensure that your distfiles are valid. |
321 |
# checksum - Use distinfo to ensure that your distfiles are valid. |
| 322 |
# checksum-recursive - Run checksum in this port and all dependencies. |
322 |
# checksum-recursive - Run checksum in this port and all dependencies. |
| 323 |
# makesum - Generate distinfo (only do this for your own ports!). |
323 |
# makesum - Generate distinfo (only do this for your own ports!). |
| 324 |
# clean - Remove ${WRKDIR} and other temporary files used for building. |
324 |
# clean - Remove ${WRKDIR} and other temporary files used for building. |
|
Lines 2384-2390
Link Here
|
| 2384 |
${ECHO_MSG} ">> No checksum recorded for $$file."; \ |
2384 |
${ECHO_MSG} ">> No checksum recorded for $$file."; \ |
| 2385 |
OK="false"; \ |
2385 |
OK="false"; \ |
| 2386 |
elif [ "$$CKSUM2" = "IGNORE" ]; then \ |
2386 |
elif [ "$$CKSUM2" = "IGNORE" ]; then \ |
| 2387 |
${ECHO_MSG} ">> Checksum for $$file is set to IGNORE in md5 file even though"; \ |
2387 |
${ECHO_MSG} ">> Checksum for $$file is set to IGNORE in distinfo file even though"; \ |
| 2388 |
${ECHO_MSG} " the file is not in the "'$$'"{IGNOREFILES} list."; \ |
2388 |
${ECHO_MSG} " the file is not in the "'$$'"{IGNOREFILES} list."; \ |
| 2389 |
OK="false"; \ |
2389 |
OK="false"; \ |
| 2390 |
elif ${EXPR} "$$CKSUM2" : ".*$$CKSUM" > /dev/null; then \ |
2390 |
elif ${EXPR} "$$CKSUM2" : ".*$$CKSUM" > /dev/null; then \ |
|
Lines 2400-2412
Link Here
|
| 2400 |
${ECHO_MSG} ">> No checksum recorded for $$file, file is in "'$$'"{IGNOREFILES} list."; \ |
2400 |
${ECHO_MSG} ">> No checksum recorded for $$file, file is in "'$$'"{IGNOREFILES} list."; \ |
| 2401 |
OK="false"; \ |
2401 |
OK="false"; \ |
| 2402 |
elif [ "$$CKSUM2" != "IGNORE" ]; then \ |
2402 |
elif [ "$$CKSUM2" != "IGNORE" ]; then \ |
| 2403 |
${ECHO_MSG} ">> Checksum for $$file is not set to IGNORE in md5 file even though"; \ |
2403 |
${ECHO_MSG} ">> Checksum for $$file is not set to IGNORE in distinfo file even though"; \ |
| 2404 |
${ECHO_MSG} " the file is in the "'$$'"{IGNOREFILES} list."; \ |
2404 |
${ECHO_MSG} " the file is in the "'$$'"{IGNOREFILES} list."; \ |
| 2405 |
OK="false"; \ |
2405 |
OK="false"; \ |
| 2406 |
fi; \ |
2406 |
fi; \ |
| 2407 |
done; \ |
2407 |
done; \ |
| 2408 |
if [ "$$OK" != "true" ]; then \ |
2408 |
if [ "$$OK" != "true" ]; then \ |
| 2409 |
${ECHO_MSG} "Make sure the Makefile and md5 file (${MD5_FILE})"; \ |
2409 |
${ECHO_MSG} "Make sure the Makefile and distinfo file (${MD5_FILE})"; \ |
| 2410 |
${ECHO_MSG} "are up to date. If you are absolutely sure you want to override this"; \ |
2410 |
${ECHO_MSG} "are up to date. If you are absolutely sure you want to override this"; \ |
| 2411 |
${ECHO_MSG} "check, type \"make NO_CHECKSUM=yes [other args]\"."; \ |
2411 |
${ECHO_MSG} "check, type \"make NO_CHECKSUM=yes [other args]\"."; \ |
| 2412 |
exit 1; \ |
2412 |
exit 1; \ |