summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2002-07-08 04:23:32 +0000
committerDaniel Robbins <drobbins@gentoo.org>2002-07-08 04:23:32 +0000
commit0f2b7931d016604a9a06cae27bc1342bbe99a06b (patch)
tree14659701ea1d97719b4c7e0e83a9a9928cbba66f /media-video/mjpegtools
parentnew version fixes the .la linking and repoman/lintool warnings and errors (diff)
downloadgentoo-2-0f2b7931d016604a9a06cae27bc1342bbe99a06b.tar.gz
gentoo-2-0f2b7931d016604a9a06cae27bc1342bbe99a06b.tar.bz2
gentoo-2-0f2b7931d016604a9a06cae27bc1342bbe99a06b.zip
repoman fixes
Diffstat (limited to 'media-video/mjpegtools')
-rw-r--r--media-video/mjpegtools/files/digest-mjpegtools-1.6.0-r12
-rw-r--r--media-video/mjpegtools/mjpegtools-1.6.0-r1.ebuild78
2 files changed, 0 insertions, 80 deletions
diff --git a/media-video/mjpegtools/files/digest-mjpegtools-1.6.0-r1 b/media-video/mjpegtools/files/digest-mjpegtools-1.6.0-r1
deleted file mode 100644
index e262f9879cee..000000000000
--- a/media-video/mjpegtools/files/digest-mjpegtools-1.6.0-r1
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 cb34077cc3460494bc3759e3655e5263 mjpegtools-1.6.0.tar.gz 928991
-MD5 963b168854e8f74590c71aaaaedf5177 quicktime4linux-1.4-patched.tar.gz 560533
diff --git a/media-video/mjpegtools/mjpegtools-1.6.0-r1.ebuild b/media-video/mjpegtools/mjpegtools-1.6.0-r1.ebuild
deleted file mode 100644
index ad28d0c582dc..000000000000
--- a/media-video/mjpegtools/mjpegtools-1.6.0-r1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Achim Gottinger <achim@gentoo.org>
-# Heavily modified by Ryan Tolboom <ryan@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/media-video/mjpegtools/mjpegtools-1.6.0-r1.ebuild,v 1.2 2002/07/08 04:20:42 spider Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Tools for MJPEG video"
-SRC_URI="http://download.sourceforge.net/mjpeg/${P}.tar.gz
- quicktime? ( http://download.sourceforge.net/mjpeg/quicktime4linux-1.4-patched.tar.gz )"
-HOMEPAGE="http://mjpeg.sourceforge.net/"
-KEYWORDS="x86"
-SLOT="1"
-LICENSE="as-is"
-
-RDEPEND="media-libs/jpeg
- media-libs/libpng
- =x11-libs/gtk+-1.2*
- X? ( x11-base/xfree )
- sdl? ( media-libs/libsdl )"
-
-DEPEND="${RDEPEND}
- media-libs/libmovtar
- quicktime? ( media-libs/quicktime4linux )
- mmx? ( >=media-libs/jpeg-mmx-1.1.2 )"
-
-src_unpack() {
-
- unpack ${A}
- cd quicktime4linux-1.4-patch
- cp libmjpeg.h libmjpeg.h.orig
- sed -e "s:\"jpeg/jpeglib.h\":<jpeglib.h>:" libmjpeg.h.orig > libmjpeg.h
- cp jpeg_old.h jpeg_old.h.orig
- sed -e "s:\"jpeg/jpeglib.h\":<jpeglib.h>:" jpeg_old.h.orig > jpeg_old.h
-
-}
-
-src_compile() {
-
- local myconf
-
- use gtk \
- && myconf="${myconf} --with-gtk-prefix=/usr"
-
- use X \
- && myconf="${myconf} --with-x" \
- || myconf="${myconf} --without-x"
-
- use mmx \
- && myconf="${myconf} --with-jpeg-mmx=/usr/include/jpeg-mmx --enable-mmx-accel"
-
- use avi \
- && myconf="${myconf} --without-aviplay"
-
- use quicktime && ( \
- myconf="${myconf} --with-quicktime=${WORKDIR}/quicktime4linux-1.4-patch"
- cd ${WORKDIR}/quicktime4linux-1.4-patch
- ./configure || die
- make || die
- )
-
- cd ${S}
- econf ${myconf} || die
-
- emake || die
-
-}
-
-src_install () {
-
- make \
- prefix=${D}/usr \
- mandir=${D}/usr/share/man \
- install || die
-
- dodoc mjpeg_howto.txt
-
-}