blob: 7438415c9b8739a7ee07f9e4ef84d62d5ab33982 (
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
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/emilpro/emilpro-9999.ebuild,v 1.1 2014/03/18 04:26:05 zerochaos Exp $
EAPI=5
inherit cmake-utils
DESCRIPTION="a graphical disassembler for a large number of instruction sets"
HOMEPAGE="http://www.emilpro.com/"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/SimonKagstrom/emilpro"
inherit git-r3
KEYWORDS=""
SRC_URI="mirror://gnu/binutils/binutils-2.23.2.tar.bz2"
else
SRC_URI="http://www.emilpro.com/${P}.tar.gz
mirror://gnu/binutils/binutils-2.23.2.tar.bz2"
KEYWORDS="~amd64"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND="|| ( dev-libs/elfutils dev-libs/libelf )
dev-cpp/gtkmm:3.0
dev-cpp/gtksourceviewmm:3.0
dev-cpp/libxmlpp:2.6
net-misc/curl"
RDEPEND="${DEPEND}"
src_prepare() {
sed -i "s#wget -O binutils.tar.bz2 http://ftp.gnu.org/gnu/binutils/binutils-2.23.2.tar.bz2#cp \"${DISTDIR}/binutils-2.23.2.tar.bz2\" ./binutils.tar.bz2#" cmake/BuildBinutils.cmake
cmake-utils_src_prepare
}
src_compile() {
#it builds with one thread no matter what,
#but somehow it still fails if I don't do this
cd "${BUILD_DIR}"
emake -j1
}
src_install() {
dobin "${BUILD_DIR}"/emilpro
}
|