freebsd-ports/graphics/evas/Makefile
Grzegorz Blach ed1ad7e1b9 - Change my email address to gblach@FreeBSD.org
- Change Makefile headers to shorter form

Feature safe:	yes
2012-11-04 13:05:04 +00:00

46 lines
912 B
Makefile

# Created by: Jeremy Norris <ishmael27@home.com>
# $FreeBSD$
PORTNAME= evas
DISTVERSION= 1.1.0
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
EVAS_ENGINES= buffer opengl sdl x11
EVAS_LOADERS= bmp eet gif ico jpeg png pmaps psd svg tga tiff wbmp xpm
.for NODE in ${EVAS_ENGINES}
OPTIONS+= ${NODE:U} "Install ${NODE} evas engine" on
.endfor
.for NODE in ${EVAS_LOADERS}
OPTIONS+= ${NODE:U} "Install ${NODE} evas loader" on
.endfor
.include <bsd.port.pre.mk>
.for NODE in ${EVAS_ENGINES}
. if !defined(WITHOUT_${NODE:U})
USE_EFL_EVAS_ENGINES+= ${NODE}
. endif
.endfor
.for NODE in ${EVAS_LOADERS}
. if !defined(WITHOUT_${NODE:U})
USE_EFL_EVAS_LOADERS+= ${NODE}
. endif
.endfor
do-install:
${DO_NADA}
.include <bsd.port.post.mk>