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 minidlna |
---|
7 | cvs.date 20111216 |
---|
8 | version 1.0.22_${cvs.date} |
---|
9 | categories net multimedia |
---|
10 | maintainers gmail.com:ranauei |
---|
11 | platforms darwin |
---|
12 | license GPL-2 |
---|
13 | description a UPnP (TM) A/V & DLNA Media Server |
---|
14 | long_description \ |
---|
15 | MiniDLNA (aka ReadyDLNA) is server software with the aim of \ |
---|
16 | being fully compliant with DLNA/UPnP-AV clients. |
---|
17 | homepage http://minidlna.sourceforge.net/ |
---|
18 | worksrcdir ${name} |
---|
19 | |
---|
20 | fetch.type cvs |
---|
21 | cvs.root :pserver:anonymous@minidlna.cvs.sourceforge.net:/cvsroot/minidlna |
---|
22 | cvs.module ${name} |
---|
23 | |
---|
24 | depends_lib port:ffmpeg port:flac port:libid3tag port:libexif |
---|
25 | |
---|
26 | patch { |
---|
27 | if {${configure.compiler} == "clang"} { |
---|
28 | reinplace "s|inline||g" ${worksrcpath}/utils.c ${worksrcpath}/tagutils/misc.c |
---|
29 | } |
---|
30 | } |
---|
31 | |
---|
32 | use_autoreconf yes |
---|
33 | |
---|
34 | post-destroot { |
---|
35 | xinstall -m 644 ${worksrcpath}/${name}.conf ${destroot}${prefix}/etc |
---|
36 | } |
---|