mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# New ports collection makefile for: muparser
|
|
# Date created: 2006-02-14
|
|
# Whom: Nicola Vitale <nivit@email.it>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= muparser
|
|
PORTVERSION= 1.30
|
|
PORTREVISION= 1
|
|
CATEGORIES= math devel
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Version%20${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}_v130
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= Mathematical expressions parser library written in C++
|
|
|
|
RUN_DEPENDS= pkg-config:${PORTSDIR}/devel/pkg-config
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-shared=no
|
|
.if defined(NOPORTEXAMPLES)
|
|
CONFIGURE_ARGS+= --enable-samples=no
|
|
.endif
|
|
.if !defined(NOPORTDOCS)
|
|
CONFIGURE_ARGS+= --docdir=${DOCSDIR}
|
|
.endif
|
|
USE_GMAKE= yes
|
|
|
|
WRKSRC= ${WRKDIR}/muparser
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
|
|
CFLAGS+= -fPIC
|
|
.endif
|
|
|
|
# taken from audio/taglib
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s#\$$(libdir)/pkgconfig#${PREFIX}/libdata/pkgconfig#g" \
|
|
${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -E 's,^(CXXFLAGS|LDFLAGS) = ,\1 ?= ,g' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR} && \
|
|
cd ${WRKSRC}/docs/html && \
|
|
${COPYTREE_SHARE} . ${DOCSDIR}
|
|
.endif
|
|
.if !defined(NOPORTEXAMPLES)
|
|
@${MKDIR} ${EXAMPLESDIR} && \
|
|
cd ${WRKSRC}/samples && \
|
|
${COPYTREE_SHARE} . ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|