blob: 113593421fdf11f50a0dfb60cf7cf90a296dbee1 (
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
|
# Created by: Marc G. Fournier <scrappy@FreeBSD.org>
# $FreeBSD$
PORTNAME= bsdstats
PORTVERSION= 5.5
PORTREVISION= 3
CATEGORIES= sysutils
DISTFILES=
MAINTAINER= bsdstats@nanoman.ca
COMMENT= Monthly script for reporting anonymous statistics about your machine
NO_BUILD= yes
USE_RC_SUBR= bsdstats
SUB_FILES= 300.statistics pkg-message
NO_STAGE= yes
do-install:
${MKDIR} ${PREFIX}/etc/periodic/monthly
${INSTALL_SCRIPT} ${WRKDIR}/300.statistics ${PREFIX}/etc/periodic/monthly
post-install:
.if defined(BATCH) || defined(PACKAGE_BUILDING)
@${CAT} ${PKGMESSAGE}
.else
@PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.endif
.include <bsd.port.mk>
|