blob: 5c46cde60872fbe710fa3846d5ec471cb65521fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Created by: Stanislav Sedov <stas@FreeBSD.org>
# $FreeBSD$
PORTNAME= ecore
PORTVERSION= 1.7.8
PORTEPOCH= 2
CATEGORIES= devel enlightenment
MASTER_SITES= # none
DISTFILES= # none
EXTRACT_ONLY= # none
MAINTAINER= gblach@FreeBSD.org
COMMENT= Enlightenment core abstraction library (meta port)
NO_BUILD= yes
USE_EFL= ecore
OPTIONS_DEFINE= CON EVAS FILE IMF IMF_EVAS INPUT INPUT_EVAS IPC SDL X11
OPTIONS_DEFAULT=CON EVAS FILE IMF IMF_EVAS INPUT INPUT_EVAS IPC X11
.for NODE in ${OPTIONS_DEFINE}
${NODE}_DESC= Install ${NODE:L} module
.endfor
NO_STAGE= yes
.include <bsd.port.options.mk>
.for NODE in ${OPTIONS_DEFINE}
. if ${PORT_OPTIONS:M${NODE}}
USE_EFL_ECORE+= ${NODE:L}
. endif
.endfor
do-install:
${DO_NADA}
.include <bsd.port.mk>
|