diff options
author | danfe <danfe@FreeBSD.org> | 2014-01-30 00:18:32 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2014-01-30 00:18:32 +0800 |
commit | f6bef02779b15950811387fb18328b172954dce9 (patch) | |
tree | 65ca94e473b6cf9a199e1882549accb4c0a0b517 /math/GiNaC | |
parent | 859b64646ff65e252182718a89655553576e0ad4 (diff) | |
download | freebsd-ports-gnome-f6bef02779b15950811387fb18328b172954dce9.tar.gz freebsd-ports-gnome-f6bef02779b15950811387fb18328b172954dce9.tar.zst freebsd-ports-gnome-f6bef02779b15950811387fb18328b172954dce9.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
Diffstat (limited to 'math/GiNaC')
-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> |