From owner-svn-ports-all@freebsd.org Fri Sep 27 15:43:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 992E41262EE; Fri, 27 Sep 2019 15:43:23 +0000 (UTC) (envelope-from zeising@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 46fx0C3d4Wz3y86; Fri, 27 Sep 2019 15:43:23 +0000 (UTC) (envelope-from zeising@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 5FBBD1B176; Fri, 27 Sep 2019 15:43:23 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8RFhN3X019285; Fri, 27 Sep 2019 15:43:23 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8RFhN2V019284; Fri, 27 Sep 2019 15:43:23 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201909271543.x8RFhN2V019284@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Fri, 27 Sep 2019 15:43:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513044 - head/graphics/opendx X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/graphics/opendx X-SVN-Commit-Revision: 513044 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Fri, 27 Sep 2019 15:43:23 -0000 Author: zeising Date: Fri Sep 27 15:43:22 2019 New Revision: 513044 URL: https://svnweb.freebsd.org/changeset/ports/513044 Log: graphics/opendx: Remove dependency on libXp Remove dependency on libXp, it is not used. Even though configure looks for libXp, and links against it if it is found, there is no use of it in the code. libXp is getting deprecated. PR: 240865 OKd by: bapt (just fix it) Modified: head/graphics/opendx/Makefile Modified: head/graphics/opendx/Makefile ============================================================================== --- head/graphics/opendx/Makefile Fri Sep 27 15:39:16 2019 (r513043) +++ head/graphics/opendx/Makefile Fri Sep 27 15:43:22 2019 (r513044) @@ -3,7 +3,7 @@ PORTNAME= opendx PORTVERSION= 4.4.4 -PORTREVISION= 30 +PORTREVISION= 31 CATEGORIES= graphics math java MASTER_SITES= http://www.sfr-fresh.com/unix/misc/ DISTNAME= dx-${PORTVERSION} @@ -18,11 +18,10 @@ LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-se LIB_DEPENDS= libMagickWand-6.so:graphics/ImageMagick6 \ libtiff.so:graphics/tiff \ - libcdf.so:science/cdf \ - libXp.so:x11/libXp + libcdf.so:science/cdf MAKE_JOBS_UNSAFE= yes -USES= bison compiler:c++17-lang gmake libtool motif +USES= bison compiler:c++17-lang gl gmake libtool motif xorg USE_XORG= x11 xt xinerama xext xpm xmu sm ice USE_GL= gl glu GNU_CONFIGURE= yes