Hi ports@ Update azpainter to 3.0.7 and patch added to remove uses of -v argument with install(1) (not available on OpenBSD).
Built and tested on arm64. bcallah CC. diff /usr/ports commit - af1d37e1bd51078697215d14839221baf88fcb84 path + /usr/ports blob - 25051d0456ba73717d2db6de07a83f6bf39ed43c file + graphics/azpainter/Makefile --- graphics/azpainter/Makefile +++ graphics/azpainter/Makefile @@ -1,4 +1,4 @@ -V = 3.0.6 +V = 3.0.7 COMMENT = full color painting software for illustrations DISTNAME = azpainter-v${V} PKGNAME = azpainter-${V} @@ -45,7 +45,7 @@ do-gen: sed -i "s,%LOCALBASE%,${LOCALBASE},g" ${WRKSRC}/src/main.c do-build: - ${SETENV} ${MAKE_ENV} ninja -C ${WRKSRC}/build -v -j ${MAKE_JOBS} + ${SETENV} ${MAKE_ENV} ninja -C ${WRKSRC}/build -j ${MAKE_JOBS} do-install: ninja -C ${WRKSRC}/build install blob - 0b75486bab9a25f051e4e84b7a8fb6c69be7785e file + graphics/azpainter/distinfo --- graphics/azpainter/distinfo +++ graphics/azpainter/distinfo @@ -1,2 +1,2 @@ -SHA256 (azpainter-v3.0.6.tar.bz2) = rJW6YtqQP+rrAHRr0Fg/pLMXKYfX4UhVFPVFa5MZYMQ= -SIZE (azpainter-v3.0.6.tar.bz2) = 991153 +SHA256 (azpainter-v3.0.7.tar.bz2) = 2j0m90TTwN8aiejUwHW/ciBx6J7zj1rlvDMYoppx+TI= +SIZE (azpainter-v3.0.7.tar.bz2) = 992188 blob - /dev/null file + graphics/azpainter/patches/patch-install_sh_in (mode 644) --- /dev/null +++ graphics/azpainter/patches/patch-install_sh_in @@ -0,0 +1,16 @@ +-v is unknown in openbsd install(1) +Index: install.sh.in +--- install.sh.in.orig ++++ install.sh.in +@@ -11,9 +11,9 @@ package_name="@PACKAGE_NAME@" + package_version="@PACKAGE_VERSION@" + package_full=${package_name}-${package_version} + +-inst_exe="install -m 755 -v" ++inst_exe="install -m 755" + inst_dir="install -m 755 -d" +-inst_file="install -m 644 -v" ++inst_file="install -m 644" + + update_cache() { + if test -z "$DESTDIR";then blob - 60402d561c4c688081f6ac9f0398ddb74c973f53 file + graphics/azpainter/patches/patch-src_main_c --- graphics/azpainter/patches/patch-src_main_c +++ graphics/azpainter/patches/patch-src_main_c @@ -8,7 +8,7 @@ Index: src/main.c //パスセット - mGuiSetPath_data_exe("../share/azpainter3"); -+ mGuiSetPath_data_exe("%LOCALBASE%/share/azpainter3"); ++ mGuiSetPath_data_exe("/usr/local/share/azpainter3"); mGuiSetPath_config_home(".config/azpainter"); //翻訳データ -- ~Justin