Ticket #33612: inkscape-textext_Portfile

File inkscape-textext_Portfile, 1.3 KB (added by jjstickel (Jonathan Stickel), 12 years ago)
Line 
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
4PortSystem              1.0
5
6name                    inkscape-textext
7version                 0.4.4
8categories              graphics tex
9maintainers             gmail.com:jjstickel
10license                 bsd
11platforms               darwin
12homepage                http://pav.iki.fi/software/textext/
13master_sites            ${homepage}
14distname                textext-${version}
15worksrcdir              ${name}
16supported_archs         noarch
17extract.mkdir           yes
18use_configure           no
19
20description             LaTex typesetting in inkscape
21
22long_description   Textext provides re-editable LaTeX objects to Inkscapes \
23                   repertoire.
24
25checksums           sha256  4d3d262efc8b199dff407b6d153c8822ac9b30d46357e0cdc191c2c0f5fea077 \
26                    rmd160  fcaf932207a5477562135b00be29445fc92e1caa
27                   
28depends_run    port:inkscape\
29    port:pdf2svg\
30    bin:pdflatex:texlive-latex
31
32build {}
33
34destroot {
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}