diff options
author | dwcjr <dwcjr@FreeBSD.org> | 2002-04-03 06:41:38 +0800 |
---|---|---|
committer | dwcjr <dwcjr@FreeBSD.org> | 2002-04-03 06:41:38 +0800 |
commit | 259e593fd48fa3de87712907d444d843d83f0092 (patch) | |
tree | 9e63a7c22470a3a8f7ba1eeed267b702dc77a683 /net | |
parent | 9355a495922520f4d5fecd9529537c55ae2f18b7 (diff) | |
download | freebsd-ports-gnome-259e593fd48fa3de87712907d444d843d83f0092.tar.gz freebsd-ports-gnome-259e593fd48fa3de87712907d444d843d83f0092.tar.zst freebsd-ports-gnome-259e593fd48fa3de87712907d444d843d83f0092.zip |
Fix dependency(libgmp-freebsd port is broken)
$OSVERSION == 500023 still contained libgmp
It's a *library* so use LIB_DEPENDS
Submitted by: kris
Diffstat (limited to 'net')
-rw-r--r-- | net/rdesktop/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/rdesktop/Makefile b/net/rdesktop/Makefile index b44044db34ac..09b5edda21d3 100644 --- a/net/rdesktop/Makefile +++ b/net/rdesktop/Makefile @@ -28,9 +28,8 @@ ALL_TARGET= .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 500023 -BUILD_DEPENDS= ${PREFIX}/include/gmp.h:${PORTSDIR}/math/libgmp-freebsd -RUN_DEPENDS= ${PREFIX}/include/gmp.h:${PORTSDIR}/math/libgmp-freebsd +.if ${OSVERSION} > 500023 +LIB_DEPENDS= gmp.4:${PORTSDIR}/math/libgmp3 .endif do-patch: |