summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-06-09 12:56:49 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-06-09 12:56:49 +0000
commiteaf5d5120721c5b919cb47adeab4cca3d25cd8a7 (patch)
tree39db7aa769120f55abc0547a8e131b3a5e8ee3c9 /app-admin
parentWhitespace. (diff)
downloadgentoo-2-eaf5d5120721c5b919cb47adeab4cca3d25cd8a7.tar.gz
gentoo-2-eaf5d5120721c5b919cb47adeab4cca3d25cd8a7.tar.bz2
gentoo-2-eaf5d5120721c5b919cb47adeab4cca3d25cd8a7.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/integrit/ChangeLog5
-rw-r--r--app-admin/integrit/integrit-4.1.ebuild66
2 files changed, 4 insertions, 67 deletions
diff --git a/app-admin/integrit/ChangeLog b/app-admin/integrit/ChangeLog
index 5920dfcfd001..7f44477609bc 100644
--- a/app-admin/integrit/ChangeLog
+++ b/app-admin/integrit/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-admin/integrit
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/integrit/ChangeLog,v 1.26 2015/06/09 08:41:23 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/integrit/ChangeLog,v 1.27 2015/06/09 12:56:49 mrueg Exp $
+
+ 09 Jun 2015; Manuel Rüger <mrueg@gentoo.org> -integrit-4.1.ebuild:
+ Remove old.
09 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
Updating remote-id in metadata.xml
diff --git a/app-admin/integrit/integrit-4.1.ebuild b/app-admin/integrit/integrit-4.1.ebuild
deleted file mode 100644
index 4257e159c381..000000000000
--- a/app-admin/integrit/integrit-4.1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/integrit/integrit-4.1.ebuild,v 1.1 2009/01/04 23:03:27 patrick Exp $
-
-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)."
-}