diff options
author | David Seifert <soap@gentoo.org> | 2017-12-25 14:06:34 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-25 15:42:05 +0100 |
commit | a6588bf7a00bd201adedbc02c589955764b277a2 (patch) | |
tree | e7fdbf77922ea86444fc1a51c41ea1d5e8fc17ae /app-benchmarks | |
parent | app-arch/xz-utils: [QA] Port to git-r3 (diff) | |
download | gentoo-a6588bf7a00bd201adedbc02c589955764b277a2.tar.gz gentoo-a6588bf7a00bd201adedbc02c589955764b277a2.tar.bz2 gentoo-a6588bf7a00bd201adedbc02c589955764b277a2.zip |
app-benchmarks/os-autoinst: [QA] Port to git-r3
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/os-autoinst/os-autoinst-9999.ebuild | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/app-benchmarks/os-autoinst/os-autoinst-9999.ebuild b/app-benchmarks/os-autoinst/os-autoinst-9999.ebuild index 2f46d77f4b83..f9dca04f3834 100644 --- a/app-benchmarks/os-autoinst/os-autoinst-9999.ebuild +++ b/app-benchmarks/os-autoinst/os-autoinst-9999.ebuild @@ -1,44 +1,41 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=6 -EGIT_REPO_URI="git://gitorious.org/os-autoinst/os-autoinst.git" - -inherit git-2 autotools eutils +inherit autotools git-r3 DESCRIPTION="automated testing of Operating Systems" HOMEPAGE="http://os-autoinst.org/" -SRC_URI="" +EGIT_REPO_URI="https://github.com/os-autoinst/os-autoinst.git" LICENSE="GPL-2" SLOT="0" -KEYWORDS="" -IUSE="" DEPEND=" - >=media-libs/opencv-2.4 -" + media-libs/libogg:= + media-libs/libsndfile:= + media-libs/libtheora:= + >=media-libs/opencv-2.4:= + sci-libs/fftw:3.0=" RDEPEND="${DEPEND} dev-lang/perl[ithreads] dev-perl/JSON app-emulation/qemu app-text/gocr media-gfx/imagemagick - media-video/ffmpeg2theora -" + media-video/ffmpeg2theora" src_prepare() { + default eautoreconf } src_configure() { - econf \ - --docdir="${EPREFIX}/usr/share/doc/${PF}" \ - --disable-static + econf --disable-static } src_install() { default - prune_libtool_files --all + find "${D}" -name '*.la' -delete || die } |