aboutsummaryrefslogtreecommitdiff
blob: 3bebef4db3ec6801b625f0f8dbc535ef10e22113 (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
# Copyright 1999-2016 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="https://devel.ringlet.net/editors/hexer/"
SRC_URI="https://devel.ringlet.net/editors/${PN}/${P}.tar.gz"

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

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

src_compile() {
	tc-export CC
	default
}

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