diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-29 06:23:45 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-29 06:23:45 +0000 |
commit | ab97fe4ebc71137812c6f0361c76269e2b51e7f8 (patch) | |
tree | 7363347c8c88d5c68f53dbc7cab45cf06f82731c /app-crypt/mhash | |
parent | Version bump (diff) | |
download | gentoo-2-ab97fe4ebc71137812c6f0361c76269e2b51e7f8.tar.gz gentoo-2-ab97fe4ebc71137812c6f0361c76269e2b51e7f8.tar.bz2 gentoo-2-ab97fe4ebc71137812c6f0361c76269e2b51e7f8.zip |
USE="static-libs" and remove unnecessary libtool archive. Missing dev-lang/perl DEPEND for pod2html.
(Portage version: 2.2.0_alpha47/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt/mhash')
-rw-r--r-- | app-crypt/mhash/ChangeLog | 6 | ||||
-rw-r--r-- | app-crypt/mhash/mhash-0.9.9.9.ebuild | 44 |
2 files changed, 24 insertions, 26 deletions
diff --git a/app-crypt/mhash/ChangeLog b/app-crypt/mhash/ChangeLog index 5d3f5ad67308..e24ed7372536 100644 --- a/app-crypt/mhash/ChangeLog +++ b/app-crypt/mhash/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/mhash # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/mhash/ChangeLog,v 1.57 2011/02/06 05:28:23 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/mhash/ChangeLog,v 1.58 2011/07/29 06:23:45 ssuominen Exp $ + + 29 Jul 2011; Samuli Suominen <ssuominen@gentoo.org> mhash-0.9.9.9.ebuild: + USE="static-libs" and remove unnecessary libtool archive. Missing + dev-lang/perl DEPEND for pod2html. 06 Feb 2011; Mart Raudsepp <leio@gentoo.org> mhash-0.9.9.ebuild: Drop to ~mips diff --git a/app-crypt/mhash/mhash-0.9.9.9.ebuild b/app-crypt/mhash/mhash-0.9.9.9.ebuild index 2aea6095b18f..f453c2196cf8 100644 --- a/app-crypt/mhash/mhash-0.9.9.9.ebuild +++ b/app-crypt/mhash/mhash-0.9.9.9.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 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.9.ebuild,v 1.2 2010/04/01 08:42:53 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/mhash/mhash-0.9.9.9.ebuild,v 1.3 2011/07/29 06:23:45 ssuominen Exp $ +EAPI=4 inherit eutils DESCRIPTION="library providing a uniform interface to a large number of hash algorithms" @@ -11,37 +12,30 @@ 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 ~x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="" +IUSE="static-libs" -DEPEND="" RDEPEND="" +DEPEND="dev-lang/perl" # pod2html -src_unpack() { - unpack ${A} - cd "${S}" - - # Fix for issues in bug #181563 - #epatch "${FILESDIR}/${PN}-0.9.9-mutils-align.patch" +src_prepare() { + epatch \ + "${FILESDIR}"/${PN}-0.9.9-fix-{mem-leak,snefru-segfault,whirlpool-segfault}.patch \ + "${FILESDIR}"/${PN}-0.9.9-autotools-namespace-stomping.patch +} - epatch "${FILESDIR}"/${PN}-0.9.9-fix-mem-leak.patch - epatch "${FILESDIR}"/${PN}-0.9.9-fix-snefru-segfault.patch - epatch "${FILESDIR}"/${PN}-0.9.9-fix-whirlpool-segfault.patch - epatch "${FILESDIR}"/${PN}-0.9.9-autotools-namespace-stomping.patch +src_configure() { + econf $(use_enable static-libs static) } src_compile() { - econf \ - --enable-static \ - --enable-shared || die - emake || die "make failure" - cd doc && emake mhash.html || die "failed to build html" + default + emake -C doc mhash.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/skid* doc/*.c - dohtml doc/mhash.html || die "dohtml failed" + emake DESTDIR="${D}" install + use static-libs || rm -f "${ED}"usr/lib*/libmhash.la + dodoc AUTHORS ChangeLog NEWS README THANKS TODO \ + doc/{example.c,skid2-authentication} + dohtml doc/mhash.html } |