app-admin/integrit: Remove old
authorDavid Seifert <soap@gentoo.org>
Fri, 29 Dec 2017 17:55:29 +0000 (18:55 +0100)
committerDavid Seifert <soap@gentoo.org>
Fri, 29 Dec 2017 22:31:02 +0000 (23:31 +0100)
Package-Manager: Portage-2.3.19, Repoman-2.3.6

app-admin/integrit/Manifest
app-admin/integrit/integrit-4.0.ebuild [deleted file]

index 2e96d059ebd662b45ebc48fea65b0bb3945e467d..8b0ee8e154f58947d5f8b1bb58a8afc2d680edfe 100644 (file)
@@ -1,2 +1 @@
-DIST integrit-4.0.tar.gz 266001 BLAKE2B ae0b5aaabeb593080d795b3b1d25af213bae9dc39a24c2ef6222c37919b81b39cf3b012bc4cb02fa9826bc6f68299919dd17253255c295481d64bd0bd71f031c SHA512 d05722285e850aea2a07baa8020a379e595f30cfe9d9142d437d6c15f41c5a687ada476971765cab9cf5972be8c4c76a6495c6fb09438d3b35584c8be5d5a4e5
 DIST integrit-4.1.tar.gz 271626 BLAKE2B 538a34c8e5c00e1be66ba35095be4d61402372ea7fd9ba9bfff9149c9a82c43d625ffb345fe84b7561100b31f2a2a1ba319e8b9a7d2b78e44a81d1ed6ae64f3a SHA512 599ae66a193fd87971994f59422e148e1ae01a5ff0fea93a0f2555c972f5254f0213116950766e72c87a57b1bd490f04afd3e0557d25a366c41dbbacc80b6842
diff --git a/app-admin/integrit/integrit-4.0.ebuild b/app-admin/integrit/integrit-4.0.ebuild
deleted file mode 100644 (file)
index f27b03a..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit autotools toolchain-funcs
-
-DESCRIPTION="file integrity verification program"
-HOMEPAGE="http://integrit.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ppc x86"
-IUSE=""
-
-src_unpack() {
-       unpack ${A}
-       cd "${S}"
-
-       sed -i -e "/^CC/d" configure.in hashtbl/configure.in || die
-       sed -i -e "/^AC_PROGRAM_PATH/d" configure.in hashtbl/configure.in || die
-
-       eautoreconf
-}
-
-src_compile() {
-       tc-export AR
-       econf
-       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 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() {
-       elog "It is recommended that the integrit binary is copied to a secure"
-       elog "location and re-copied at runtime or run from a secure medium."
-       elog "You should also create a configuration file (see examples)."
-}