mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
41 lines
964 B
Makefile
41 lines
964 B
Makefile
# New ports collection makefile for: ppants-fonts
|
|
# Date created: 06/07/2003
|
|
# Whom: Dominic Marks <dominic.marks@btinternet.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ppantsfonts
|
|
PORTVERSION= 0.7
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= http://cus.org.uk/~dom/distfiles/ppants-fonts/
|
|
DISTNAME= ${PORTNAME}-default-${PORTVERSION}
|
|
|
|
MAINTAINER= dominic.marks@btinternet.com
|
|
COMMENT= A set of small angular fonts
|
|
|
|
NO_BUILD= yes
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
FONTS= moosefont terminalpants
|
|
FONTDIR= ${LOCALBASE}/lib/X11/fonts/${PORTNAME}/
|
|
FILES= ${FONTS:S,$,.pcf.gz,} ${FILESDIR}/fonts.dir
|
|
WRKSRC= ${WRKDIR}/ppants
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
.for FONT in ${FONTS:S,$,.pcf,}
|
|
cd ${WRKSRC} && ${GZIP_CMD} ${FONT}
|
|
.endfor
|
|
@${MKDIR} ${FONTDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${FILES} ${FONTDIR}
|
|
|
|
post-install:
|
|
@${SED} 's,$${LOCALBASE},${LOCALBASE},g' \
|
|
${PKGDIR}/pkg-message >${PKGMESSAGE}
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|