5d40512024
libraries and enlightenment 0.17.3 itself. Upstream changes of Eina (to get an impression): Eina 1.7.7 Changes since Eina 1.7.6: ------------------------- No changes, just updating to keep in sync with last release. Changes since Eina 1.7.5: ------------------------- Improvements: * Honor tile size in Eina_Tiler. Fixes: * Prevent denial of service on Eina_Hash function. * Fix map leak in Eina_File infrastructure. * Fix portability issue on 64bits system for Eina_CList. * Fix magic failure in eina_value_array_count when array has not been allocated Changes since Eina 1.7.4: ------------------------- No changes, just updating to keep in sync with last release. Changes since Eina 1.7.3: ------------------------- Fixes: * Fix EINA_INLIST_FOREACH_SAFE macro * Add XML output to doc * Add installation rule for doc * Fix build for Windows platforms. Changes since Eina 1.7.2: ------------------------- * Fix Solaris build. * Don't leak fd after exec. Changes since Eina 1.7.1: ------------------------- No changes, just updating to keep in sync with last release.
66 lines
2 KiB
Text
66 lines
2 KiB
Text
# $NetBSD: Makefile.common,v 1.13 2013/06/16 18:56:05 sno Exp $
|
|
|
|
# used by graphics/evas-buffer/Makefile
|
|
# used by graphics/evas-edb/Makefile
|
|
# used by graphics/evas-eet/Makefile
|
|
# used by graphics/evas-gif/Makefile
|
|
# used by graphics/evas-jpeg/Makefile
|
|
# used by graphics/evas-pmaps/Makefile
|
|
# used by graphics/evas-png/Makefile
|
|
# used by graphics/evas-sdl/Makefile
|
|
# used by graphics/evas-sdl-16/Makefile
|
|
# used by graphics/evas-software-x11/Makefile
|
|
# used by graphics/evas-svg/Makefile
|
|
# used by graphics/evas-tiff/Makefile
|
|
# used by graphics/evas-xpm/Makefile
|
|
|
|
EVAS_VERSION= 1.7.7
|
|
DISTNAME= evas-${EVAS_VERSION}
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://download.enlightenment.org/releases/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= joerg@NetBSD.org
|
|
HOMEPAGE= http://enlightenment.org/
|
|
LICENSE= 2-clause-bsd
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../graphics/evas/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../graphics/evas/patches
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
|
|
.for mod in software-ddraw software-16-ddraw direct3d software-16-wince \
|
|
software-xlib software-16-x11 software-xcb directfb sdl \
|
|
sdl-primitive fb buffer software-qtopia gl-xlib quartz gl-glew \
|
|
xrender-x11 xrender-xcb glitz-x11 wayland-shm wayland-egl
|
|
. if defined(EVAS_ENGINES) && !empty(EVAS_ENGINES:M${mod})
|
|
CONFIGURE_ARGS+= --enable-${mod}
|
|
. else
|
|
CONFIGURE_ARGS+= --disable-${mod}
|
|
. endif
|
|
.endfor
|
|
|
|
.for mod in gif png jpeg eet edb tiff xpm svg pmaps
|
|
. if defined(EVAS_IMAGE_LOADERS) && !empty(EVAS_IMAGE_LOADERS:M${mod})
|
|
CONFIGURE_ARGS+= --enable-image-loader-${mod}
|
|
. else
|
|
CONFIGURE_ARGS+= --disable-image-loader-${mod}
|
|
. endif
|
|
.endfor
|
|
|
|
CONFIGURE_ENV+= ACLOCAL=: AUTOCONF=: AUTOMAKE=:
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:M*-powerpc)
|
|
CONFIGURE_ARGS+= --enable-cpu-altivec
|
|
.endif
|
|
|
|
# currently it is like it is
|
|
MODULE_ARCH= ${LOWER_OPSYS}-${LOWER_ARCH}-${EVAS_VERSION}
|
|
PLIST_SUBST= MODULE_ARCH=${MODULE_ARCH}
|
|
PRINT_PLIST_AWK+= { gsub(/${MODULE_ARCH}/, "$${MODULE_ARCH}") }
|
|
|
|
MAKE_FLAGS+= MODULE_ARCH=${MODULE_ARCH}
|