mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
a33191366c
Please note that lots of invocation of MAKE_CMD here are wrong as they do not properly respect MAKE_ENV and friends With hat: portmgr
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
# Created by: Stanislav Sedov <stas@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= engine-opengl
|
|
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 (OpenGL engine)
|
|
|
|
LICENSE= BSD
|
|
|
|
LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2
|
|
|
|
DIST_SUBDIR= e17
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake pkgconfig
|
|
USE_EFL= evas librt_hack libtool_hack
|
|
USE_XORG= x11 xext xrender
|
|
USE_GL= gl glu
|
|
USE_LDCONFIG= yes
|
|
BUILD_WRKSRC= ${WRKSRC}/src/modules/engines/gl_x11
|
|
INSTALL_WRKSRC= ${BUILD_WRKSRC}
|
|
|
|
.include "../evas-core/Makefile.inc"
|
|
CONFIGURE_ARGS+= --enable-gl-xlib
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E \
|
|
-e 's,\$$\(top_builddir\)/src/lib/\.libs,${LOCALBASE}/lib,' \
|
|
-e 's,\$$\(top_builddir\)/src/lib/libevas\.la,-levas,' \
|
|
${BUILD_WRKSRC}/Makefile.in \
|
|
${WRKSRC}/src/modules/engines/gl_common/Makefile.in
|
|
|
|
pre-build:
|
|
@(cd ${WRKSRC}/src/modules/engines/gl_common; ${SETENV} ${MAKE_ENV} \
|
|
${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/evas-opengl-x11.pc \
|
|
${STAGEDIR}${PREFIX}/libdata/pkgconfig/
|
|
|
|
.include <bsd.port.mk>
|