1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python26 1.0 |
---|
5 | |
---|
6 | name py26-eyed3 |
---|
7 | version 0.6.17 |
---|
8 | categories-append audio |
---|
9 | platforms darwin |
---|
10 | maintainers wanadoo.fr:neric27 openmaintainer |
---|
11 | description python module and program for processing ID3 tags |
---|
12 | long_description eyeD3 is a Python program/module for processing \ |
---|
13 | (reading and writing) ID3 tags. Information about mp3 \ |
---|
14 | files (i.e bit rate, sample frequency, play time, \ |
---|
15 | etc.) is also available. The formats supported are ID3 \ |
---|
16 | v1.0/v1.1 and v2.3/v2.4. |
---|
17 | |
---|
18 | homepage http://eyed3.nicfit.net/ |
---|
19 | master_sites ${homepage}/releases/ |
---|
20 | distname eyeD3-${version} |
---|
21 | |
---|
22 | checksums md5 7bc175d0eb1e0152753b2aca80df6fde \ |
---|
23 | sha1 a607ce4355f395ef137c265f8dad60ac67ba4e47 \ |
---|
24 | rmd160 32891c885f175e7f2da1201359d73309366930e9 |
---|
25 | |
---|
26 | |
---|
27 | use_configure yes |
---|
28 | |
---|
29 | post-configure { |
---|
30 | reinplace "s|/usr/bin/env python|${python.bin}|g" ${worksrcpath}/bin/eyeD3 |
---|
31 | } |
---|
32 | |
---|
33 | post-destroot { |
---|
34 | xinstall -m 755 ${worksrcpath}/bin/eyeD3 ${destroot}${prefix}/bin |
---|
35 | xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS \ |
---|
36 | README README.html THANKS TODO \ |
---|
37 | ${destroot}${prefix}/share/doc/${name} |
---|
38 | xinstall -m 644 ${worksrcpath}/doc/eyeD3.1 ${destroot}${prefix}/share/man/man1 |
---|
39 | } |
---|