blob: 0d5b1aafd3e891e185a6791d6995722d8c205ecd (
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
32
|
# Created by: Emanuel Haupt <ehaupt@critical.ch>
# $FreeBSD$
PORTNAME= tmpreaper
PORTVERSION= 1.6.13
CATEGORIES= sysutils
MASTER_SITES= CRITICAL
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Cleans up files in directories based on their age
LICENSE= GPLv2
GNU_CONFIGURE= yes
USES= gmake
PLIST_FILES= sbin/tmpreaper
PORTDOCS= README
MAN8= tmpreaper.8
OPTIONS_DEFINE= DOCS
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
post-install:
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|