aboutsummaryrefslogtreecommitdiff
path: root/comms/wspr/Makefile
blob: 9661010c0618659738a8c598cd5883ec1eee7d1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# $FreeBSD$

PORTNAME=	wspr
DISTVERSION=	${VERSION}.r${SVN_REV}
PORTREVISION=	8
CATEGORIES=	comms hamradio
MASTER_SITES=	LOCAL/db
DISTNAME=	wspr-r${SVN_REV}

MAINTAINER=	hamradio@FreeBSD.org
COMMENT=	Weak signal for HF ham radio communication package

LICENSE=	GPLv3

BUILD_DEPENDS=	${PYNUMPY}
RUN_DEPENDS=	${PYTHON_LIBDIR}/tkinter:x11-toolkits/py-tkinter \
		${PYTHON_SITELIBDIR}/PIL:graphics/py-pillow \
		${PYTHON_SITELIBDIR}/scipy:science/py-scipy
LIB_DEPENDS=	libhamlib.so:comms/hamlib \
		libfftw3f.so:math/fftw3-float \
		libsamplerate.so:audio/libsamplerate \
		libportaudio.so:audio/portaudio

MAKE_JOBS_UNSAFE=	yes
USES=		autoreconf dos2unix fortran gmake libtool python:3.3+ tar:bzip2
GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--with-gfortran=${FC} \
		--with-f2py=f2py-${PYTHON_VER} \
		--with-python3=${PYTHON_CMD}
MAKE_ENV+=	PYTHONUSERBASE=${STAGEDIR}${PYTHONBASE}
#LDFLAGS+=	-shared
VERSION=	4.00

.include <bsd.port.pre.mk>
pre-configure:
	@${CP} ${FILESDIR}/wspr.sh.in ${WRKSRC}

do-build:
	(cd ${WRKSRC};${GMAKE})

post-install:
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/wspr/WsprMod/w.so

.if defined(BOOTSTRAP)
#portlint freaks over this but it's only for dev ignore.
SVN_REV!=	svn info svn://svn.code.sf.net/p/wsjt/wsjt/branches/wspr | ${GREP} Revision | cut -d' ' -f2
.else
.include "Makefile.svn_rev"
.endif
.if defined(BOOTSTRAP) || defined(SVN_FETCH)
FETCH_DEPENDS+=	svn:devel/subversion

do-fetch:
	${MKDIR} ${WRKDIR}
	svn export -r ${SVN_REV} \
		svn://svn.code.sf.net/p/wsjt/wsjt/branches/wspr ${WRKDIR}/wspr-r${SVN_REV}
	cd ${WRKDIR};rm -f ${DISTNAME}/*.a ${DISTNAME}/*.lib ${DISTNAME}/*.dll;\
		tar cvfy ${DISTDIR}/${DISTNAME}.tar.bz2 ${DISTNAME}
	echo "SVN_REV=  ${SVN_REV}" > ${MASTERDIR}/Makefile.svn_rev
.if ${USER} == db
	scp ${DISTDIR}/${DISTNAME}.tar.bz2 \
		freefall.freebsd.org:public_distfiles/
.endif
.endif

.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>