summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris White <chriswhite@gentoo.org>2005-10-03 03:29:30 +0000
committerChris White <chriswhite@gentoo.org>2005-10-03 03:29:30 +0000
commita15deff1d72aba1f0768a1cac57a07d4c3da1efa (patch)
tree20fb969f720bd271e978b68c416c9b0e349d1dbb /app-admin/integrit
parentNew release: 0.11.7 (diff)
downloadgentoo-2-a15deff1d72aba1f0768a1cac57a07d4c3da1efa.tar.gz
gentoo-2-a15deff1d72aba1f0768a1cac57a07d4c3da1efa.tar.bz2
gentoo-2-a15deff1d72aba1f0768a1cac57a07d4c3da1efa.zip
Bump to version 3.05. Fixes bug #106749. Tested by creating a database of /usr and modifying a file in /usr/lib.
(Portage version: 2.0.52-r1)
Diffstat (limited to 'app-admin/integrit')
-rw-r--r--app-admin/integrit/ChangeLog8
-rw-r--r--app-admin/integrit/Manifest4
-rw-r--r--app-admin/integrit/files/digest-integrit-3.051
-rw-r--r--app-admin/integrit/integrit-3.05.ebuild56
4 files changed, 67 insertions, 2 deletions
diff --git a/app-admin/integrit/ChangeLog b/app-admin/integrit/ChangeLog
index 72047ed38490..17be88906bc1 100644
--- a/app-admin/integrit/ChangeLog
+++ b/app-admin/integrit/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-admin/integrit
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/integrit/ChangeLog,v 1.12 2005/08/20 14:16:24 metalgod Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/integrit/ChangeLog,v 1.13 2005/10/03 03:29:30 chriswhite Exp $
+
+*integrit-3.05 (03 Oct 2005)
+
+ 03 Oct 2005; Chris White <chriswhite@gentoo.org> +integrit-3.05.ebuild:
+ Bump to version 3.05. Fixes bug #106749. Tested by creating a database of
+ /usr and modifying a file in /usr/lib.
20 Aug 2005; Luis Medinas <metalgod@gentoo.org> integrit-3.02.00.ebuild:
Added ~amd64 keywords.
diff --git a/app-admin/integrit/Manifest b/app-admin/integrit/Manifest
index 1a94ae86dd7f..b3e7cdd474b0 100644
--- a/app-admin/integrit/Manifest
+++ b/app-admin/integrit/Manifest
@@ -1,4 +1,6 @@
+MD5 dffd46174e78b327c834fc3e4b1cf848 metadata.xml 160
MD5 ca47f547f6755c86ed341c3f0e848095 ChangeLog 1071
+MD5 6c1339e51d84cfe569d018bfb658d3d8 integrit-3.05.ebuild 1271
MD5 789bbd1bfd0651d6cfb843dc7ba4b626 integrit-3.02.00.ebuild 1294
-MD5 dffd46174e78b327c834fc3e4b1cf848 metadata.xml 160
+MD5 69ae97ff8d5f4dbc96a3f2e5d01247a5 files/digest-integrit-3.05 65
MD5 f34f66e421072f0acbeb86d45edc4ff2 files/digest-integrit-3.02.00 68
diff --git a/app-admin/integrit/files/digest-integrit-3.05 b/app-admin/integrit/files/digest-integrit-3.05
new file mode 100644
index 000000000000..9b99182a0f5b
--- /dev/null
+++ b/app-admin/integrit/files/digest-integrit-3.05
@@ -0,0 +1 @@
+MD5 a251a27f6b815e51c356cf81e8f2dc5e integrit-3.05.tar.gz 262784
diff --git a/app-admin/integrit/integrit-3.05.ebuild b/app-admin/integrit/integrit-3.05.ebuild
new file mode 100644
index 000000000000..d325619b3336
--- /dev/null
+++ b/app-admin/integrit/integrit-3.05.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/integrit/integrit-3.05.ebuild,v 1.1 2005/10/03 03:29:30 chriswhite Exp $
+
+DESCRIPTION="file integrity verification program"
+HOMEPAGE="http://integrit.sourceforge.net/"
+SRC_URI="http://www.noserose.net/e/integrit/download/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND="virtual/libc"
+
+src_compile() {
+ econf --prefix=/usr || die
+ emake || die
+ emake utils || die
+ cd ${S}/doc
+ emake || die
+ cd ${S}/hashtbl
+ emake hashtest || die
+ mv README README.hashtbl
+}
+
+src_install() {
+ dosbin integrit || die
+ dolib libintegrit.a
+ dodoc Changes HACKING INSTALL README todo.txt
+
+ cd ${S}/utils
+ dosbin i-viewdb
+ dobin i-ls
+
+ cd ${S}/hashtbl
+ dolib libhashtbl.a
+ insinto /usr/include
+ doins hashtbl.h
+ dobin hashtest
+ dodoc README.hashtbl
+
+ cd ${S}/doc
+ doman i-ls.1 i-viewdb.1 integrit.1
+ doinfo integrit.info
+
+ cd ${S}/examples
+ docinto examples
+ dodoc *
+}
+
+pkg_postinst() {
+ einfo "It is recommended that the integrit binary is copied to a secure"
+ einfo "location and re-copied at runtime or run from a secure medium."
+ einfo "You should also create a configuration file (see examples)."
+}