package provide portdry 1.0
package require portutil 1.0

set com.apple.dry [target_new com.apple.dry dry]
target_provides ${com.apple.dry} dry
target_runtype ${com.apple.dry} "always"

proc dry {args} {
    global UI_PREFIX portname
    ui_msg "$UI_PREFIX Processing $portname (doing nothing, dry run)"
    return 0
}

