Skip to content

Commit

Permalink
ogre: update to 13.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
catap authored and mascguy committed Jul 13, 2022
1 parent 2248e77 commit 7cc64c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions graphics/ogre/Portfile
Expand Up @@ -6,7 +6,7 @@ PortGroup cmake 1.1
PortGroup github 1.0
PortGroup compiler_blacklist_versions 1.0

github.setup OGRECave ogre 13.3.4 v
github.setup OGRECave ogre 13.4.1 v
github.tarball_from archive
revision 0
license MIT
Expand All @@ -27,9 +27,9 @@ long_description OGRE (Object-Oriented Graphics Rendering Engine) is a \
homepage https://www.ogre3d.org/
platforms darwin

checksums rmd160 ef40754d823da254c641fc0db307bdca58b4904b \
sha256 fb809bcaf5cdf2829f8a413784d7698091fbeefd3998ac202f4993d56893d96b \
size 91276695
checksums rmd160 133ea10a693c8bc92097e279ec747bb2f06bb662 \
sha256 23a2e7f0e0bb5236e126a2578c6407535b3f2689ecde1029d5f88e51cc419524 \
size 91814596

use_xcode yes

Expand Down

2 comments on commit 7cc64c2

@mascguy
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@catap Kirill, do you mind if I quickly update this port, to create directory ${prefix}/share/ogre/plugins? Reason being, it needs to exist, for some dependents to build properly.

The update will change phase post-destroot to the following. (Also, a mode doesn't need to be specified for xinstall, as the default for directory creation is 755.)

post-destroot {
    set ogre_share   ${destroot}${prefix}/share/${name}
    set ogre_config  ${ogre_share}/config
    set ogre_plugins ${ogre_share}/plugins

    xinstall -d ${ogre_config}
    move {*}[glob ${destroot}${prefix}/bin/*.cfg] ${ogre_config}

    xinstall -d ${ogre_plugins}
    destroot.keepdirs ${ogre_plugins}
}

@catap
Copy link
Contributor Author

@catap catap commented on 7cc64c2 Jul 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mascguy fine for me!

Please sign in to comment.