From owner-svn-ports-head@freebsd.org Sat Nov 28 04:24:18 2015 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 5215AA3A676; Sat, 28 Nov 2015 04:24:18 +0000 (UTC) (envelope-from ashish@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 15B041BE8; Sat, 28 Nov 2015 04:24:18 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAS4OHB8000660; Sat, 28 Nov 2015 04:24:17 GMT (envelope-from ashish@FreeBSD.org) Received: (from ashish@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAS4OHps000658; Sat, 28 Nov 2015 04:24:17 GMT (envelope-from ashish@FreeBSD.org) Message-Id: <201511280424.tAS4OHps000658@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ashish set sender to ashish@FreeBSD.org using -f From: Ashish SHUKLA Date: Sat, 28 Nov 2015 04:24:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402508 - in head/math/eukleides: . 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.20 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, 28 Nov 2015 04:24:18 -0000 Author: ashish Date: Sat Nov 28 04:24:16 2015 New Revision: 402508 URL: https://svnweb.freebsd.org/changeset/ports/402508 Log: - Patch euktoeps, so it uses GNU getopt - Add dependency on misc/getopt Reported by: Nicolas Added: head/math/eukleides/files/patch-bash_euktoeps (contents, props changed) Modified: head/math/eukleides/Makefile Modified: head/math/eukleides/Makefile ============================================================================== --- head/math/eukleides/Makefile Sat Nov 28 03:29:05 2015 (r402507) +++ head/math/eukleides/Makefile Sat Nov 28 04:24:16 2015 (r402508) @@ -3,7 +3,7 @@ PORTNAME= eukleides PORTVERSION= 1.5.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= http://www.eukleides.org/files/ @@ -14,7 +14,8 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libreadline.so:${PORTSDIR}/devel/readline -RUN_DEPENDS= pstoedit:${PORTSDIR}/graphics/pstoedit +RUN_DEPENDS= pstoedit:${PORTSDIR}/graphics/pstoedit \ + getopt>=0:${PORTSDIR}/misc/getopt USE_TEX= latex USES= bison gettext iconv gmake tar:bzip2 Added: head/math/eukleides/files/patch-bash_euktoeps ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/eukleides/files/patch-bash_euktoeps Sat Nov 28 04:24:16 2015 (r402508) @@ -0,0 +1,11 @@ +--- bash/euktoeps.orig ++++ bash/euktoeps +@@ -31,7 +31,7 @@ + exit $1 + } + +-args=$(getopt -o i:l::#:d:vh --long include:,locale::,interactive:,data:,version,help \ ++args=$(%%LOCALBASE%%/bin/getopt -o i:l::#:d:vh --long include:,locale::,interactive:,data:,version,help \ + -n 'Euktoeps' -- "$@") + + if [ $? -ne 0 ]