blob: 8b6ed4187dd862cf4649e6e35dc10ccd2e6c887b (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
EGIT_REPO_URI="git://gitorious.org/os-autoinst/os-autoinst.git"
inherit git-2 autotools eutils
DESCRIPTION="automated testing of Operating Systems"
HOMEPAGE="http://os-autoinst.org/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="
>=media-libs/opencv-2.4
"
RDEPEND="${DEPEND}
dev-lang/perl[ithreads]
dev-perl/JSON
app-emulation/qemu
app-text/gocr
media-gfx/imagemagick
media-video/ffmpeg2theora
"
src_prepare() {
eautoreconf
}
src_configure() {
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--disable-static
}
src_install() {
default
prune_libtool_files --all
}
|