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.
32 lines
931 B
Makefile
32 lines
931 B
Makefile
# $NetBSD: Makefile,v 1.14 2013/06/16 18:56:05 sno Exp $
|
|
|
|
COMMENT= Enlightened Canvas Library
|
|
|
|
.include "Makefile.common"
|
|
|
|
CONFIGURE_ARGS+= --enable-font-loader-eet
|
|
CONFIGURE_ENV+= EET_LIBS="${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.eet}/lib -L${BUILDLINK_PREFIX.eet}/lib -leet"
|
|
|
|
PKGCONFIG_OVERRIDE= evas.pc.in
|
|
|
|
INSTALLATION_DIRS= lib/evas/modules/loaders lib/evas/modules/savers \
|
|
share/doc/evas
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
PLIST_SRC+= PLIST
|
|
.if ${OPSYS} != "NetBSD" && ${OPSYS} != "OpenBSD" && ${OPSYS} != "MirBSD"
|
|
PLIST_SRC+= PLIST.cserve
|
|
.endif
|
|
|
|
CPPFLAGS.SunOS+= -std=gnu99 -D_XOPEN_SOURCE=600
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/AUTHORS ${WRKSRC}/COPYING \
|
|
${DESTDIR}${PREFIX}/share/doc/evas
|
|
|
|
.include "../../devel/eet/buildlink3.mk"
|
|
.include "../../devel/eina/buildlink3.mk"
|
|
.include "../../fonts/fontconfig/buildlink3.mk"
|
|
.include "../../graphics/freetype2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|