1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 34448 2008-02-25 11:20:13Z ryandesign@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name uif2iso |
---|
7 | version 0.1.6 |
---|
8 | |
---|
9 | categories sysutils |
---|
10 | platforms darwin |
---|
11 | maintainers gmail.com:billitch |
---|
12 | description converts UIF images to ISO images |
---|
13 | long_description ${description} |
---|
14 | |
---|
15 | homepage http://aluigi.org/mytoolz.htm#uif2iso |
---|
16 | master_sites http://aluigi.org/mytoolz/ |
---|
17 | distname uif2iso |
---|
18 | use_zip yes |
---|
19 | |
---|
20 | checksums md5 c18ba932e103f8f9e1f69e0600106082 \ |
---|
21 | sha1 c45dabb8e248160246ffd89f16cd12d533c17dd4 \ |
---|
22 | rmd160 6006a77c5c2bd7dab1c87024210a88790a5e2619 |
---|
23 | |
---|
24 | use_configure no |
---|
25 | worksrcdir src |
---|
26 | |
---|
27 | depends_build port:openssl \ |
---|
28 | port:zlib |
---|
29 | |
---|
30 | build.args CC=gcc CFLAGS=\"-L${prefix}/lib\" |
---|
31 | |
---|
32 | destroot { |
---|
33 | xinstall -m 755 ${worksrcpath}/uif2iso ${destroot}${prefix}/bin |
---|
34 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
35 | xinstall -m 644 ${workpath}/uif2iso.txt ${destroot}${prefix}/share/doc/${name} |
---|
36 | } |
---|