You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.1 KiB
69 lines
1.1 KiB
# Copyright 1999-2018 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=(
|
|
)
|
|
|
|
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 ~arm64 x86"
|
|
fi
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
|
|
IUSE="extra"
|
|
|
|
DEPEND="extra? (
|
|
sys-block/parted
|
|
virtual/udev
|
|
)"
|
|
|
|
RDEPEND=""
|
|
|
|
DOCS=( changelog README.rst )
|
|
|
|
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[@]}"
|
|
}
|