mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
28 lines
501 B
Bash
28 lines
501 B
Bash
#!/bin/sh
|
|
|
|
PKGNAME=$1
|
|
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
;;
|
|
POST-INSTALL)
|
|
NEWSBASE=${PREFIX:-/usr/local}/news
|
|
install -d -o news -g news -m 755 \
|
|
${NEWSBASE}/run \
|
|
${NEWSBASE}/spool \
|
|
${NEWSBASE}/spool/archive \
|
|
${NEWSBASE}/spool/articles \
|
|
${NEWSBASE}/spool/incoming \
|
|
${NEWSBASE}/spool/innfeed \
|
|
${NEWSBASE}/spool/outgoing \
|
|
${NEWSBASE}/spool/overview \
|
|
${NEWSBASE}/spool/tmp
|
|
;;
|
|
*)
|
|
echo "Unexpected Argument $2!!!"
|
|
exit 1
|
|
;;
|
|
esac
|
|
exit 0
|
|
|