diff options
author | Thomas Bracht Laumann Jespersen <t@laumann.xyz> | 2022-06-08 22:03:29 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-16 17:30:35 +0100 |
commit | b52b1b35164c0f54776cc4719e66101e2f35f23d (patch) | |
tree | 5233305d0ac245ab3e1ef4d6bc5f838bdcb7970e /media-gfx/povray | |
parent | media-gfx/blender: fix unquoted variable ED (diff) | |
download | gentoo-b52b1b35164c0f54776cc4719e66101e2f35f23d.tar.gz gentoo-b52b1b35164c0f54776cc4719e66101e2f35f23d.tar.bz2 gentoo-b52b1b35164c0f54776cc4719e66101e2f35f23d.zip |
media-gfx/povray: fix unquoted variables
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/povray')
-rw-r--r-- | media-gfx/povray/povray-3.7.0.0-r1.ebuild | 4 | ||||
-rw-r--r-- | media-gfx/povray/povray-3.7.0.0-r2.ebuild | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/media-gfx/povray/povray-3.7.0.0-r1.ebuild b/media-gfx/povray/povray-3.7.0.0-r1.ebuild index ff38982430aa..1bca37a88528 100644 --- a/media-gfx/povray/povray-3.7.0.0-r1.ebuild +++ b/media-gfx/povray/povray-3.7.0.0-r1.ebuild @@ -73,8 +73,8 @@ src_prepare() { -e 's:${povdatadir}/$PACKAGE-$VERSION_BASE:${povdatadir}/'${PN}':g' \ -e 's:${povdatadir}/doc/$PACKAGE-$VERSION_BASE:${povdatadir}/doc/'${PF}':g' \ -e 's:BOOST_THREAD_LIBS $LIBS:BOOST_THREAD_LIBS $LIBS -lboost_date_time:g' \ - -e 's:"/usr/include":"'${EPREFIX}'/usr/include":' \ - -e 's:"/usr/lib":"'${EPREFIX}'/usr/'$(get_libdir)'":' \ + -e "s:\"/usr/include\":\"${EPREFIX}/usr/include\":" \ + -e "s:\"/usr/lib\":\"${EPREFIX}/usr/$(get_libdir)\":" \ -i configure.ac || die sed \ diff --git a/media-gfx/povray/povray-3.7.0.0-r2.ebuild b/media-gfx/povray/povray-3.7.0.0-r2.ebuild index a06a580bf170..d9ac74594419 100644 --- a/media-gfx/povray/povray-3.7.0.0-r2.ebuild +++ b/media-gfx/povray/povray-3.7.0.0-r2.ebuild @@ -70,8 +70,8 @@ src_prepare() { -e 's:${povdatadir}/$PACKAGE-$VERSION_BASE:${povdatadir}/'${PN}':g' \ -e 's:${povdatadir}/doc/$PACKAGE-$VERSION_BASE:${povdatadir}/doc/'${PF}':g' \ -e 's:BOOST_THREAD_LIBS $LIBS:BOOST_THREAD_LIBS $LIBS -lboost_date_time:g' \ - -e 's:"/usr/include":"'${EPREFIX}'/usr/include":' \ - -e 's:"/usr/lib":"'${EPREFIX}'/usr/'$(get_libdir)'":' \ + -e "s:\"/usr/include\":\"${EPREFIX}/usr/include\":" \ + -e "s:\"/usr/lib\":\"${EPREFIX}/usr/$(get_libdir)\":" \ -i configure.ac || die sed \ @@ -99,7 +99,7 @@ src_configure() { # but the code compiles using incorrect [default] paths # (based on /usr/local...), so povray will not find the system # config files without the following fix: - append-cppflags -DPOVLIBDIR=\\\"${EROOT}usr/share/${PN}\\\" -DPOVCONFDIR=\\\"${EROOT}etc/${PN}\\\" + append-cppflags -DPOVLIBDIR=\\\""${EROOT}"usr/share/${PN}\\\" -DPOVCONFDIR=\\\""${EROOT}"etc/${PN}\\\" # TODO: Restore OpenEXR if upstream start to support OpenEXR 3/imath econf \ |