blob: 7d79d015f16f5002e60236f4dcd3b5efcd1b2eb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-alsa/gst-plugins-alsa-0.8.2-r1.ebuild,v 1.11 2005/01/25 00:43:56 eradicator Exp $
inherit eutils gst-plugins
KEYWORDS="x86 ppc amd64 ia64 mips hppa ppc64"
IUSE=""
# should we depend on a kernel (?)
DEPEND=">=media-libs/alsa-lib-0.9.1"
src_unpack() {
gst-plugins_src_unpack
# fixes alsa seek/drag problem (#56215)
epatch ${FILESDIR}/${P}-alsasink_seek_fix.patch
}
pkg_postinst() {
gst-plugins_pkg_postinst
ewarn "This plugin has known problems on some hardware due to alsa bugs"
}
|