diff options
Diffstat (limited to 'app-editors/hexedit/hexedit-1.2.2.ebuild')
-rw-r--r-- | app-editors/hexedit/hexedit-1.2.2.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-editors/hexedit/hexedit-1.2.2.ebuild b/app-editors/hexedit/hexedit-1.2.2.ebuild new file mode 100644 index 000000000000..37931c6513f2 --- /dev/null +++ b/app-editors/hexedit/hexedit-1.2.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Marc Soda <marc@aspre.net> +# $Header: /var/cvsroot/gentoo-x86/app-editors/hexedit/hexedit-1.2.2.ebuild,v 1.1 2002/02/15 06:20:17 agenkin 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" + +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 +} |