Gentoo Archives: gentoo-commits

From: "Steve Dibb (beandog)" <beandog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/alsa-headers: ChangeLog alsa-headers-9999.ebuild
Date: Tue, 02 Jun 2009 17:13:27
Message-Id: E1MBXYE-0005kV-0n@stork.gentoo.org
1 beandog 09/06/02 17:13:26
2
3 Modified: ChangeLog alsa-headers-9999.ebuild
4 Log:
5 Update live ebuild to use git; Thanks to Alexey Charkov for ebuild, bug 231490
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.171 media-sound/alsa-headers/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsa-headers/ChangeLog?rev=1.171&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsa-headers/ChangeLog?rev=1.171&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsa-headers/ChangeLog?r1=1.170&r2=1.171
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/alsa-headers/ChangeLog,v
18 retrieving revision 1.170
19 retrieving revision 1.171
20 diff -u -r1.170 -r1.171
21 --- ChangeLog 6 May 2009 17:48:39 -0000 1.170
22 +++ ChangeLog 2 Jun 2009 17:13:25 -0000 1.171
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-sound/alsa-headers
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-headers/ChangeLog,v 1.170 2009/05/06 17:48:39 beandog Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-headers/ChangeLog,v 1.171 2009/06/02 17:13:25 beandog Exp $
28 +
29 + 02 Jun 2009; Steve Dibb <beandog@g.o> alsa-headers-9999.ebuild:
30 + Update live ebuild to use git; Thanks to Alexey Charkov for ebuild, bug
31 + 231490
32
33 *alsa-headers-1.0.20 (06 May 2009)
34
35
36
37
38 1.7 media-sound/alsa-headers/alsa-headers-9999.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsa-headers/alsa-headers-9999.ebuild?rev=1.7&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsa-headers/alsa-headers-9999.ebuild?rev=1.7&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsa-headers/alsa-headers-9999.ebuild?r1=1.6&r2=1.7
43
44 Index: alsa-headers-9999.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-sound/alsa-headers/alsa-headers-9999.ebuild,v
47 retrieving revision 1.6
48 retrieving revision 1.7
49 diff -u -r1.6 -r1.7
50 --- alsa-headers-9999.ebuild 25 Jan 2007 18:53:35 -0000 1.6
51 +++ alsa-headers-9999.ebuild 2 Jun 2009 17:13:25 -0000 1.7
52 @@ -1,8 +1,8 @@
53 -# Copyright 1999-2007 Gentoo Foundation
54 +# Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-headers/alsa-headers-9999.ebuild,v 1.6 2007/01/25 18:53:35 flameeyes Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-headers/alsa-headers-9999.ebuild,v 1.7 2009/06/02 17:13:25 beandog Exp $
58
59 -inherit eutils mercurial
60 +inherit eutils git
61
62 DESCRIPTION="Header files for Advanced Linux Sound Architecture kernel modules"
63 HOMEPAGE="http://www.alsa-project.org/"
64 @@ -13,12 +13,12 @@
65 IUSE=""
66
67 DEPEND=""
68 +RDEPEND=""
69
70 RESTRICT="binchecks strip"
71
72 -EHG_PROJECT="alsa-driver"
73 -
74 -S="${WORKDIR}"
75 +EGIT_REPO_URI="git://git.alsa-project.org/alsa-kmirror.git"
76 +EGIT_PROJECT="alsa-kmirror"
77
78 # Remove the sound symlink workaround...
79 pkg_setup() {
80 @@ -28,16 +28,16 @@
81 }
82
83 src_unpack() {
84 - mercurial_fetch http://hg.alsa-project.org/alsa-kernel alsa-kernel
85 + git_src_unpack
86
87 cd "${S}"
88 epatch "${FILESDIR}/${PN}-1.0.6a-user.patch"
89 }
90
91 -src_compile() { :; }
92 +src_compile() { : ; }
93
94 src_install() {
95 - cd "${S}/alsa-kernel/include"
96 + cd "${S}/include"
97 insinto /usr/include/sound
98 doins *.h || die "include failed"
99 }