1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup qt4 1.0 |
---|
6 | |
---|
7 | name dream |
---|
8 | version 1.17 |
---|
9 | categories audio |
---|
10 | platforms darwin |
---|
11 | maintainers nomaintainer |
---|
12 | license GPL-2 |
---|
13 | |
---|
14 | description Open-Source Software Implementation of a DRM Receiver |
---|
15 | |
---|
16 | long_description Digital Radio Mondiale (DRM) is the digital radio \ |
---|
17 | standard for the long-, medium- and short-wave ranges. \ |
---|
18 | The standard was formed by a consortium in co-operation \ |
---|
19 | with the International Telecommunication Union (ITU). \ |
---|
20 | The system offers the radio stations and new service \ |
---|
21 | providers access to the multimedia age with small bit \ |
---|
22 | rates for large target areas and long distances. |
---|
23 | |
---|
24 | |
---|
25 | homepage http://sourceforge.net/apps/mediawiki/drm/ |
---|
26 | |
---|
27 | master_sites sourceforge:project/drm/dream/${version} |
---|
28 | distname ${name}-${version}-sources |
---|
29 | worksrcdir ${name} |
---|
30 | |
---|
31 | checksums rmd160 a257810917b8d84c188597fcda004df908c79768 \ |
---|
32 | sha256 ae74b8b915c424134bfd3ff1e00383525e243003da6bd6caad35767615e94426 |
---|
33 | |
---|
34 | depends_lib port:faad2 \ |
---|
35 | port:faac \ |
---|
36 | port:fftw-3 \ |
---|
37 | port:qwt-60 \ |
---|
38 | port:portaudio \ |
---|
39 | port:hamlib \ |
---|
40 | port:libsndfile \ |
---|
41 | port:libpcap |
---|
42 | |
---|
43 | patchfiles dream.pro.diff |
---|
44 | |
---|
45 | post-patch { |
---|
46 | reinplace "s|@PREFIX@|${prefix}|" ${worksrcpath}/dream.pro |
---|
47 | } |
---|
48 | |
---|
49 | # dream uses qmake |
---|
50 | configure.cmd ${qt_qmake_cmd} |
---|
51 | configure.pre_args |
---|
52 | configure.post_args -spec macx-g++ dream.pro |
---|
53 | |
---|
54 | destroot { |
---|
55 | file copy ${worksrcpath}/dream.app ${destroot}${applications_dir}/dream.app |
---|
56 | } |
---|