diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2008-05-11 17:00:55 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2008-05-11 17:00:55 +0000 |
commit | 6843f9207c4e5c14556deefac14d2c361006f20f (patch) | |
tree | 591f42e9cd18fd55c7e7fa575548ce87469b517e /app-crypt | |
parent | Sparc stable --- part of Bug #221309 --- Good for about 5 months. (diff) | |
download | gentoo-2-6843f9207c4e5c14556deefac14d2c361006f20f.tar.gz gentoo-2-6843f9207c4e5c14556deefac14d2c361006f20f.tar.bz2 gentoo-2-6843f9207c4e5c14556deefac14d2c361006f20f.zip |
Version bump
(Portage version: 2.1.5_rc10)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/md5deep/ChangeLog | 8 | ||||
-rw-r--r-- | app-crypt/md5deep/files/md5deep-3.0-install.patch | 14 | ||||
-rw-r--r-- | app-crypt/md5deep/md5deep-3.0.ebuild | 26 |
3 files changed, 47 insertions, 1 deletions
diff --git a/app-crypt/md5deep/ChangeLog b/app-crypt/md5deep/ChangeLog index 67220afd3001..85cac398bf89 100644 --- a/app-crypt/md5deep/ChangeLog +++ b/app-crypt/md5deep/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-crypt/md5deep # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/md5deep/ChangeLog,v 1.40 2008/02/05 20:08:59 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/md5deep/ChangeLog,v 1.41 2008/05/11 17:00:54 nyhm Exp $ + +*md5deep-3.0 (11 May 2008) + + 11 May 2008; Tristan Heaven <nyhm@gentoo.org> + +files/md5deep-3.0-install.patch, +md5deep-3.0.ebuild: + Version bump 04 Feb 2008; Fabian Groffen <grobian@gentoo.org> md5deep-1.13.ebuild, md5deep-2.0.1.ebuild, md5deep-2.0.1-r1.ebuild: diff --git a/app-crypt/md5deep/files/md5deep-3.0-install.patch b/app-crypt/md5deep/files/md5deep-3.0-install.patch new file mode 100644 index 000000000000..f0d50281db30 --- /dev/null +++ b/app-crypt/md5deep/files/md5deep-3.0-install.patch @@ -0,0 +1,14 @@ +--- md5deep/Makefile.am ++++ md5deep/Makefile.am +@@ -27,8 +27,9 @@ + + # We erase the old man pages, just in case they might be symbolic links + # (symbolic links were used in a previous release) +-install-exec-hook: update-manpages +- rm -f ${man1dir}/${ALL_GOALS}deep.1 ++install-man: update-manpages ++ rm -f $(DESTDIR)${man1dir}/${ALL_GOALS}deep.1 ++ $(MAKE) install-man1 + + update-manpages: md5deep.1 + cp md5deep.1 sha1deep.1 diff --git a/app-crypt/md5deep/md5deep-3.0.ebuild b/app-crypt/md5deep/md5deep-3.0.ebuild new file mode 100644 index 000000000000..1fe42a184f6b --- /dev/null +++ b/app-crypt/md5deep/md5deep-3.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/md5deep/md5deep-3.0.ebuild,v 1.1 2008/05/11 17:00:54 nyhm Exp $ + +inherit autotools eutils + +DESCRIPTION="Expanded md5sum program with recursive and comparison options" +HOMEPAGE="http://md5deep.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +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 +} |