aboutsummaryrefslogtreecommitdiffstats
path: root/comms/wspr/Makefile
blob: a7c37fd9d0c9592f9e4c137a60cddc7ad82997a0 (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
71
72
73
74
75
76
77
78
79
80
# Created by: Diane Bruce <db@db.net>
# $FreeBSD$

PORTNAME=   wspr
DISTVERSION=    ${VERSION}.r${SVN_REV}
PORTREVISION=   2
CATEGORIES= comms hamradio
MASTER_SITES=   ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= db
DISTNAME=   wspr-r${SVN_REV}

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

RUN_DEPENDS=    ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter \
        ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging
LIB_DEPENDS=    libhamlib.so:${PORTSDIR}/comms/hamlib \
        libfftw3f.so:${PORTSDIR}/math/fftw3-float \
        libsamplerate.so:${PORTSDIR}/audio/libsamplerate
BUILD_DEPENDS=  ${PYTHON_SITELIBDIR}/scipy:${PORTSDIR}/science/py-scipy \
        ${LOCALBASE}/lib/portaudio2/libportaudio.so:${PORTSDIR}/audio/portaudio2 \
        ${PYNUMPY}

USES=       fortran gmake
USE_BZIP2=  yes
ALL_TARGET= build
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --enable-gfortran --prefix=${LOCALBASE} \
        --with-portaudio-include-dir=${LOCALBASE}/include/portaudio2 \
        --with-portaudio-lib-dir=${LOCALBASE}/lib/portaudio2
CFLAGS+=    -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
USE_PYTHON= yes
USE_AUTOTOOLS=  libtool
PLIST_SUB=  PYVER=${PYTHON_VERSION:S/python//} \
        VERSION=${VERSION}
VERSION=    3.00

NO_STAGE=   yes

.include <bsd.port.pre.mk>
post-configure:
    cp ${FILESDIR}/wspr ${WRKSRC}

post-install:
.if ${PORT_OPTIONS:MDOCS}
    ${MKDIR} ${DOCSDIR}
.for d in ${WRKSRC}/LICENSE.TXT ${WRKSRC}/WSPR_Announcement.TXT \
    ${WRKSRC}/WSPR0_Instructions.TXT ${WRKSRC}/WSPR_Quick_Start.TXT \
    ${WRKSRC}/supported_rigs.txt
    ${INSTALL_DATA} ${WRKSRC}/${d} ${DOCSDIR}
.endfor
    @${ECHO}
    @${ECHO} "docs installed in ${DOCSDIR}"
    @${ECHO}
.endif
    @${CAT} ${PKGMESSAGE}

.if defined(BOOTSTRAP)
SVN_REV!=   svn info http://svn.code.sf.net/p/wsjt/code/branches/wspr | ${GREP} Revision | cut -d' ' -f2
.else
.include "Makefile.svn_rev"
.endif
.if defined(BOOTSTRAP) || defined(SVN_FETCH)
FETCH_DEPENDS+= svn:${PORTSDIR}/devel/subversion

do-fetch:
    ${MKDIR} ${WRKDIR}
    svn export -r ${SVN_REV} \
        http://svn.code.sf.net/p/wsjt/code/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

.include <bsd.port.post.mk>