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 | name djvu2pdf |
---|
6 | version 0.9.1 |
---|
7 | categories graphics |
---|
8 | platforms darwin |
---|
9 | maintainers nomaintainer |
---|
10 | |
---|
11 | description A small tool to convert Djvu files to PDF files. |
---|
12 | long_description A small tool to convert Djvu files to PDF files. |
---|
13 | homepage http://0x2a.at/site/projects/djvu2pdf/ |
---|
14 | master_sites http://0x2a.at/site/projects/djvu2pdf/ |
---|
15 | |
---|
16 | checksums md5 47a77ec1693c352dda1cd7ced3f50c1c \ |
---|
17 | sha1 9423f21af20a54f5d11b749cde1f1051d6978219 \ |
---|
18 | rmd160 b0fda8e4ccec0374820b8552d9a1e95080617525 |
---|
19 | |
---|
20 | depends_lib port:djvulibre |
---|
21 | |
---|
22 | use_configure no |
---|
23 | |
---|
24 | build {} |
---|
25 | |
---|
26 | destroot { |
---|
27 | xinstall -m 755 ${worksrcpath}/djvu2pdf ${destroot}${prefix}/bin |
---|
28 | xinstall -m 444 ${worksrcpath}/djvu2pdf.1.gz ${destroot}${prefix}/share/man/man1 |
---|
29 | xinstall -d ${destroot}${prefix}/share/doc/${name} |
---|
30 | xinstall -m 644 -W ${worksrcpath} INSTALL changelog copyright ${destroot}${prefix}/share/doc/${name} |
---|
31 | } |
---|
32 | |
---|