paludis-gentoo-git-config/etc/paludis/hooks/set_portdir.bash

12 lines
294 B
Bash

#!/bin/bash
# set PORTDIR
PORTDIR="$(${CAVE} print-repository-metadata --format '%v' --raw-name location gentoo)"
if [[ -z ${PORTDIR} || "$(dirname ${PORTDIR})" == "/" ]] ; then
die "PORTDIR empty or pointing to root!"
elif [[ ! -e ${PORTDIR} ]] ; then
die "${PORTDIR} does not exist!"
fi