From owner-svn-ports-all@freebsd.org Wed Jan 23 22:04:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C82A14B3EE6; Wed, 23 Jan 2019 22:04:20 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1EEA08D69D; Wed, 23 Jan 2019 22:04:20 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 11A781ED86; Wed, 23 Jan 2019 22:04:20 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0NM4JGh046252; Wed, 23 Jan 2019 22:04:19 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0NM4JgT046250; Wed, 23 Jan 2019 22:04:19 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <201901232204.x0NM4JgT046250@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Wed, 23 Jan 2019 22:04:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491061 - in head/japanese/man: . files X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: in head/japanese/man: . files X-SVN-Commit-Revision: 491061 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1EEA08D69D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Jan 2019 22:04:20 -0000 Author: fernape Date: Wed Jan 23 22:04:19 2019 New Revision: 491061 URL: https://svnweb.freebsd.org/changeset/ports/491061 Log: japanese/man: unbreak in several archs. The port was broken in 12 and in different archs. mips is still to be tested. PR: 235058 Submitted by: phd_kimberlite@yahoo.co.jp Reviewed by: Ronald Klop (aarch64) mikael.urankar@gmail.com (armv6, armv7) MFH: 2019Q1 (build fix) Modified: head/japanese/man/Makefile head/japanese/man/files/patch-man__Makefile head/japanese/man/files/patch-manpath__Makefile Modified: head/japanese/man/Makefile ============================================================================== --- head/japanese/man/Makefile Wed Jan 23 21:22:57 2019 (r491060) +++ head/japanese/man/Makefile Wed Jan 23 22:04:19 2019 (r491061) @@ -21,10 +21,7 @@ LICENSE= GPLv2 RUN_DEPENDS= ${LOCALBASE}/bin/groff:japanese/groff \ jless:japanese/less -BROKEN_aarch64= fails to compile: man.c:37:10: fatal error: 'config.h' file not found -BROKEN_armv6= fails to compile: man.c:37:10: fatal error: 'config.h' file not found -BROKEN_armv7= fails to compile: man.c:37:10: fatal error: 'config.h' file not found -BROKEN_mips= fails to compile: man.c:37:10: fatal error: 'config.h' file not found +BROKEN_mips= fails to compile: man.c:37:10: fatal error: 'config.h' file not found MAKE_ENV= GZCAT=${GZCAT} GZIP_CMD="${GZIP_CMD}" USES= shebangfix Modified: head/japanese/man/files/patch-man__Makefile ============================================================================== --- head/japanese/man/files/patch-man__Makefile Wed Jan 23 21:22:57 2019 (r491060) +++ head/japanese/man/files/patch-man__Makefile Wed Jan 23 22:04:19 2019 (r491061) @@ -19,7 +19,7 @@ LDADD+= -L/usr/lib -lxpg4 .endif -@@ -48,11 +48,18 @@ +@@ -48,16 +48,23 @@ ${.CURDIR}/jman.man.eng | \ ${compress} > ${EMAN1} @@ -40,3 +40,10 @@ afterinstall: .endif + man.o locale.o: locale.h + +-.include "../Makefile.inc" +- + .include ++ ++.include "../Makefile.inc" Modified: head/japanese/man/files/patch-manpath__Makefile ============================================================================== --- head/japanese/man/files/patch-manpath__Makefile Wed Jan 23 21:22:57 2019 (r491060) +++ head/japanese/man/files/patch-manpath__Makefile Wed Jan 23 22:04:19 2019 (r491061) @@ -1,6 +1,6 @@ --- manpath/Makefile.orig 2001-06-11 21:25:34.000000000 +0900 +++ manpath/Makefile 2014-08-26 12:10:04.000000000 +0900 -@@ -24,10 +24,19 @@ +@@ -24,12 +24,21 @@ ${.CURDIR}/jmanpath.man.eng | \ ${compress} > ${EMAN1} @@ -21,4 +21,8 @@ +afterinstall: .endif - .include "../Makefile.inc" +-.include "../Makefile.inc" +- + .include ++ ++.include "../Makefile.inc"