diff options
author | 2013-09-01 11:51:16 +0000 | |
---|---|---|
committer | 2013-09-01 11:51:16 +0000 | |
commit | 04f740a37a9576788497470752b5ba4109154e12 (patch) | |
tree | 6824a2cc9a281360a98b858b1440f5060c669cde /media-libs/avidemux-plugins | |
parent | Marked *-macos (diff) | |
download | gentoo-2-04f740a37a9576788497470752b5ba4109154e12.tar.gz gentoo-2-04f740a37a9576788497470752b5ba4109154e12.tar.bz2 gentoo-2-04f740a37a9576788497470752b5ba4109154e12.zip |
Preparation for 2.6.5, make use of python-single-r1 and fix up shebangs, fixes bug #467254.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Diffstat (limited to 'media-libs/avidemux-plugins')
-rw-r--r-- | media-libs/avidemux-plugins/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild | 9 |
2 files changed, 12 insertions, 3 deletions
diff --git a/media-libs/avidemux-plugins/ChangeLog b/media-libs/avidemux-plugins/ChangeLog index 5affffd3f643..b2a6713c6ab7 100644 --- a/media-libs/avidemux-plugins/ChangeLog +++ b/media-libs/avidemux-plugins/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/avidemux-plugins # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/avidemux-plugins/ChangeLog,v 1.14 2013/08/31 15:50:30 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/avidemux-plugins/ChangeLog,v 1.15 2013/09/01 11:51:16 tomwij Exp $ + + 01 Sep 2013; Tom Wijsman <TomWij@gentoo.org> avidemux-plugins-9999.ebuild: + Preparation for 2.6.5, make use of python-single-r1 and fix up shebangs, fixes + bug #467254. 31 Aug 2013; Tom Wijsman <TomWij@gentoo.org> avidemux-plugins-9999.ebuild: Preparation for 2.6.5, fixed up src_install phase to properly call the diff --git a/media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild b/media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild index a84cc561de67..bdec18380703 100644 --- a/media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild +++ b/media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild @@ -1,10 +1,12 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild,v 1.2 2013/08/31 15:50:30 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild,v 1.3 2013/09/01 11:51:16 tomwij Exp $ EAPI="5" -inherit cmake-utils eutils flag-o-matic +PYTHON_COMPAT=( python2_7 ) + +inherit cmake-utils eutils flag-o-matic python-single-r1 SLOT="2.6" @@ -61,6 +63,7 @@ DEPEND=" xvid? ( media-libs/xvid:0 ) vorbis? ( media-libs/libvorbis:0 ) vpx? ( media-libs/libvpx:0 ) + ${PYTHON_DEPS} " RDEPEND="$DEPEND" @@ -135,4 +138,6 @@ src_install() { grep '^install/fast' Makefile && emake DESTDIR="${D}" install/fast popd > /dev/null || die done + + python_fix_shebang "${D}" } |