Magellan Linux

Contents of /trunk/extras/ilmbase/ilmbase-2.1.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 21109 - (show annotations) (download)
Tue Mar 11 13:33:38 2014 UTC (10 years, 3 months ago) by niro
File size: 794 byte(s)
-added patch to fix undefined references
1 # $Id$
2
3 PNAME="ilmbase"
4 PVER="2.1.0"
5 PBUILD="r1"
6
7 PCAT="media-libs"
8
9 DESCRIPTION="OpenEXR ILM Base libraries."
10 HOMEPAGE="http://openexr.com/"
11
12 DEPEND=">= sys-libs/libstdc++-4.8"
13
14 SRCFILE="${PNAME}-${PVER}.tar.gz"
15 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
16
17 sminclude multilib
18 msetfeature "!check"
19
20 SRC_URI=(
21 http://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/distfiles/${SRCFILE}
22 http://download.savannah.nongnu.org/releases/openexr/${SRCFILE}
23 mirror://${PNAME}/${SRCFILE}
24 mirror://${PNAME}/${PNAME}-${PVER}-no_undefined.patch
25 )
26
27 UP2DATE="updatecmd http://download.savannah.nongnu.org/releases/openexr | grep ${PNAME}-[0-9] | lasttarball gz"
28
29 src_prepare()
30 {
31 munpack ${SRCFILE} || die
32
33 # fix undefined references
34 mpatch ${PNAME}-${PVER}-no_undefined.patch || die
35 mautoreconf || die
36 }