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

Collapse All | Expand All

(-)./distinfo (-1 / +7 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1525909662
1
TIMESTAMP = 1526163725
2
SHA256 (FantasqueSansMono-Normal.tar.gz) = 8d96295a75a71d6ddb3a905ff8db993bd6990602d3b38dd4428827af8f6ef2f7
2
SHA256 (FantasqueSansMono-Normal.tar.gz) = 8d96295a75a71d6ddb3a905ff8db993bd6990602d3b38dd4428827af8f6ef2f7
3
SIZE (FantasqueSansMono-Normal.tar.gz) = 1843873
3
SIZE (FantasqueSansMono-Normal.tar.gz) = 1843873
4
SHA256 (FantasqueSansMono-NoLoopK.tar.gz) = 51ac5eeb6108fc538bb43f99ff3891fc045932f85228d13090830a6f481eeb10
5
SIZE (FantasqueSansMono-NoLoopK.tar.gz) = 1844981
6
SHA256 (FantasqueSansMono-LargeLineHeight.tar.gz) = 6cb833cb2a8442a007c89dfe1b136052d13d4962d788e226f832618d0c10cdd9
7
SIZE (FantasqueSansMono-LargeLineHeight.tar.gz) = 1845258
8
SHA256 (FantasqueSansMono-LargeLineHeight-NoLoopK.tar.gz) = c5372f405a7f95a9a98349f218af17dc76802d2ff515fc00c9303b796f89af73
9
SIZE (FantasqueSansMono-LargeLineHeight-NoLoopK.tar.gz) = 1845073
(-)./Makefile (-1 / +26 lines)
Lines 4-10 Link Here
4
PORTVERSION=	1.7.2
4
PORTVERSION=	1.7.2
5
CATEGORIES=	x11-fonts
5
CATEGORIES=	x11-fonts
6
MASTER_SITES=	https://github.com/belluzj/fantasque-sans/releases/download/v${PORTVERSION}/
6
MASTER_SITES=	https://github.com/belluzj/fantasque-sans/releases/download/v${PORTVERSION}/
7
DISTNAME=	FantasqueSansMono-Normal
7
DISTFILES=	FantasqueSansMono-Normal.tar.gz \
8
		FantasqueSansMono-NoLoopK.tar.gz \
9
		FantasqueSansMono-LargeLineHeight.tar.gz \
10
		FantasqueSansMono-LargeLineHeight-NoLoopK.tar.gz
8
11
9
MAINTAINER=	rakuco@FreeBSD.org
12
MAINTAINER=	rakuco@FreeBSD.org
10
COMMENT=	Programming font, designed with functionality in mind
13
COMMENT=	Programming font, designed with functionality in mind
Lines 18-23 Link Here
18
21
19
OPTIONS_DEFINE=	DOCS
22
OPTIONS_DEFINE=	DOCS
20
23
24
OPTIONS_SINGLE=	VARIANT
25
OPTIONS_SINGLE_VARIANT= NORMAL NOLOOPK LARGELINE LARGELINENOLOOPK
26
27
NORMAL_DESC=	Standard
28
NOLOOPK_DESC=	Nondescript K
29
LARGELINE_DESC=	Wider line spacing
30
LARGELINENOLOOPK_DESC=	Wider line spacing with Nondescript K
31
32
OPTIONS_DEFAULT=	NORMAL
33
34
.include <bsd.port.options.mk>
35
36
.if ${PORT_OPTIONS:MNORMAL}
37
EXTRACT_ONLY=	FantasqueSansMono-Normal.tar.gz
38
.elif ${PORT_OPTIONS:MNOLOOPK}
39
EXTRACT_ONLY=	FantasqueSansMono-NoLoopK.tar.gz
40
.elif ${PORT_OPTIONS:MLARGELINE}
41
EXTRACT_ONLY=	FantasqueSansMono-LargeLineHeight.tar.gz
42
.elif ${PORT_OPTIONS:MLARGELINENOLOOPK}
43
EXTRACT_ONLY=	FantasqueSansMono-LargeLineHeight-NoLoopK.tar.gz
44
.endif
45
21
do-install:
46
do-install:
22
	${MKDIR} ${STAGEDIR}${FONTSDIR}
47
	${MKDIR} ${STAGEDIR}${FONTSDIR}
23
	cd ${WRKSRC}/OTF && \
48
	cd ${WRKSRC}/OTF && \

Return to bug 228206