View | Details | Raw Unified | Return to bug 201297 | Differences between
and this patch

Collapse All | Expand All

(-)MOVED (-1 lines)
Lines 6302-6308 Link Here
6302
misc/wminfo||2014-07-24|Has expired: Fails to build with new utmpx
6302
misc/wminfo||2014-07-24|Has expired: Fails to build with new utmpx
6303
net/sendfile||2014-07-24|Has expired: Fails to build with new utmpx
6303
net/sendfile||2014-07-24|Has expired: Fails to build with new utmpx
6304
net-im/centericq||2014-07-24|Has expired: Fails to build with new utmpx
6304
net-im/centericq||2014-07-24|Has expired: Fails to build with new utmpx
6305
security/chkrootkit||2014-07-24|Has expired: Fails to build with new utmpx
6306
security/openfwtk||2014-07-24|Has expired: Fails to build with new utmpx
6305
security/openfwtk||2014-07-24|Has expired: Fails to build with new utmpx
6307
security/pam_alreadyloggedin||2014-07-24|Has expired: Fails to build with new utmpx
6306
security/pam_alreadyloggedin||2014-07-24|Has expired: Fails to build with new utmpx
6308
security/srp||2014-07-24|Has expired: Fails to build with new utmpx
6307
security/srp||2014-07-24|Has expired: Fails to build with new utmpx
(-)security/Makefile (+1 lines)
Lines 56-61 Link Here
56
    SUBDIR += chaosreader
56
    SUBDIR += chaosreader
57
    SUBDIR += checkpassword
57
    SUBDIR += checkpassword
58
    SUBDIR += checkpassword-pam
58
    SUBDIR += checkpassword-pam
59
    SUBDIR += chkrootkit
59
    SUBDIR += chntpw
60
    SUBDIR += chntpw
60
    SUBDIR += chroot_safe
61
    SUBDIR += chroot_safe
61
    SUBDIR += chrootuid
62
    SUBDIR += chrootuid
(-)security/chkrootkit/Makefile (-8 / +3 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	chkrootkit
4
PORTNAME=	chkrootkit
5
PORTVERSION=	0.49
5
PORTVERSION=	0.50
6
CATEGORIES=	security
6
CATEGORIES=	security
7
MASTER_SITES=	ftp://ftp.pangeia.com.br/pub/seg/pac/ \
7
MASTER_SITES=	ftp://ftp.pangeia.com.br/pub/seg/pac/ \
8
		ftp://gd.tuwien.ac.at/infosys/security/chkrootkit/ \
8
		ftp://gd.tuwien.ac.at/infosys/security/chkrootkit/ \
Lines 13-23 Link Here
13
		http://ftp.bit.nl/mirror/chkrootkit/ \
13
		http://ftp.bit.nl/mirror/chkrootkit/ \
14
		http://chkrootkit.mirror.fr/
14
		http://chkrootkit.mirror.fr/
15
15
16
MAINTAINER=	cordeiro@nic.br
16
MAINTAINER=	lacey.leanne@gmail.com
17
COMMENT=	Tool to locally check for signs of a rootkit
17
COMMENT=	Tool to locally check for signs of a rootkit
18
18
19
DEPRECATED=	Fails to build with new utmpx
19
LICENSE=	BSD2CLAUSE
20
EXPIRATION_DATE=	2014-07-23
21
20
22
OPTIONS_DEFINE=	DOCS
21
OPTIONS_DEFINE=	DOCS
23
22
Lines 43-52 Link Here
43
42
44
.include <bsd.port.pre.mk>
43
.include <bsd.port.pre.mk>
45
44
46
.if ${OSVERSION} > 900007
47
BROKEN=		fails to build with new utmpx
48
.endif
49
50
post-patch:
45
post-patch:
51
	@${REINPLACE_CMD} -E "s/^(CC|CFLAGS)[^a-zA-Z]*=/\1 ?=/" \
46
	@${REINPLACE_CMD} -E "s/^(CC|CFLAGS)[^a-zA-Z]*=/\1 ?=/" \
52
		${WRKSRC}/Makefile
47
		${WRKSRC}/Makefile
(-)security/chkrootkit/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (chkrootkit-0.49.tar.gz) = ccb87be09e8923d51f450a167f484414f70c36c942f8ef5b9e5e4a69b7baa17f
1
SHA256 (chkrootkit-0.50.tar.gz) = 9548fc922b0cb8ddf055faff4a4887f140a31c45f2f5e3aa64aad91ecfa56cc7
2
SIZE (chkrootkit-0.49.tar.gz) = 39421
2
SIZE (chkrootkit-0.50.tar.gz) = 38616
(-)security/chkrootkit/files/patch-chklastlog.c (+11 lines)
Line 0 Link Here
1
--- chklastlog.c.orig	2014-05-06 10:12:14 UTC
2
+++ chklastlog.c
3
@@ -33,7 +33,7 @@
4
 #else
5
 #undef HAVE_LASTLOG_H
6
 #endif
7
-#if __FreeBSD__ > 9
8
+#if __FreeBSD__ >= 9
9
 int main () { return 0; }
10
 #else
11
 #include <stdio.h>
(-)security/chkrootkit/files/patch-chkwtmp.c (+11 lines)
Line 0 Link Here
1
--- chkwtmp.c.orig	2014-05-06 10:13:16 UTC
2
+++ chkwtmp.c
3
@@ -19,7 +19,7 @@
4
    Nelson Murilo, nelson@pangeia.com.br
5
 */
6
 
7
-#if __FreeBSD__ > 9 
8
+#if __FreeBSD__ >= 9 
9
 int main () { return 0; } 
10
 #else
11
 #include <stdio.h>

Return to bug 201297