diff options
author | Diane Bruce <db@FreeBSD.org> | 2015-09-10 13:51:22 +0000 |
---|---|---|
committer | Diane Bruce <db@FreeBSD.org> | 2015-09-10 13:51:22 +0000 |
commit | 14a9ab02c450cea644b030c97f5757468a482bcf (patch) | |
tree | 9e5a1c48cffc82d00d646cca150f223f5a7e798c /comms | |
parent | 6c76ecc91f8f06cae570460a9f9f908e4eb91bea (diff) | |
download | ports-14a9ab02c450cea644b030c97f5757468a482bcf.tar.gz ports-14a9ab02c450cea644b030c97f5757468a482bcf.zip |
Notes
Diffstat (limited to 'comms')
-rw-r--r-- | comms/wsjt/Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/comms/wsjt/Makefile b/comms/wsjt/Makefile index e93797c64969..b8897695e706 100644 --- a/comms/wsjt/Makefile +++ b/comms/wsjt/Makefile @@ -2,7 +2,6 @@ PORTNAME= wsjt DISTVERSION= ${VERSION}.r${SVN_REV} -PORTREVISION= 12 CATEGORIES= comms hamradio MASTER_SITES= LOCAL/db DISTNAME= wsjt-r${SVN_REV} @@ -16,12 +15,12 @@ LIB_DEPENDS= libfftw3.so:${PORTSDIR}/math/fftw3 \ libfftw3f.so:${PORTSDIR}/math/fftw3-float \ libsamplerate.so:${PORTSDIR}/audio/libsamplerate \ libportaudio.so:${PORTSDIR}/audio/portaudio -WSJT_DEPENDS= ${PYTHON_LIBDIR}/tkinter:${PORTSDIR}/x11-toolkits/py-tkinter \ +WSJT_DEPENDS= ${PYTHON_LIBDIR}/lib-dynload/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter \ ${PYTHON_SITELIBDIR}/scipy:${PORTSDIR}/science/py-scipy \ ${PYTHON_SITELIBDIR}/PIL:${PORTSDIR}/graphics/py-pillow \ ${PYNUMPY} BUILD_DEPENDS= ${WSJT_DEPENDS} -RUN_DEPENDS= kvasd:${PORTSDIR}/comms/kvasd \ +RUN_DEPENDS= ${LOCALBASE}/bin/kvasd:${PORTSDIR}/comms/kvasd \ ${WSJT_DEPENDS} USE_GCC= yes @@ -29,15 +28,13 @@ USES= autoreconf fortran gmake python:3.3+ tar:bzip2 SHEBANG_FILES= ${WRKSRC}/wsjt GNU_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${STAGEDIR}${LOCALBASE} \ - --with-python=${PYTHON_CMD} \ - --with-gfortran=${FC} \ --with-portaudio-include-dir=${LOCALBASE}/include \ --with-portaudio-lib-dir=${LOCALBASE}/lib CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib # Adding this breaks configure #LDFLAGS+= -shared -VERSION= 9.1 +VERSION= 10 PLIST_SUB= PYVER=${PYTHON_VERSION:S/python//} \ VERSION=${VERSION} @@ -98,8 +95,4 @@ post-configure: ${REINPLACE_CMD} -e 's|f2py|f2py-${PYTHON_VER}|' \ ${WRKSRC}/Makefile -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} -IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} -.endif - .include <bsd.port.post.mk> |