blob: ba168caf5ddcf6d2f2f0bd8957fc1ab67cff402e (
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
35
36
37
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit eutils qt4-r2
DESCRIPTION="A fast hex-editor with support for large files and comparing binary files"
HOMEPAGE="http://stoopidsimple.com/lfhex"
SRC_URI="http://stoopidsimple.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="dev-qt/qtgui:4
x11-libs/libXt"
DEPEND="${RDEPEND}
sys-devel/flex
sys-devel/bison"
S=${WORKDIR}/${P}/src
src_prepare() {
# Apply Debian patches to fix compilation errors like gcc-4.7 compat
epatch "${FILESDIR}"/*.dpatch
}
src_configure() {
eqmake4
}
src_install() {
dobin lfhex
dodoc ../README
make_desktop_entry "${PN}" "${PN}"
}
|