mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
bbc8c4d740
Approved by: portmgr (not really, but touches unstaged ports)
69 lines
1.6 KiB
Makefile
69 lines
1.6 KiB
Makefile
# Created by: Stanislav Sedov <stas@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= core
|
|
PORTVERSION= 1.7.9
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics enlightenment
|
|
MASTER_SITES= http://download.enlightenment.org/releases/ \
|
|
LOCAL/gblach/e17/
|
|
PKGNAMEPREFIX= evas-
|
|
DISTNAME= ${PKGNAMEPREFIX}${PORTVERSION}
|
|
|
|
MAINTAINER= gblach@FreeBSD.org
|
|
COMMENT= Hardware accelerated canvas API (core library)
|
|
|
|
LICENSE= BSD
|
|
|
|
LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2
|
|
|
|
DIST_SUBDIR= e17
|
|
GNU_CONFIGURE= yes
|
|
USES= pathfix pkgconfig tar:bzip2
|
|
USE_GCC= any
|
|
USE_EFL= librt_hack libtool_hack
|
|
USE_LDCONFIG= yes
|
|
DATADIR= ${PREFIX}/share/evas
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/evas
|
|
|
|
.include "Makefile.inc"
|
|
|
|
OPTIONS_DEFINE= EET FONTCONFIG FRIBIDI EXAMPLES
|
|
OPTIONS_DEFAULT=EET FONTCONFIG FRIBIDI
|
|
EET_DESC= EET font loader
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MFONTCONFIG}
|
|
LIB_DEPENDS+= libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig
|
|
CONFIGURE_ARGS+=--enable-fontconfig
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-fontconfig
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MFRIBIDI}
|
|
LIB_DEPENDS+= libfribidi.so:${PORTSDIR}/converters/fribidi
|
|
CONFIGURE_ARGS+=--enable-fribidi
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-fribidi
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MEET}
|
|
USE_EFL+= eet
|
|
CONFIGURE_ARGS+=--enable-font-loader-eet
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-font-loader-eet
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
CONFIGURE_ARGS+=--enable-install-examples
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-install-examples
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|= \$$(datadir)/\$$(PACKAGE)/examples|= $$(datadir)/examples/$$(PACKAGE)|' \
|
|
${WRKSRC}/src/examples/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|