diff options
author | sat <sat@FreeBSD.org> | 2007-01-22 23:30:39 +0800 |
---|---|---|
committer | sat <sat@FreeBSD.org> | 2007-01-22 23:30:39 +0800 |
commit | 3aa01a2168cfd19e3913d91c29ed48418d54964b (patch) | |
tree | 028f8fc60a7a754508ae93606b27f17c345defa0 /x11-fonts/fntsample/Makefile | |
parent | 671b73d4092e15c4dd1523bd112bc0db29b439ae (diff) | |
download | freebsd-ports-graphics-3aa01a2168cfd19e3913d91c29ed48418d54964b.tar.gz freebsd-ports-graphics-3aa01a2168cfd19e3913d91c29ed48418d54964b.tar.zst freebsd-ports-graphics-3aa01a2168cfd19e3913d91c29ed48418d54964b.zip |
Add port x11-fonts/fntsample:
A program for making font samples that show Unicode coverage of the
font and are similar in appearance to Unicode charts. Samples can be
saved as PDF or PostScript files.
WWW: http://sourceforge.net/projects/fntsample/
Author: Eugeniy Meshcheryakov <eugeniy@users.sourceforge.net>
Diffstat (limited to 'x11-fonts/fntsample/Makefile')
-rw-r--r-- | x11-fonts/fntsample/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/x11-fonts/fntsample/Makefile b/x11-fonts/fntsample/Makefile new file mode 100644 index 00000000000..70348fe621a --- /dev/null +++ b/x11-fonts/fntsample/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: fntsample +# Date created: 22 January 2007 +# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= fntsample +PORTVERSION= 2.1 +CATEGORIES= x11-fonts +MASTER_SITES= SF http://unicode.org/Public/5.0.0/ucd/:unidata +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} Blocks.txt:unidata +EXTRACT_ONLY= ${DISTFILES:M*gz} + +MAINTAINER= infofarmer@FreeBSD.org +COMMENT= Show Unicode coverage of a font + +LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo \ + freetype.9:${PORTSDIR}/print/freetype2 + +USE_GNOME= glib20 pkgconfig +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --mandir=${MANPREFIX}/man +PLIST_FILES= bin/${PORTNAME} +MAN1= ${PORTNAME}.1 + +post-extract: + @${CP} ${_DISTDIR}/Blocks.txt ${WRKSRC}/ + +post-patch: + @${REINPLACE_CMD} -e 's|/usr/share/unicode|${WRKSRC}|' ${WRKSRC}/configure + +.include <bsd.port.mk> |