blob: 41edf44663e261fed91354b093ffe8b3a8541e49 (
plain)
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
34
35
|
# $NetBSD: Makefile,v 1.18 2015/09/14 16:38:15 tnn Exp $
#
# The "vera-ttf" package must always contain unmodified TTF files according
# to the terms of the license.
# If you need to alter the TTF files you must import the package under a
# different name that does not include the words "Vera" or Bitstream".
DISTNAME= ttf-bitstream-vera-1.10
PKGNAME= vera-ttf-1.10
PKGREVISION= 5
CATEGORIES= fonts
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/ttf-bitstream-vera/1.10/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.gnome.org/fonts/
COMMENT= Bitstream Vera TrueType fonts
LICENSE= vera-ttf-license
NO_CONFIGURE= YES
NO_BUILD= YES
USE_TOOLS+= pax
INSTALLATION_DIRS= share/fonts/X11/TTF \
share/doc/vera-ttf share/examples/vera-ttf
FONTS_DIRS.ttf= ${PREFIX}/share/fonts/X11/TTF
do-install:
cd ${WRKSRC} && pax -rw -pm *.ttf ${DESTDIR}${FONTS_DIRS.ttf}
${INSTALL_DATA} ${WRKSRC}/local.conf ${DESTDIR}${PREFIX}/share/examples/vera-ttf
cd ${WRKSRC} && ${INSTALL_DATA} *.TXT ${DESTDIR}${PREFIX}/share/doc/vera-ttf
.include "../../mk/bsd.pkg.mk"
|