It brings bison as a build dependency in case it is set the following way: USES= bison or USES= bison:build it brings bison as a run dependency in case it is set the following way: USES= bison:run it brings bison both as a run and build dependency in case it the set the following way: USES= bison:both While here trim some headers Convert some USE_GNOME= gnomehack to USES= pathfix
36 lines
952 B
Makefile
36 lines
952 B
Makefile
# Created by: Li-Wen Hsu <lwhsu@lwhsu.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cvc3
|
|
PORTVERSION= 2.4.1
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://www.cs.nyu.edu/acsys/cvc3/download/${PORTVERSION}/
|
|
|
|
MAINTAINER= lwhsu@FreeBSD.org
|
|
COMMENT= An automatic theorem prover for the SMT problem
|
|
|
|
LIB_DEPENDS= gmp:${PORTSDIR}/math/gmp
|
|
|
|
CONFIGURE_ARGS= --enable-dynamic \
|
|
--with-arith=gmp \
|
|
--with-build=optimized \
|
|
--with-extra-includes=${LOCALBASE}/include \
|
|
--with-extra-libs=${LOCALBASE}/lib
|
|
CXXFLAGS+= -fPIC
|
|
GNU_CONFIGURE= yes
|
|
USES= bison
|
|
USE_GMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
USE_PERL5= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's,/bin/bash,/bin/sh,' ${WRKSRC}/Makefile.std
|
|
${REINPLACE_CMD} -e 's,.*$$(LDCONFIG).*,,' ${WRKSRC}/src/Makefile
|
|
${REINPLACE_CMD} -e 's,$$(libdir)/pkgconfig,${PREFIX}/libdata/pkgconfig,' ${WRKSRC}/src/Makefile
|
|
|
|
post-install:
|
|
${INSTALL_PROGRAM} `readlink ${WRKSRC}/bin/cvc3` ${PREFIX}/bin
|
|
|
|
.include <bsd.port.post.mk>
|