blob: d2e6928e40f2b570c9dd8d39887b2dc0c38b5b2f (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit cmake-utils
DESCRIPTION="Audio library used by OpenShot"
HOMEPAGE="http://www.openshot.org/ https://launchpad.net/libopenshot"
SRC_URI="https://launchpad.net/libopenshot/0.1/0.1.0/+download/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
media-libs/alsa-lib
media-libs/freetype
x11-libs/libX11
x11-libs/libXext
"
DEPEND="
x11-libs/libXinerama
x11-libs/libXrandr
${RDEPEND}
"
S="${WORKDIR}"
src_prepare() {
# fix under-linking
# https://github.com/OpenShot/libopenshot-audio/issues/3
sed -i 's/^\(target_link_libraries(.*\))$/\1 dl pthread)/' \
src/CMakeLists.txt || die
cmake-utils_src_prepare
}
|