blob: 91c2ea61ba399a592f534d23130cc2dff771d1a0 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/qx11grab/qx11grab-0.3.1.ebuild,v 1.2 2012/02/20 13:17:18 tomka Exp $
EAPI=4
inherit cmake-utils
DESCRIPTION="X11 desktop video grabber tray"
HOMEPAGE="http://qx11grab.hjcms.de/"
SRC_URI="ftp://ftp.hjcms.de/qx11grab/${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
>=media-libs/alsa-lib-1.0.24
>=x11-libs/libX11-1.3.4
>=x11-libs/qt-dbus-4.7.2:4
>=x11-libs/qt-gui-4.7.2:4[dbus]
>=virtual/ffmpeg-0.9[X,encode]
"
DEPEND="${RDEPEND}
dev-util/pkgconfig
"
src_prepare() {
# install docs into standard Gentoo location
sed -i -e "s: share/\${CMAKE_PROJECT_NAME}: share/doc/${PF}:" \
CMakeLists.txt || die
}
|