summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Portnoy <avenj@gentoo.org>2003-09-08 17:29:07 +0000
committerJon Portnoy <avenj@gentoo.org>2003-09-08 17:29:07 +0000
commitcd08f5935faf4abcd92d360ef634b145c0550998 (patch)
tree8322388e99e53399af0354d54a3e685e89425d53 /dev-util/hxd
parentchanged hardened-gcc, exclude flags not needed any more (diff)
downloadgentoo-2-cd08f5935faf4abcd92d360ef634b145c0550998.tar.gz
gentoo-2-cd08f5935faf4abcd92d360ef634b145c0550998.tar.bz2
gentoo-2-cd08f5935faf4abcd92d360ef634b145c0550998.zip
Initial import
Diffstat (limited to 'dev-util/hxd')
-rw-r--r--dev-util/hxd/ChangeLog9
-rw-r--r--dev-util/hxd/Manifest3
-rw-r--r--dev-util/hxd/files/digest-hxd-0.701
-rw-r--r--dev-util/hxd/hxd-0.70.ebuild28
4 files changed, 40 insertions, 1 deletions
diff --git a/dev-util/hxd/ChangeLog b/dev-util/hxd/ChangeLog
new file mode 100644
index 000000000000..b84d0e3b9a61
--- /dev/null
+++ b/dev-util/hxd/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for dev-util/hxd
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/hxd/ChangeLog,v 1.1 2003/09/08 17:29:03 avenj Exp $
+
+*hxd-0.70 (08 Sep 2003)
+
+ 08 Sep 2003; Jon Portnoy <avenj@gentoo.org> hxd-0.70.ebuild :
+ Initial import. Submitted in bug 20170 by
+ Damjan <damjan.bole@studioproteus.si>.
diff --git a/dev-util/hxd/Manifest b/dev-util/hxd/Manifest
index 8dc3c41a9c88..7daf16079dfc 100644
--- a/dev-util/hxd/Manifest
+++ b/dev-util/hxd/Manifest
@@ -1,2 +1,3 @@
-MD5 1064d76df75f1e3ab0b9bdb363d04fab hxd-0.70.ebuild 554
+MD5 165e6215b5686f545047a3f0b8184d26 hxd-0.70.ebuild 644
+MD5 bc4e5ba43e5d21ac733787cfa6a4379e ChangeLog 385
MD5 59467237515852787a3a00d76dbb3ad6 files/digest-hxd-0.70 59
diff --git a/dev-util/hxd/files/digest-hxd-0.70 b/dev-util/hxd/files/digest-hxd-0.70
new file mode 100644
index 000000000000..d07b920ca31e
--- /dev/null
+++ b/dev-util/hxd/files/digest-hxd-0.70
@@ -0,0 +1 @@
+MD5 51f4c04a815a776eb413aab00229278f hxd-0.70.tar.gz 17115
diff --git a/dev-util/hxd/hxd-0.70.ebuild b/dev-util/hxd/hxd-0.70.ebuild
new file mode 100644
index 000000000000..d140da68adaa
--- /dev/null
+++ b/dev-util/hxd/hxd-0.70.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/dev-util/hxd/hxd-0.70.ebuild,v 1.1 2003/09/08 17:29:03 avenj Exp $
+
+DESCRIPTION="Binary to hexadecimal converter"
+HOMEPAGE="http://www-tet.ee.tu-berlin.de/solyga/linux/"
+SRC_URI="ftp://metalab.unc.edu/pub/Linux/utils/file/hex/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND="virtual/glibc"
+RDEPEND="${DEPEND}"
+
+S=${WORKDIR}/${P}
+
+src_compile() {
+ econf || die
+ emake || die
+}
+
+src_install() {
+ dobin hxd unhxd
+ doman hxd.1 unhxd.1
+ dodoc CHANGELOG COPYING README TODO
+}