diff options
author | Alexis Ballier <aballier@gentoo.org> | 2015-02-18 14:36:26 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2015-02-18 14:36:26 +0000 |
commit | fbcffa0c2a9a74e9dbdc4e6d8b3471bf4116389c (patch) | |
tree | ee6739184f7098cd8a1f30be2d68d7d4b37bd4eb /media-video | |
parent | rework a bit cpu features handling to pass only relevant options to configure (diff) | |
download | gentoo-2-fbcffa0c2a9a74e9dbdc4e6d8b3471bf4116389c.tar.gz gentoo-2-fbcffa0c2a9a74e9dbdc4e6d8b3471bf4116389c.tar.bz2 gentoo-2-fbcffa0c2a9a74e9dbdc4e6d8b3471bf4116389c.zip |
cosmetics
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/ffmpeg/ChangeLog | 5 | ||||
-rw-r--r-- | media-video/ffmpeg/ffmpeg-9999.ebuild | 13 |
2 files changed, 9 insertions, 9 deletions
diff --git a/media-video/ffmpeg/ChangeLog b/media-video/ffmpeg/ChangeLog index aebee7c30bd2..aa371ebb18c3 100644 --- a/media-video/ffmpeg/ChangeLog +++ b/media-video/ffmpeg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/ffmpeg # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.835 2015/02/18 14:28:33 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.836 2015/02/18 14:36:26 aballier Exp $ + + 18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild: + cosmetics 18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild: rework a bit cpu features handling to pass only relevant options to configure diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild index 67133a9bd465..7efc3318a299 100644 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.184 2015/02/18 14:28:33 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.185 2015/02/18 14:36:26 aballier Exp $ EAPI="5" @@ -147,11 +147,8 @@ CPU_FEATURES_MAP=" amd64:X86 " -FFTOOLS="aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart trasher" - -for i in ${FFTOOLS}; do - IUSE="${IUSE} +fftools_$i" -done +FFTOOLS=( aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart trasher ) +IUSE="${IUSE} ${FFTOOLS[@]/#/+fftools_}" RDEPEND=" alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] ) @@ -419,7 +416,7 @@ multilib_src_compile() { emake V=1 if multilib_is_native_abi; then - for i in ${FFTOOLS} ; do + for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then emake V=1 tools/${i} fi @@ -431,7 +428,7 @@ multilib_src_install() { emake V=1 DESTDIR="${D}" install install-man if multilib_is_native_abi; then - for i in ${FFTOOLS} ; do + for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then dobin tools/${i} fi |