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