diff options
author | clement <clement@FreeBSD.org> | 2004-01-18 15:20:56 +0000 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2004-01-18 15:20:56 +0000 |
commit | 50bca5734c981eff397ab15408e176175d12532e (patch) | |
tree | 106946af4716d69d4d96787639d06f46974e63bc /math | |
parent | d99fb45c8801f6d0ebdbad309ec43f240cb5fef0 (diff) | |
download | FreeBSD-ports-50bca5734c981eff397ab15408e176175d12532e.zip FreeBSD-ports-50bca5734c981eff397ab15408e176175d12532e.tar.gz |
- Respect CFLAGS and PTHREAD_LIBS
PR: 61528
Submitted by: Markus Brueffer <brueffer@phoenix-systems.de> (maintainer)
Approved by: erwin (mentor) (implicitly)
Diffstat (limited to 'math')
-rw-r--r-- | math/fung-calc/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/math/fung-calc/Makefile b/math/fung-calc/Makefile index 26dee02..893a83e 100644 --- a/math/fung-calc/Makefile +++ b/math/fung-calc/Makefile @@ -14,17 +14,17 @@ MAINTAINER= brueffer@phoenix-systems.de COMMENT= Advanced graphic calculator USE_KDELIBS_VER= 3 -USE_MESA= yes +USE_GL= yes USE_GMAKE= yes USE_LIBTOOL= yes USE_REINPLACE= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes -CONFIGURE_TARGET= -CONFIGURE_ARGS+=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV+= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" pre-configure: - ${REINPLACE_CMD} -e 's|-pedantic ||g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/configure -.include <bsd.port.mk> +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/x11/kde3/Makefile.kde" +.include <bsd.port.post.mk> |