From owner-svn-ports-head@freebsd.org Wed Feb 15 14:14:56 2017 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 9145CCE0BF7; Wed, 15 Feb 2017 14:14:56 +0000 (UTC) (envelope-from tijl@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 60DEDB92; Wed, 15 Feb 2017 14:14:56 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1FEEtIF067895; Wed, 15 Feb 2017 14:14:55 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1FEEtXj067894; Wed, 15 Feb 2017 14:14:55 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201702151414.v1FEEtXj067894@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Wed, 15 Feb 2017 14:14:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434165 - head/net/p5-Parallel-Pvm 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: Wed, 15 Feb 2017 14:14:56 -0000 Author: tijl Date: Wed Feb 15 14:14:55 2017 New Revision: 434165 URL: https://svnweb.freebsd.org/changeset/ports/434165 Log: - Port uses libpvm3.so. Adjust dependencies. - Remove -fPIC. The problem is not in this port but in libgpvm3 from net/pvm. Fixed in r434163. - Allow building on amd64 now that net/pvm provides shared libraries. Modified: head/net/p5-Parallel-Pvm/Makefile Modified: head/net/p5-Parallel-Pvm/Makefile ============================================================================== --- head/net/p5-Parallel-Pvm/Makefile Wed Feb 15 14:05:08 2017 (r434164) +++ head/net/p5-Parallel-Pvm/Makefile Wed Feb 15 14:14:55 2017 (r434165) @@ -3,7 +3,7 @@ PORTNAME= Parallel-Pvm PORTVERSION= 1.4.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,8 +11,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for the Parallel Virtual Machine (PVM) -BUILD_DEPENDS= pvm:net/pvm -RUN_DEPENDS:= ${BUILD_DEPENDS} +LIB_DEPENDS= libpvm3.so:net/pvm USES= perl5 USE_PERL5= configure @@ -20,8 +19,4 @@ PVM_ROOT= ${LOCALBASE}/lib/pvm CONFIGURE_ENV= PVM_ROOT="${PVM_ROOT}" PVM_ARCH="${PVM_ROOT}/lib/pvmgetarch" CONFIGURE_ARGS= INC="-I${LOCALBASE}/include" -NOT_FOR_ARCHS= amd64 - -CFLAGS_aarch64= -fPIC - .include