53d0ee7c83
Gjs is a Javascript binding for GNOME. It's mainly based on Spidermonkey javascript engine and the GObject introspection framework. ok aja@
56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/04/12 06:30:06 jasper Exp $
|
|
|
|
COMMENT= Javascript bindings for GNOME
|
|
|
|
GNOME_PROJECT= gjs
|
|
GNOME_VERSION= 0.7.14
|
|
|
|
SHARED_LIBS += gjs 0.0 # 0.0
|
|
SHARED_LIBS += gjs-gi 0.0 # 0.0
|
|
SHARED_LIBS += gjs-dbus 0.0 # 0.0
|
|
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://live.gnome.org/Gjs
|
|
|
|
# MIT
|
|
# console modules (modules/console.c) and stack printer (gjs/stack.c)
|
|
# contain code from Mozilla which are: MPL1.1/LGPLv2+/GPLv2+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= devel/gettext \
|
|
lang/python \
|
|
x11/gnome
|
|
|
|
MODPY_RUNDEP= No
|
|
MODPY_BUILDDEP= Yes # scripts/make-tests needs python to run.
|
|
MODPY_ADJ_FILES= scripts/make-tests
|
|
|
|
LIBTOOL_FLAGS= --tag=disable-static
|
|
|
|
WANTLIB += GL X11 Xau Xdamage Xdmcp Xext Xfixes Xrender Xxf86vm
|
|
WANTLIB += c cairo cairo-gobject dbus-1 dbus-glib-1 drm expat
|
|
WANTLIB += ffi fontconfig freetype gio-2.0 girepository-1.0 glib-2.0
|
|
WANTLIB += gmodule-2.0 gobject-2.0 gthread-2.0 m mozjs ncurses
|
|
WANTLIB += ncursesw nspr4 pcre pixman-1 plc4 plds4 png pthread
|
|
WANTLIB += pthread-stubs readline stdc++ xcb xcb-render xcb-shm
|
|
WANTLIB += z
|
|
|
|
LIB_DEPENDS= devel/gobject-introspection \
|
|
lang/spidermonkey \
|
|
x11/dbus-glib
|
|
REGRESS_DEPENDS= sysutils/e2fsprogs
|
|
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gjs/
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${PREFIX}/share/examples/gjs/
|
|
|
|
.include <bsd.port.mk>
|