#!/bin/sh PATH=/sbin:/bin:/usr/sbin:/usr/bin USER=spread USER_HOMEDIR=/nonexistent GROUP=spread RUNDIR=/var/run/spread NOLOGIN=/sbin/nologin case $2 in PRE-INSTALL) 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." if pw usermod ${USER} -d ${USER_HOMEDIR} then echo "Changed home directory of \"${USER}\" to \"${USER_HOMEDIR}\"." else echo "Changing home directory of \"${USER}\" to \"${USER_HOMEDIR}\" failed." exit 1 fi else if pw useradd ${USER} -g ${GROUP} -h - \ -d ${USER_HOMEDIR} -s ${NOLOGIN} -c "Spread User" then echo "Added user \"${USER}\"." else echo "Adding user \"${USER}\" failed..." exit 1 fi fi ;; POST-INSTALL) if [ ! -d ${RUNDIR} ]; then install -d -o ${USER} -g ${GROUP} -m 0750 ${RUNDIR} fi ;; *) echo 'unexpect argument to pkg-install' ;; esac href='/~lantw44/cgit/cgit.cgi/freebsd-ports-graphics/'>freebsd-ports-graphics
FreeBSD graphics obsolete development ports (https://github.com/freebsd/freebsd-ports-graphics)
aboutsummaryrefslogtreecommitdiffstats
path: root/print/gl2ps
Commit message (Expand)AuthorAgeFilesLines
* - Change my mail address to araujo@.araujo2007-06-301-1/+1
* - Welcome X.org 7.2 \o/.flz2007-05-201-0/+1
* - update to 1.3.2itetcu2007-01-182-5/+5
* - s,INSTALLS_SHLIB,USE_LDCONFIG,gclsung2006-08-151-1/+1
* Reset bouncing maintainer address ip@doom.homeunix.org. We hope to see himlinimon2006-07-22