blob: 896f689691da9333df643f2246d07e7e77dc1caf (
plain) (
blame)
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
|
# Copyright 2012 Guillermo Ramos
# Distributed under the terms of the GNU General Public License v2
# Based in part upon 'clojure-1.4.0.ebuild' from Gentoo, which is:
# Copyright 1999-2012 Gentoo Foundation
SUMMARY="View and edit files in hex or ASCII"
HOMEPAGE="http://rigaux.org/hexedit.html"
DOWNLOADS="http://rigaux.org/${PNV}.src.tgz"
LICENCES="GPL-2"
SLOT="0"
PLATFORMS="amd64"
MYOPTIONS=""
DEPENDENCIES="
build+run:
sys-libs/ncurses
"
BUGS_TO="0xwille@gmail.com"
WORK="${WORKBASE}/${PN}"
src_install() {
dobin hexedit
doman hexedit.1
emagicdocs
}
|