summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlastair Tse <liquidx@gentoo.org>2003-03-20 23:26:33 +0000
committerAlastair Tse <liquidx@gentoo.org>2003-03-20 23:26:33 +0000
commitc1be0b15365a0b5f6ffe6fc704c715d699bf5bc9 (patch)
tree19c4db3c0fa9b5028e45a6778fe6e5ac5b34d313 /app-crypt/md5deep
parentUnmasked for x86 and sparc. Closes #17828 (diff)
downloadgentoo-2-c1be0b15365a0b5f6ffe6fc704c715d699bf5bc9.tar.gz
gentoo-2-c1be0b15365a0b5f6ffe6fc704c715d699bf5bc9.tar.bz2
gentoo-2-c1be0b15365a0b5f6ffe6fc704c715d699bf5bc9.zip
initial ebuild
Diffstat (limited to 'app-crypt/md5deep')
-rw-r--r--app-crypt/md5deep/ChangeLog9
-rw-r--r--app-crypt/md5deep/files/digest-md5deep-0.161
-rw-r--r--app-crypt/md5deep/md5deep-0.16.ebuild28
3 files changed, 38 insertions, 0 deletions
diff --git a/app-crypt/md5deep/ChangeLog b/app-crypt/md5deep/ChangeLog
new file mode 100644
index 000000000000..b41b063c49e8
--- /dev/null
+++ b/app-crypt/md5deep/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sys-apps/md5deep
+# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/md5deep/ChangeLog,v 1.1 2003/03/20 23:26:33 liquidx Exp $
+
+*md5deep-0.16 (20 Mar 2003)
+ 20 Mar 2003; Alastair Tse <liquidx@gentoo.org> md5deep-0.16.ebulid:
+ Ebuild and patch thanks to Matt Klosterman <general@kolsterman.net>
+ from bug #16773.
+
diff --git a/app-crypt/md5deep/files/digest-md5deep-0.16 b/app-crypt/md5deep/files/digest-md5deep-0.16
new file mode 100644
index 000000000000..3f0afcc6e055
--- /dev/null
+++ b/app-crypt/md5deep/files/digest-md5deep-0.16
@@ -0,0 +1 @@
+MD5 a07715c3344524da1270e9eb39f9b9e1 md5deep-0.16.tar.gz 18079
diff --git a/app-crypt/md5deep/md5deep-0.16.ebuild b/app-crypt/md5deep/md5deep-0.16.ebuild
new file mode 100644
index 000000000000..1482d47a4add
--- /dev/null
+++ b/app-crypt/md5deep/md5deep-0.16.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/md5deep/md5deep-0.16.ebuild,v 1.1 2003/03/20 23:26:33 liquidx Exp $
+
+DESCRIPTION="Expanded md5sum program that has recursive and comparison options"
+HOMEPAGE="http://md5deep.sourceforge.net"
+SRC_URI="http://md5deep.sourceforge.net/${P}.tar.gz"
+LICENSE="freedist"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~sparc"
+IUSE=""
+DEPEND=""
+S=${WORKDIR}/${P}
+
+src_unpack () {
+ unpack ${A} ; cd ${S}
+ patch ${S}/md5deep.c ${FILESDIR}/md5deep-0.16-gentoo.diff
+}
+
+src_compile () {
+ make CFLAGS="${CFLAGS}" linux || die
+}
+
+src_install() {
+ dobin md5deep
+ dodoc README CHANGES TODO
+ doman md5deep.1
+}