diff options
author | 2008-06-14 18:22:23 +0000 | |
---|---|---|
committer | 2008-06-14 18:22:23 +0000 | |
commit | 64afa83d11927b0eeba353119feeac13a569261e (patch) | |
tree | 8b0a28d9469d1b2cd4fca35dcb2b52f08cd6370e /app-laptop/macbook-backlight/macbook-backlight-0.3.ebuild | |
parent | Version bump (#219448) (diff) | |
download | gentoo-2-64afa83d11927b0eeba353119feeac13a569261e.tar.gz gentoo-2-64afa83d11927b0eeba353119feeac13a569261e.tar.bz2 gentoo-2-64afa83d11927b0eeba353119feeac13a569261e.zip |
Version bump for bug #226871
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-laptop/macbook-backlight/macbook-backlight-0.3.ebuild')
-rw-r--r-- | app-laptop/macbook-backlight/macbook-backlight-0.3.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-laptop/macbook-backlight/macbook-backlight-0.3.ebuild b/app-laptop/macbook-backlight/macbook-backlight-0.3.ebuild new file mode 100644 index 000000000000..4841a389fecb --- /dev/null +++ b/app-laptop/macbook-backlight/macbook-backlight-0.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-laptop/macbook-backlight/macbook-backlight-0.3.ebuild,v 1.1 2008/06/14 18:22:23 cedk Exp $ + +inherit toolchain-funcs eutils flag-o-matic + +DESCRIPTION="a tool to control the backlight intensity of macbook" +HOMEPAGE="http://dev.gentoo.org/~cedk/macbook-backlight/" +SRC_URI="http://dev.gentoo.org/~cedk/macbook-backlight/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="sys-apps/pciutils" +RDEPEND=$DEPEND + +src_compile() { + emake CC=$(tc-getCC) || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed" + dodoc README +} |