diff options
Diffstat (limited to 'sys-power/acpitail/acpitail-0.1.ebuild')
-rw-r--r-- | sys-power/acpitail/acpitail-0.1.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sys-power/acpitail/acpitail-0.1.ebuild b/sys-power/acpitail/acpitail-0.1.ebuild new file mode 100644 index 000000000..bab256760 --- /dev/null +++ b/sys-power/acpitail/acpitail-0.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit toolchain-funcs + +DESCRIPTION="Shows in a tail-like way information of the battery-state, fan-states, temperatures." +HOMEPAGE="http://www.vanheusden.com/acpitail/" +SRC_URI="${HOMEPAGE}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="sys-libs/libacpi" +DEPEND="${RDEPEND}" + +src_compile() { + emake \ + CC=$(tc-getCC) || \ + die "emake failed" +} + +src_install() { + dobin ${PN} || die "installation of ${PN} failed" + dodoc readme.txt || die "nothing to read" +} |