blob: 5fae57a39fa87b1314e8110014301b9b9279253f (
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
33
34
35
36
37
38
|
# New ports collection makefile for: ftimes
# Date created: 20 August 2002
# Whom: Klayton Monroe <klm@uidzero.org>
#
# $FreeBSD$
#
PORTNAME= ftimes
PORTVERSION= 3.3.0
CATEGORIES= security sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ftimes
EXTRACT_SUFX= .tgz
MAINTAINER= klm@uidzero.org
COMMENT= A system baselining and evidence collection tool
GNU_CONFIGURE= YES
.if defined(WITHOUT_SSL)
CONFIGURE_ARGS+= --without-ssl
.else
USE_OPENSSL= YES
CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE}
.endif
.if defined(NO_STATIC)
CFLAGS+=
.else
CFLAGS+= -static
.endif
MAN1= ftimes.1
post-install:
${STRIP_CMD} ${PREFIX}/bin/ftimes
.include <bsd.port.mk>
|