summaryrefslogtreecommitdiff
blob: d335a9f4e3d72ac5ab369492e2a2fcb0f05fec26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=4

inherit eutils toolchain-funcs

DESCRIPTION="Hex editor with vi/ex-style user interface"
HOMEPAGE="http://devel.ringlet.net/editors/hexer/"
SRC_URI="http://devel.ringlet.net/editors/${PN}/${P}.tar.gz"

LICENSE="hexer"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="sys-libs/ncurses"
RDEPEND="${DEPEND}"

src_prepare() {
	epatch "${FILESDIR}"/${P}-qa.patch
}

src_compile() {
	tc-export CC
	default
}

src_install() {
	dobin ${PN} bin2c
	doman ${PN}.1
	dodoc CHANGES README
}