diff options
author | 2006-04-25 01:41:10 +0000 | |
---|---|---|
committer | 2006-04-25 01:41:10 +0000 | |
commit | 5ec355231a40e1fa7a64284788f8b8ba9f4d3cd6 (patch) | |
tree | c49d32218753c8f83a1b5363d9f3657aa67e57a3 /media-libs/openexr/openexr-1.2.2-r2.ebuild | |
parent | Added patch to fix textrels on x86 thanks to PaX Team. See bug #90287. (diff) | |
download | gentoo-2-5ec355231a40e1fa7a64284788f8b8ba9f4d3cd6.tar.gz gentoo-2-5ec355231a40e1fa7a64284788f8b8ba9f4d3cd6.tar.bz2 gentoo-2-5ec355231a40e1fa7a64284788f8b8ba9f4d3cd6.zip |
Don't use /var/tmp for tests temporary data, use $T instead. Thanks to Beech Horn in bug #130585 for reporting.
(Portage version: 2.1_pre9-r4)
Diffstat (limited to 'media-libs/openexr/openexr-1.2.2-r2.ebuild')
-rw-r--r-- | media-libs/openexr/openexr-1.2.2-r2.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/media-libs/openexr/openexr-1.2.2-r2.ebuild b/media-libs/openexr/openexr-1.2.2-r2.ebuild index 906afbfc47f1..64501ec8dd3b 100644 --- a/media-libs/openexr/openexr-1.2.2-r2.ebuild +++ b/media-libs/openexr/openexr-1.2.2-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr/openexr-1.2.2-r2.ebuild,v 1.3 2006/04/14 10:39:42 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr/openexr-1.2.2-r2.ebuild,v 1.4 2006/04/25 01:41:10 flameeyes Exp $ inherit eutils libtool @@ -25,7 +25,9 @@ src_unpack() { sed -i -e "s:OpenEXR-@OPENEXR_VERSION@:\$\(P\):" ${S}/IlmImfExamples/Makefile.in sed -i -e "s:NVSDK_CXXFLAGS=\"\":NVSDK_CXXFLAGS=\"-DUNIX\":" ${S}/acinclude.m4 - epatch ${FILESDIR}/openexr-1.2.2-gcc4.patch + epatch "${FILESDIR}/openexr-1.2.2-gcc4.patch" + # Replace the temporary directory used for tests + sed -i -e 's:"/var/tmp/":'"${T}"':' "${S}/IlmImfTest/tmpDir.h" elibtoolize } |