Date: Tue, 7 Nov 2017 14:26:42 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453662 - head/archivers/rar Message-ID: <201711071426.vA7EQgDv015412@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Tue Nov 7 14:26:42 2017 New Revision: 453662 URL: https://svnweb.freebsd.org/changeset/ports/453662 Log: Reinstate IA32_BINARY_PORT=yes knob that was removed in r249298 to allow installation on 64-bit systems even if 32-bit libraries are not present (binary was statically linked): nowadays, the binary is linked dynamically and thus requires /usr/lib32. This also allows to remove BROKEN_* knobs. Modified: head/archivers/rar/Makefile Modified: head/archivers/rar/Makefile ============================================================================== --- head/archivers/rar/Makefile Tue Nov 7 14:19:58 2017 (r453661) +++ head/archivers/rar/Makefile Tue Nov 7 14:26:42 2017 (r453662) @@ -16,9 +16,7 @@ LICENSE_NAME= RAR license LICENSE_FILE= ${WRKSRC}/license.txt LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BROKEN_powerpc= fails to install: File format not recognized -BROKEN_sparc64= fails to install: File format not recognized - +IA32_BINARY_PORT= yes RESTRICTED= only unmodified original package can be distributed NO_BUILD= yes WRKSRC= ${WRKDIR}/rar @@ -27,17 +25,6 @@ PORTDOCS= * OPTIONS_DEFINE= DOCS -.include <bsd.port.pre.mk> - -.if ${ARCH} == "amd64" -.if !defined(HAVE_COMPAT_IA32_KERN) -HAVE_COMPAT_IA32_KERN!= if ${SYSCTL} -n compat.ia32.maxvmem >/dev/null 2>&1; then ${ECHO_CMD} YES; fi -.endif -.if !defined(HAVE_COMPAT_IA32_KERN) -IGNORE= requires a kernel with compiled-in IA32 compatibility -.endif -.endif - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/rar ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/rar.txt ${STAGEDIR}${PREFIX}/man/cat1/rar.1 @@ -49,4 +36,4 @@ post-install-DOCS-on: ${INSTALL_DATA} ${WRKSRC}/*.txt ${WRKSRC}/order.htm \ ${STAGEDIR}${DOCSDIR} -.include <bsd.port.post.mk> +.include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711071426.vA7EQgDv015412>