aboutsummaryrefslogtreecommitdiff
path: root/print/font2svg/Makefile
blob: a15d17d88d01a7129d1a1a27179fcced708b1bca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Created by: ijliao
# $FreeBSD$

PORTNAME=	font2svg
PORTVERSION=	1.0
PORTREVISION=	6
CATEGORIES=	print
MASTER_SITES=	http://BSDforge.com/projects/source/print/font2svg/

MAINTAINER=	portmaster@BSDforge.com
COMMENT=	All fonts to svg-font converter

LICENSE=	GPLv2

RUN_DEPENDS=	bash:shells/bash

USES=		ghostscript:run
NO_BUILD=	yes

PLIST_FILES=	bin/font2svg %%DATADIR%%/encodings %%DATADIR%%/font2svg.ps

post-patch:
	@${REINPLACE_CMD} -e "s|^#!/bin/bash|#!/usr/bin/env bash| ; \
		 s|^font2svg_home=.*$$|font2svg_home=${DATADIR}|" \
		 ${WRKSRC}/font2svg.sh

do-install:
	${INSTALL_SCRIPT} ${WRKSRC}/font2svg.sh ${STAGEDIR}${PREFIX}/bin/font2svg
	@${MKDIR} ${STAGEDIR}${DATADIR}
	${INSTALL_DATA} ${WRKSRC}/encodings ${STAGEDIR}${DATADIR}
	${INSTALL_DATA} ${WRKSRC}/font2svg.ps ${STAGEDIR}${DATADIR}

.include <bsd.port.mk>