Gentoo Archives: gentoo-commits

From: "Olivier Crete (tester)" <tester@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-laptop/i8kutils: ChangeLog i8kutils-1.25-r1.ebuild
Date: Wed, 29 Oct 2008 20:28:46
Message-Id: E1KvHel-00037i-4Q@stork.gentoo.org
1 tester 08/10/29 20:28:43
2
3 Modified: ChangeLog
4 Added: i8kutils-1.25-r1.ebuild
5 Log:
6 Fix init script, fixes bug #216742
7 (Portage version: 2.1.4.5)
8
9 Revision Changes Path
10 1.16 app-laptop/i8kutils/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-laptop/i8kutils/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-laptop/i8kutils/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-laptop/i8kutils/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 21 Apr 2007 23:10:58 -0000 1.15
23 +++ ChangeLog 29 Oct 2008 20:28:43 -0000 1.16
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-laptop/i8kutils
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/ChangeLog,v 1.15 2007/04/21 23:10:58 tester Exp $
28 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/ChangeLog,v 1.16 2008/10/29 20:28:43 tester Exp $
30 +
31 +*i8kutils-1.25-r1 (29 Oct 2008)
32 +
33 + 29 Oct 2008; Olivier CrĂȘte <tester@g.o> +files/i8k.init-r1,
34 + +i8kutils-1.25-r1.ebuild:
35 + Fix init script, fixes bug #216742
36
37 21 Apr 2007; Olivier CrĂȘte <tester@g.o> i8kutils-1.25.ebuild:
38 Use newconfd/newinitd (bug #174266)
39
40
41
42 1.1 app-laptop/i8kutils/i8kutils-1.25-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-laptop/i8kutils/i8kutils-1.25-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-laptop/i8kutils/i8kutils-1.25-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: i8kutils-1.25-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/i8kutils-1.25-r1.ebuild,v 1.1 2008/10/29 20:28:43 tester Exp $
52
53 DESCRIPTION="Dell Inspiron and Latitude utilities"
54 HOMEPAGE="http://people.debian.org/~dz/i8k/"
55 SRC_URI="http://people.debian.org/~dz/i8k/${P/-/_}.tar.gz"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="-* ~amd64 ~x86"
60 IUSE="tk"
61
62 DEPEND="virtual/libc
63 tk? ( >=dev-lang/tk-8.3.3 )"
64
65 src_compile() {
66 make all || die
67 }
68
69 src_install() {
70 dobin i8kbuttons i8kctl
71 doman i8kbuttons.1 i8kctl.1
72 dosym /usr/bin/i8kctl /usr/bin/i8kfan
73 dodoc README.i8kutils
74 docinto examples/
75 dodoc examples/*
76
77 newinitd ${FILESDIR}/i8k.init-r1 i8k
78 newconfd ${FILESDIR}/i8k.conf i8k
79
80 if use tk
81 then
82 dobin i8kmon
83 doman i8kmon.1
84 docinto /
85 dodoc i8kmon.conf
86 else
87 echo >> ${D}/etc/conf.d/i8k
88 echo '# i8kmon disabled because the package was installed without USE=tk' >> ${D}/etc/conf.d/i8k
89 echo 'NOMON=1' >> ${D}/etc/conf.d/i8k
90 fi
91
92 }