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 | |
---|
6 | name pianod |
---|
7 | version 137 |
---|
8 | categories audio |
---|
9 | platforms darwin |
---|
10 | license MIT |
---|
11 | maintainers deviousfish.com:perette |
---|
12 | description Pandora daemon |
---|
13 | long_description Client/server Pandora daemon with a socket interface. \ |
---|
14 | Includes a shell script for command-line control. \ |
---|
15 | Supports multiple listeners with adjustable privileges, \ |
---|
16 | automatic station selection, script to run \ |
---|
17 | programmed station sequences. Use with wsgw websocket \ |
---|
18 | gateway to support web clients (port install wsgw +pianod). |
---|
19 | |
---|
20 | homepage http://deviousfish.com/Pianod |
---|
21 | master_sites http://deviousfish.com/Downloads/pianod |
---|
22 | |
---|
23 | # openssl sha256 pianod-latest.tar.gz or openssl rmd160 pianod-latest.tar.gz |
---|
24 | checksums rmd160 b11ae8d37c57cadfd6ceb54be248eea42651369e \ |
---|
25 | sha256 b845236a5d011072a5e0e530843988270615f00d3e3d8be06ca3050ebc2da949 |
---|
26 | |
---|
27 | livecheck.type regex |
---|
28 | livecheck.url ${master_sites} |
---|
29 | livecheck.regex ${name}-(\[0-9\]+)${extract.suffix} |
---|
30 | |
---|
31 | |
---|
32 | depends_lib port:libao \ |
---|
33 | port:libgcrypt \ |
---|
34 | port:gnutls \ |
---|
35 | port:json-c \ |
---|
36 | port:faad2 \ |
---|
37 | port:libmad |
---|
38 | |
---|
39 | configure.args --mandir=${prefix}/share/man |
---|
40 | |
---|
41 | startupitem.create yes |
---|
42 | startupitem.logfile ${prefix}/var/log/pianod.log |
---|
43 | startupitem.executable "${prefix}/bin/pianod" |
---|
44 | |
---|