Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/i7z/
Date: Thu, 02 Aug 2018 09:42:07
Message-Id: 1533202916.7ef53c07f95acb9d6ce3c41d4365a5805988bc78.pacho@gentoo
1 commit: 7ef53c07f95acb9d6ce3c41d4365a5805988bc78
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 2 09:41:22 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 2 09:41:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ef53c07
7
8 app-benchmarks/i7z: Drop old
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 app-benchmarks/i7z/i7z-93_p20131012-r1.ebuild | 69 ---------------------------
13 1 file changed, 69 deletions(-)
14
15 diff --git a/app-benchmarks/i7z/i7z-93_p20131012-r1.ebuild b/app-benchmarks/i7z/i7z-93_p20131012-r1.ebuild
16 deleted file mode 100644
17 index 20080024b0f..00000000000
18 --- a/app-benchmarks/i7z/i7z-93_p20131012-r1.ebuild
19 +++ /dev/null
20 @@ -1,69 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -inherit flag-o-matic qmake-utils toolchain-funcs
27 -
28 -COMMIT="5023138d7c35c4667c938b853e5ea89737334e92"
29 -DESCRIPTION="A better i7 (and now i3, i5) reporting tool for Linux"
30 -HOMEPAGE="https://github.com/ajaiantilal/i7z"
31 -SRC_URI="https://github.com/ajaiantilal/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
32 -SLOT="0"
33 -LICENSE="GPL-2"
34 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
35 -IUSE="qt5"
36 -
37 -RDEPEND="
38 - sys-libs/ncurses:0=
39 - qt5? (
40 - dev-qt/qtcore:5
41 - dev-qt/qtgui:5
42 - dev-qt/qtwidgets:5
43 - )
44 -"
45 -DEPEND="${RDEPEND}"
46 -
47 -PATCHES=(
48 - "${FILESDIR}"/i7z-0.27.2-ncurses.patch
49 - "${FILESDIR}"/qt5.patch
50 - "${FILESDIR}"/gcc5.patch
51 -
52 - # From Debian
53 - "${FILESDIR}"/fix-insecure-tempfile.patch
54 - "${FILESDIR}"/fix_cpuid_asm.patch
55 - "${FILESDIR}"/hyphen-used-as-minus-sign.patch
56 - "${FILESDIR}"/install-i7z_rw_registers.patch
57 - "${FILESDIR}"/use_stdbool.patch
58 -)
59 -
60 -S="${WORKDIR}/${PN}-${COMMIT}"
61 -
62 -src_configure() {
63 - # The GUI segfaults with -O1. None of the documented flags make a
64 - # difference. There may not be a specific flag for the culprit.
65 - # Looks to work fine for me with -O2 (pacho - 20170530)
66 -# filter-flags "-O*"
67 -
68 - tc-export CC PKG_CONFIG
69 - cd GUI || die
70 -
71 - use qt5 && eqmake5 ${PN}_GUI.pro
72 -}
73 -
74 -src_compile() {
75 - default
76 -
77 - if use qt5; then
78 - emake -C GUI clean
79 - emake -C GUI
80 - fi
81 -}
82 -
83 -src_install() {
84 - emake DESTDIR="${ED}" docdir=/usr/share/doc/${PF} install
85 -
86 - if use qt5; then
87 - dosbin GUI/i7z_GUI
88 - fi
89 -}