blob: 2457aa55c332e0a7e1b4027e965b6824920cc4e7 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Desktop session recorder producing Ogg video/audio files"
HOMEPAGE="https://recordmydesktop.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/recordmydesktop/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
IUSE="alsa jack"
RDEPEND="x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXdamage
media-libs/libvorbis
media-libs/libogg
media-libs/libtheora[encode]
x11-libs/libICE
x11-libs/libSM
alsa? ( media-libs/alsa-lib )
jack? ( virtual/jack )"
DEPEND="${RDEPEND}
x11-base/xorg-proto"
src_prepare() {
default
sed -i \
-e 's:shmstr.h:shmproto.h:g' \
src/rmd_{getzpixmap.c,update_image.c} || die
# fix weird Framerates with new libtheora
eapply "${FILESDIR}/${PV}-fix_new_theora.patch"
# fix check for jack support
eapply "${FILESDIR}/${PV}-fix-libjack-check.patch"
eautoreconf
}
src_configure() {
econf \
$(use_enable !alsa oss) \
$(use_enable jack)
}
|