12 | | description Libewf is a library for support of the Expert Witness Compression Format |
13 | | homepage http://libewf.sourceforge.net/ |
14 | | platforms darwin |
15 | | homepage http://code.google.com/p/libewf/ |
| 15 | platforms darwin |
| 16 | description Libewf and tooling to access the Expert Witness Compression Format (EWF). |
| 17 | long_description Libewf is a library for support of the Expert Witness \ |
| 18 | Compression Format (EWF), it support both the SMART \ |
| 19 | format (EWF-S01) and the EnCase format (EWF-E01). \ |
| 20 | Libewf allows you to read and write media information within the EWF files. |
| 21 | homepage https://code.google.com/p/libewf/ |
26 | | |
27 | | checksums rmd160 3b9d24feba48a9db96576eeecf84e88942552406 \ |
28 | | sha256 e4ffe1b538cb496ca043ab0f738487828babe33285f29b4ce1cbe115af83a92d |
| 27 | checksums md5 fdf615f23937fad8e02b60b9e3e5fb35 \ |
| 28 | rmd160 bd86f502d9e196dde0de81753595b7b34daa545f \ |
| 29 | sha256 d14030ce6122727935fbd676d0876808da1e112721f3cb108564a4d9bf73da71 |
| 30 | |
| 31 | depends_lib port:openssl |
| 32 | |
| 33 | configure.args-append --disable-dependency-tracking |
| 34 | |
| 35 | default_variants +debug +python27 |
| 36 | |
| 37 | variant debug description { enable debug } { |
| 38 | configure.args-append --enable-verbose-output --enable-debug-output |
| 39 | } |
| 40 | |
| 41 | variant python27 description { Python Bindings using Python 2.7} { |
| 42 | ## Enforce the right python config |
| 43 | configure.env PYTHON_CONFIG=${prefix}/bin/python2.7-config PYTHON_VERSION=2.7 |
| 44 | |
| 45 | depends_lib-append port:python27 |
| 46 | configure.args-append --enable-python \ |
| 47 | --with-pyprefix=`${prefix}/bin/python2.7-config --prefix` |
| 48 | post-destroot { |
| 49 | xinstall -d ${destroot}${frameworks_dir}/Python.framework/Versions/2.7/lib/python2.7/site-packages/ |
| 50 | foreach file [glob -nocomplain -directory ${destroot}/Library/Python/2.7/site-packages *] { |
| 51 | move ${file} ${destroot}${frameworks_dir}/Python.framework/Versions/2.7/lib/python2.7/site-packages/ |
| 52 | } |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | livecheck.type regex |
| 57 | livecheck.url [lindex ${master_sites} 0] |
| 58 | livecheck.regex ${name}-(\[0-9.\]+)${extract.suffix} |