diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2019-06-24 23:42:39 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2019-06-24 23:57:45 +0200 |
commit | 06cbfc12282f3b5ed73639e772e8e766073eee23 (patch) | |
tree | 2287ba91b385dc6a94e6cef58a8f4b97253b6745 /sys-block/f3/f3-7.2.ebuild | |
parent | media-gfx/imagemagick: bump to v6.9.10-50 & v7.0.8-50 (diff) | |
download | gentoo-06cbfc12282f3b5ed73639e772e8e766073eee23.tar.gz gentoo-06cbfc12282f3b5ed73639e772e8e766073eee23.tar.bz2 gentoo-06cbfc12282f3b5ed73639e772e8e766073eee23.zip |
sys-block/f3: bump to v7.2
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'sys-block/f3/f3-7.2.ebuild')
-rw-r--r-- | sys-block/f3/f3-7.2.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/sys-block/f3/f3-7.2.ebuild b/sys-block/f3/f3-7.2.ebuild new file mode 100644 index 000000000000..6f012d090ba3 --- /dev/null +++ b/sys-block/f3/f3-7.2.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +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 +} + +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 + + einstalldocs +} |