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 | |
---|
6 | name inkscape-textext |
---|
7 | version 0.4.4 |
---|
8 | categories graphics tex |
---|
9 | maintainers gmail.com:jjstickel |
---|
10 | license bsd |
---|
11 | platforms darwin |
---|
12 | homepage http://pav.iki.fi/software/textext/ |
---|
13 | master_sites ${homepage} |
---|
14 | distname textext-${version} |
---|
15 | worksrcdir ${name} |
---|
16 | supported_archs noarch |
---|
17 | extract.mkdir yes |
---|
18 | use_configure no |
---|
19 | |
---|
20 | description LaTex typesetting in inkscape |
---|
21 | |
---|
22 | long_description Textext provides re-editable LaTeX objects to Inkscape’s \ |
---|
23 | repertoire. |
---|
24 | |
---|
25 | checksums sha256 4d3d262efc8b199dff407b6d153c8822ac9b30d46357e0cdc191c2c0f5fea077 \ |
---|
26 | rmd160 fcaf932207a5477562135b00be29445fc92e1caa |
---|
27 | |
---|
28 | depends_run port:inkscape\ |
---|
29 | port:pdf2svg\ |
---|
30 | bin:pdflatex:texlive-latex |
---|
31 | |
---|
32 | build {} |
---|
33 | |
---|
34 | destroot { |
---|
35 | xinstall -m 755 -d ${destroot}${prefix}/share/inkscape/extensions |
---|
36 | xinstall -m 644 ${worksrcpath}/textext.inx ${destroot}${prefix}/share/inkscape/extensions/textext.inx |
---|
37 | xinstall -m 755 ${worksrcpath}/textext.py ${destroot}${prefix}/share/inkscape/extensions/textext.py |
---|
38 | } |
---|