2000-11-03 12:24:18 +00:00
|
|
|
# New ports collection makefile for: evas
|
|
|
|
# Date created: 24 Oct 2000
|
|
|
|
# Whom: Jeremy Norris <ishmael27@home.com>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= evas
|
2010-12-14 07:30:56 +00:00
|
|
|
DISTVERSION= 1.0.0.beta
|
|
|
|
PORTREVISION= 0
|
2008-03-11 21:13:53 +00:00
|
|
|
PORTEPOCH= 2
|
2010-12-14 07:30:56 +00:00
|
|
|
CATEGORIES= graphics enlightenment
|
2008-03-11 21:13:53 +00:00
|
|
|
MASTER_SITES= # none
|
|
|
|
DISTFILES= # none
|
|
|
|
EXTRACT_ONLY= # none
|
2000-11-03 12:24:18 +00:00
|
|
|
|
2006-10-08 13:48:37 +00:00
|
|
|
MAINTAINER= stas@FreeBSD.org
|
2008-03-11 21:13:53 +00:00
|
|
|
COMMENT= A hardware accelerated canvas API (meta-port)
|
2000-11-03 12:24:18 +00:00
|
|
|
|
2008-03-11 21:13:53 +00:00
|
|
|
NO_BUILD= yes
|
|
|
|
USE_EFL= evas
|
2006-07-06 15:48:49 +00:00
|
|
|
|
2008-03-11 21:13:53 +00:00
|
|
|
EVAS_ENGINES= buffer opengl sdl x11 xrender
|
2010-12-14 07:30:56 +00:00
|
|
|
EVAS_LOADERS= bmp eet gif jpeg png pmaps svg tga tiff xpm
|
2006-07-11 08:18:25 +00:00
|
|
|
|
2008-03-11 21:13:53 +00:00
|
|
|
.for NODE in ${EVAS_ENGINES}
|
|
|
|
OPTIONS+= ${NODE:U} "Install ${NODE} evas engine" on
|
|
|
|
.endfor
|
2006-10-08 13:48:37 +00:00
|
|
|
|
2008-03-11 21:13:53 +00:00
|
|
|
.for NODE in ${EVAS_LOADERS}
|
|
|
|
OPTIONS+= ${NODE:U} "Install ${NODE} evas loader" on
|
|
|
|
.endfor
|
2006-10-08 13:48:37 +00:00
|
|
|
|
2008-03-11 21:13:53 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
2006-10-08 13:48:37 +00:00
|
|
|
|
2008-03-11 21:13:53 +00:00
|
|
|
.for NODE in ${EVAS_ENGINES}
|
|
|
|
. if !defined(WITHOUT_${NODE:U})
|
|
|
|
USE_EFL_EVAS_ENGINES+= ${NODE}
|
|
|
|
. endif
|
|
|
|
.endfor
|
2006-10-08 13:48:37 +00:00
|
|
|
|
2008-03-11 21:13:53 +00:00
|
|
|
.for NODE in ${EVAS_LOADERS}
|
|
|
|
. if !defined(WITHOUT_${NODE:U})
|
|
|
|
USE_EFL_EVAS_LOADERS+= ${NODE}
|
|
|
|
. endif
|
|
|
|
.endfor
|
2006-10-08 13:48:37 +00:00
|
|
|
|
2008-03-11 21:13:53 +00:00
|
|
|
do-install:
|
|
|
|
${DO_NADA}
|
2006-10-08 13:48:37 +00:00
|
|
|
|
2006-07-06 15:48:49 +00:00
|
|
|
.include <bsd.port.post.mk>
|