summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2011-07-22 19:12:14 +0000
committerPatrick Lauer <patrick@gentoo.org>2011-07-22 19:12:14 +0000
commit74448404ac398473f68f849f69dc8d37eb81fac4 (patch)
tree0ac8afde38c77843a362f659342a8bca9bc106fd /app-forensics
parentVersion bump. (diff)
downloadgentoo-2-74448404ac398473f68f849f69dc8d37eb81fac4.tar.gz
gentoo-2-74448404ac398473f68f849f69dc8d37eb81fac4.tar.bz2
gentoo-2-74448404ac398473f68f849f69dc8d37eb81fac4.zip
Removing stale files for #341049
(Portage version: 2.2.0_alpha46/cvs/Linux x86_64)
Diffstat (limited to 'app-forensics')
-rw-r--r--app-forensics/chkrootkit/ChangeLog9
-rw-r--r--app-forensics/chkrootkit/files/chkrootkit-0.47-add-missing-includes.diff10
-rw-r--r--app-forensics/chkrootkit/files/chkrootkit-0.47-makefile.diff71
3 files changed, 7 insertions, 83 deletions
diff --git a/app-forensics/chkrootkit/ChangeLog b/app-forensics/chkrootkit/ChangeLog
index 481254084480..40440c187371 100644
--- a/app-forensics/chkrootkit/ChangeLog
+++ b/app-forensics/chkrootkit/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-forensics/chkrootkit
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/chkrootkit/ChangeLog,v 1.58 2010/07/24 14:33:48 jlec Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/chkrootkit/ChangeLog,v 1.59 2011/07/22 19:12:14 patrick Exp $
+
+ 22 Jul 2011; Patrick Lauer <patrick@gentoo.org>
+ -files/chkrootkit-0.47-add-missing-includes.diff,
+ -files/chkrootkit-0.47-makefile.diff:
+ Removing stale files for #341049
*chkrootkit-0.49 (24 Jul 2010)
diff --git a/app-forensics/chkrootkit/files/chkrootkit-0.47-add-missing-includes.diff b/app-forensics/chkrootkit/files/chkrootkit-0.47-add-missing-includes.diff
deleted file mode 100644
index 348ec0a84b1a..000000000000
--- a/app-forensics/chkrootkit/files/chkrootkit-0.47-add-missing-includes.diff
+++ /dev/null
@@ -1,10 +0,0 @@
---- chkwtmp.c
-+++ chkwtmp.c
-@@ -21,6 +21,7 @@
-
-
- #include <stdio.h>
-+#include <stdlib.h>
- #include <unistd.h>
- #include <string.h>
- #include <utmp.h>
diff --git a/app-forensics/chkrootkit/files/chkrootkit-0.47-makefile.diff b/app-forensics/chkrootkit/files/chkrootkit-0.47-makefile.diff
deleted file mode 100644
index 266fe1c186b0..000000000000
--- a/app-forensics/chkrootkit/files/chkrootkit-0.47-makefile.diff
+++ /dev/null
@@ -1,71 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -3,8 +3,8 @@
- # (C) 1997-2006 Nelson Murilo, Pangeia Informatica, AMS Foundation and others.
- #
-
--CC = gcc
--CFLAGS = -DHAVE_LASTLOG_H
-+CC ?= gcc
-+CFLAGS += -DHAVE_LASTLOG_H
- STATIC = -static
-
- ###
-@@ -29,48 +29,36 @@
- #CFLAGS =
-
-
--SRCS = chklastlog.c chkwtmp.c ifpromisc.c chkproc.c chkdirs.c check_wtmpx.c strings.c
-+SRCS = chklastlog.c chkwtmp.c ifpromisc.c chkproc.c chkdirs.c strings.c
-
--OBJS = chklastlog.o chkwtmp.o ifpromisc.o chkproc.o chkdirs.o check_wtmpx.o strings-static.o
-+OBJS = chklastlog.o chkwtmp.o ifpromisc.o chkproc.o chkdirs.o strings-static.o
-
- all:
- @echo '*** stopping make sense ***'
- @exec make sense
-
--sense: chklastlog chkwtmp ifpromisc chkproc chkdirs check_wtmpx strings-static chkutmp
-+sense: chklastlog chkwtmp ifpromisc chkproc chkdirs strings-static chkutmp
-
- chklastlog: chklastlog.c
-- ${CC} ${CFLAGS} -o $@ chklastlog.c
-- @strip $@
-+ ${CC} ${CFLAGS} ${LDFLAGS} -o $@ chklastlog.c
-
- chkwtmp: chkwtmp.c
-- ${CC} ${CFLAGS} -o $@ chkwtmp.c
-- @strip $@
-+ ${CC} ${CFLAGS} ${LDFLAGS} -o $@ chkwtmp.c
-
- ifpromisc: ifpromisc.c
- ${CC} ${CFLAGS} ${LDFLAGS} -D_FILE_OFFSET_BITS=64 -o $@ ifpromisc.c
-- @strip $@
-
- chkproc: chkproc.c
-- ${CC} ${LDFLAGS} -o $@ chkproc.c
-- @strip $@
-+ ${CC} ${CFLAGS} ${LDFLAGS} -o $@ chkproc.c
-
- chkdirs: chkdirs.c
-- ${CC} ${LDFLAGS} -o $@ chkdirs.c
-- @strip $@
--
--check_wtmpx: check_wtmpx.c
-- ${CC} ${LDFLAGS} -o $@ check_wtmpx.c
-- @strip $@
-+ ${CC} ${CFLAGS} ${LDFLAGS} -o $@ chkdirs.c
-
- chkutmp: chkutmp.c
-- ${CC} ${LDFLAGS} -o $@ chkutmp.c
-- @strip $@
--
-+ ${CC} ${CFLAGS} ${LDFLAGS} -o $@ chkutmp.c
-
- strings-static: strings.c
-- ${CC} ${STATIC} ${LDFLAGS} -o $@ strings.c
-- @strip $@
-+ ${CC} ${STATIC} ${CFLAGS} ${LDFLAGS} -o $@ strings.c
-
- clean:
- rm -f ${OBJS} core chklastlog chkwtmp ifpromisc chkproc chkdirs check_wtmpx strings-static chkutmp