mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
593c57190a
- Add a pre-world mode of updating similar to the -p option that can be passed to mergemaster. - Fix a couple of issues with -F. - Refresh /etc/localtime after each update using tzsetup -r. - Regenerate /var/db/services.db when /etc/services changes. Bump to 1.1. Reviewed by: kwm
27 lines
508 B
Makefile
27 lines
508 B
Makefile
# Created by: jhb
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= etcupdate
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= jhb@FreeBSD.org
|
|
COMMENT= Manage updates to /etc automatically
|
|
|
|
LICENSE= BSD
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
SRC= ${.CURDIR}/src
|
|
|
|
PLIST_FILES= sbin/etcupdate man/man8/etcupdate.8.gz
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${SRC}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/sbin/${PORTNAME}
|
|
${INSTALL_MAN} ${SRC}/${PORTNAME}.8 ${STAGEDIR}${PREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|