diff options
author | Chuck Short <zul@gentoo.org> | 2004-04-13 16:24:06 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2004-04-13 16:24:06 +0000 |
commit | 43f88f51984734aaf0e543ae73dfeb96c7a34b1b (patch) | |
tree | e31ff252283e5dddc0193ba5aac9206a03975184 /app-editors | |
parent | Version bumped. (Manifest recommit) (diff) | |
download | gentoo-2-43f88f51984734aaf0e543ae73dfeb96c7a34b1b.tar.gz gentoo-2-43f88f51984734aaf0e543ae73dfeb96c7a34b1b.tar.bz2 gentoo-2-43f88f51984734aaf0e543ae73dfeb96c7a34b1b.zip |
Version bump, closes #47357.
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/hexedit/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/hexedit/Manifest | 2 | ||||
-rw-r--r-- | app-editors/hexedit/files/digest-hexedit-1.2.9 | 1 | ||||
-rw-r--r-- | app-editors/hexedit/hexedit-1.2.9.ebuild | 30 |
4 files changed, 39 insertions, 1 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..7b672aed809e 100644 --- a/app-editors/hexedit/Manifest +++ b/app-editors/hexedit/Manifest @@ -1,3 +1,5 @@ MD5 d3020a733492eb3d7a8206e3c5fbb6e8 hexedit-1.2.2.ebuild 742 +MD5 60384ba416c4c10c38674c3a04348450 hexedit-1.2.9.ebuild 747 MD5 19b35147538346561dcf3676021a9ae0 ChangeLog 731 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 +} |