e26775f9fe
it makes more sense to add devhelp as run_depends for gnome-session and leave it to the user to install it manually for other packages "if you're as happy as a pig in poop, commit it" jasper@
67 lines
2.1 KiB
Makefile
67 lines
2.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.2 2008/06/02 14:10:06 ajacoutot Exp $
|
|
|
|
COMMENT= additional Python bindings for GNOME
|
|
|
|
GNOME_PROJECT= gnome-python-extras
|
|
GNOME_VERSION= 2.19.1
|
|
PKGNAME= py-gnome-extras-${VERSION}p0
|
|
|
|
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 \
|
|
Xcursor Xdamage Xdmcp Xext Xfixes Xi Xinerama Xrandr \
|
|
Xrender art_lgpl_2 aspell atk-1.0 audiofile bonobo-2 \
|
|
bonobo-activation bonoboui-2 cairo crypto dbus-1 \
|
|
dbus-glib-1 esd expat fontconfig freetype gailutil \
|
|
gconf-2 gdk-x11-2.0 gdk_pixbuf-2.0 glade-2.0 glib-2.0 \
|
|
glitz gmodule-2.0 gnome-2 gnome-keyring gnomecanvas-2 \
|
|
gnomeui-2 gnomevfs-2 gobject-2.0 gthread-2.0 \
|
|
gtk-x11-2.0 gtop-2.0 jpeg kvm m nspr4 pango-1.0 \
|
|
pangocairo-1.0 pangoft2-1.0 pcre plc4 plds4 png popt \
|
|
ssl startup-notification-1 util xml2 z
|
|
|
|
MODULES= devel/gettext \
|
|
lang/python \
|
|
x11/gnome
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS} \
|
|
:xulrunner-devel->=1.8:devel/xulrunner,-devel
|
|
LIB_DEPENDS= xulrunner/gtkembedmoz,xulrunner/xpcom:xulrunner->=1.8:devel/xulrunner \
|
|
gksu2::sysutils/libgksu \
|
|
gtkspell::textproc/gtkspell \
|
|
gdl-1,gdl-gnome-1::x11/gnome/gdl \
|
|
gtkhtml-2::x11/gnome/libgtkhtml
|
|
RUN_DEPENDS= :py-gnome->=2.20.0:x11/gnome/py-gnome
|
|
REGRESS_DEPENDS= :${PKGNAME}:${BUILD_PKGPATH}
|
|
|
|
USE_X11= Yes
|
|
LIBTOOL_FLAGS= --tag=disable-static
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
PYTHON="${MODPY_BIN}"
|
|
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>
|