* [gentoo-commits] gentoo-x86 commit in media-libs/avidemux-plugins: avidemux-plugins-2.6.2-r2.ebuild ChangeLog avidemux-plugins-2.6.2-r1.ebuild
@ 2013-03-24 11:12 Tom Wijsman (tomwij)
0 siblings, 0 replies; only message in thread
From: Tom Wijsman (tomwij) @ 2013-03-24 11:12 UTC (permalink / raw
To: gentoo-commits
tomwij 13/03/24 11:12:34
Modified: ChangeLog
Added: avidemux-plugins-2.6.2-r2.ebuild
Removed: avidemux-plugins-2.6.2-r1.ebuild
Log:
Revision bump. Now that the package is revised, the install target for avidemux-plugins became available because avidemux is seen as present on the system; changed preinstall to install in the avidemux-plugins ebuild such that the plugins are properly installed. Fixes bug #462514 and bug #462516.
(Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Revision Changes Path
1.2 media-libs/avidemux-plugins/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-plugins/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-plugins/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-plugins/ChangeLog?r1=1.1&r2=1.2
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/avidemux-plugins/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog 20 Mar 2013 14:03:52 -0000 1.1
+++ ChangeLog 24 Mar 2013 11:12:34 -0000 1.2
@@ -1,6 +1,15 @@
# 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.1 2013/03/20 14:03:52 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/avidemux-plugins/ChangeLog,v 1.2 2013/03/24 11:12:34 tomwij Exp $
+
+*avidemux-plugins-2.6.2-r2 (24 Mar 2013)
+
+ 24 Mar 2013; Tom Wijsman <TomWij@gentoo.org>
+ +avidemux-plugins-2.6.2-r2.ebuild, -avidemux-plugins-2.6.2-r1.ebuild:
+ Revision bump. Now that the package is revised, the install target for
+ avidemux-plugins became available because avidemux is seen as present on the
+ system; changed preinstall to install in the avidemux-plugins ebuild such that
+ the plugins are properly installed. Fixes bug #462514 and bug #462516.
*avidemux-plugins-2.6.2-r1 (20 Mar 2013)
1.1 media-libs/avidemux-plugins/avidemux-plugins-2.6.2-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-plugins/avidemux-plugins-2.6.2-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-plugins/avidemux-plugins-2.6.2-r2.ebuild?rev=1.1&content-type=text/plain
Index: avidemux-plugins-2.6.2-r2.ebuild
===================================================================
# 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-2.6.2-r2.ebuild,v 1.1 2013/03/24 11:12:34 tomwij Exp $
EAPI="5"
PLOCALES="ca cs de el es fr it ja pt_BR ru sr sr@latin tr"
inherit cmake-utils eutils flag-o-matic l10n toolchain-funcs
SLOT="2.6"
MY_PN="${PN/-plugins/}"
MY_P="${MY_PN}_${PV}"
DESCRIPTION="Plugins for avidemux; a video editor designed for simple cutting, filtering and encoding tasks."
HOMEPAGE="http://fixounet.free.fr/${MY_PN}"
SRC_URI="mirror://sourceforge/${MY_PN}/${PV}/${MY_P}.tar.gz"
# Multiple licenses because of all the bundled stuff.
LICENSE="GPL-1 GPL-2 MIT PSF-2 public-domain"
KEYWORDS="~amd64 ~x86"
IUSE="aften a52 alsa amr debug dts fontconfig jack lame libsamplerate mmx oss nls qt4 sdl vorbis truetype xvid x264 xv"
# TODO: Figure out which dependencies can be moved out of avidemux-core and avidemux into here.
RDEPEND="=media-video/avidemux-${PV}-r1"
DEPEND="$RDEPEND"
S="${WORKDIR}/${MY_P}"
PROCESSES="buildPluginsCommon:avidemux_plugins
buildPluginsCLI:avidemux_plugins"
use qt4 && PROCESSES+=" buildPluginsQt4:avidemux_plugins"
src_configure() {
local x mycmakeargs plugin_ui
mycmakeargs="
$(for x in ${IUSE}; do cmake-utils_use ${x/#-/}; done)
$(cmake-utils_use amr OPENCORE_AMRWB)
$(cmake-utils_use amr OPENCORE_AMRNB)
$(cmake-utils_use dts LIBDCA)
$(cmake-utils_use nls GETTEXT)
$(cmake-utils_use truetype FREETYPE2)
$(cmake-utils_use xv XVIDEO)
"
use debug && POSTFIX="_debug" && mycmakeargs+="-DVERBOSE=1 -DCMAKE_BUILD_TYPE=Debug"
for PROCESS in ${PROCESSES} ; do
SOURCE="${PROCESS%%:*}"
DEST="${PROCESS#*:}"
mkdir "${S}"/${SOURCE} || die "Can't create build folder."
cd "${S}"/${SOURCE} || die "Can't enter build folder."
if [[ "${SOURCE}" == "buildPluginsCommon" ]] ; then
plugin_ui="-DPLUGIN_UI=COMMON"
elif [[ "${SOURCE}" == "buildPluginsCLI" ]] ; then
plugin_ui="-DPLUGIN_UI=CLI"
elif [[ "${SOURCE}" == "buildPluginsQt4" ]] ; then
plugin_ui="-DPLUGIN_UI=QT4"
fi
cmake -DAVIDEMUX_SOURCE_DIR="${S}" \
-DCMAKE_INSTALL_PREFIX="/usr" \
${mycmakeargs} ${plugin_ui} -G "Unix Makefiles" ../"${DEST}${POSTFIX}/" || die "cmake failed."
done
}
src_compile() {
# Add lax vector typing for PowerPC.
if use ppc || use ppc64 ; then
append-cflags -flax-vector-conversions
fi
# See bug 432322.
use x86 && replace-flags -O0 -O1
for PROCESS in ${PROCESSES} ; do
SOURCE="${PROCESS%%:*}"
cd "${S}/${SOURCE}" || die "Can't enter build folder."
emake CC="$(tc-getCC)" CXX="$(tc-getCXX)"
done
}
src_install() {
for PROCESS in ${PROCESSES} ; do
SOURCE="${PROCESS%%:*}"
cd "${S}/${SOURCE}" || die "Can't enter build folder."
emake DESTDIR="${ED}" install
done
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2013-03-24 11:12 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-24 11:12 [gentoo-commits] gentoo-x86 commit in media-libs/avidemux-plugins: avidemux-plugins-2.6.2-r2.ebuild ChangeLog avidemux-plugins-2.6.2-r1.ebuild Tom Wijsman (tomwij)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox