Magellan Linux

Annotation of /branches/R11-unstable/extras/libtheora/libtheora-1.1.1-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 25577 - (hide annotations) (download)
Tue Nov 25 03:58:47 2014 UTC (9 years, 5 months ago) by niro
File size: 1419 byte(s)
-release branches/R11-unstable
1 niro 8202 # $Id$
2    
3     PNAME="libtheora"
4     PVER="1.1.1"
5     PBUILD="r3"
6    
7 niro 10292 PCAT="media-libs"
8 niro 8202
9     DESCRIPTION="Theora is a free and open video compression format."
10     HOMEPAGE="http://www.theora.org/"
11    
12     DEPEND=">= media-libs/libogg-1.2
13     >= media-libs/libvorbis-1.3"
14    
15     SRCFILE="${PNAME}-${PVER/_/}.tar.gz"
16     SRCDIR="${BUILDDIR}/${PNAME}-${PVER/_/}"
17    
18     # enable linux32 emulation for x86_64 arches
19     EMUL_LINUX_32=true
20    
21     sminclude multilib
22    
23     SRC_URI=(
24     http://downloads.xiph.org/releases/${PNAME/lib/}/${SRCFILE}
25     mirror://${PNAME}/${SRCFILE}
26     mirror://${PNAME}/${PNAME}-1.0_beta2-cflags.patch
27     )
28    
29     UP2DATE="updatecmd 'http://downloads.xiph.org/releases/${PNAME/lib/}/?C=M;O=A' | lasttarball gz"
30    
31     src_prepare()
32     {
33     munpack ${SRCFILE} || die
34    
35     # force usage of our cflags
36     mpatch ${PNAME}-1.0_beta2-cflags.patch || die
37    
38 niro 8208 all-abis 'rm ${SRCDIR}-${abi}/ltmain.sh || die'
39 niro 8211 all-abis 'rm ${SRCDIR}-${abi}/aclocal.m4 || die'
40 niro 8213 all-abis 'libtoolize --install --force --verbose' || die
41 niro 8206
42 niro 8203 export WANT_AUTOMAKE=1.10
43 niro 8213 all-abis 'autoreconf --verbose --install --force -I m4' || die
44 niro 8202 }
45    
46     src_compile()
47     {
48     # disable docs creation; needs doxygen
49     export ac_cv_prog_HAVE_DOXYGEN="false"
50     mconfigure \
51     --enable-encode \
52     --disable-dependency-tracking \
53     --disable-examples \
54     --disable-sdltest \
55     || die
56    
57     mmake || die
58     }
59    
60     src_install()
61     {
62     # fix docdir
63     minstall_destdir docdir="usr/share/doc/${PNAME}-${PVER}" || die
64     minstalldocs AUTHORS CHANGES COPYING LICENSE README || die
65     }