# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit flag-o-matic toolchain-funcs eutils M4V="1" DESCRIPTION="Tools for MJPEG video" HOMEPAGE="http://mjpeg.sourceforge.net/" SRC_URI="mirror://sourceforge/mjpeg/${P}.tar.gz" LICENSE="as-is" SLOT="1" KEYWORDS="~amd64 ~x86" IUSE="gtk avi dv quicktime sdl X yv12 3dnow mmx sse v4l dga" RDEPEND="media-libs/jpeg x86? ( media-libs/libmovtar mmx? ( >=media-libs/jpeg-mmx-0.1.6 ) ) gtk? ( =x11-libs/gtk+-1.2* =dev-libs/glib-1.2* ) avi? ( media-video/avifile ) dv? ( >=media-libs/libdv-0.99 ) quicktime? ( virtual/quicktime ) sdl? ( >=media-libs/libsdl-1.2.7-r3 ) X? ( virtual/x11 )" DEPEND="${RDEPEND} x86? ( mmx? ( dev-lang/nasm ) 3dnow? ( dev-lang/nasm ) sse? ( dev-lang/nasm ) ) >=sys-apps/sed-4 sys-devel/autoconf =sys-devel/automake-1.5*" src_unpack() { unpack ${A} ; cd ${S} use X || epatch "${FILESDIR}/no-x11-lib-2.patch" } src_compile() { local myconf if use yv12 && use dv; then myconf="${myconf} --with-dv-yv12" elif use yv12; then ewarn "yv12 support is possible when 'dv' is in your USE flags." fi # This could be changed to allow building on g/fbsd in the future. if use x86 || use amd64; then if use mmx || use 3dnow || use sse || use amd64; then myconf="${myconf} --enable-simd-accel" fi if use mmx; then myconf="${myconf} --with-jpeg-mmx=/usr/include/jpeg-mmx" fi if [[ ${CHOST/i686/} != ${CHOST} ]] || [[ ${CHOST/x86_64/} != ${CHOST} ]]; then myconf="${myconf} --enable-cmov-extension" fi #[[ $(gcc-major-version) -eq 3 ]] && append-flags -mno-sse2 fi econf \ $(use_with X x) \ $(use_enable dga xfree-ext) \ $(use_with quicktime) \ $(use_with v4l) \ $(use_with gtk) \ $(use_with sdl) \ $(use_with dv dv /usr) \ --enable-largefile \ ${myconf} || die "configure failed" make || die "make failed" cd docs local infofile for infofile in mjpeg*info*; do echo "INFO-DIR-SECTION Miscellaneous" >> ${infofile} echo "START-INFO-DIR-ENTRY" >> ${infofile} echo "* mjpeg-howto: (mjpeg-howto). How to use the mjpeg-tools" >> ${infofile} echo "END-INFO-DIR-ENTRY" >> ${infofile} done } src_install() { einstall || die "install failed" dodoc mjpeg_howto.txt README PLANS NEWS README.AltiVec README.avilib \ README.DV README.glav README.lavpipe README.transist TODO \ HINTS BUGS ChangeLog AUTHORS CHANGES }