diff --git a/archivers/unshield/Makefile b/archivers/unshield/Makefile index 5d2d7dbd6fee..d90cbdc271fa 100644 --- a/archivers/unshield/Makefile +++ b/archivers/unshield/Makefile @@ -1,22 +1,24 @@ PORTNAME= unshield -PORTVERSION= 1.5.1 +PORTVERSION= 1.6.2 CATEGORIES= archivers MAINTAINER= sunpoet@FreeBSD.org COMMENT= Extract data from InstallShield CAB files WWW= https://github.com/twogood/unshield LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake cpe pathfix ssl CFLAGS+= -fPIC USE_LDCONFIG= yes +PLIST_SUB= PORTVERSION=${PORTVERSION} + CPE_VENDOR= unshield_project GH_ACCOUNT= twogood USE_GITHUB= yes .include diff --git a/archivers/unshield/distinfo b/archivers/unshield/distinfo index ddbc0e410278..4eaf37f75d4d 100644 --- a/archivers/unshield/distinfo +++ b/archivers/unshield/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1641045780 -SHA256 (twogood-unshield-1.5.1_GH0.tar.gz) = 34cd97ff1e6f764436d71676e3d6842dc7bd8e2dd5014068da5c560fe4661f60 -SIZE (twogood-unshield-1.5.1_GH0.tar.gz) = 67454 +TIMESTAMP = 1744288694 +SHA256 (twogood-unshield-1.6.2_GH0.tar.gz) = a937ef596ad94d16e7ed2c8553ad7be305798dcdcfd65ae60210b1e54ab51a2f +SIZE (twogood-unshield-1.6.2_GH0.tar.gz) = 42833 diff --git a/archivers/unshield/pkg-plist b/archivers/unshield/pkg-plist index 47d864ce825b..bc927b54b304 100644 --- a/archivers/unshield/pkg-plist +++ b/archivers/unshield/pkg-plist @@ -1,7 +1,9 @@ bin/unshield include/libunshield.h +lib/cmake/unshield/unshieldConfig-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/unshield/unshieldConfig.cmake lib/libunshield.so -lib/libunshield.so.0 -lib/libunshield.so.0.0.0 +lib/libunshield.so.1 +lib/libunshield.so.%%PORTVERSION%% libdata/pkgconfig/libunshield.pc share/man/man1/unshield.1.gz diff --git a/games/openmw/Makefile b/games/openmw/Makefile index 975bd5612dd6..63e7b0e5094d 100644 --- a/games/openmw/Makefile +++ b/games/openmw/Makefile @@ -1,71 +1,71 @@ PORTNAME= openmw DISTVERSIONPREFIX= openmw- DISTVERSION= 0.48.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= games MAINTAINER= fluffy@FreeBSD.org COMMENT= Unofficial open source engine reimplementation of the game Morrowind WWW= https://openmw.org/ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_FreeBSD_15_aarch64= clang crashes, see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=276702 BROKEN_FreeBSD_15_amd64= clang crashes, see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=276702 LIB_DEPENDS= libavcodec.so.60:multimedia/ffmpeg \ libboost_thread.so:devel/boost-libs \ libMyGUIEngine.so:x11-toolkits/mygui \ libBulletCollision.so:devel/bullet@double \ libosg.so:graphics/osg \ libRecast.so:graphics/recastnavigation \ libunshield.so:archivers/unshield \ liblz4.so:archivers/liblz4 \ libicui18n.so:devel/icu \ libyaml-cpp.so:devel/yaml-cpp USES= cmake compiler:c++17-lang desktop-file-utils gl luajit openal \ pkgconfig qt:5 sdl sqlite xorg USE_GITHUB= yes GH_ACCOUNT= OpenMW USE_GL= gl USE_QT= core gui network opengl printsupport widgets buildtools:build \ qmake:build USE_SDL= sdl2 CMAKE_ARGS= -DDESIRED_QT_VERSION=5 \ -DOPENMW_USE_SYSTEM_BULLET=ON \ -DOPENMW_USE_SYSTEM_RECASTNAVIGATION=ON \ -DGLOBAL_DATA_PATH="${PREFIX}/share" \ -DMORROWIND_DATA_FILES="${DATADIR}/data" \ -DOPENMW_RESOURCE_FILES="${DATADIR}/resources" # passed from openal to prevent linker errors LDFLAGS+= -Wl,--as-needed LDFLAGS_i386= -Wl,-z,notext OPTIONS_DEFINE= DOCS DOCS_CMAKE_BOOL= BUILD_DOCS DOCS_BINARY_ALIAS= sphinx-build=sphinx-build-${PYTHON_VER} DOCS_BUILD_DEPENDS= doxygen>0:devel/doxygen \ ${PYTHON_PKGNAMEPREFIX}sphinx>=0,1:textproc/py-sphinx@${PY_FLAVOR} DOCS_USES= python:build PORTDOCS= * .include # The following is actually meant for lld 15.0 and later, but the ports # framework does not support LINKER_TYPE and LINKER_VERSION yet. .if ${COMPILER_TYPE} == "clang" # Turn off checking of dynamic relocations, to avoid lld diagnostics about # possibly incorrect addend values. LDFLAGS_i386+= -Wl,--no-check-dynamic-relocations .endif post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/* .include