1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-01-08 06:44:12 +01:00

Added wmtemp, added patch for fs-uae 2.4

This commit is contained in:
root
2016-07-03 11:06:13 +02:00
parent 9415a3a321
commit edb10c7656
6 changed files with 68 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit eutils
DESCRIPTION="a dockapp for monitoring cpu/gpu temperature"
HOMEPAGE="http://hules.free.fr/wmcoincoin"
SRC_URI="https://github.com/gryf/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="x11-libs/libXext
x11-libs/libXpm
x11-libs/libX11"
DEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
cd ${PN}
}
src_compile() {
make -C ${PN}
}
src_install() {
dobin ${PN}/${PN}
dodoc README.rst wmtemp_sample
}