ea30be9d17
PyGTK allows you to write full featured GTK programs in Python. It is targetted at GTK 2.x, and can be used in conjunction with gnome-python to write Gnome applications. Submitted and maintained by Michael Coulter <mjc at bitz.ca> ok sturm@.
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/02/16 21:12:50 xsa Exp $
|
|
|
|
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
|
|
|
|
COMMENT= "gtk+2 Python bindings"
|
|
|
|
V= 2.0.0
|
|
DISTNAME= pygtk-${V}
|
|
PKGNAME= py-gtk2-${V}
|
|
CATEGORIES= x11
|
|
|
|
HOMEPAGE= http://www.pygtk.org/
|
|
|
|
MAINTAINER= Michael Coulter <mjc@bitz.ca>
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/pygtk/2.0/}
|
|
|
|
MODULES= iconv python
|
|
|
|
MODPY_DISTUTILS_BUILDARGS= --enable-threading
|
|
|
|
BUILD_DEPENDS= :pkgconfig-*:devel/pkgconfig \
|
|
:py-Numeric-*:math/py-Numeric
|
|
LIB_DEPENDS= gthread-2.0.0.0::devel/glib2 \
|
|
glade-2.0.0.0::devel/libglade2 \
|
|
gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} --enable-thread
|
|
CONFIGURE_ENV= PYTHON=${MODPY_BIN}
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/py-gtk2
|
|
|
|
pre-build:
|
|
@perl -pi -e 's,%%PREFIX%%,${PREFIX},g' \
|
|
${WRKSRC}/codegen/pygtk-codegen-2.0.in
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
|
|
cd ${WRKSRC}/examples; tar cf - . | tar xf - -C ${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|