From owner-svn-ports-head@freebsd.org Fri Sep 21 06:30:16 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 3A4E0109077A; Fri, 21 Sep 2018 06:30:16 +0000 (UTC) (envelope-from meta@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 D9A1A70CDA; Fri, 21 Sep 2018 06:30:15 +0000 (UTC) (envelope-from meta@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 D4A7310D8; Fri, 21 Sep 2018 06:30:15 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8L6UFnf037026; Fri, 21 Sep 2018 06:30:15 GMT (envelope-from meta@FreeBSD.org) Received: (from meta@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8L6UFd6037025; Fri, 21 Sep 2018 06:30:15 GMT (envelope-from meta@FreeBSD.org) Message-Id: <201809210630.w8L6UFd6037025@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: meta set sender to meta@FreeBSD.org using -f From: Koichiro Iwao Date: Fri, 21 Sep 2018 06:30:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480228 - head/math/singular X-SVN-Group: ports-head X-SVN-Commit-Author: meta X-SVN-Commit-Paths: head/math/singular X-SVN-Commit-Revision: 480228 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.27 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: Fri, 21 Sep 2018 06:30:16 -0000 Author: meta Date: Fri Sep 21 06:30:15 2018 New Revision: 480228 URL: https://svnweb.freebsd.org/changeset/ports/480228 Log: math/singular: add USES=ncurses warned by stage-qa Also, * replace some hardcoded "/bin/bash" not been replaced with shebangfix PR: 229864 Submitted by: meta (myself) Approved by: maintainer timeout, pi (mentor) Modified: head/math/singular/Makefile Modified: head/math/singular/Makefile ============================================================================== --- head/math/singular/Makefile Fri Sep 21 06:15:13 2018 (r480227) +++ head/math/singular/Makefile Fri Sep 21 06:30:15 2018 (r480228) @@ -2,6 +2,7 @@ PORTNAME= singular PORTVERSION= 4.1.1 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/4-1-1/ @@ -14,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgmp.so:math/gmp \ libmpfr.so:math/mpfr -USES= gmake libtool perl5 pkgconfig shebangfix +USES= gmake libtool ncurses perl5 pkgconfig shebangfix USE_PERL5= build USE_LDCONFIG= yes GNU_CONFIGURE= yes @@ -22,5 +23,11 @@ CONFIGURE_ARGS= --with-gmp=${LOCALBASE} MAKE_JOBS_UNSAFE= yes SHEBANG_FILES= libpolys/libpolys-config.in \ libsingular-config.in + +# not a shebang but "/bin/bash" is hardcoded in some files +post-patch: + @${REINPLACE_CMD} -e "s|/bin/bash|${LOCALBASE}/bin/bash|g" \ + ${WRKSRC}/emacs/.emacs-general + .include