#!/bin/sh # $FreeBSD$ [ $# != 2 ] && exit 1 PKGNAME=$1 ACTION=$2 CONF_DIR=${PKG_PREFIX}/etc CONF_FILE=op.access CONF_OWN=root CONF_GRP=wheel CONF_MODE=400 SAMP_SUFX=.sample INSTALL=install CMP=cmp RM=rm case "$ACTION" in POST-INSTALL) if [ -f ${CONF_DIR}/${CONF_FILE} ]; then echo "$PKGNAME: Will not overwrite existing ${CONF_DIR}/${CONF_FILE} file." else ${INSTALL} -c -o ${CONF_OWN} -g ${CONF_GRP} -m ${CONF_MODE} \ ${CONF_DIR}/${CONF_FILE}${SAMP_SUFX} \ ${CONF_DIR}/${CONF_FILE} fi ;; DEINSTALL) if ${CMP} -s ${CONF_DIR}/${CONF_FILE}${SAMP_SUFX} \ ${CONF_DIR}/${CONF_FILE}; then ${RM} -f ${CONF_DIR}/${CONF_FILE} else echo "$PKGNAME: Will not remove existing ${CONF_DIR}/${CONF_FILE} file." fi ;; PRE-INSTALL|POST-DEINSTALL) ;; *) exit 1 ;; esac exit 'https://www.csie.ntu.edu.tw/~b01902062/git/freebsd-ports-gnome' title='freebsd-ports-gnome Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/p5-LaTeX-Driver
Commit message (Expand)AuthorAgeFilesLines
* Change the way Perl modules are installed, update the default Perl to 5.18.mat2014-11-262-4/+1
* - Update to 0.2002sunpoet2013-11-033-18/+18
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-0/+1
* - Use single space after WWW:sunpoet2013-08-291-1/+1
* - Convert to new perl frameworkmat2013-08-031-1/+2
* Rectify USE_TEX to support both of teTeX and TeXLive.hrs2013-05-121-1/+1
* Remove *_DEPENDS from ports which depend on teTeX and add USE_TEX=tetexhrs2013-05-061-2/+2
* - Update to 0.12jadawin2013-02-012-9/+4
* - update png to 1.5.10dinoex2012-06-011-0/+1
* - Update to 0.10wen2011-12-112-6/+5
* -remove MD5ohauer2011-07-03