diff options
Diffstat (limited to 'app-crypt/md5deep/md5deep-2.0.1-r1.ebuild')
-rw-r--r-- | app-crypt/md5deep/md5deep-2.0.1-r1.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app-crypt/md5deep/md5deep-2.0.1-r1.ebuild b/app-crypt/md5deep/md5deep-2.0.1-r1.ebuild new file mode 100644 index 000000000000..1de682d8b10c --- /dev/null +++ b/app-crypt/md5deep/md5deep-2.0.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/md5deep/md5deep-2.0.1-r1.ebuild,v 1.1 2007/12/04 22:24:33 nyhm Exp $ + +inherit autotools eutils + +MY_P=${P}-001 +DESCRIPTION="Expanded md5sum program with recursive and comparison options" +HOMEPAGE="http://md5deep.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc-macos ~sparc ~x86" +IUSE="" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-install.patch + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README TODO +} |