mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
19 lines
424 B
Plaintext
19 lines
424 B
Plaintext
|
#!/bin/sh
|
||
|
if [ "$2" != "POST-INSTALL" ]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
if [ -e ${PREFIX}/bin/mkisofs ]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
cat <<EOF
|
||
|
*********************** Warning ***********************
|
||
|
It seems that mkisofs is not installed on your system.
|
||
|
You will only be able to burn audio disks or to copy
|
||
|
data disks.
|
||
|
Mkisofs is required if you want to create a filesystem
|
||
|
image.
|
||
|
*******************************************************
|
||
|
EOF
|
||
|
|
||
|
exit 0
|