mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
dbc81c7d5b
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category X. CR: D511 Approved by: portmgr (bapt)
34 lines
828 B
Makefile
34 lines
828 B
Makefile
# Created by: Dominic Marks <dominic.marks@btinternet.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= artwiz-fonts
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= http://kobyla.info/soft/distfiles/ \
|
|
LOCAL/garga/artwiz/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= garga@FreeBSD.org
|
|
COMMENT= Set of free fonts for X11 desktops
|
|
|
|
NO_BUILD= yes
|
|
USES= tar:bzip2
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
WRKSRC= ${WRKDIR}/fluxbox-${PORTNAME}
|
|
|
|
FONTS= anorexia aqui cure cursor drift edges gelly glisp-bold \
|
|
glisp lime mints-mild mints-strong nu snap
|
|
FONTDIR= ${LOCALBASE}/lib/X11/fonts/${PORTNAME}/
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${FONTDIR}
|
|
.for f in ${FONTS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f}.pcf.gz ${STAGEDIR}${FONTDIR}
|
|
.endfor
|
|
${INSTALL_DATA} ${FILESDIR}/fonts.dir ${STAGEDIR}${FONTDIR}
|
|
|
|
.include <bsd.port.mk>
|