diff options
author | foxfair <foxfair@FreeBSD.org> | 2003-10-03 15:13:01 +0800 |
---|---|---|
committer | foxfair <foxfair@FreeBSD.org> | 2003-10-03 15:13:01 +0800 |
commit | 33b9998f5797636735a2687ab57bddf13b187383 (patch) | |
tree | 106b1f6e24bfc2f7f7b762c48ed94ed583c1097e /security/ftimes/Makefile | |
parent | 8412c89432b8404b4242bc2f4feb95deb025b6a7 (diff) | |
download | freebsd-ports-gnome-33b9998f5797636735a2687ab57bddf13b187383.tar.gz freebsd-ports-gnome-33b9998f5797636735a2687ab57bddf13b187383.tar.zst freebsd-ports-gnome-33b9998f5797636735a2687ab57bddf13b187383.zip |
PR: 55646
Submitted by: klm <klm@uidzero.org>
Reviewed by:
Approved by:
Obtained from:
MFC after:
Update to 3.3.0
Diffstat (limited to 'security/ftimes/Makefile')
-rw-r--r-- | security/ftimes/Makefile | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/security/ftimes/Makefile b/security/ftimes/Makefile index 0d327da7b338..5fae57a39fa8 100644 --- a/security/ftimes/Makefile +++ b/security/ftimes/Makefile @@ -1,28 +1,33 @@ # New ports collection makefile for: ftimes -# Date created: 20 August 2002 -# Whom: Klayton Monroe <klm@ir.exodus.net> +# Date created: 20 August 2002 +# Whom: Klayton Monroe <klm@uidzero.org> # # $FreeBSD$ # PORTNAME= ftimes -PORTVERSION= 3.2.1 -PORTREVISION= 1 +PORTVERSION= 3.3.0 CATEGORIES= security sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ftimes EXTRACT_SUFX= .tgz -MAINTAINER= klm@ir.exodus.net +MAINTAINER= klm@uidzero.org COMMENT= A system baselining and evidence collection tool GNU_CONFIGURE= YES .if defined(WITHOUT_SSL) -CONFIGURE_ARGS= --without-ssl +CONFIGURE_ARGS+= --without-ssl .else USE_OPENSSL= YES -CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} +CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE} +.endif + +.if defined(NO_STATIC) +CFLAGS+= +.else +CFLAGS+= -static .endif MAN1= ftimes.1 |