48 lines
776 B
Bash
48 lines
776 B
Bash
|
# Copyright 1999-2020 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=7
|
||
|
|
||
|
WX_GTK_VER="3.0-gtk3"
|
||
|
|
||
|
inherit wxwidgets xdg
|
||
|
|
||
|
DESCRIPTION="Reverse Engineers' Hex Editor"
|
||
|
HOMEPAGE="https://github.com/solemnwarning/rehex"
|
||
|
|
||
|
if [[ "${PV}" == *9999* ]]; then
|
||
|
inherit git-r3
|
||
|
EGIT_REPO_URI="https://github.com/solemnwarning/${PN}.git"
|
||
|
else
|
||
|
SRC_URI="https://github.com/solemnwarning/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
KEYWORDS="~amd64"
|
||
|
fi
|
||
|
|
||
|
RESTRICT="
|
||
|
mirror
|
||
|
!test? ( test )
|
||
|
"
|
||
|
LICENSE="GPL-2"
|
||
|
SLOT="0"
|
||
|
IUSE="test"
|
||
|
|
||
|
RDEPEND="
|
||
|
dev-libs/capstone
|
||
|
dev-libs/jansson
|
||
|
x11-libs/wxGTK:${WX_GTK_VER}[X]
|
||
|
"
|
||
|
DEPEND="
|
||
|
${RDEPEND}
|
||
|
test? (
|
||
|
dev-cpp/gtest
|
||
|
)
|
||
|
"
|
||
|
|
||
|
src_configure() {
|
||
|
setup-wxwidgets
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
emake prefix="${D}"/usr install
|
||
|
}
|