blob: ccf65046ee02502908ac583b37b225f2aaea21b2 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.1.3.ebuild,v 1.5 2009/10/06 17:29:03 armin76 Exp $
inherit libtool eutils cvs autotools
DESCRIPTION="A library based on quicktime4linux with extensions"
HOMEPAGE="http://libquicktime.sourceforge.net/"
SRC_URI=""
ECVS_SERVER="libquicktime.cvs.sourceforge.net:/cvsroot/libquicktime"
ECVS_MODULE="libquicktime"
ECVS_AUTH="pserver"
ECVS_USER="anonymous"
S="${WORKDIR}/${PN}"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS=""
IUSE="mmx X opengl dv gtk alsa aac encode png jpeg vorbis lame x264 ffmpeg doc schroedinger"
RDEPEND="dv? ( media-libs/libdv )
gtk? ( >=x11-libs/gtk+-2.4.0 )
aac? (
media-libs/faad2
encode? ( media-libs/faac )
)
alsa? ( >=media-libs/alsa-lib-1.0.16 )
png? ( media-libs/libpng )
jpeg? ( media-libs/jpeg )
vorbis? ( media-libs/libvorbis media-libs/libogg )
lame? ( media-sound/lame )
ffmpeg? ( >=media-video/ffmpeg-0.4.9_p20070616 )
x264? ( media-libs/x264 )
schroedinger? ( >=media-libs/schroedinger-1.0.5 )
X? ( x11-libs/libXaw
x11-libs/libXv
x11-libs/libXext
x11-libs/libX11
opengl? ( media-libs/mesa )
)
virtual/libintl
!virtual/quicktime"
DEPEND="${RDEPEND}
X? (
x11-proto/videoproto
x11-proto/xextproto
)
doc? ( app-doc/doxygen )
dev-util/pkgconfig
sys-devel/gettext"
PROVIDE="virtual/quicktime"
src_unpack() {
cvs_src_unpack
cd "${S}"
# Needed for sane .so versionning on g/fbsd
eautoreconf
elibtoolize
}
src_compile() {
local MY_OPTS=""
if use !encode || use !aac; then
MY_OPTS="--without-faac"
fi
econf --enable-shared \
--enable-static \
--enable-gpl \
$(use_with doc doxygen) \
$(use_enable mmx asm) \
$(use_with X x) \
$(use_with gtk) \
$(use_with dv libdv) \
$(use_with alsa) \
$(use_with aac faad2) \
$(use_with png libpng) \
$(use_with jpeg libjpeg) \
$(use vorbis || echo "--without-vorbis") \
$(use_with lame) \
$(use_with x264) \
$(use_with ffmpeg) \
$(use_with opengl) \
$(use_with schroedinger) \
${MY_OPTS} \
--without-cpuflags || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README TODO ChangeLog
# Compatibility with software that uses quicktime prefix, but
# don't do that when building for Darwin/MacOS
[[ ${CHOST} != *-darwin* ]] && \
dosym /usr/include/lqt /usr/include/quicktime
}
pkg_preinst() {
if [[ -d /usr/include/quicktime && ! -L /usr/include/quicktime ]]; then
elog "For compatibility with other quicktime libraries, ${PN} was"
elog "going to create a /usr/include/quicktime symlink, but for some"
elog "reason that is a directory on your system."
elog "Please check that is empty, and remove it, or submit a bug"
elog "telling us which package owns the directory."
die "/usr/include/quicktime is a directory."
fi
}
|