View | Details | Raw Unified | Return to bug 55646
Collapse All | Expand All

(-)ftimes.new/Makefile (-9 / +14 lines)
Lines 1-33 Link Here
1
# New ports collection makefile for:   ftimes
1
# New ports collection makefile for:	ftimes
2
# Date created:                20 August 2002
2
# Date created:		20 August 2002
3
# Whom:                        Klayton Monroe <klm@ir.exodus.net>
3
# Whom:			Klayton Monroe <klm@uidzero.org>
4
#
4
#
5
# $FreeBSD$
5
# $FreeBSD$
6
#
6
#
7
7
8
PORTNAME=		ftimes
8
PORTNAME=		ftimes
9
PORTVERSION=		3.2.1
9
PORTVERSION=		3.3.0
10
PORTREVISION=		1
11
CATEGORIES=		security sysutils
10
CATEGORIES=		security sysutils
12
MASTER_SITES=		${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=		${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	ftimes
12
MASTER_SITE_SUBDIR=	ftimes
14
EXTRACT_SUFX=		.tgz
13
EXTRACT_SUFX=		.tgz
15
14
16
MAINTAINER=		klm@ir.exodus.net
15
MAINTAINER=		klm@uidzero.org
17
COMMENT=		A system baselining and evidence collection tool
16
COMMENT=		A system baselining and evidence collection tool
18
17
19
GNU_CONFIGURE=		YES
18
GNU_CONFIGURE=		YES
20
19
21
.if defined(WITHOUT_SSL)
20
.if defined(WITHOUT_SSL)
22
CONFIGURE_ARGS=		--without-ssl
21
CONFIGURE_ARGS+=	--without-ssl
23
.else
22
.else
24
USE_OPENSSL=		YES
23
USE_OPENSSL=		YES
25
CONFIGURE_ARGS=		--with-ssl=${OPENSSLBASE}
24
CONFIGURE_ARGS+=	--with-ssl=${OPENSSLBASE}
25
.endif
26
27
.if defined(NO_STATIC)
28
CFLAGS+=
29
.else
30
CFLAGS+=		-static
26
.endif
31
.endif
27
32
28
MAN1=			ftimes.1
33
MAN1=			ftimes.1
29
34
30
post-install:
35
post-install:
31
	strip ${PREFIX}/bin/ftimes
36
	@${STRIP_CMD} ${PREFIX}/bin/ftimes
32
37
33
.include <bsd.port.mk>
38
.include <bsd.port.mk>
(-)ftimes.new/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (ftimes-3.2.1.tgz) = a62ce08399f6b121cabbfbbf96583e7b
1
MD5 (ftimes-3.3.0.tgz) = 552c3c6d9796dade37533308a31772dc
(-)ftimes.new/files/patch-aa (-57 lines)
Lines 1-57 Link Here
1
diff -urP configure.orig configure
2
--- configure.orig   Mon Mar 17 19:24:44 2003
3
+++ configure       Mon May  5 14:14:32 2003
4
@@ -1412,6 +1412,13 @@
5
 _ACEOF
6
 
7
 	;;
8
+ia64*)
9
+
10
+cat >>confdefs.h <<\_ACEOF
11
+#define K_CPU_IA64 1
12
+_ACEOF
13
+
14
+	;;
15
 i?86*)
16
 
17
 cat >>confdefs.h <<\_ACEOF
18
diff -urP configure.in.orig configure.in
19
--- configure.in.orig	Mon Mar 17 19:24:44 2003
20
+++ configure.in	Mon May  5 14:14:32 2003
21
@@ -80,6 +80,9 @@
22
 alpha*)
23
         AC_DEFINE(K_CPU_ALPHA, 1, Define to 1 if the host cpu is alpha.)
24
 	;;
25
+ia64*)
26
+        AC_DEFINE(K_CPU_IA64, 1, Define to 1 if the host cpu is ia64.)
27
+	;;
28
 i?86*)
29
         AC_DEFINE(K_CPU_I386, 1, Define to 1 if the host cpu is iX86.)
30
 	;;
31
diff -urP src/config.h.in.orig src/config.h.in
32
--- src/config.h.in.orig	Thu Mar 27 15:19:11 2003
33
+++ src/config.h.in	Mon May  5 14:14:32 2003
34
@@ -161,6 +161,9 @@
35
 /* Define to 1 if the host cpu is iX86. */
36
 #undef K_CPU_I386
37
 
38
+/* Define to 1 if the host cpu is ia64. */
39
+#undef K_CPU_IA64
40
+
41
 /* Define to 1 if the host cpu is powerpc. */
42
 #undef K_CPU_POWERPC
43
 
44
diff -urP src/md5.h.orig src/md5.h
45
--- src/md5.h.orig	Sun Feb 23 17:40:08 2003
46
+++ src/md5.h	Mon May  5 14:14:45 2003
47
@@ -16,7 +16,7 @@
48
 #define MD5_READ_BUFSIZE    0x8000
49
 #define MD5_BYTES_PER_BLOCK (512/8)
50
 
51
-#ifdef K_CPU_ALPHA
52
+#if defined(K_CPU_ALPHA) || defined(K_CPU_IA64) 
53
 typedef unsigned int  MD5_UINT32;
54
 #else
55
 typedef unsigned long MD5_UINT32;
56
57
(-)ftimes.new/pkg-plist (-2 / +4 lines)
Lines 1-5 Link Here
1
bin/ftimes
1
bin/ftimes
2
etc/dig.cfg.sample
2
etc/digfull.cfg.sample
3
etc/diglean.cfg.sample
3
etc/get.cfg.sample
4
etc/get.cfg.sample
4
etc/map.cfg.sample
5
etc/mapfull.cfg.sample
6
etc/maplean.cfg.sample
5
etc/put.cfg.sample
7
etc/put.cfg.sample

Return to bug 55646