mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
c59a3834c4
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are currently broken. This is a temporary measure until we organically stop using := or someone(s) spend a lot of time changing all the ports over. Explicit duplication > := > = and this just moves ports one step to the left Approved by: portmgr
41 lines
932 B
Makefile
41 lines
932 B
Makefile
# New ports collection makefile for: ecofont
|
|
# Date created: 2010-04-09
|
|
# Whom: Joseph S. Atkinson <jsa@wickedmachine.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ecofont
|
|
PORTVERSION= 2.05
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= http://www.ecofont.com/assets/files/
|
|
DISTNAME= ecofont_vera_sans_regular
|
|
|
|
MAINTAINER= jsa@FreeBSD.org
|
|
COMMENT= Environmentally friendly, ink saving typeface
|
|
|
|
BUILD_DEPENDS= fc-cache:${PORTSDIR}/x11-fonts/fontconfig
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USE_ZIP= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= ${ECOFONTDIR}/${ECOFONT}
|
|
PLIST_DIRS= ${ECOFONTDIR}
|
|
|
|
SUB_LIST= ECOFONTDIR="${PREFIX}/${ECOFONTDIR}"
|
|
SUB_FILES= pkg-message
|
|
|
|
ECOFONT= ${DISTNAME}.ttf
|
|
ECOFONTDIR= lib/X11/fonts/${PORTNAME}
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/${ECOFONTDIR}
|
|
@${INSTALL_DATA} ${WRKDIR}/${ECOFONT} ${PREFIX}/${ECOFONTDIR}
|
|
|
|
post-install:
|
|
@${LOCALBASE}/bin/fc-cache -f -v ${PREFIX}/${ECOFONTDIR} > /dev/null
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|