|
Revision 42285, 1.3 KB
(checked in by devans@…, 8 weeks ago)
|
|
cmus: change dependency in variant aac from mpeg4ip to libmp4v2 per #13879.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | |
|---|
| 5 | name cmus |
|---|
| 6 | version 2.2.0 |
|---|
| 7 | categories audio |
|---|
| 8 | maintainers milosh openmaintainer |
|---|
| 9 | description ncurses based music player |
|---|
| 10 | long_description \ |
|---|
| 11 | cmus is a small and fast text mode music player for Linux and many other\ |
|---|
| 12 | UNIX like operating systems. |
|---|
| 13 | homepage http://cmus.sourceforge.net/ |
|---|
| 14 | platforms darwin |
|---|
| 15 | master_sites http://mirror.greaterscope.net/cmus/ |
|---|
| 16 | use_bzip2 yes |
|---|
| 17 | checksums md5 7a9895ecfc10cd16577c73051436962f \ |
|---|
| 18 | sha1 a6472633ac55660eb3aec5d2ae0296da86903bb2 |
|---|
| 19 | depends_lib port:libao port:libmad port:libogg port:libvorbis \ |
|---|
| 20 | port:libiconv port:ncurses port:pkgconfig |
|---|
| 21 | build.args V=2 |
|---|
| 22 | configure.pre_args |
|---|
| 23 | configure.args prefix=${prefix} CONFIG_FLAC=n CONFIG_MIKMOD=n \ |
|---|
| 24 | CONFIG_AAC=n CONFIG_MP4=n CONFIG_MAD=y CONFIG_VORBIS=y |
|---|
| 25 | |
|---|
| 26 | variant aac description {Support aac files} { |
|---|
| 27 | depends_lib-append port:faad2 lib:libmp4v2:libmp4v2 |
|---|
| 28 | configure.args-delete CONFIG_AAC=n CONFIG_MP4=n |
|---|
| 29 | configure.args-append CONFIG_AAC=y CONFIG_MP4=y |
|---|
| 30 | } |
|---|
| 31 | |
|---|
| 32 | variant flac description {Support flac files} { |
|---|
| 33 | depends_lib-append port:flac |
|---|
| 34 | configure.args-delete CONFIG_FLAC=n |
|---|
| 35 | configure.args-append CONFIG_FLAC=y |
|---|
| 36 | } |
|---|
| 37 | |
|---|
| 38 | variant mikmod description {Support mod files} { |
|---|
| 39 | depends_lib-append port:libmikmod |
|---|
| 40 | configure.args-delete CONFIG_MIKMOD=n |
|---|
| 41 | configure.args-append CONFIG_MIKMOD=y |
|---|
| 42 | } |
|---|