71 lines
2.2 KiB
Makefile
71 lines
2.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.36 2011/06/08 17:41:57 rpointel Exp $
|
|
|
|
COMMENT= additional Python bindings for GNOME
|
|
|
|
GNOME_PROJECT= gnome-python-extras
|
|
GNOME_VERSION= 2.25.3
|
|
PKGNAME= py-gnome-extras-${VERSION}
|
|
REVISION= 14
|
|
|
|
HOMEPAGE= http://www.pygtk.org/
|
|
|
|
# GPLv2/LGPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += ICE ORBit-2 ORBitCosNaming-2 SM X11 Xau Xcomposite
|
|
WANTLIB += Xcursor Xdamage Xdmcp Xext Xfixes Xi Xinerama Xrandr
|
|
WANTLIB += Xrender art_lgpl_2 atk-1.0 ogg vorbis vorbisfile
|
|
WANTLIB += bonobo-2 bonobo-activation bonoboui-2 cairo xcb-shm
|
|
WANTLIB += crypto dbus-1 dbus-glib-1 expat ffi fontconfig freetype
|
|
WANTLIB += gailutil gconf-2 gdk-x11-2.0 gdk_pixbuf-2.0 gio-2.0
|
|
WANTLIB += glib-2.0 gmodule-2.0 gnome-2 gnome-keyring gnomecanvas-2
|
|
WANTLIB += gnomeui-2 gnomevfs-2 gobject-2.0 gthread-2.0 gtk-x11-2.0
|
|
WANTLIB += m pango-1.0 pangocairo-1.0 pangoft2-1.0 pcre
|
|
WANTLIB += pixman-1 png popt pthread-stubs ssl stdc++
|
|
WANTLIB += gcrypt gpg-error xcb-render GL Xxf86vm canberra drm ltdl
|
|
WANTLIB += util xcb xml2 z gtkspell gdl-1 enchant gda-4.0
|
|
WANTLIB += ${MODPY_WANTLIB}
|
|
|
|
MODULES= devel/gettext \
|
|
lang/python \
|
|
x11/gnome
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
LIB_DEPENDS= textproc/gtkspell \
|
|
textproc/enchant \
|
|
x11/gnome/gdl \
|
|
x11/gnome/libgda \
|
|
${MODPY_LIB_DEPENDS}
|
|
# xulrunner-devel needed by gtkmozembed.la
|
|
RUN_DEPENDS= x11/gnome/py-gnome>=2.20.0 \
|
|
devel/xulrunner/1.9,-devel>=1.9.2.6p3
|
|
REGRESS_DEPENDS= ${FULLPKGNAME}:${BUILD_PKGPATH}
|
|
|
|
LIBTOOL_FLAGS= --tag=disable-static
|
|
AUTOCONF_VERSION= 2.62
|
|
CONFIGURE_STYLE= autoconf
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --with-gtkmozembed=xulrunner
|
|
|
|
pre-configure:
|
|
@find ${WRKDIST} -name \*.py | \
|
|
xargs perl -pi -e 's,/usr/bin/env python,${MODPY_BIN},g'
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/py-gnome-extras
|
|
cd ${WRKSRC}/examples; tar cf - * | tar xf - -C \
|
|
${PREFIX}/share/examples/py-gnome-extras
|
|
chown -R ${SHAREOWN}:${SHAREGRP} \
|
|
${PREFIX}/share/examples/py-gnome-extras
|
|
|
|
do-regress: fake
|
|
cd ${WRKSRC}/tests && env \
|
|
PYTHONPATH="${WRKINST}${MODPY_LIBDIR}/site-packages/gtk-2.0" \
|
|
${MODPY_BIN} runtests.py
|
|
|
|
.include <bsd.port.mk>
|