diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-26 18:03:17 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-26 18:03:17 +0000 |
commit | 4a168ba45f33263ee86fc398ff32f108cffb1330 (patch) | |
tree | ce7a1ac8f9b7693440cbcbb483790c51a17108b9 | |
parent | b916a8a6920750825f904fe72558905fe1fdea9e (diff) |
Add a Makefile there
-rw-r--r-- | font/bitstream-vera-ttf/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/font/bitstream-vera-ttf/Makefile b/font/bitstream-vera-ttf/Makefile new file mode 100644 index 000000000..253bb8a68 --- /dev/null +++ b/font/bitstream-vera-ttf/Makefile @@ -0,0 +1,36 @@ +# $OpenBSD: Makefile,v 1.1 2006/11/26 18:03:16 matthieu Exp $ + +FONT_FILES= \ + Vera.ttf \ + VeraBI.ttf \ + VeraBd.ttf \ + VeraIt.ttf \ + VeraMoBI.ttf \ + VeraMoBd.ttf \ + VeraMoIt.ttf \ + VeraMono.ttf \ + VeraSe.ttf \ + VeraSeBd.ttf \ + +fontdir= ${X11BASE}/lib/X11/fonts/TTF + +depend: + +all: + +clean: + +cleandir: + +install: + @for f in ${FONT_FILES}; do \ + echo "${INSTALL} -c ${.CURDIR}/$$f ${DESTDIR}${fontdir}" ; \ + ${INSTALL} -c ${.CURDIR}/$$f ${DESTDIR}${fontdir} ; \ + done + @rm -f ${DESTDIR}${fontdir}/fonts.scale + mkfontscale ${DESTDIR}${fontdir} + @rm -f ${DESTDIR}${fontdir}/fonts.dir + mkfontdir ${DESTDIR}${fontdir} + fc-cache -v ${DESTDIR}${fontdir} + +.include <bsd.xorg.mk> |