blob: aeb147b8758f29bfe687de4b92191b7f7ae98920 (
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
|
# Created by: Oliver Eikemeier
# $FreeBSD$
PORTNAME= vulnerability-test-port
PORTVERSION= ${INSTALLATION_DATE}
CATEGORIES= ports-mgmt
DISTFILES=
MAINTAINER= ports@FreeBSD.org
COMMENT= Standard vulnerability test for port auditing systems
NO_BUILD= yes
.if defined(PACKAGE_BUILDING)
IGNORE= is disabled on package building systems
INSTALLATION_DATE= 2004.01.25
.else
.ifdef INSTALLATION_DATE
MYDATE!= date -j -f "%Y.%m.%d" "${INSTALLATION_DATE}" "+%Y.%m.%d" 2>/dev/null
.if ${MYDATE} != ${INSTALLATION_DATE}
IGNORE= : "${INSTALLATION_DATE}" is not a legal date. INSTALLATION_DATE must be in the form YYYY.MM.DD
.endif
.else
INSTALLATION_DATE!= date -u "+%Y.%m.%d"
.endif
.endif
do-install:
@${DO_NADA}
.include <bsd.port.mk>
|