diff options
author | kevlo <kevlo@FreeBSD.org> | 2000-12-03 00:27:23 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2000-12-03 00:27:23 +0800 |
commit | 171a48b1f97aee4e38d9d16e85b65608ec0abf33 (patch) | |
tree | a9503fa718457c53f924893f8c1d6853f3a05717 /math/oleo/Makefile | |
parent | 8cdfe7e85fd089d9fff83c08a399d3c6b52ddf50 (diff) | |
download | freebsd-ports-gnome-171a48b1f97aee4e38d9d16e85b65608ec0abf33.tar.gz freebsd-ports-gnome-171a48b1f97aee4e38d9d16e85b65608ec0abf33.tar.zst freebsd-ports-gnome-171a48b1f97aee4e38d9d16e85b65608ec0abf33.zip |
Update to version 1.99.14
PR: 23226
Submitted by: Ports Fury
Diffstat (limited to 'math/oleo/Makefile')
-rw-r--r-- | math/oleo/Makefile | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/math/oleo/Makefile b/math/oleo/Makefile index d239e5965866..8f2d425d1cb8 100644 --- a/math/oleo/Makefile +++ b/math/oleo/Makefile @@ -6,7 +6,7 @@ # PORTNAME= oleo -PORTVERSION= 1.99.12 +PORTVERSION= 1.99.14 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -14,13 +14,23 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext +.if defined(WITH_MOTIF) +LIB_DEPENDS+= plot.3:${PORTSDIR}/graphics/plotutils \ + Xbae.7:${PORTSDIR}/x11-toolkits/xbae +.endif USE_XLIB= yes USE_AUTOCONF= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib" -CONFIGURE_ARGS= --with-x --without-motif \ - --without-xbae --without-xlt \ +CONFIGURE_ARGS= --with-x --without-xlt \ --without-xmhtml --without-SciPlot +.if defined(WITH_MOTIF) +USE_MOTIF= yes +CONFIGURE_ARGS+= --with-motif +.else +CONFIGURE_ARGS+= --without-motif +.endif + .include <bsd.port.mk> |