Permalink
Browse files
tex-f7u12: Use a specific version, not master
Use github and texlive portgroups. Simplify destroot. Indicate license.
- Loading branch information
| @@ -1,43 +1,39 @@ | ||
| # -*- 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 | ||
|
|
||
| PortSystem 1.0 | ||
| PortGroup github 1.0 | ||
| PortGroup texlive 1.0 | ||
|
|
||
| github.setup jfhbrook latex-f7u12 37444defbd10696cb00b7297bab6be455207a9f8 | ||
| name tex-f7u12 | ||
| version dev | ||
| version 20110420 | ||
| categories tex | ||
| platforms darwin | ||
| supported_archs noarch | ||
| maintainers nomaintainer | ||
| license WTFPL | ||
|
|
||
| description Latex package for using ragefaces | ||
| long_description ${description} | ||
|
|
||
| homepage https://github.com/jesusabdullah/latex-f7u12 | ||
|
|
||
| fetch.type git | ||
| git.url https://github.com/jesusabdullah/latex-f7u12.git | ||
| git.branch origin/master | ||
|
|
||
| distname latex-f7u12 | ||
|
|
||
| depends_lib bin:tex:texlive | ||
|
|
||
| use_configure no | ||
| build {} | ||
|
|
||
| checksums md5 7a5ac28f0267e419b8d79d049cfca652 \ | ||
| sha1 6896f5e689a5927b7fb71387e82ccad27e27cdff \ | ||
| rmd160 bd3da9417d7cd0244f519d98b9c16d73ab9d8887 | ||
| checksums rmd160 acfd7e2aa608977183ae7855aa3656f297b4b4f3 \ | ||
| sha256 9d6c6a6af885bbae3b4bfa94a5e06d5ec7c4814a0f5fab3d87c5406cf564a27e \ | ||
| size 2942626 | ||
|
|
||
| destroot { | ||
| xinstall -m 755 -d ${destroot}${prefix}/share/texmf-dist/tex/latex/f7u12 | ||
| xinstall -m 755 -d ${destroot}${prefix}/share/texmf-dist/tex/latex/f7u12/svg | ||
| xinstall -m 755 -d ${destroot}${prefix}/share/texmf-dist/tex/latex/f7u12/faces | ||
| xinstall -m 644 ${worksrcpath}/f7u12.sty ${destroot}${prefix}/share/texmf-dist/tex/latex/f7u12/ | ||
| xinstall -m 644 {*}[glob ${worksrcpath}/faces/*] ${destroot}${prefix}/share/texmf-dist/tex/latex/f7u12/faces/ | ||
| xinstall -m 644 {*}[glob ${worksrcpath}/svg/*] ${destroot}${prefix}/share/texmf-dist/tex/latex/f7u12/svg/ | ||
| xinstall -d ${destroot}${texlive_texmfdist}/tex/latex/f7u12/ | ||
| copy ${worksrcpath}/f7u12.sty ${worksrcpath}/faces ${worksrcpath}/svg ${destroot}${texlive_texmfdist}/tex/latex/f7u12/ | ||
| } | ||
|
|
||
| post-activate { system "mktexlsr" } | ||
| post-activate { | ||
| texlive.mktexlsr | ||
| } | ||
|
|
||
| livecheck.type none | ||
| post-deactivate { | ||
| texlive.mktexlsr | ||
| } |