diff options
author | antoine <antoine@FreeBSD.org> | 2014-05-18 19:42:51 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-05-18 19:42:51 +0800 |
commit | 7cd4689227379a9493adb2b77cfd987f06d98a70 (patch) | |
tree | 2bdc17d8dccbfdec8aaaf777d1a9913a897bd97d /math | |
parent | c3db79b812bfe1e4ba4775d0074d4b0803fb22cd (diff) | |
download | freebsd-ports-gnome-7cd4689227379a9493adb2b77cfd987f06d98a70.tar.gz freebsd-ports-gnome-7cd4689227379a9493adb2b77cfd987f06d98a70.tar.zst freebsd-ports-gnome-7cd4689227379a9493adb2b77cfd987f06d98a70.zip |
Attempt to unbreak by using new LIB_DEPENDS syntax
Reported by: pkg-fallout
With hat: portmgr
Diffstat (limited to 'math')
-rw-r--r-- | math/pspp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/math/pspp/Makefile b/math/pspp/Makefile index 99752c5c91d5..045bdf576a82 100644 --- a/math/pspp/Makefile +++ b/math/pspp/Makefile @@ -10,8 +10,8 @@ MASTER_SITES= GNU MAINTAINER= sylvio@FreeBSD.org COMMENT= Program for statistical analysis of sampled data -LIB_DEPENDS= plot.4:${PORTSDIR}/graphics/plotutils \ - gslcblas:${PORTSDIR}/math/gsl +LIB_DEPENDS= libplot.so:${PORTSDIR}/graphics/plotutils \ + libgslcblas.so:${PORTSDIR}/math/gsl OPTIONS_DEFINE= GUI PGSQL @@ -38,7 +38,7 @@ PLIST_SUB+= NLS="@comment " .endif .if ${PORT_OPTIONS:MGUI} -LIB_DEPENDS+= gladeui-1:${PORTSDIR}/devel/glade3 +LIB_DEPENDS+= libgladeui-1.so:${PORTSDIR}/devel/glade3 RUN_DEPENDS+= yelp:${PORTSDIR}/x11/yelp USE_GNOME+= libglade2 CONFIGURE_ARGS+= --with-gui-tools |