#! /bin/sh # $FreeBSD: /tmp/pcvs/ports/dns/dhid/Attic/pkg-install,v 1.1 2005-02-19 20:42:39 pav Exp $ PATH=/bin:/usr/sbin case $2 in PRE-INSTALL) USER=dhis 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} -g 114 -h -; 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} -u 114 -g ${GROUP} -h - \ -d /nonexistent -s /sbin/nologin \ -c "DHIS Daemon" then echo "Added user \"${USER}\"." else echo "Adding user \"${USER}\" failed..." exit 1 fi fi ;; esac it.cgi/'>index : freebsd-ports-gnome
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/x11-wm/flwm/files
Commit message (Expand)AuthorAgeFilesLines
* Take over maintainership from demon.gj2004-08-282-0/+37
* Fix build with new version of fltk.demon2003-01-06s/gate?h=dependabot/npm_and_yarn/devel/electron6/files/ini-1.3.8&id=669b32ca73e52fe476639c949772e9df7c39b129'>Fix build with clangantoine2016-05-171-0/+9
* Remove changes that crept in by accidentsbapt2016-05-142-10/+0
* Prevent collision with getline(3)bapt2016-05-148-16/+64
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.mat2016-04-011-2/+2
* editors/gate: USES+= ncurses, respect LDFLAGSmarino2016-01-31