View | Details | Raw Unified | Return to bug 264151 | Differences between
and this patch

Collapse All | Expand All

(-)b/textproc/Makefile (+1 lines)
Lines 1510-1515 Link Here
1510
    SUBDIR += py-sphinxcontrib-programoutput
1510
    SUBDIR += py-sphinxcontrib-programoutput
1511
    SUBDIR += py-sphinxcontrib-qthelp
1511
    SUBDIR += py-sphinxcontrib-qthelp
1512
    SUBDIR += py-sphinxcontrib-serializinghtml
1512
    SUBDIR += py-sphinxcontrib-serializinghtml
1513
    SUBDIR += py-sphinxcontrib-svg2pdfconverter
1513
    SUBDIR += py-sphinxcontrib-towncrier
1514
    SUBDIR += py-sphinxcontrib-towncrier
1514
    SUBDIR += py-sphinxcontrib-websupport
1515
    SUBDIR += py-sphinxcontrib-websupport
1515
    SUBDIR += py-sphinxemoji
1516
    SUBDIR += py-sphinxemoji
(-)b/textproc/py-sphinxcontrib-svg2pdfconverter/Makefile (+31 lines)
Added Link Here
1
PORTNAME=      sphinxcontrib-svg2pdfconverter
2
PORTVERSION=   1.2.0
3
CATEGORIES=    textproc python
4
MASTER_SITES=  CHEESESHOP
5
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=    agh@riseup.net
8
COMMENT=       Sphinx extension for converting SVG to PDF
9
10
LICENSE=       BSD2CLAUSE
11
LICENSE_FILE=  ${WRKSRC}/LICENSE.txt
12
13
RUN_DEPENDS=   ${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR}
14
15
USES=          python:3.8+
16
USE_PYTHON=    autoplist concurrent distutils flavors
17
18
NO_ARCH=       yes
19
20
OPTIONS_DEFINE=        RSVGIMPL
21
RSVGIMPL_DESC= Depend on the Rust implementation of rsvg-convert
22
23
.include <bsd.port.options.mk>
24
25
.if ${PORT_OPTIONS:MRSVGIMPL}
26
RUN_DEPENDS+=  rsvg-convert:graphics/librsvg2-rust
27
.else
28
RUN_DEPENDS+=  rsvg-convert:graphics/librsvg2
29
.endif
30
31
.include <bsd.port.mk>
(-)b/textproc/py-sphinxcontrib-svg2pdfconverter/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1653182842
2
SHA256 (sphinxcontrib-svg2pdfconverter-1.2.0.tar.gz) = 60d14562bc7e6f1ad30f1b63a137659508868c87ce182c1d7fc08bee67b5851d
3
SIZE (sphinxcontrib-svg2pdfconverter-1.2.0.tar.gz) = 5479
(-)b/textproc/py-sphinxcontrib-svg2pdfconverter/pkg-descr (+7 lines)
Added Link Here
1
Sphinx SVG to PDF Converter Extension:
2
3
This extension converts SVG images to PDF in case the builder does
4
not support SVG images natively (e.g. LaTeX). libRSVG is used
5
internally.
6
7
WWW: https://github.com/missinglinkelectronics/sphinxcontrib-svg2pdfconverter

Return to bug 264151