summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-06-27 22:05:28 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-06-27 22:05:28 +0000
commit3f934efa47e6f65fdb8a610d6a593c76400d3817 (patch)
tree718d60076e09c772a4b8bf431ab841567eec5a6c /app-crypt/mhash/mhash-0.9.9-r1.ebuild
parentSync kde5*eclass with kde overlay. Handle more whitespace variations by Micha... (diff)
downloadgentoo-2-3f934efa47e6f65fdb8a610d6a593c76400d3817.tar.gz
gentoo-2-3f934efa47e6f65fdb8a610d6a593c76400d3817.tar.bz2
gentoo-2-3f934efa47e6f65fdb8a610d6a593c76400d3817.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-crypt/mhash/mhash-0.9.9-r1.ebuild')
-rw-r--r--app-crypt/mhash/mhash-0.9.9-r1.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/app-crypt/mhash/mhash-0.9.9-r1.ebuild b/app-crypt/mhash/mhash-0.9.9-r1.ebuild
deleted file mode 100644
index 218e907851cb..000000000000
--- a/app-crypt/mhash/mhash-0.9.9-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/mhash/mhash-0.9.9-r1.ebuild,v 1.8 2008/06/08 21:38:23 the_paya Exp $
-
-inherit eutils
-
-DESCRIPTION="library providing a uniform interface to a large number of hash algorithms"
-HOMEPAGE="http://mhash.sourceforge.net/"
-SRC_URI="mirror://sourceforge/mhash/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-src_unpack() {
- # Fix for issues in bug #181563
- unpack ${A} && cd "${S}"
- epatch "${FILESDIR}/${P}-mutils-align.patch"
-}
-
-src_compile() {
- econf \
- --enable-static \
- --enable-shared || die
- emake || die "make failure"
- cd doc && emake mhash.html || die "failed to build html"
-}
-
-src_install() {
- dodir /usr/{bin,include,lib}
- make install DESTDIR="${D}" || die "install failure"
-
- dodoc AUTHORS INSTALL NEWS README TODO THANKS ChangeLog
- dodoc doc/*.txt doc/skid* doc/*.c
- dohtml doc/mhash.html || die "dohtml failed"
-}