1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

- Drop unknown post-deinstall target

- Bump PORTREVISION

PR:		ports/166077
Submitted by:	Jason Helfman <jgh@FreeBSD.org>
Feature safe:	yes
This commit is contained in:
Dennis Herrmann 2012-03-16 15:48:34 +00:00
parent 7609c109bd
commit 2b88e39fcd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=293411

View File

@ -7,7 +7,7 @@
PORTNAME= wired
PORTVERSION= 1.3.4
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= net
MASTER_SITES= http://mirror.mcx2.org/
@ -27,28 +27,11 @@ pre-install:
PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
post-install:
@if [ ! -f ${PREFIX}/wired/etc/wired.conf ]; then \
${CP} -p ${PREFIX}/wired/etc/wired.conf.sample ${PREFIX}/wired/etc/wired.conf ; \
fi
@if [ ! -f ${PREFIX}/wired/etc/resolv.conf ]; then \
${CP} -p ${PREFIX}/wired/etc/resolv.conf.sample ${PREFIX}/wired/etc/resolv.conf ; \
fi
@if [ ! -f ${PREFIX}/wired/banlist ]; then \
${CP} -p ${PREFIX}/wired/banlist.sample ${PREFIX}/wired/banlist ; \
fi
@if [ ! -f ${PREFIX}/wired/groups ]; then \
${CP} -p ${PREFIX}/wired/groups.sample ${PREFIX}/wired/groups ; \
fi
@if [ ! -f ${PREFIX}/wired/news ]; then \
${CP} -p ${PREFIX}/wired/news.sample ${PREFIX}/wired/news ; \
fi
@if [ ! -f ${PREFIX}/wired/users ]; then \
${CP} -p ${PREFIX}/wired/users.sample ${PREFIX}/wired/users ; \
.for i in etc/wired.conf etc/resolv.conf banlist groups news users
@if [ ! -f ${PREFIX}/wired/${i} ]; then \
${CP} -p ${PREFIX}/wired/${i}.sample ${PREFIX}/wired/${i} ; \
fi
.endfor
PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
post-deinstall:
${RM} -f ${PREFIX}/wired/etc/certificate.pem.sample
PKG_PREFIX=${PREFIX} ${SH} pkg-deinstall ${PKGNAME} POST-DEINSTALL
.include <bsd.port.mk>