You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.13-...

49 lines
1.4 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.13-r2.ebuild,v 1.11 2013/02/07 13:12:22 ago Exp $
EAPI=4
inherit base eutils flag-o-matic
MY_PN=${PN/-plugins}
MY_P=${MY_PN}-${PV}
# Create a major/minor combo for SLOT
PVP=(${PV//[-\._]/ })
SLOT=${PVP[0]}.${PVP[1]}
DESCRIPTION="FFmpeg based gstreamer plugin"
HOMEPAGE="http://gstreamer.freedesktop.org/modules/gst-ffmpeg.html"
SRC_URI="http://gstreamer.freedesktop.org/src/${MY_PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd"
IUSE="+orc"
S=${WORKDIR}/${MY_P}
# the libpostproc dep should be cleaned in future
RDEPEND=">=media-libs/gstreamer-0.10.31:0.10
>=media-libs/gst-plugins-base-0.10.31:0.10
>=virtual/ffmpeg-0.10
|| ( media-video/ffmpeg media-libs/libpostproc <media-video/libav-0.8.2-r1 )
orc? ( >=dev-lang/orc-0.4.6 )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_configure() {
# always use system ffmpeg if possible
econf \
--with-system-ffmpeg \
$(use_enable orc)
}
pkg_postinst() {
if has_version "media-video/ffmpeg"; then
elog "Please note that upstream uses media-video/libav"
elog "rather than media-video/ffmpeg. If you encoutner any"
elog "issues try to move from ffmpeg to libav."
fi
}