summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-benchmarks/i7z/i7z-0.27.2.ebuild')
-rw-r--r--app-benchmarks/i7z/i7z-0.27.2.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/app-benchmarks/i7z/i7z-0.27.2.ebuild b/app-benchmarks/i7z/i7z-0.27.2.ebuild
deleted file mode 100644
index e11ec632c02c..000000000000
--- a/app-benchmarks/i7z/i7z-0.27.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils flag-o-matic qmake-utils toolchain-funcs
-
-DESCRIPTION="A better i7 (and now i3, i5) reporting tool for Linux"
-HOMEPAGE="https://github.com/ajaiantilal/i7z"
-SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="X"
-
-RDEPEND="
- sys-libs/ncurses:0=
- X? ( dev-qt/qtgui:4= )"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-ncurses.patch
- tc-export CC
-}
-
-src_compile() {
- default
- if use X; then
- cd GUI
- eqmake4 ${PN}_GUI.pro && emake clean && emake
- fi
-}
-
-src_install() {
- emake DESTDIR="${ED}" docdir=/usr/share/doc/${PF} install
- use X && dosbin GUI/i7z_GUI
-}