2014-02-15 15:37:15 +00:00
|
|
|
# $OpenBSD: Makefile,v 1.33 2014/02/15 15:37:15 naddy Exp $
|
2007-11-30 16:04:37 +00:00
|
|
|
|
2010-01-11 15:00:15 +00:00
|
|
|
COMMENT = core event/X abstraction layer
|
2013-05-09 17:03:55 +00:00
|
|
|
|
2013-12-06 13:16:45 +00:00
|
|
|
DISTNAME = ecore-1.7.9
|
2014-02-15 15:37:15 +00:00
|
|
|
REVISION = 0
|
2011-03-15 19:39:43 +00:00
|
|
|
EPOCH = 2
|
2007-11-30 16:04:37 +00:00
|
|
|
|
2013-05-09 13:00:13 +00:00
|
|
|
SO_VERSION = 3.1 # 8.6
|
2007-11-30 16:04:37 +00:00
|
|
|
# NOTE: Must bump minor version if any shlib's are removed from the
|
|
|
|
# components dir to avoid pkg_add -r issues.
|
2011-01-16 00:37:45 +00:00
|
|
|
.for _lib in ecore ecore_con ecore_evas ecore_file ecore_imf \
|
|
|
|
ecore_imf_evas ecore_input ecore_input_evas ecore_ipc ecore_x
|
2010-01-11 15:00:15 +00:00
|
|
|
SHARED_LIBS += ${_lib} ${SO_VERSION}
|
2007-11-30 16:04:37 +00:00
|
|
|
.endfor
|
|
|
|
|
|
|
|
# BSD
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
|
2012-11-10 15:01:12 +00:00
|
|
|
WANTLIB += X11 Xcomposite Xcursor Xdamage Xext Xfixes Xi Xinerama
|
|
|
|
WANTLIB += Xrandr Xrender Xss Xtst cares crypto curl eet eina
|
2013-05-09 13:00:13 +00:00
|
|
|
WANTLIB += evas expat ffi fontconfig freetype fribidi gio-2.0
|
|
|
|
WANTLIB += glib-2.0 gmodule-2.0 gobject-2.0 graphite2 harfbuzz
|
2013-05-31 15:34:39 +00:00
|
|
|
WANTLIB += ibus-1.0 idn jpeg m pcre pthread
|
|
|
|
WANTLIB += idn jpeg m pcre pthread
|
2013-05-09 13:00:13 +00:00
|
|
|
WANTLIB += pthread-stubs ssl xcb z
|
2011-01-16 11:34:43 +00:00
|
|
|
|
2013-05-09 17:03:55 +00:00
|
|
|
MODULES = devel/gettext
|
|
|
|
|
2011-01-16 11:34:43 +00:00
|
|
|
LIB_DEPENDS = devel/glib2 \
|
2011-11-18 12:20:33 +00:00
|
|
|
devel/fribidi \
|
2012-12-28 14:27:57 +00:00
|
|
|
inputmethods/ibus \
|
2011-01-16 00:37:45 +00:00
|
|
|
net/curl \
|
|
|
|
net/libcares \
|
2013-12-06 13:16:45 +00:00
|
|
|
x11/e17/evas>=1.7.9v2
|
2010-01-11 15:00:15 +00:00
|
|
|
|
2011-01-16 00:37:45 +00:00
|
|
|
CONFIGURE_ARGS += --disable-doc \
|
2010-01-11 15:00:15 +00:00
|
|
|
--disable-gnutls \
|
2012-11-10 15:01:12 +00:00
|
|
|
--enable-cares \
|
2014-02-15 15:37:15 +00:00
|
|
|
--disable-ecore-cocoa \
|
|
|
|
--disable-ecore-imf-scim
|
2011-01-16 00:37:45 +00:00
|
|
|
|
2010-01-11 15:00:15 +00:00
|
|
|
CONFIGURE_ENV += CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
2011-01-16 11:34:43 +00:00
|
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
2007-11-30 16:04:37 +00:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|