public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-forensics/chkrootkit: ChangeLog chkrootkit-0.48.ebuild chkrootkit-0.44-r1.ebuild chkrootkit-0.46a.ebuild chkrootkit-0.45.ebuild
@ 2008-10-06 19:38 Peter Volkov (pva)
  0 siblings, 0 replies; only message in thread
From: Peter Volkov (pva) @ 2008-10-06 19:38 UTC (permalink / raw
  To: gentoo-commits

pva         08/10/06 19:38:01

  Modified:             ChangeLog
  Added:                chkrootkit-0.48.ebuild
  Removed:              chkrootkit-0.44-r1.ebuild chkrootkit-0.46a.ebuild
                        chkrootkit-0.45.ebuild
  Log:
  Version bump, thank Alon Bar-Lev and Alex Efros for work, bug #205419. Fixed shell history anomalies, bug #226067, thank Horst Prote for report and fix. Remove old.
  (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 i686)

Revision  Changes    Path
1.47                 app-forensics/chkrootkit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/chkrootkit/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/chkrootkit/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/chkrootkit/ChangeLog?r1=1.46&r2=1.47

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/chkrootkit/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	12 Mar 2008 09:47:31 -0000	1.46
+++ ChangeLog	6 Oct 2008 19:38:01 -0000	1.47
@@ -1,6 +1,19 @@
 # ChangeLog for app-forensics/chkrootkit
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/chkrootkit/ChangeLog,v 1.46 2008/03/12 09:47:31 phreak Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/chkrootkit/ChangeLog,v 1.47 2008/10/06 19:38:01 pva Exp $
+
+*chkrootkit-0.48 (06 Oct 2008)
+
+  06 Oct 2008; Peter Volkov <pva@gentoo.org>
+  -files/chkrootkit-0.44-coreutils-static-falsepositive.patch,
+  -files/chkrootkit-0.45-makefile.diff,
+  -files/chkrootkit-0.46-add-missing-includes.diff,
+  +files/chkrootkit-0.48-shell-history-anomalies.diff,
+  -chkrootkit-0.44-r1.ebuild, -chkrootkit-0.45.ebuild,
+  -chkrootkit-0.46a.ebuild, +chkrootkit-0.48.ebuild:
+  Version bump, thank Alon Bar-Lev and Alex Efros for work, bug #205419.
+  Fixed shell history anomalies, bug #226067, thank Horst Prote for report
+  and fix. Remove old.
 
   12 Mar 2008; Christian Heim <phreak@gentoo.org> metadata.xml:
   Removing Robert Clark (hyakuhei, #154737) from metadata.xml.



1.1                  app-forensics/chkrootkit/chkrootkit-0.48.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/chkrootkit/chkrootkit-0.48.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/chkrootkit/chkrootkit-0.48.ebuild?rev=1.1&content-type=text/plain

Index: chkrootkit-0.48.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/chkrootkit/chkrootkit-0.48.ebuild,v 1.1 2008/10/06 19:38:01 pva Exp $

inherit eutils toolchain-funcs

DESCRIPTION="a tool to locally check for signs of a rootkit"
HOMEPAGE="http://www.chkrootkit.org/"
SRC_URI="ftp://ftp.pangeia.com.br/pub/seg/pac/${P}.tar.gz
	mirror://gentoo/${P}-gentoo.diff.bz2"

LICENSE="AMS"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""

src_unpack() {
	unpack ${A}
	cd "${S}"

	epatch "${WORKDIR}/${P}-gentoo.diff"
	epatch "${FILESDIR}/${P}-shell-history-anomalies.diff"
	sed -i 's:/var/adm/:/var/log/:g' chklastlog.c || die "sed chklastlog.c failed"
}

src_compile() {
	emake CC=$(tc-getCC) STRIP=true sense || die "emake sense failed"
}

src_install() {
	dosbin chkdirs chklastlog chkproc chkrootkit chkwtmp chkutmp ifpromisc \
		strings-static || die
	dodoc ACKNOWLEDGMENTS README*

	exeinto /etc/cron.weekly
	newexe "${FILESDIR}"/${PN}.cron ${PN} || die
}

pkg_postinst() {
	echo
	elog "Edit /etc/cron.weekly/chkrootkit to activate chkrootkit!"
	elog
	elog "Some applications, such as portsentry, will cause chkrootkit"
	elog "to produce false positives.  Read the chkrootkit FAQ at"
	elog "http://www.chkrootkit.org/ for more information."
	echo
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-10-06 19:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-06 19:38 [gentoo-commits] gentoo-x86 commit in app-forensics/chkrootkit: ChangeLog chkrootkit-0.48.ebuild chkrootkit-0.44-r1.ebuild chkrootkit-0.46a.ebuild chkrootkit-0.45.ebuild Peter Volkov (pva)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox