diff options
author | danfe <danfe@FreeBSD.org> | 2013-08-15 15:35:19 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2013-08-15 15:35:19 +0800 |
commit | 7a47d02820b65db41b5972f530a3bc89e0bba015 (patch) | |
tree | d00e57a8160283ea866820b23b70d958adee2ced | |
parent | 200114b1c8bb29e4c87a380fcbd48dc5a93e8508 (diff) | |
download | freebsd-ports-gnome-7a47d02820b65db41b5972f530a3bc89e0bba015.tar.gz freebsd-ports-gnome-7a47d02820b65db41b5972f530a3bc89e0bba015.tar.zst freebsd-ports-gnome-7a47d02820b65db41b5972f530a3bc89e0bba015.zip |
- Unbreak parallel builds (-jX) on recent -CURRENT, where our make(1) is
bmake(1), which does not play nice with libtool way of building things
- While here, convert LIB_DEPENDS to new form, sort the knobs a bit, and
hook test target to our standard "regression-test" one
Reported by: marino
Tested by: marino (poudriere testport)
Approved by: miwi, bapt (portmgr, implicit)
-rw-r--r-- | graphics/plotutils/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/graphics/plotutils/Makefile b/graphics/plotutils/Makefile index 7e8b68d3c314..f8416c295a79 100644 --- a/graphics/plotutils/Makefile +++ b/graphics/plotutils/Makefile @@ -1,4 +1,4 @@ -# Created by: Chuck Robey (chuckr) +# Created by: Chuck Robey <chuckr@FreeBSD.org> # $FreeBSD$ PORTNAME= plotutils @@ -11,21 +11,23 @@ MASTER_SITES= GNU MAINTAINER= stephen@FreeBSD.org COMMENT= Plotting library and toolkit -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png -USES= motif +USES= gmake motif # parallel builds are broken with bmake(1) USE_AUTOTOOLS= libtool CONFIGURE_ARGS= --enable-libplotter --enable-libxmi --with-motif USE_LDCONFIG= yes -MAN1= ode.1 plot.1 plotfont.1 spline.1 tek2plot.1 -INFO= libxmi plotutils - -#CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15 CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +MAN1= ode.1 plot.1 plotfont.1 spline.1 tek2plot.1 +INFO= libxmi plotutils + test: build - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} check) + @${SETENV} ${MAKE_ENV} ${MAKE_CMD} -C ${WRKSRC} ${_MAKE_JOBS} \ + ${MAKE_ARGS} check + +regression-test: test .include <bsd.port.mk> |