mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
4e6b9d37ad
Thanks to Grzegorz Blach <magik@roorback.net> for doing the hard work preparing the initial version of the update! PR: ports/148038 Submitted by: Grzegorz Blach <magik@roorback.net> (based on)
52 lines
997 B
Makefile
52 lines
997 B
Makefile
# New ports collection makefile for: evas
|
|
# Date created: 24 Oct 2000
|
|
# Whom: Jeremy Norris <ishmael27@home.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= evas
|
|
DISTVERSION= 1.0.0.beta
|
|
PORTREVISION= 0
|
|
PORTEPOCH= 2
|
|
CATEGORIES= graphics enlightenment
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
EXTRACT_ONLY= # none
|
|
|
|
MAINTAINER= stas@FreeBSD.org
|
|
COMMENT= A hardware accelerated canvas API (meta-port)
|
|
|
|
NO_BUILD= yes
|
|
USE_EFL= evas
|
|
|
|
EVAS_ENGINES= buffer opengl sdl x11 xrender
|
|
EVAS_LOADERS= bmp eet gif jpeg png pmaps svg tga tiff 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>
|