1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00
freebsd-ports/print/pnm2ppa/pkg-install
Martin Wilke 7b2d17f983 - Update to 1.13
PR:		148569
Submitted by:	Ports Fury
2010-07-15 07:12:39 +00:00

19 lines
351 B
Bash

#!/bin/sh
# $FreeBSD$
sysconfdir=${PKG_PREFIX}/etc
conffile=pnm2ppa.conf
case $2 in
POST-INSTALL)
if test ! -f ${sysconfdir}/${conffile}; then
cp ${sysconfdir}/${conffile}.sample ${sysconfdir}/${conffile};
fi
;;
DEINSTALL)
if cmp -s ${sysconfdir}/${conffile} ${sysconfdir}/${conffile}.sample; then
rm -f ${sysconfdir}/${conffile}
fi
;;
esac