blob: ae6406ace618bf8d5db9bad3092e3c08e61f243e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# New ports collection makefile for: etcupdate
# Date created: 08 July 2010
# Whom: jhb
#
# $FreeBSD$
#
# This port is self contained in the src directory.
#
PORTNAME= etcupdate
PORTVERSION= 0.4
CATEGORIES= sysutils
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= jhb@FreeBSD.org
COMMENT= Manage updates to /etc automatically
NO_BUILD= yes
NO_WRKSUBDIR= yes
SRC= ${.CURDIR}/src
MAN8= ${PORTNAME}.8
PLIST_FILES= sbin/etcupdate
do-install:
${INSTALL_SCRIPT} ${SRC}/${PORTNAME}.sh ${PREFIX}/sbin/${PORTNAME}
${INSTALL_MAN} ${SRC}/${PORTNAME}.8 ${PREFIX}/man/man8
.include <bsd.port.mk>
|