freebsd-ports/graphics/evas-loader-generic/Makefile
Baptiste Daroussin 4a4ec28d37 Convert all :U to :tu and :L to :tl
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
2014-05-05 09:45:36 +00:00

59 lines
1.6 KiB
Makefile

# Created by: Grzegorz Blach <gblach@FreeBSD.org>
# $FreeBSD$
PORTNAME= loader-generic
PORTVERSION= 1.7.9
CATEGORIES= graphics enlightenment
MASTER_SITES= http://download.enlightenment.org/releases/ \
LOCAL/gblach/e17/
PKGNAMEPREFIX= evas-
DISTNAME= ${PKGNAMEPREFIX}${PORTVERSION}
MAINTAINER= gblach@FreeBSD.org
COMMENT= A hardware accelerated canvas API (generic loader)
LICENSE= BSD
EVAS_GENERIC_LOADERS= gst pdf ps raw svg xcf
.for NODE in ${EVAS_GENERIC_LOADERS}
OPTIONS_DEFINE+= ${NODE:tu}
OPTIONS_DEFAULT+= ${NODE:tu}
${NODE:tu}_DESC= Install ${NODE} evas generic loader
.endfor
DIST_SUBDIR= e17
USE_BZIP2= yes
GNU_CONFIGURE= yes
USES= gmake pkgconfig
USE_EFL= evas librt_hack libtool_hack
USE_LDCONFIG= yes
MAKEDIRS= ${WRKSRC}/src/modules/loaders/generic
.include "../evas-core/Makefile.inc"
CONFIGURE_ARGS+= --enable-image-loader-generic
.include <bsd.port.options.mk>
.for NODE in ${EVAS_GENERIC_LOADERS}
. if ${PORT_OPTIONS:M${NODE:tu}}
RUN_DEPENDS+= ${LOCALBASE}/lib/evas/utils/evas_image_loader.${NODE}:${PORTSDIR}/graphics/evas_generic_loaders-${NODE}
. endif
.endfor
post-patch:
@${REINPLACE_CMD} -E \
-e 's,\$$\(top_builddir\)/src/lib/\.libs,${LOCALBASE}/lib,' \
-e 's,\$$\(top_builddir\)/src/lib/libevas\.la,-levas,' \
${MAKEDIRS:S,$,/Makefile.in,}
do-build:
@(for DIR in ${MAKEDIRS}; do cd $${DIR}; ${SETENV} ${MAKE_ENV} ${GMAKE} \
${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}; done)
do-install:
@(for DIR in ${MAKEDIRS}; do cd $${DIR}; ${SETENV} ${MAKE_ENV} ${GMAKE} \
${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}; done)
.include <bsd.port.mk>