- Enable null renderer, it's needed for games/secretmaryochronicles update and doesn't seem to bring any extra depends - Fix library file naming The hack of renaming libCEGUIfoobar-X.Y.Z.so to libCEGUIfoobar-X.Y.so.Z breaks CEGUI itself, as the latter dlopens some of its modules, and filename string for dlopen is constructed in the libCEGUIfoobar-X.Y.Z.so way, so with libraries renamed cegui is not able to dynamically load modules. Renaming scheme is also not correct wrt .so versioning: if (part of) package version is used as a .so version, major (rather than minor) part should be used, as it usually changes ABI and it will not reset to 0 with the next major release. In this case (where port version is included in the library name), however, .so versioning doesn't even apply, so it should just be 0. Port maintainer (oliver@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: CVS)
Responsible Changed From-To: freebsd-ports-bugs->oliver Over to maintainer (via the GNATS Auto Assign Tool)
* Dmitry Marakasov (amdmi3@amdmi3.ru) wrote: I forgot to mention that library name fix also requires updating DEPENDS in games/ember, games/sumwars, games/rigsofrods and games/secretmaryochronicles. The last one may be skipped alone as I have an update for it anyway. -- Dmitry Marakasov . 55B5 0596 FF1E 8D84 5F56 9510 D35A 80DD F9D2 F77D amdmi3@amdmi3.ru ..: jabber: amdmi3@jabber.ru http://www.amdmi3.ru
amdmi3 2012-05-28 13:46:02 UTC FreeBSD ports repository Modified files: graphics/cegui Makefile pkg-plist games/ember Makefile games/sumwars Makefile Log: - Enable null renderer in cegui - Fix cegui library versioning scheme PR: 167831 Submitted by: myself Approved by: maintainer timeout (oliver, 2 weeks) Revision Changes Path 1.67 +2 -2 ports/games/ember/Makefile 1.4 +2 -2 ports/games/sumwars/Makefile 1.32 +4 -3 ports/graphics/cegui/Makefile 1.10 +30 -20 ports/graphics/cegui/pkg-plist _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed commit already happend about a month ago