#!/bin/sh if [ "$2" != "PRE-INSTALL" ]; then exit 0 fi PW=/usr/sbin/pw ECHO=echo USER=noip GROUP=${USER} if ! ${PW} groupshow "${GROUP}" 2>/dev/null 1>&2; then if ${PW} groupadd ${GROUP}; then ${ECHO} "Added group \"${GROUP}\"." else ${ECHO} "Adding group \"${GROUP}\" failed..." exit 1 fi fi if ! ${PW} usershow "${USER}" 2>/dev/null 1>&2; then if ${PW} useradd ${USER} -g ${GROUP} -h - \ -s "/sbin/nologin" -d "/nonexistent" \ -c "noip pseudo-user"; \ then ${ECHO} "Added user \"${USER}\"." else ${ECHO} "Adding user \"${USER}\" failed..." exit 1 fi fi exit 0 ts-gnome Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/agave
Commit message (Expand)AuthorAgeFilesLines
* Update maintainer's email address and drop maintainership of a few ports.rakuco2013-05-171-1/+1
* - Convert USE_GETTEXT to USES (part 3)ak2013-04-251-1/+1
* Chase boost updatebapt2013-01-311-7/+3
* - update png to 1.5.10dinoex2012-06-011-1/+1
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)amdmi32011-09-241-1/+2
* -remove MD5ohauer2011-07-03