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-video/mjpegtools/mjpegtools-2.0.0-r3.ebuild

96 lines
2.5 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/mjpegtools/mjpegtools-2.0.0-r3.ebuild,v 1.7 2012/11/27 15:52:39 jer Exp $
EAPI=4
inherit autotools eutils flag-o-matic toolchain-funcs
MY_P=${P/_/}
DESCRIPTION="Tools for MJPEG video"
HOMEPAGE="http://mjpeg.sourceforge.net/"
SRC_URI="mirror://sourceforge/mjpeg/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="~alpha amd64 hppa ppc ppc64 ~sparc x86 ~amd64-fbsd"
IUSE="dga dv gtk mmx png quicktime sdl sdlgfx static-libs v4l"
REQUIRED_USE="sdlgfx? ( sdl )"
RDEPEND="virtual/jpeg
quicktime? ( media-libs/libquicktime )
dv? ( >=media-libs/libdv-0.99 )
png? ( media-libs/libpng )
dga? ( x11-libs/libXxf86dga )
gtk? ( x11-libs/gtk+:2 )
sdl? ( >=media-libs/libsdl-1.2.7-r3
x11-libs/libX11
x11-libs/libXt
sdlgfx? ( media-libs/sdl-gfx )
)"
DEPEND="${RDEPEND}
mmx? ( dev-lang/nasm )
>=sys-apps/sed-4
sys-apps/gawk
virtual/pkgconfig"
S="${WORKDIR}/${P/_rc*}"
pkg_pretend() {
if has_version ">=sys-kernel/linux-headers-2.6.38" && use v4l; then
ewarn "Current versions of mjpegtools only support V4L1 which is not available"
ewarn "for kernel versions 2.6.38 and above. V4L1 will be disabled."
fi
}
# Avoid execution of linux-info_pkg_setup()
pkg_setup() { : ; }
src_prepare() {
epatch "${FILESDIR}"/${P}-sdlgfx-automagic.patch
epatch "${FILESDIR}"/${P}-gcc470.patch
epatch "${FILESDIR}"/${P}-stream-params-include.patch
eautoreconf
sed -i -e '/ARCHFLAGS=/s:=.*:=:' configure
}
src_configure() {
[[ $(gcc-major-version) -eq 3 ]] && append-flags -mno-sse2
econf \
--enable-compile-warnings \
$(use_enable mmx simd-accel) \
$(use_enable static-libs static) \
--enable-largefile \
$(use_with quicktime libquicktime) \
$(use_with dv libdv) \
$(use_with png libpng) \
$(use_with dga) \
$(use_with gtk) \
$(use_with sdl libsdl) \
$(use_with sdlgfx) \
$(use_with v4l) \
$(use_with sdl x)
}
src_install() {
default
dodoc mjpeg_howto.txt PLANS HINTS docs/FAQ.txt
find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
}
pkg_postinst() {
# uncomment this in the next version
# if [[ -z "${REPLACING_VERSIONS}" ]]; then
elog "mjpegtools installs user contributed scripts which require additional"
elog "dependencies not pulled in by the installation."
elog "These have to be installed manually."
elog "Currently known extra dpendencies are: ffmpeg, mencoder from mplayer,"
elog "parts of transcode, mpeg2dec from libmpeg2, sox, toolame, vcdimager, python."
# fi
}