diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2014-01-29 16:18:32 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2014-01-29 16:18:32 +0000 |
commit | 79d977deeb8f2bc461f2845f2daa5813d6490c3e (patch) | |
tree | 65ca94e473b6cf9a199e1882549accb4c0a0b517 /math | |
parent | e8d17e5c0e7321726896052f7503384958c1ee16 (diff) | |
download | ports-79d977deeb8f2bc461f2845f2daa5813d6490c3e.tar.gz ports-79d977deeb8f2bc461f2845f2daa5813d6490c3e.zip |
- 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
Notes
Notes:
svn path=/head/; revision=341757
Diffstat (limited to 'math')
-rw-r--r-- | math/GiNaC/Makefile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/math/GiNaC/Makefile b/math/GiNaC/Makefile index c5d5f49df84a..4bcc2ae3d06a 100644 --- a/math/GiNaC/Makefile +++ b/math/GiNaC/Makefile @@ -9,30 +9,27 @@ MASTER_SITES= ftp://ftpthep.physik.uni-mainz.de/pub/GiNaC/ \ 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 <bsd.port.pre.mk> +INFO= ginac ginac-examples -.if ${ARCH} == "alpha" -BROKEN= Does not build on alpha -.endif +.include <bsd.port.pre.mk> 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 <bsd.port.post.mk> |