#!/bin/sh LOGDIR=/var/log/gini case $2 in PRE-INSTALL) USER=gini GROUP=${USER} if pw group show "${GROUP}" 2>/dev/null; then echo "You already have a group \"${GROUP}\", so I will use it." else if pw groupadd ${GROUP}; then echo "Added group \"${GROUP}\"." else echo "Adding group \"${GROUP}\" failed..." exit 1 fi fi if pw user show "${USER}" 2>/dev/null; then echo "You already have a user \"${USER}\", so I will use it." else if pw useradd ${USER} -g ${GROUP} -h - \ -s /sbin/nologin -d /nonexistent -c 'GINI streaming server' then echo "Added user \"${USER}\"." else echo "Adding user \"${USER}\" failed..." exit 1 fi fi mkdir -p ${LOGDIR} chown -R gini:gini ${LOGDIR} ;; esac t/freebsd-ports-gnome' title='freebsd-ports-gnome Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/x11-fonts/font-util
Commit message (Expand)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
* x11-fonts/font-util: Update to 1.3.2Niclas Zeising2019-08-26