summaryrefslogtreecommitdiffstats
path: root/x11-toolkits/py-gtk2/Makefile
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2004-11-30 03:09:25 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2004-11-30 03:09:25 +0800
commit1b36c2a1df16962f10a1353b3d0a8c8a3fedcfb3 (patch)
treebb4e0d4637e62e1322acf77cb37da24168960d7a /x11-toolkits/py-gtk2/Makefile
parentd590905bbdacdf597ce56b1eeb445705e888ffaf (diff)
downloadmarcuscom-ports-1b36c2a1df16962f10a1353b3d0a8c8a3fedcfb3.tar
marcuscom-ports-1b36c2a1df16962f10a1353b3d0a8c8a3fedcfb3.tar.gz
marcuscom-ports-1b36c2a1df16962f10a1353b3d0a8c8a3fedcfb3.tar.bz2
marcuscom-ports-1b36c2a1df16962f10a1353b3d0a8c8a3fedcfb3.tar.lz
marcuscom-ports-1b36c2a1df16962f10a1353b3d0a8c8a3fedcfb3.tar.xz
marcuscom-ports-1b36c2a1df16962f10a1353b3d0a8c8a3fedcfb3.tar.zst
marcuscom-ports-1b36c2a1df16962f10a1353b3d0a8c8a3fedcfb3.zip
Re-add py-gtk2 at 2.5.0
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3153 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits/py-gtk2/Makefile')
-rw-r--r--x11-toolkits/py-gtk2/Makefile64
1 files changed, 64 insertions, 0 deletions
diff --git a/x11-toolkits/py-gtk2/Makefile b/x11-toolkits/py-gtk2/Makefile
new file mode 100644
index 000000000..9e75f1cf4
--- /dev/null
+++ b/x11-toolkits/py-gtk2/Makefile
@@ -0,0 +1,64 @@
+# New ports collection makefile for: py-gtk2
+# Date created: 08/13/2002
+# Whom: marc@informatik.uni-bremen.de
+#
+# $FreeBSD$
+#
+
+PORTNAME= gtk
+PORTVERSION= 2.5.0
+CATEGORIES= x11-toolkits python
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/pygtk/2.5
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+DISTNAME= pygtk-${PORTVERSION}
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A set of Python bindings for GTK
+
+RUN_DEPENDS= ${PYNUMERIC}
+
+USE_BZIP2= yes
+USE_GMAKE= yes
+USE_GNOME= gnomehack gnometarget libglade2
+USE_PYTHON= yes
+USE_GETTEXT= yes
+USE_LIBTOOL_VER=15
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LIBS="-lintl"
+LDFLAGS+= -L${LOCALBASE}/lib
+
+EG_SRC_DIR= ${WRKSRC}/examples
+EG_DST_DIR= ${PREFIX}/share/examples/py-gtk
+
+CONFLICTS= py*-gtk-0*
+
+#
+# Use the same way as the Python port to determine if we want
+# threading support.
+#
+.if !defined(WITHOUT_THREADS)
+CONFIGURE_ARGS+= --enable-thread
+CFLAGS+= ${PTHREAD_CFLAGS}
+CONFIGURE_ENV+= LDFLAGS="${PTHREAD_LIBS} ${LDFLAGS}"
+.else
+CONFIGURE_ARGS+= --disable-thread
+.if defined(LDFLAGS)
+CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}"
+.endif
+.endif
+
+.if !defined(NOPORTDOCS)
+post-install:
+ ${MKDIR} ${EG_DST_DIR}
+ ${TAR} -C ${EG_SRC_DIR} -cf - . | ${TAR} -C ${EG_DST_DIR} -xf -
+ ${CHOWN} -R ${BINOWN}:${BINGRP} ${EG_DST_DIR}
+ ${FIND} ${EG_DST_DIR} -type d -print | ${XARGS} ${CHMOD} 0555
+ ${FIND} ${EG_DST_DIR} -type f -print | ${XARGS} ${CHMOD} 0444
+ ${MKDIR} ${PREFIX}/share/doc/py-gtk
+ ${INSTALL_DATA} ${WRKSRC}/MAPPING ${PREFIX}/share/doc/py-gtk
+ ${INSTALL_DATA} ${WRKSRC}/THREADS ${PREFIX}/share/doc/py-gtk
+.endif
+
+.include <bsd.port.mk>