Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/audio/mpd/Portfile

Revision 37836, 2.1 KB (checked in by milosh@…, 7 months ago)

update mpd to v0.13.2

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem 1.0
4
5name             mpd
6version          0.13.2
7categories       audio
8maintainers      milosh openmaintainer
9description      Music Player Daemon
10long_description \
11        Music Player Daemon (MPD) allows remote access for playing music \
12        (MP3, Ogg Vorbis, FLAC, AAC, Mod, and wave files) and managing \
13        playlists. MPD is designed for integrating a computer into a stereo \
14        system that provides control for music playback over a local network. \
15        It also makes a great desktop music player, especially if you are a \
16        console junkie, like frontend options, or restart X often.
17homepage         http://www.musicpd.org/
18platforms        darwin
19master_sites     ${homepage}/uploads/files/
20checksums        md5     33d0c7b08e2c9e2a6ad55703cb0d18d0 \
21                 sha1    744800e3b667a0d11418029b8ed69f7414e06e9c \
22                 rmd160  d21e3f6858ac8fb769d4278f988c17fe1580bc53
23
24depends_lib      lib:libmad.0:libmad \
25                 lib:libid3tag.0:libid3tag \
26                 port:libiconv port:pkgconfig port:zlib \
27                 port:libogg port:libvorbis \
28                 port:libao
29configure.args   --mandir=${prefix}/share/man --enable-id3 --enable-ao \
30                 --disable-flac --disable-aac
31configure.cflags-append -I${prefix}/include
32default_variants +aac
33variant  aac description {Support for aac files (default)} {
34        depends_lib-append    port:faad2
35        configure.args-delete --disable-aac
36        configure.args-append --enable-aac
37}
38variant flac description {Support for flac files} {
39        depends_lib-append    port:flac
40        configure.args-delete --disable-flac
41        configure.args-append --enable-flac
42}
43platform macosx {
44        configure.args-delete --enable-ao
45        configure.args-append --disable-ao
46        depends_lib-delete    port:libao
47}
48
49post-activate {
50ui_msg "You may get \"Problems shmget'ing\" message when launching mpd.
51In this case, you can increase the values of kern.sysv.shmmax and
52kern.sysv.shmall in /etc/rc."}
53
54livecheck.check   regex
55livecheck.url     http://www.musicpd.org/files.shtml
56livecheck.regex   files/mpd-(\[0-9.\]+)\\.tar\\.bz2
Note: See TracBrowser for help on using the browser.