From owner-svn-ports-head@freebsd.org Sat Nov 19 13:14:51 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D32CDC4A792; Sat, 19 Nov 2016 13:14:51 +0000 (UTC) (envelope-from dinoex@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 mx1.freebsd.org (Postfix) with ESMTPS id 88A5CBE3; Sat, 19 Nov 2016 13:14:51 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAJDEonk068575; Sat, 19 Nov 2016 13:14:50 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAJDEomO068573; Sat, 19 Nov 2016 13:14:50 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201611191314.uAJDEomO068573@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Sat, 19 Nov 2016 13:14:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426366 - in head/security/pgpin: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Nov 2016 13:14:51 -0000 Author: dinoex Date: Sat Nov 19 13:14:50 2016 New Revision: 426366 URL: https://svnweb.freebsd.org/changeset/ports/426366 Log: - fix build on aarch64 Modified: head/security/pgpin/Makefile head/security/pgpin/files/patch-makefile Modified: head/security/pgpin/Makefile ============================================================================== --- head/security/pgpin/Makefile Sat Nov 19 13:07:08 2016 (r426365) +++ head/security/pgpin/Makefile Sat Nov 19 13:14:50 2016 (r426366) @@ -15,8 +15,7 @@ LICENSE= MIT PORTSCOUT= ignore:1 -BROKEN_aarch64= Does not build: do not know how to make freebsd-aarch64 -BROKEN_mips64= Does not build: do not know how to make freebsd-mips64 +BROKEN_mips64= Does not build BROKEN_powerpc64= Does not build USES= tar:tgz Modified: head/security/pgpin/files/patch-makefile ============================================================================== --- head/security/pgpin/files/patch-makefile Sat Nov 19 13:07:08 2016 (r426365) +++ head/security/pgpin/files/patch-makefile Sat Nov 19 13:14:50 2016 (r426366) @@ -1,5 +1,5 @@ --- makefile.orig 2001-03-23 11:44:58.000000000 +0100 -+++ makefile 2016-10-07 07:05:13.258216000 +0200 ++++ makefile 2016-11-19 13:49:38.970838000 +0100 @@ -50,15 +50,15 @@ # -DUSE_SELECT to use select() system call # -DUSE_NBIO to use non-blocking read() @@ -31,7 +31,7 @@ @echo " hpux-68k-gcc, hpux-pa(*), hpux-pa-ansi, hpux-pa-gcc, hpux9-pa-ansi," @echo " irix, irix_asm, isc, isc_asm, linux, linux-aout, linux-68k," @echo " machten, mach_386, mips-ultrix, netbsd, netbsd_68k, newsasm," -@@ -175,11 +176,46 @@ +@@ -175,11 +176,54 @@ $(MAKE) all CC=gcc LD=gcc \ CFLAGS="$(RSAINCDIR) -O2 -DHIGHFIRST -DUNIX -DPORTABLE -DIDEA32" @@ -76,6 +76,14 @@ + $(MAKE) all LD="$(CC) -s" \ + CFLAGS="$(RSAINCDIR) $(OS_CFLAGS) -DPORTABLE -DUNIX -DIDEA32 \ + -DMAX_NAMELEN=255 -DMPORTABLE" ++freebsd-aarch64: ++ $(MAKE) all LD="$(CC) -s" \ ++ CFLAGS="$(RSAINCDIR) $(OS_CFLAGS) -DPORTABLE -DUNIX -DIDEA32 \ ++ -DMAX_NAMELEN=255" ++freebsd-powerpc64: ++ $(MAKE) all LD="$(CC) -s" \ ++ CFLAGS="$(RSAINCDIR) $(OS_CFLAGS) -DPORTABLE -DUNIX -DIDEA32 \ ++ -DMAX_NAMELEN=255" + 386bsd: $(MAKE) all CC=gcc LD=gcc OBJS_EXT="_80386.o _zmatch.o" \