blob: 1a7cb42d805e36cd9a0487ef9c120a0d58e5f085 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/y4mscaler/y4mscaler-9.0.ebuild,v 1.2 2006/08/15 18:13:35 ticho Exp $
SRC_URI="http://www.mir.com/DMG/Software/${P}-src.tgz"
DESCRIPTION="y4mscaler is a video scaler which operates on YUV4MPEG2 streams, as used by the tools in the MJPEGtools project."
HOMEPAGE="http://www.mir.com/DMG/Software/"
LICENSE="GPL-2"
DEPEND=">=media-video/mjpegtools-1.8.0-r1"
KEYWORDS="x86"
SLOT="0"
src_compile() {
# There's no 'configure' script (yet)
sed -i -e "s:CPU_OPT =:CPU_OPT = ${CXXFLAGS}:" Makefile
emake
}
src_install() {
# The program doesn't have an install routine (for now)
dobin y4mscaler
doman y4mscaler.1
dodoc ChangeLog README TODO
}
|