summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Short <zul@gentoo.org>2004-04-13 16:24:06 +0000
committerChuck Short <zul@gentoo.org>2004-04-13 16:24:06 +0000
commit2982b9a4ebdd5d075e337032f281fd84375007af (patch)
tree1e210ee6c29fe24a4b57c630249a4a4324223b40 /app-editors
parentVersion bumped. (diff)
downloadhistorical-2982b9a4ebdd5d075e337032f281fd84375007af.tar.gz
historical-2982b9a4ebdd5d075e337032f281fd84375007af.tar.bz2
historical-2982b9a4ebdd5d075e337032f281fd84375007af.zip
Version bump, closes #47357.
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/hexedit/ChangeLog7
-rw-r--r--app-editors/hexedit/Manifest4
-rw-r--r--app-editors/hexedit/files/digest-hexedit-1.2.91
-rw-r--r--app-editors/hexedit/hexedit-1.2.9.ebuild30
4 files changed, 40 insertions, 2 deletions
diff --git a/app-editors/hexedit/ChangeLog b/app-editors/hexedit/ChangeLog
index b4014047f692..d272979aae4f 100644
--- a/app-editors/hexedit/ChangeLog
+++ b/app-editors/hexedit/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-editors/hexedit
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/hexedit/ChangeLog,v 1.8 2004/01/18 20:22:37 zul Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/hexedit/ChangeLog,v 1.9 2004/04/13 16:24:06 zul Exp $
+
+*hexedit-1.2.9 (13 Apr 2004)
+
+ 13 Apr 2004; Chuck Short <zul@gentoo.org> hexedit-1.2.9.ebuild:
+ Version bump, closes #47357.
18 Jan 2004; Chuck Short <zul@gentoo.org> hexedit-1.2.2.ebuild:
Header update, added amd64 keyword.
diff --git a/app-editors/hexedit/Manifest b/app-editors/hexedit/Manifest
index c23cdd06f609..df70745b5cc6 100644
--- a/app-editors/hexedit/Manifest
+++ b/app-editors/hexedit/Manifest
@@ -1,3 +1,5 @@
MD5 d3020a733492eb3d7a8206e3c5fbb6e8 hexedit-1.2.2.ebuild 742
-MD5 19b35147538346561dcf3676021a9ae0 ChangeLog 731
+MD5 ef7372922c20f720d6a44db63fa60b67 hexedit-1.2.9.ebuild 746
+MD5 bed5c35a9493e6fdd3fcde59a679eafc ChangeLog 859
MD5 6e5875f691ced8ecac86ccc41c443a3b files/digest-hexedit-1.2.2 65
+MD5 44c497343ccc5a908e95b4fe44f46f5e files/digest-hexedit-1.2.9 65
diff --git a/app-editors/hexedit/files/digest-hexedit-1.2.9 b/app-editors/hexedit/files/digest-hexedit-1.2.9
new file mode 100644
index 000000000000..cb6019f43e0c
--- /dev/null
+++ b/app-editors/hexedit/files/digest-hexedit-1.2.9
@@ -0,0 +1 @@
+MD5 cd3929bb76899dc4a77fd465345e7d37 hexedit-1.2.9.src.tgz 61500
diff --git a/app-editors/hexedit/hexedit-1.2.9.ebuild b/app-editors/hexedit/hexedit-1.2.9.ebuild
new file mode 100644
index 000000000000..4c0601e9ce17
--- /dev/null
+++ b/app-editors/hexedit/hexedit-1.2.9.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/hexedit/hexedit-1.2.9.ebuild,v 1.1 2004/04/13 16:24:06 zul Exp $
+
+S="${WORKDIR}/hexedit"
+DESCRIPTION="View and edit files in hex or ASCII."
+SRC_URI="http://merd.net/pixel/${P}.src.tgz"
+HOMEPAGE="http://www.chez.com/prigaux/hexedit.html"
+
+DEPEND="virtual/glibc
+ sys-libs/ncurses"
+RDEPEND=""
+
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64"
+LICENSE="GPL-1"
+
+src_compile() {
+ cd "${S}"
+ ./configure --host="${CHOST}" --prefix=/usr --mandir=/usr/share/man \
+ || die "./configure failed"
+
+ emake || die
+}
+
+src_install () {
+ dobin hexedit
+ doman hexedit.1
+ dodoc COPYING Changes TODO
+}