Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
beandog 09/06/02 17:13:26
Modified: ChangeLog alsa-headers-9999.ebuild
Log:
Update live ebuild to use git; Thanks to Alexey Charkov for ebuild, bug 231490
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.171 media-sound/alsa-headers/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsa-headers/ChangeLog?rev=1.171&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsa-headers/ChangeLog?rev=1.171&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsa-headers/ChangeLog?r1=1.170&r2=1.171
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/alsa-headers/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog 6 May 2009 17:48:39 -0000 1.170
+++ ChangeLog 2 Jun 2009 17:13:25 -0000 1.171
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/alsa-headers
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-headers/ChangeLog,v 1.170 2009/05/06 17:48:39 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-headers/ChangeLog,v 1.171 2009/06/02 17:13:25 beandog Exp $
+
+ 02 Jun 2009; Steve Dibb <beandog@g.o> alsa-headers-9999.ebuild:
+ Update live ebuild to use git; Thanks to Alexey Charkov for ebuild, bug
+ 231490
*alsa-headers-1.0.20 (06 May 2009)
1.7 media-sound/alsa-headers/alsa-headers-9999.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsa-headers/alsa-headers-9999.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsa-headers/alsa-headers-9999.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsa-headers/alsa-headers-9999.ebuild?r1=1.6&r2=1.7
Index: alsa-headers-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/alsa-headers/alsa-headers-9999.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- alsa-headers-9999.ebuild 25 Jan 2007 18:53:35 -0000 1.6
+++ alsa-headers-9999.ebuild 2 Jun 2009 17:13:25 -0000 1.7
@@ -1,8 +1,8 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-headers/alsa-headers-9999.ebuild,v 1.6 2007/01/25 18:53:35 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-headers/alsa-headers-9999.ebuild,v 1.7 2009/06/02 17:13:25 beandog Exp $
-inherit eutils mercurial
+inherit eutils git
DESCRIPTION="Header files for Advanced Linux Sound Architecture kernel modules"
HOMEPAGE="http://www.alsa-project.org/"
@@ -13,12 +13,12 @@
IUSE=""
DEPEND=""
+RDEPEND=""
RESTRICT="binchecks strip"
-EHG_PROJECT="alsa-driver"
-
-S="${WORKDIR}"
+EGIT_REPO_URI="git://git.alsa-project.org/alsa-kmirror.git"
+EGIT_PROJECT="alsa-kmirror"
# Remove the sound symlink workaround...
pkg_setup() {
@@ -28,16 +28,16 @@
}
src_unpack() {
- mercurial_fetch http://hg.alsa-project.org/alsa-kernel alsa-kernel
+ git_src_unpack
cd "${S}"
epatch "${FILESDIR}/${PN}-1.0.6a-user.patch"
}
-src_compile() { :; }
+src_compile() { : ; }
src_install() {
- cd "${S}/alsa-kernel/include"
+ cd "${S}/include"
insinto /usr/include/sound
doins *.h || die "include failed"
}
|
|