#!/bin/sh USER=agk GROUP=agk ask() { local question default answer question=$1 default=$2 if [ -z "${PACKAGE_BUILDING}" ]; then read -p "${question} [${default}]? " answer fi if [ x${answer} = x ]; then answer=${default} fi echo ${answer} } yesno() { local dflt question answer question=$1 dflt=$2 while :; do answer=$(ask "${question}" "${dflt}") case "${answer}" in [Yy]*) return 0;; [Nn]*) return 1;; esac echo "Please answer yes or no." done } delete_account() { local u g u=$1 g=$2 if yesno "Do you want me to remove group \"${g}\"" y; then pw groupdel -n ${g} echo "Done." fi if yesno "Do you want me to remove user \"${u}\"" y; then pw userdel -n ${u} echo "Done." fi } [ "$2" = DEINSTALL ] || exit 0 export PATH=/bin:/usr/bin:/usr/sbin if ps -axc | grep -q AquaGatekeeper; then if yesno "There are some AquaGatekeeper processes running. Shall I kill them" y then killall AquaGatekeeper sleep 2 else echo "OK ... I hope you know what you are doing." fi fi delete_account ${USER} ${GROUP} exit 0 git/cgit.cgi/'>index : freebsd-ports-graphics
FreeBSD graphics obsolete development ports (https://github.com/freebsd/freebsd-ports-graphics)
aboutsummaryrefslogtreecommitdiffstats
path: root/japanese/xemacs21-canna
Commit message (Expand)AuthorAgeFilesLines
* Bump portrevision due to upgrade of devel/gettext.edwin2008-06-061-0/+1
* - Fix plist for cannapav2007-03-271-4/+0
* Schedule these broken ports for removal on 2007-04-10 if they are stillkris2007-02-111-0/+2
* BROKEN: Incorrect pkg-plistkris2007-01-301-0/+2
* - Fix plist with cannapav2006-03-211-2/+0
* BROKEN: Incomplete pkg-plistkris2006-02-201-0/+2
* - Give maintainership to <nokubi@ff.iij4u.or.jp>pav2005-11-221-1/+1
* - Revive japanese/xemacs21-cannapav2005-11-202-0/+50
* Remove expired portskris2005-11-051-21/+0
* This port is scheduled for deletion on 2005-09-22 if it is still brokenkris2005-07-231-0/+2
* BROKEN: Incomplete pkg-plistkris2005-02-131-0/+2
* - maintainer of editors/xemacs21-mule can't maintainsem2004-12-301-0/+1
* Update documents with changing 21.4.* stable version.kiri2003-05-231-1/+2
* Correct point to MASTERDIR.kiri2003-05-091-1/+1
* Modify for move xemacs21-mule to version 21.4.12.kiri2003-05-091-59/+4
* Remove needless files for move xemacs21-mule to version 21.4.12.kiri2003-05-092-62/+0
* More manual pkg-comment cleanups.ade2003-03-072-7/+6
* Convert COMMENT to COMMENTFILE until these ports can be converted.kris2003-02-101-1/+1
* Bump PORTREVISION because of updating the dependency port japanese/Wnn6-libtaoka2002-10-30