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 | PortSystem 1.0 |
---|
4 | PortGroup python27 1.0 |
---|
5 | |
---|
6 | name py27-mat |
---|
7 | version 0.2.2 |
---|
8 | categories python |
---|
9 | platforms darwin |
---|
10 | license GPL-2 |
---|
11 | maintainers nomaintainer |
---|
12 | description Metadata Anonymisation Toolkit (CLI + GTK-GUI) |
---|
13 | long_description Metadata Anonymisation Toolkit is a toolbox composed of a GUI application, \ |
---|
14 | a CLI application, and a library. The toolkit removes metadata from your files, \ |
---|
15 | it does not anonymise their content, nor handle watermarking, steganography, \ |
---|
16 | or any overly customized metadata field/system. \ |
---|
17 | \ |
---|
18 | Supported formats so far: \ |
---|
19 | Portable Network Graphics (.png) \ |
---|
20 | JPEG (.jpg, .jpeg, ...) \ |
---|
21 | Open Documents (.odt, .odx, .ods, ...) \ |
---|
22 | Office OpenXML (.docx, .pptx, .xlsx, ...) \ |
---|
23 | Portable Document Fileformat (.pdf) \ |
---|
24 | Tape ARchives (.tar, .tar.bz2, .tar.gz, ...) \ |
---|
25 | Zip (.zip) \ |
---|
26 | MPEG Audio (.mp3, .mp2) \ |
---|
27 | Ogg Vorbis (.ogg, ...) \ |
---|
28 | Free Lossless Audio Codec (.flac) \ |
---|
29 | Torrent (.torrent) |
---|
30 | |
---|
31 | homepage https://mat.boum.org/ |
---|
32 | master_sites https://mat.boum.org/files/ |
---|
33 | distname mat-${version} |
---|
34 | |
---|
35 | checksums md5 3616b4e37a4e7c899253fa5659109686 \ |
---|
36 | sha256 1c894e86da7402738736842a3a973efb3487844b3d35229b4ab295d611c226a2 |
---|
37 | |
---|
38 | depends_lib port:python27 \ |
---|
39 | port:py27-hachoir-core \ |
---|
40 | port:py27-hachoir-parser \ |
---|
41 | port:p5.12-image-exiftool \ |
---|
42 | port:py27-poppler \ |
---|
43 | port:py27-cairo \ |
---|
44 | port:py27-mutagen |
---|
45 | |
---|
46 | livecheck.type regex |
---|
47 | livecheck.url https://mat.boum.org/files/ |
---|
48 | livecheck.regex {mat-(\d+(?:\.\d+)*)\.tar\.gz} |
---|
49 | |
---|
50 | configure.python ${prefix}/bin/python2.7 |
---|
51 | set python_prefix ${frameworks_dir}/Python.framework/Versions/2.7 |
---|
52 | configure.pre_args-delete --prefix=${prefix} |
---|
53 | configure.pre_args-append --prefix=${python_prefix} |
---|
54 | configure.args-append --includedir=${python_prefix}/include/python2.7 |
---|
55 | |
---|
56 | build {} |
---|