From owner-svn-ports-head@FreeBSD.ORG Wed Jan 29 16:18:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD2A9B62; Wed, 29 Jan 2014 16:18:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A94D01AAD; Wed, 29 Jan 2014 16:18:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0TGIWoI029792; Wed, 29 Jan 2014 16:18:32 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0TGIWOg029791; Wed, 29 Jan 2014 16:18:32 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201401291618.s0TGIWOg029791@svn.freebsd.org> From: Alexey Dokuchaev Date: Wed, 29 Jan 2014 16:18:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341757 - head/math/GiNaC 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.17 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, 29 Jan 2014 16:18:32 -0000 Author: danfe Date: Wed Jan 29 16:18:32 2014 New Revision: 341757 URL: http://svnweb.freebsd.org/changeset/ports/341757 QAT: https://qat.redports.org/buildarchive/r341757/ Log: - Drop indefinite article from COMMENT, modernize LID_DEPENDS syntax - Remove the check for long-unsupported "alpha" architecture - Reindent INFO knob and wrap one overly long line while I'm here Modified: head/math/GiNaC/Makefile Modified: head/math/GiNaC/Makefile ============================================================================== --- head/math/GiNaC/Makefile Wed Jan 29 16:17:10 2014 (r341756) +++ head/math/GiNaC/Makefile Wed Jan 29 16:18:32 2014 (r341757) @@ -9,30 +9,27 @@ MASTER_SITES= ftp://ftpthep.physik.uni-m DISTNAME= ${PORTNAME:L}-${PORTVERSION} MAINTAINER= stephen@FreeBSD.org -COMMENT= A C++ library for symbolic mathematical calculations +COMMENT= C++ library for symbolic mathematical calculations -LIB_DEPENDS= cln.6:${PORTSDIR}/math/cln +LIB_DEPENDS= libcln.so:${PORTSDIR}/math/cln USE_BZIP2= yes USES= pkgconfig pathfix gmake USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -INFO= ginac ginac-examples - CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -.include +INFO= ginac ginac-examples -.if ${ARCH} == "alpha" -BROKEN= Does not build on alpha -.endif +.include post-patch: @${REINPLACE_CMD} -e 's|-ldl||g' ${WRKSRC}/configure .if ${ARCH} != "i386" - @${REINPLACE_CMD} -e 's|unsigned|size_t|g' ${WRKSRC}/ginac/parser/parser.cpp + @${REINPLACE_CMD} -e 's|unsigned|size_t|g' \ + ${WRKSRC}/ginac/parser/parser.cpp .endif .include