blob: 08b4f7afec9b9b3af0c14ca376171b88e524e8b5 (
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
49
50
51
52
53
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
MULTILIB_COMPAT=( abi_x86_{32,64} )
inherit multilib-build
DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux executables"
HOMEPAGE="http://statifier.sourceforge.net"
SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz"
KEYWORDS="amd64 x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
RDEPEND="app-shells/bash
sys-apps/coreutils
virtual/awk"
src_prepare() {
# Respect users CFLAGS and LDFLAGS
sed -i -e 's/-Wall -O2/$(CFLAGS) $(LDFLAGS)/g' src/Makefile || die
# Don't compile 32-bit on amd64 no-multilib profile
if ! use abi_x86_32; then
sed -i -e 's/ELF32 .*/ELF32 := no/g' configs/config.x86_64 || die
fi
# Apply user patches
eapply_user
}
src_configure() {
# Fix permissions, as configure is not marked executable
chmod +x configure || die
econf
}
src_compile() {
# Package complains with MAKEOPTS > -j1
emake -j1
}
src_install() {
# Package complains with MAKEOPTS > -j1
emake -j1 DESTDIR="${D}" install
# Install docs
einstalldocs
}
|