mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
4a4ec28d37
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr
32 lines
673 B
Makefile
32 lines
673 B
Makefile
# Created by: Stanislav Sedov <stas@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ecore
|
|
PORTVERSION= 1.7.9
|
|
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
|
|
NO_INSTALL= yes
|
|
NO_MTREE= 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:tl} module
|
|
.endfor
|
|
|
|
.for NODE in ${OPTIONS_DEFINE}
|
|
${NODE}_USE= EFL_ECORE=${NODE:tl}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|