freebsd-ports/graphics/evas/Makefile
Baptiste Daroussin 4a4ec28d37 Convert all :U to :tu and :L to :tl
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)

bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore

Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier

With hat:	portmgr
2014-05-05 09:45:36 +00:00

51 lines
1 KiB
Makefile

# Created by: Jeremy Norris <ishmael27@home.com>
# $FreeBSD$
PORTNAME= evas
PORTVERSION= 1.7.9
PORTEPOCH= 2
CATEGORIES= graphics enlightenment
MASTER_SITES= # none
DISTFILES= # none
EXTRACT_ONLY= # none
MAINTAINER= gblach@FreeBSD.org
COMMENT= A hardware accelerated canvas API (meta-port)
NO_BUILD= yes
USE_EFL= evas
OPTIONS_MULTI= ENGINES
OPTIONS_MULTI_ENGINES=BUFFER OPENGL SDL X11
OPTIONS_DEFINE= BMP EET GENERIC GIF ICO JPEG \
PNG PMAPS PSD SVG TGA TIFF WBMP XPM
OPTIONS_DEFAULT=BUFFER OPENGL X11 \
BMP EET GENERIC GIF ICO JPEG \
PNG PMAPS PSD TGA TIFF WBMP XPM
.for NODE in ${OPTIONS_MULTI_ENGINES}
${NODE}_DESC= Install ${NODE:tl} engine
.endfor
.for NODE in ${OPTIONS_DEFINE}
${NODE}_DESC= Install ${NODE:tl} loader
.endfor
.include <bsd.port.options.mk>
.for NODE in ${OPTIONS_MULTI_ENGINES}
. if ${PORT_OPTIONS:M${NODE}}
USE_EFL_EVAS_ENGINES+= ${NODE:tl}
. endif
.endfor
.for NODE in ${OPTIONS_DEFINE}
. if ${PORT_OPTIONS:M${NODE}}
USE_EFL_EVAS_LOADERS+= ${NODE:tl}
. endif
.endfor
do-install:
${DO_NADA}
.include <bsd.port.mk>