From owner-svn-ports-head@freebsd.org Sat Mar 3 02:21:14 2018 Return-Path: Delivered-To: svn-ports-head@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 A2DA1F37F9D; Sat, 3 Mar 2018 02:21:14 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5523F8721A; Sat, 3 Mar 2018 02:21:14 +0000 (UTC) (envelope-from stephen@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 4FF981FF28; Sat, 3 Mar 2018 02:21:14 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w232LENE082432; Sat, 3 Mar 2018 02:21:14 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w232LEpX082431; Sat, 3 Mar 2018 02:21:14 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201803030221.w232LEpX082431@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sat, 3 Mar 2018 02:21:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463461 - head/math/octave X-SVN-Group: ports-head X-SVN-Commit-Author: stephen X-SVN-Commit-Paths: head/math/octave X-SVN-Commit-Revision: 463461 X-SVN-Commit-Repository: ports 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.25 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, 03 Mar 2018 02:21:14 -0000 Author: stephen Date: Sat Mar 3 02:21:13 2018 New Revision: 463461 URL: https://svnweb.freebsd.org/changeset/ports/463461 Log: - Link against osmesa. - Bump portrevision. Modified: head/math/octave/Makefile Modified: head/math/octave/Makefile ============================================================================== --- head/math/octave/Makefile Sat Mar 3 01:18:50 2018 (r463460) +++ head/math/octave/Makefile Sat Mar 3 02:21:13 2018 (r463461) @@ -3,7 +3,7 @@ PORTNAME= octave PORTVERSION= 4.2.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math java MASTER_SITES= GNU @@ -35,7 +35,9 @@ LIB_DEPENDS= libGraphicsMagick.so:graphics/GraphicsMag libgl2ps.so:print/gl2ps \ libqscintilla2_qt4.so:devel/qscintilla2 \ libfontconfig.so:x11-fonts/fontconfig \ - libfreetype.so:print/freetype2 + libfreetype.so:print/freetype2 \ + libdrm.so:graphics/libdrm \ + libOSMesa.so:graphics/libosmesa USES= charsetfix fortran gmake libtool perl5 pkgconfig readline \ tar:xz compiler:c++14-lang @@ -57,14 +59,17 @@ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ENV= GPERF="${LOCALBASE}/bin/gperf" \ JAVA_HOME=${JAVA_HOME} \ MAKEINFO=${LOCALBASE}/bin/makeinfo \ - ac_cv_type_max_align_t=yes + ac_cv_type_max_align_t=yes \ + with_OSMesa="-lOSMesa -ldrm" CONFIGURE_ARGS= --host=${GNU_HOST} \ --with-blas="-L${LOCALBASE}/lib ${BLASLIB}" \ --with-lapack="${LAPACKLIB}" \ --enable-shared \ --disable-jit \ --disable-openmp \ - --with-qt=4 + --with-qt=4 \ + --with-OSMesa-includedir=${LOCALBASE}/include/GL \ + --with-OSMesa-libdir=${LOCALBASE}/lib OPTIONS_DEFINE= DOCS