diff --git a/math/gsl/Portfile b/math/gsl/Portfile
index 1423b77dec..c1419c8c1d 100644
a
|
b
|
|
1 | 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 | 2 | |
3 | 3 | PortSystem 1.0 |
| 4 | PortGroup python 1.0 |
4 | 5 | PortGroup compilers 1.0 |
5 | 6 | |
6 | 7 | name gsl |
7 | 8 | version 2.4 |
| 9 | revision 1 |
8 | 10 | categories math science |
9 | 11 | maintainers dtakahashi openmaintainer |
10 | 12 | license GPL-3+ |
… |
… |
compilers.choose cc |
39 | 41 | compilers.setup -dragonegg |
40 | 42 | |
41 | 43 | variant doc description "Install PDF and HTML documentation" { |
42 | | depends_build port:ghostscript bin:latex:texlive |
43 | | depends_build port:py27-sphinx_rtd_theme |
| 44 | depends_build port:ghostscript \ |
| 45 | bin:latex:texlive \ |
| 46 | port:texlive-latex-extra \ |
| 47 | port:py${python.default_version}-sphinx_rtd_theme |
| 48 | |
44 | 49 | post-build { |
45 | 50 | system -W ${worksrcpath}/doc "make latexpdf" |
46 | 51 | system -W ${worksrcpath}/doc "make html" |