diff options
author | 2015-04-02 06:02:47 +0000 | |
---|---|---|
committer | 2015-04-02 06:02:47 +0000 | |
commit | 43d6cbd7e6330c8130fab0c880c437f1d448f2d7 (patch) | |
tree | 733441aa61566b8edb139f3e5ccb954d9175ae34 | |
parent | bump & drop old, bug 544886 (diff) | |
download | gentoo-2-43d6cbd7e6330c8130fab0c880c437f1d448f2d7.tar.gz gentoo-2-43d6cbd7e6330c8130fab0c880c437f1d448f2d7.tar.bz2 gentoo-2-43d6cbd7e6330c8130fab0c880c437f1d448f2d7.zip |
Bump
(Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
-rw-r--r-- | media-video/movit/ChangeLog | 9 | ||||
-rw-r--r-- | media-video/movit/movit-1.1.3.ebuild | 35 |
2 files changed, 42 insertions, 2 deletions
diff --git a/media-video/movit/ChangeLog b/media-video/movit/ChangeLog index 96891b738b8e..a8c41bd4cc62 100644 --- a/media-video/movit/ChangeLog +++ b/media-video/movit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-video/movit -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/movit/ChangeLog,v 1.3 2014/08/14 05:30:39 patrick Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/movit/ChangeLog,v 1.4 2015/04/02 06:02:47 patrick Exp $ + +*movit-1.1.3 (02 Apr 2015) + + 02 Apr 2015; Patrick Lauer <patrick@gentoo.org> +movit-1.1.3.ebuild: + Bump *movit-1.1.2 (14 Aug 2014) diff --git a/media-video/movit/movit-1.1.3.ebuild b/media-video/movit/movit-1.1.3.ebuild new file mode 100644 index 000000000000..a114fe0fed85 --- /dev/null +++ b/media-video/movit/movit-1.1.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/movit/movit-1.1.3.ebuild,v 1.1 2015/04/02 06:02:47 patrick Exp $ + +EAPI=5 + +# no sane way to use OpenGL from within tests? +RESTRICT="test" + +DESCRIPTION="Modern Video Toolkit" +HOMEPAGE="http://movit.sesse.net/" +# Tests need gtest, makefile unconditionally builds tests, so ... yey! +SRC_URI="http://movit.sesse.net/${P}.tar.gz + http://googletest.googlecode.com/files/gtest-1.7.0.zip" +LICENSE="GPL-2+" +SLOT="0" + +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="media-libs/mesa + =dev-cpp/eigen-3* + media-libs/libepoxy + sci-libs/fftw + media-libs/libsdl2 + " +DEPEND="${RDEPEND}" + +src_compile() { + GTEST_DIR="${WORKDIR}/gtest-1.7.0" emake +} + +src_test() { + GTEST_DIR="${WORKDIR}/gtest-1.7.0" emake check +} |