#!/bin/sh # # $FreeBSD$ # # Created by: hetzels@westbend.net PKG_USER=${PKG_USER:=www} PKG_GROUP=${PKG_GROUP:=www} PKG_PREFIX=${PKG_PREFIX} HOST_NAME=`/bin/hostname` AP_CGI=${PKG_PREFIX}/www/cgi-bin AP_CONF=${PKG_PREFIX}/etc/apache AP_DATA=${PKG_PREFIX}/www/data AP_SHARE=${PKG_PREFIX}/share/doc/apache IMAGES_DIR=${AP_SHARE}/manual/images IMAGES_VTI=${AP_DATA}/images/_vti_cnf remove_user() { if [ ! -x /usr/sbin/pw ]; then echo "*** Unable to remove the Apache user and group (${PKG_USER}/${PKG_GROUP})" exit 69 fi if pw usershow ${PKG_USER} -q > /dev/null; then olduid=`pw show user ${PKG_USER} 2> /dev/null | cut -d: -f3` oldgid=`pw show group ${PKG_GROUP} 2> /dev/null | cut -d: -f3` if [ ${olduid} -ne 80 ]; then echo "To delete Apache user permanently, use 'pw userdel ${PKG_USER}'" fi if [ ${oldgid} -ne 80 ]; then echo "To delete Apache group permanently, use 'pw groupdel ${PKG_GROUP}'" fi fi } remove_file() { local source_dir=$1 local target_dir=$2 local file=$3 local ret=1 if [ -f ${target_dir}/${file} ]; then if cmp -s ${source_dir}/${file} ${target_dir}/${file} ; then rm -f ${target_dir}/${file} ret=0 fi fi return ${ret} } remove_apache_doc_root () { if [ -d ${AP_CGI} ]; then for file in `ls ${AP_CGI}.default` { remove_file ${AP_CGI}.default ${AP_CGI} ${file} } fi if [ -d ${AP_DATA} ]; then if [ -d ${AP_DATA}/images ] ; then for file in apache_pb.gif createdwFP.gif powerlogo.gif { if remove_file ${IMAGES_DIR} ${AP_DATA}/images ${file}; then if [ -d ${IMAGES_VTI} -a -f ${IMAGES_VTI}/${file} ] ; then rm ${IMAGES_VTI}/${file} fi fi } if [ -d ${IMAGES_VTI} ]; then rmdir ${IMAGES_VTI} fi fi remove_file ${AP_SHARE} ${AP_DATA} index.html.en fi } remove_httpd_conf () { if [ -f ${AP_CONF}/httpd.conf ] ; then /bin/cat ${AP_CONF}/httpd.conf.default | \ /usr/bin/sed -e 's;@@HOSTNAME@@;'${HOST_NAME}';' \ > ${AP_CONF}/httpd.conf.tmp if cmp -s ${AP_CONF}/httpd.conf ${AP_CONF}/httpd.conf.tmp ; then rm -f ${AP_CONF}/httpd.conf fi rm ${AP_CONF}/httpd.conf.tmp fi } case $2 in DEINSTALL) remove_apache_doc_root remove_httpd_conf ;; POST-DEINSTALL) remove_user ;; esac sh.merge-4.6.2'>dependabot/npm_and_yarn/devel/electron4/files/lodash.merge-4.6.2 FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/devel/hs-resourcet
Commit message (Expand)AuthorAgeFilesLines
* Update to libmpc version 1.0.1 which brings the following fixes:gerald2013-10-261-0/+1
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-0/+1
* - Update The Glorious Glasgow Haskell Compiler to version 7.6.3pgj2013-06-052-4/+4
* - Update Haskell ports from the development repositorypgj2013-03-302-4/+3
* - Fix breakage in the DYNAMIC-enabled ports triggered by the recentpgj2013-02-061-0/+1
* - Update The Glorious Glasgow Haskell Compiler to version 7.4.2pgj2012-12-203-9/+4
* - Update to 0.3.3.1pgj2012-08-032-5/+5
* This package was originally included with the conduit package, and haspgj2012-06-04