diff options
author | 2014-03-10 19:32:43 +0000 | |
---|---|---|
committer | 2014-03-10 19:32:43 +0000 | |
commit | a3e02affebded03d6780065164632c9bc92ab890 (patch) | |
tree | 3c65665af88fb9dc0f823fcbe5398acc73158345 /media-video | |
parent | Version bump. Remove old (diff) | |
download | gentoo-2-a3e02affebded03d6780065164632c9bc92ab890.tar.gz gentoo-2-a3e02affebded03d6780065164632c9bc92ab890.tar.bz2 gentoo-2-a3e02affebded03d6780065164632c9bc92ab890.zip |
Update waf and wayland dependency in 9999, thanks to Nikoli.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/mpv/ChangeLog | 5 | ||||
-rw-r--r-- | media-video/mpv/mpv-9999.ebuild | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/media-video/mpv/ChangeLog b/media-video/mpv/ChangeLog index a10f3fd9e444..59e291c8942e 100644 --- a/media-video/mpv/ChangeLog +++ b/media-video/mpv/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/mpv # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/mpv/ChangeLog,v 1.58 2014/02/13 17:45:33 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/mpv/ChangeLog,v 1.59 2014/03/10 19:32:43 maksbotan Exp $ + + 10 Mar 2014; Maxim Koltsov <maksbotan@gentoo.org> mpv-9999.ebuild: + Update waf and wayland dependency in 9999, thanks to Nikoli. *mpv-0.3.5 (13 Feb 2014) diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild index 1b9ceefe664b..919cbe470b08 100644 --- a/media-video/mpv/mpv-9999.ebuild +++ b/media-video/mpv/mpv-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/mpv/mpv-9999.ebuild,v 1.39 2014/01/25 13:29:24 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/mpv/mpv-9999.ebuild,v 1.40 2014/03/10 19:32:43 maksbotan Exp $ EAPI=5 @@ -9,9 +9,11 @@ EGIT_REPO_URI="https://github.com/mpv-player/mpv.git" inherit base waf-utils pax-utils [[ ${PV} == *9999* ]] && inherit git-r3 +WAF_V="1.7.15" + DESCRIPTION="Video player based on MPlayer/mplayer2" HOMEPAGE="http://mpv.io/" -SRC_URI="https://waf.googlecode.com/files/waf-1.7.13" +SRC_URI="https://waf.googlecode.com/files/waf-${WAF_V}" [[ ${PV} == *9999* ]] || \ SRC_URI+=" https://github.com/mpv-player/mpv/archive/v${PV}.tar.gz -> ${P}.tar.gz" @@ -109,7 +111,7 @@ RDEPEND+=" samba? ( net-fs/samba ) v4l? ( media-libs/libv4l ) wayland? ( - >=dev-libs/wayland-1.2.0 + >=dev-libs/wayland-1.3.0 media-libs/mesa[egl,wayland] >=x11-libs/libxkbcommon-0.3.0 ) @@ -150,7 +152,7 @@ src_unpack() { default_src_unpack fi - cp "${DISTDIR}"/waf-1.7.13 "${S}"/waf || die + cp "${DISTDIR}"/waf-${WAF_V} "${S}"/waf || die chmod 0755 "${S}"/waf || die } |