aboutsummaryrefslogblamecommitdiff
path: root/Tools/scripts/LEGALlint
blob: d75ade6cc0b6cffe321dbf672027bb22e9bf805f (plain) (tree)
1
         



















                                                               
#!/bin/sh

PORTSDIR="${PORTSDIR:-/usr/ports}"

cd "$PORTSDIR" || exit 1

export IFS="${IFS}:"
grep -nv '#' "$PORTSDIR/LEGAL" | while read -r line _ port text
do
  if [ ! -d "$port" ]
  then
    printf "%d (%s): port has been removed\\n" "$line" "$port"
    continue
  fi

  actual_text="$(make -C "$port" -VLEGAL)"
  if [ "$text" != "$actual_text" ]
  then
    printf "%d (%s): reason mismatch\\n" "$line" "$port"
  fi
done