blob: 6b19631a10dc8145d8b77ffbb107a7e453dd4910 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit flag-o-matic toolchain-funcs
DESCRIPTION="Utilities to detect broken or counterfeit flash storage"
HOMEPAGE="http://oss.digirati.com.br/f3/ https://github.com/AltraMayor/f3"
PATCHES=(
"${FILESDIR}"/f3-6.0-fix-compiler-warnings_f3read.patch
"${FILESDIR}"/f3-6.0-fix-compiler-warnings_f3probe.patch
"${FILESDIR}"/f3-6.0-respect-ldflags.patch
"${FILESDIR}"/f3-6.0-use-argp_parse.patch
"${FILESDIR}"/f3-6.0-extra-target.patch
"${FILESDIR}"/f3-6.0-upstream-issue-44.patch
)
if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="https://github.com/AltraMayor/${PN}.git"
PATCHES=()
inherit git-r3
else
SRC_URI="https://github.com/AltraMayor/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 x86"
fi
LICENSE="GPL-3+"
SLOT="0"
IUSE="extra"
DEPEND="extra? (
sys-block/parted
virtual/udev
)"
RDEPEND=""
DOCS=( changelog README.md )
src_prepare() {
default
sed -i \
-e 's:-ggdb::' \
-e 's:^PREFIX =:PREFIX ?=:' \
Makefile || die
tc-export CC
append-cflags -fgnu89-inline # https://github.com/AltraMayor/f3/issues/34
}
src_compile() {
default
if use extra; then
emake V=1 extra
fi
}
src_install() {
emake PREFIX="${ED%/}/usr" install
if use extra; then
emake PREFIX="${ED%/}/usr" install-extra
fi
dodoc "${DOCS[@]}"
}
|