- Add freevo GIDs: - Add freevo multimedia/freevo - Handle user/group creation via Makefile variables - Stagify - Add License - Bump PORTREVISION - Simplify install - remove pkg-install.in - handle private subdirs in /var via pkg-plist and Makefile - remove user/group handling in pkg-deinstall.in PR: ports/189995 Submitted by: "J.R. Oldroyd" <fbsd@opal.com> (maintainer) Approved by: thierry (mentor), maintainer
12 lines
376 B
Bash
12 lines
376 B
Bash
#!/bin/sh
|
|
# warn about manually removing user/group/homedir and log/rundirs
|
|
|
|
if [ "$2" = "POST-DEINSTALL" ]; then
|
|
if [ -d "/var/log/freevo" ]; then
|
|
echo "==> If this is a final deinstall, remove directory \"/var/log/freevo\" manually"
|
|
fi
|
|
if [ -d "/var/run/freevo" ]; then
|
|
echo "==> If this is a final deinstall, remove directory \"/var/run/freevo\" manually"
|
|
fi
|
|
fi
|
|
|