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 easytag |
---|
7 | version 2.1.8 |
---|
8 | set branch [join [lrange [split ${version} .] 0 1] .] |
---|
9 | categories audio |
---|
10 | platforms darwin |
---|
11 | maintainers rmstonecipher openmaintainer |
---|
12 | homepage http://easytag.sf.net/ |
---|
13 | license GPL-2+ |
---|
14 | description Tool for editing tags of audio files |
---|
15 | |
---|
16 | long_description EasyTAG is an utility for viewing and editing tags \ |
---|
17 | for MP3, MP2, FLAC, Ogg Vorbis, MusePack, Monkey's \ |
---|
18 | audio files and MP4/AAC. \ |
---|
19 | Its simple and nice GTK2+ interface makes tagging easier \ |
---|
20 | under UNIX systems. |
---|
21 | |
---|
22 | distfiles easytag-2.1.8.tar.xz |
---|
23 | |
---|
24 | master_sites http://ftp.gnome.org/pub/GNOME/sources/easytag/2.1 |
---|
25 | |
---|
26 | checksums rmd160 0b8ef3689730b2ae4fbf8131dbd1328bbf1da8a0 \ |
---|
27 | sha256 1a2f75c9a70aeb7a404dfaa96e0df0eaaa325df301c58f0f708d0da4c08e65a9 |
---|
28 | |
---|
29 | use_xz yes |
---|
30 | |
---|
31 | configure.cflags-append -Wno-format-nonliteral |
---|
32 | |
---|
33 | depends_lib port:gtk2 \ |
---|
34 | port:gettext \ |
---|
35 | port:libvorbis \ |
---|
36 | port:flac \ |
---|
37 | port:mp4v2 \ |
---|
38 | port:faad2 \ |
---|
39 | port:id3lib \ |
---|
40 | port:libid3tag \ |
---|
41 | port:speex \ |
---|
42 | port:wavpack |
---|
43 | |
---|
44 | depends_build port:hicolor-icon-theme \ |
---|
45 | port:pkgconfig |
---|
46 | |
---|
47 | post-destroot { xinstall -d ${destroot}${prefix}/share/doc/${name} |
---|
48 | xinstall -m 644 -v -W ${worksrcpath} \ |
---|
49 | COPYING README THANKS TODO NEWS HACKING \ |
---|
50 | ${destroot}${prefix}/share/doc/${name} |
---|
51 | } |
---|
52 | |
---|
53 | livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}" |
---|