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: Portfile 112739 2013-10-30 20:11:50Z jeremyhu@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name minidlna |
---|
7 | version 1.1.1 |
---|
8 | categories net multimedia |
---|
9 | platforms darwin |
---|
10 | maintainers gmail.com:ranauei |
---|
11 | license GPL-2 |
---|
12 | |
---|
13 | description a UPnP (TM) A/V & DLNA Media Server |
---|
14 | |
---|
15 | long_description MiniDLNA (aka ReadyDLNA) is server software with the aim \ |
---|
16 | of being fully compliant with DLNA/UPnP-AV clients. |
---|
17 | |
---|
18 | homepage http://minidlna.sourceforge.net/ |
---|
19 | master_sites sourceforge:minidlna |
---|
20 | |
---|
21 | checksums rmd160 b0f15b497459e1343cceb766ec2736bda030dcde \ |
---|
22 | sha256 9b70082fd6a12e16cea1558ffff05c07e12ef0c405ee806721e75ce1ce9ad037 |
---|
23 | |
---|
24 | depends_lib path:lib/libavcodec.dylib:ffmpeg \ |
---|
25 | port:flac \ |
---|
26 | port:jpeg \ |
---|
27 | port:libid3tag \ |
---|
28 | port:libexif \ |
---|
29 | port:sqlite3 |
---|
30 | |
---|
31 | use_autoreconf yes |
---|
32 | |
---|
33 | patchfiles patch-getifaddr.c.diff |
---|
34 | |
---|
35 | # Non-conforming inline usage |
---|
36 | configure.cflags-append -std=gnu89 |
---|
37 | |
---|
38 | post-destroot { |
---|
39 | xinstall -m 644 ${worksrcpath}/${name}.conf ${destroot}${prefix}/etc/${name}.conf.sample |
---|
40 | } |
---|