blob: 6536b2e19926c708e7aaca06c2c5f55bdd05ccb1 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/transcode-1.1.0_alpha7-r1.ebuild,v 1.1 2008/05/15 20:44:20 beandog Exp $
WANT_AUTOCONF="2.5"
WANT_AUTOMAKE="1.10"
inherit libtool flag-o-matic eutils multilib autotools
MY_PV=${PV/_alpha/alpha}
MY_P=${PN}-${MY_PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="video stream processing tool"
HOMEPAGE="http://www.transcoding.org/cgi-bin/transcode"
SRC_URI="http://fromani.exit1.org/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="X 3dnow a52 aac alsa altivec dv dvdread iconv imagemagick jpeg lzo mjpeg mp3 mmx nuv ogg oss postproc quicktime sdl sse sse2 theora truetype v4l2 vorbis x264 xvid xml"
RDEPEND="a52? ( media-libs/a52dec )
alsa? ( media-libs/alsa-lib )
dv? ( media-libs/libdv )
dvdread? ( media-libs/libdvdread )
xvid? ( media-libs/xvid )
mjpeg? ( media-video/mjpegtools )
lzo? ( >=dev-libs/lzo-2 )
imagemagick? ( media-gfx/imagemagick )
mp3? ( media-sound/lame )
sdl? ( media-libs/libsdl )
quicktime? ( >=media-libs/libquicktime-0.9.3 )
vorbis? ( media-libs/libvorbis )
ogg? ( media-libs/libogg )
theora? ( media-libs/libtheora )
jpeg? ( media-libs/jpeg )
truetype? ( >=media-libs/freetype-2 )
>=media-video/ffmpeg-0.4.9_p20080326
|| ( sys-libs/glibc dev-libs/libiconv )
media-libs/libmpeg2
x264? ( media-libs/x264 )
xml? ( dev-libs/libxml2 )
X? ( x11-libs/libXpm
x11-libs/libXaw
x11-libs/libXv )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
v4l2? ( >=sys-kernel/linux-headers-2.6.11 )"
# Make sure the assembler USE flags are unmasked on amd64
# Remove this once default-linux/amd64/2006.1 is deprecated
DEPEND="${DEPEND} amd64? ( >=sys-apps/portage-2.1.2 )"
pkg_setup() {
if use X && ! built_with_use media-libs/libsdl X; then
eerror "media-libs/libsdl must be built with the X use flag."
die "fix use flags"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
dosed -i -e "s:\$(datadir)/doc/transcode:\$(datadir)/doc/${PF}:" \
"${S}"/Makefile.am "${S}"/docs/Makefile.am "${S}"/docs/html/Makefile.am \
"${S}"/docs/release-notes/Makefile.am
# patch for new ffmpeg headers outlay, bug #214740
epatch "${FILESDIR}"/${P}-new-ffmpeg-headers.patch
eautoreconf
}
src_compile() {
filter-flags -maltivec -mabi=altivec -momit-leaf-frame-pointer
#145849
use amd64 && filter-flags -fweb
if use ppc || use ppc64 ; then
append-flags -U__ALTIVEC__
fi
append-flags -DDCT_YUV_PRECISION=1
use xvid && myconf="${myconf} --with-default-xvid=xvid4"
# NuppelVideo is supported only on x86 platform yet
# TODO: mask nuv useflag for all other arches
use x86 && myconf="${myconf} $(use_enable nuv)"
# TODO: these two need work
# $(use_enable postproc libpostproc) - compile error
# $(use_enable imagemagick) - can't find header
myconf="${myconf} \
$(use_enable mmx) \
$(use_enable 3dnow) \
$(use_enable sse) \
$(use_enable sse2) \
$(use_enable altivec) \
$(use_enable v4l2 v4l) \
$(use_enable alsa) \
$(use_enable oss) \
$(use_enable truetype freetype2) \
$(use_enable mp3 lame) \
$(use_enable x264) \
$(use_enable xvid) \
$(use_enable ogg) \
$(use_enable vorbis) \
$(use_enable theora) \
$(use_enable dvdread libdvdread) \
$(use_enable dv libdv) \
$(use_enable quicktime libquicktime) \
$(use_enable lzo) \
$(use_enable a52) \
$(use_enable aac faac) \
$(use_enable xml libxml2) \
$(use_enable mjpeg mjpegtools) \
$(use_enable sdl) \
$(use_enable jpeg libjpeg) \
$(use_enable iconv) \
$(use_with X x) \
--with-mod-path=/usr/$(get_libdir)/transcode \
--with-libpostproc-libs=/usr/$(get_libdir)"
econf ${myconf} || die "econf failed"
emake all || die "emake all failed"
}
src_install () {
make DESTDIR="${D}" install || die "make install failed"
rm -fr "${D}/usr/share/doc/transcode"
dodoc AUTHORS ChangeLog README TODO STYLE
dodoc docs/*
dohtml docs/html/*
}
|