diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2008-12-07 14:09:41 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2008-12-07 14:09:41 +0000 |
commit | c5cf247c2322a36a2d65e8adc2b276a67ef9fb58 (patch) | |
tree | 77e20434d9bfeb2a27840de98ddfafd7ce39d902 /app-crypt/md5deep | |
parent | version bump; also skip the tk check in python when USE=-tk (report by Yarosl... (diff) | |
download | gentoo-2-c5cf247c2322a36a2d65e8adc2b276a67ef9fb58.tar.gz gentoo-2-c5cf247c2322a36a2d65e8adc2b276a67ef9fb58.tar.bz2 gentoo-2-c5cf247c2322a36a2d65e8adc2b276a67ef9fb58.zip |
Version bump
(Portage version: 2.2_rc17/cvs/Linux 2.6.27.7 i686)
Diffstat (limited to 'app-crypt/md5deep')
-rw-r--r-- | app-crypt/md5deep/ChangeLog | 8 | ||||
-rw-r--r-- | app-crypt/md5deep/files/md5deep-3.1-as-needed.patch | 18 | ||||
-rw-r--r-- | app-crypt/md5deep/md5deep-3.1.ebuild | 26 |
3 files changed, 51 insertions, 1 deletions
diff --git a/app-crypt/md5deep/ChangeLog b/app-crypt/md5deep/ChangeLog index 85cac398bf89..aae74c8e286c 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.41 2008/05/11 17:00:54 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/md5deep/ChangeLog,v 1.42 2008/12/07 14:09:41 nyhm Exp $ + +*md5deep-3.1 (07 Dec 2008) + + 07 Dec 2008; Tristan Heaven <nyhm@gentoo.org> + +files/md5deep-3.1-as-needed.patch, +md5deep-3.1.ebuild: + Version bump *md5deep-3.0 (11 May 2008) diff --git a/app-crypt/md5deep/files/md5deep-3.1-as-needed.patch b/app-crypt/md5deep/files/md5deep-3.1-as-needed.patch new file mode 100644 index 000000000000..f24635330cd4 --- /dev/null +++ b/app-crypt/md5deep/files/md5deep-3.1-as-needed.patch @@ -0,0 +1,18 @@ +--- hashdeep/Makefile.am ++++ hashdeep/Makefile.am +@@ -1,5 +1,5 @@ + # The math library is required for floor() +-AM_LDFLAGS = -lm ++LDADD = -lm + INCLUDES = -I@top_srcdir@/include + COMMON_DIR = @top_srcdir@/common + +--- md5deep/Makefile.am ++++ md5deep/Makefile.am +@@ -1,5 +1,5 @@ + +-AM_LDFLAGS = -lm ++LDADD = -lm + INCLUDES = -I@top_srcdir@/include + COMMON_DIR = @top_srcdir@/common + diff --git a/app-crypt/md5deep/md5deep-3.1.ebuild b/app-crypt/md5deep/md5deep-3.1.ebuild new file mode 100644 index 000000000000..31e38fd6c157 --- /dev/null +++ b/app-crypt/md5deep/md5deep-3.1.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.1.ebuild,v 1.1 2008/12/07 14:09:41 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}-as-needed.patch + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README TODO +} |