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: Fri, 21 Jul 2017 08:47:00
Message-Id: 1500626804.310ea7808ef48ad26a85ddea2a974589b72a7158.pacho@gentoo
1 commit: 310ea7808ef48ad26a85ddea2a974589b72a7158
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 21 08:42:54 2017 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 21 08:46:44 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=310ea780
7
8 app-benchmarks/i7z: Drop old
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 app-benchmarks/i7z/i7z-93_p20131012.ebuild | 68 ------------------------------
13 1 file changed, 68 deletions(-)
14
15 diff --git a/app-benchmarks/i7z/i7z-93_p20131012.ebuild b/app-benchmarks/i7z/i7z-93_p20131012.ebuild
16 deleted file mode 100644
17 index e08e1a871e5..00000000000
18 --- a/app-benchmarks/i7z/i7z-93_p20131012.ebuild
19 +++ /dev/null
20 @@ -1,68 +0,0 @@
21 -# Copyright 1999-2017 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="qt4 qt5"
36 -
37 -RDEPEND="sys-libs/ncurses:0=
38 - qt5? (
39 - dev-qt/qtcore:5=
40 - dev-qt/qtgui:5=
41 - dev-qt/qtwidgets:5=
42 - )
43 - !qt5? ( qt4? (
44 - dev-qt/qtcore:4=
45 - dev-qt/qtgui:4=
46 - ) )"
47 -
48 -DEPEND="${RDEPEND}"
49 -
50 -PATCHES=(
51 - "${FILESDIR}"/i7z-0.27.2-ncurses.patch
52 - "${FILESDIR}"/qt5.patch
53 - "${FILESDIR}"/gcc5.patch
54 -)
55 -
56 -S="${WORKDIR}/${PN}-${COMMIT}"
57 -
58 -src_configure() {
59 - # The GUI segfaults with -O1. None of the documented flags make a
60 - # difference. There may not be a specific flag for the culprit.
61 - filter-flags "-O*"
62 -
63 - tc-export CC
64 - cd GUI || die
65 -
66 - if use qt5; then
67 - eqmake5 ${PN}_GUI.pro
68 - elif use qt4; then
69 - eqmake4 ${PN}_GUI.pro
70 - fi
71 -}
72 -
73 -src_compile() {
74 - default
75 -
76 - if use qt5 || use qt4; then
77 - emake -C GUI clean
78 - emake -C GUI
79 - fi
80 -}
81 -
82 -src_install() {
83 - emake DESTDIR="${ED}" docdir=/usr/share/doc/${PF} install
84 -
85 - if use qt5 || use qt4; then
86 - dosbin GUI/i7z_GUI
87 - fi
88 -}