public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-forensics/tct: ChangeLog tct-1.18-r1.ebuild
@ 2009-03-15 23:17 Mike Frysinger (vapier)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2009-03-15 23:17 UTC (permalink / raw
  To: gentoo-commits

vapier      09/03/15 23:17:01

  Modified:             ChangeLog
  Added:                tct-1.18-r1.ebuild
  Log:
  Stop installing timeout(1) man page since coreutils installs it #259870 by Willard Dawson.
  (Portage version: 2.2_rc25/cvs/Linux x86_64)

Revision  Changes    Path
1.12                 app-forensics/tct/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/tct/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	5 Jan 2009 00:04:28 -0000	1.11
+++ ChangeLog	15 Mar 2009 23:17:01 -0000	1.12
@@ -1,6 +1,12 @@
 # ChangeLog for app-forensics/tct
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/ChangeLog,v 1.11 2009/01/05 00:04:28 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/ChangeLog,v 1.12 2009/03/15 23:17:01 vapier Exp $
+
+*tct-1.18-r1 (15 Mar 2009)
+
+  15 Mar 2009; Mike Frysinger <vapier@gentoo.org> +tct-1.18-r1.ebuild:
+  Stop installing timeout(1) man page since coreutils installs it #259870 by
+  Willard Dawson.
 
 *tct-1.18 (05 Jan 2009)
 



1.1                  app-forensics/tct/tct-1.18-r1.ebuild

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

Index: tct-1.18-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild,v 1.1 2009/03/15 23:17:01 vapier Exp $

inherit eutils toolchain-funcs

DESCRIPTION="The Coroner's Toolkit - a collection of tools to aide in gathering and analyzing forensic data on a UNIX system"
HOMEPAGE="http://www.porcupine.org/forensics/tct.html"
SRC_URI="http://www.porcupine.org/forensics/${P}.tar.gz"

LICENSE="IBM as-is"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""

DEPEND=">=dev-lang/perl-5.0004
	>=sys-apps/sed-4"
RDEPEND="${DEPEND}
	dev-perl/DateManip"

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

	sed -i "s:^\(CC.*= \).*:\1$(tc-getCC):" Makefile || die "sed CC failed"
	sed -i "s:\$(OPT) \$(DEBUG):${CFLAGS}:" */*/Makefile \
		|| die "sed CFLAGS failed"

	epatch "${FILESDIR}/tct-1.15-gentoo.diff"
}

src_install() {
	# bins/libs
	into /usr/lib/tct
	dobin bin/* || die "bin installation failed"

	exeinto /usr/lib/tct
	doexe reconfig || die "reconfig installation failed"

	insinto /usr/lib/tct/lib
	doins lib/*.pl || die "lib installation failed"

	exeinto /usr/lib/tct/extras
	doexe extras/bdf extras/ils2mac extras/realpath extras/entropy/entropy \
		extras/findkey/findkey || die "extras installation failed"

	# config
	insinto /etc/tct
	doins conf/* || die "conf installation failed"

	# docs
	newdoc extras/README README.extras || die "newdoc failed"
	dodoc docs/* Beware CHANGES INSTALL OS-NOTES README.FIRST \
		TODO* additional-resources bibliography help-recovering-file \
		help-when-broken-into quick-start || die "doc installation failed"

	# these manual pages are provided by other packages
	rm -f man/man1/{file,md5,icat,ils,lastcomm,timeout}.1
	rm -f man/man5/magic.5
	doman man/*/* || die "man installation failed"

	# setup dirs/symlinks
	keepdir /var/log/tct

	dosym /etc/tct /usr/lib/tct/conf || die "dosym failed"

	keepdir /var/lib/tct
	dosym /var/lib/tct /usr/lib/tct/data || die "dosym failed"

	# all binaries except the following are meant for internal use
	local bin
	dodir /usr/sbin
	for bin in grave-robber lazarus mactime unrm; do
		dosym /usr/lib/tct/bin/${bin} /usr/sbin/${bin} \
			|| die "dosym ${bin} failed"
	done
}

pkg_postinst() {
	elog "The authors of The Coroner's Toolkit highly recommend"
	elog "installing sys-process/lsof for use by the toolkit."
	elog
	elog "Please read the README and quickstart files installed"
	elog "in /usr/share/doc/${PF} before using The Coroner's Toolkit."
}






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-forensics/tct: ChangeLog tct-1.18-r1.ebuild
@ 2009-04-06 14:06 Brent Baude (ranger)
  0 siblings, 0 replies; 4+ messages in thread
From: Brent Baude (ranger) @ 2009-04-06 14:06 UTC (permalink / raw
  To: gentoo-commits

ranger      09/04/06 14:06:59

  Modified:             ChangeLog tct-1.18-r1.ebuild
  Log:
  stable ppc, bug 265036
  (Portage version: 2.1.6.11/cvs/Linux ppc64)

Revision  Changes    Path
1.13                 app-forensics/tct/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/tct/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	15 Mar 2009 23:17:01 -0000	1.12
+++ ChangeLog	6 Apr 2009 14:06:59 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for app-forensics/tct
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/ChangeLog,v 1.12 2009/03/15 23:17:01 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/ChangeLog,v 1.13 2009/04/06 14:06:59 ranger Exp $
+
+  06 Apr 2009; Brent Baude <ranger@gentoo.org> tct-1.18-r1.ebuild:
+  stable ppc, bug 265036
 
 *tct-1.18-r1 (15 Mar 2009)
 



1.2                  app-forensics/tct/tct-1.18-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild?r1=1.1&r2=1.2

Index: tct-1.18-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tct-1.18-r1.ebuild	15 Mar 2009 23:17:01 -0000	1.1
+++ tct-1.18-r1.ebuild	6 Apr 2009 14:06:59 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild,v 1.1 2009/03/15 23:17:01 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild,v 1.2 2009/04/06 14:06:59 ranger Exp $
 
 inherit eutils toolchain-funcs
 
@@ -10,7 +10,7 @@
 
 LICENSE="IBM as-is"
 SLOT="0"
-KEYWORDS="~ppc ~x86"
+KEYWORDS="ppc ~x86"
 IUSE=""
 
 DEPEND=">=dev-lang/perl-5.0004






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-forensics/tct: ChangeLog tct-1.18-r1.ebuild
@ 2009-04-14  9:51 Raul Porcel (armin76)
  0 siblings, 0 replies; 4+ messages in thread
From: Raul Porcel (armin76) @ 2009-04-14  9:51 UTC (permalink / raw
  To: gentoo-commits

armin76     09/04/14 09:51:39

  Modified:             ChangeLog tct-1.18-r1.ebuild
  Log:
  x86 stable wrt #265036
  (Portage version: 2.1.6.7/cvs/Linux ia64)

Revision  Changes    Path
1.14                 app-forensics/tct/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/tct/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	6 Apr 2009 14:06:59 -0000	1.13
+++ ChangeLog	14 Apr 2009 09:51:39 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for app-forensics/tct
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/ChangeLog,v 1.13 2009/04/06 14:06:59 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/ChangeLog,v 1.14 2009/04/14 09:51:39 armin76 Exp $
+
+  14 Apr 2009; Raúl Porcel <armin76@gentoo.org> tct-1.18-r1.ebuild:
+  x86 stable wrt #265036
 
   06 Apr 2009; Brent Baude <ranger@gentoo.org> tct-1.18-r1.ebuild:
   stable ppc, bug 265036



1.3                  app-forensics/tct/tct-1.18-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild?r1=1.2&r2=1.3

Index: tct-1.18-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- tct-1.18-r1.ebuild	6 Apr 2009 14:06:59 -0000	1.2
+++ tct-1.18-r1.ebuild	14 Apr 2009 09:51:39 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild,v 1.2 2009/04/06 14:06:59 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild,v 1.3 2009/04/14 09:51:39 armin76 Exp $
 
 inherit eutils toolchain-funcs
 
@@ -10,7 +10,7 @@
 
 LICENSE="IBM as-is"
 SLOT="0"
-KEYWORDS="ppc ~x86"
+KEYWORDS="ppc x86"
 IUSE=""
 
 DEPEND=">=dev-lang/perl-5.0004






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-forensics/tct: ChangeLog tct-1.18-r1.ebuild
@ 2009-04-30 17:37 Patrick Lauer (patrick)
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick Lauer (patrick) @ 2009-04-30 17:37 UTC (permalink / raw
  To: gentoo-commits

patrick     09/04/30 17:37:17

  Modified:             ChangeLog tct-1.18-r1.ebuild
  Log:
  Remove old
  (Portage version: 2.2_rc31/cvs/Linux x86_64)

Revision  Changes    Path
1.16                 app-forensics/tct/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/tct/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	30 Apr 2009 17:28:24 -0000	1.15
+++ ChangeLog	30 Apr 2009 17:37:17 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for app-forensics/tct
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/ChangeLog,v 1.15 2009/04/30 17:28:24 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/ChangeLog,v 1.16 2009/04/30 17:37:17 patrick Exp $
+
+  30 Apr 2009; Patrick Lauer <patrick@gentoo.org> tct-1.18-r1.ebuild:
+  Adding ~amd64 keyword
 
   30 Apr 2009; Patrick Lauer <patrick@gentoo.org> -tct-1.15-r1.ebuild,
   -tct-1.18.ebuild:



1.4                  app-forensics/tct/tct-1.18-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild?r1=1.3&r2=1.4

Index: tct-1.18-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- tct-1.18-r1.ebuild	14 Apr 2009 09:51:39 -0000	1.3
+++ tct-1.18-r1.ebuild	30 Apr 2009 17:37:17 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild,v 1.3 2009/04/14 09:51:39 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/tct/tct-1.18-r1.ebuild,v 1.4 2009/04/30 17:37:17 patrick Exp $
 
 inherit eutils toolchain-funcs
 
@@ -10,7 +10,7 @@
 
 LICENSE="IBM as-is"
 SLOT="0"
-KEYWORDS="ppc x86"
+KEYWORDS="~amd64 ppc x86"
 IUSE=""
 
 DEPEND=">=dev-lang/perl-5.0004






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-04-30 17:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-30 17:37 [gentoo-commits] gentoo-x86 commit in app-forensics/tct: ChangeLog tct-1.18-r1.ebuild Patrick Lauer (patrick)
  -- strict thread matches above, loose matches on Subject: below --
2009-04-14  9:51 Raul Porcel (armin76)
2009-04-06 14:06 Brent Baude (ranger)
2009-03-15 23:17 Mike Frysinger (vapier)

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