diff options
author | Cédric Krier <cedk@gentoo.org> | 2008-06-14 18:22:23 +0000 |
---|---|---|
committer | Cédric Krier <cedk@gentoo.org> | 2008-06-14 18:22:23 +0000 |
commit | 64afa83d11927b0eeba353119feeac13a569261e (patch) | |
tree | 8b0a28d9469d1b2cd4fca35dcb2b52f08cd6370e /app-laptop | |
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')
-rw-r--r-- | app-laptop/macbook-backlight/ChangeLog | 8 | ||||
-rw-r--r-- | app-laptop/macbook-backlight/macbook-backlight-0.3.ebuild | 26 |
2 files changed, 33 insertions, 1 deletions
diff --git a/app-laptop/macbook-backlight/ChangeLog b/app-laptop/macbook-backlight/ChangeLog index 69d8f8e15d68..94cf2869966c 100644 --- a/app-laptop/macbook-backlight/ChangeLog +++ b/app-laptop/macbook-backlight/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-laptop/macbook-backlight # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/macbook-backlight/ChangeLog,v 1.7 2008/04/05 11:42:58 cedk Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/macbook-backlight/ChangeLog,v 1.8 2008/06/14 18:22:23 cedk Exp $ + +*macbook-backlight-0.3 (14 Jun 2008) + + 14 Jun 2008; Cédric Krier <cedk@gentoo.org> + +macbook-backlight-0.3.ebuild: + Version bump for bug #226871 05 Apr 2008; Cédric Krier <cedk@gentoo.org> macbook-backlight-0.1.ebuild: Change SRC_URI 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 +} |