2002-10-08 10:31:52 +02:00
|
|
|
# New ports collection makefile for: py-gtk2
|
|
|
|
# Date created: 08/13/2002
|
|
|
|
# Whom: marc@informatik.uni-bremen.de
|
1998-06-02 09:41:06 +02:00
|
|
|
#
|
1999-08-31 05:04:38 +02:00
|
|
|
# $FreeBSD$
|
1998-06-02 09:41:06 +02:00
|
|
|
|
2002-10-08 10:31:52 +02:00
|
|
|
PORTNAME= gtk
|
2003-01-15 05:43:10 +01:00
|
|
|
PORTVERSION= 1.99.14
|
1999-09-19 17:48:50 +02:00
|
|
|
CATEGORIES= x11-toolkits python
|
2000-06-07 20:06:25 +02:00
|
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
2002-10-08 10:31:52 +02:00
|
|
|
MASTER_SITE_SUBDIR= sources/pygtk/1.99
|
|
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
2002-10-13 00:53:58 +02:00
|
|
|
DISTNAME= pygtk-${PORTVERSION}
|
2002-10-08 10:31:52 +02:00
|
|
|
DIST_SUBDIR= gnome2
|
1998-06-02 09:41:06 +02:00
|
|
|
|
2003-02-08 00:46:30 +01:00
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
1998-10-15 16:31:45 +02:00
|
|
|
|
2002-10-13 00:53:58 +02:00
|
|
|
LIB_DEPENDS= glade-2.0.0:${PORTSDIR}/devel/libglade2 \
|
2002-10-08 10:31:52 +02:00
|
|
|
gtkgl-2.0:${PORTSDIR}/x11-toolkits/gtkglarea2
|
2002-07-15 13:37:35 +02:00
|
|
|
RUN_DEPENDS= ${PYNUMERIC}
|
2001-07-03 19:36:32 +02:00
|
|
|
|
2002-08-28 20:02:19 +02:00
|
|
|
USE_BZIP2= yes
|
1999-03-15 04:17:10 +01:00
|
|
|
USE_GMAKE= yes
|
2002-07-14 14:07:45 +02:00
|
|
|
USE_GNOMENG= yes
|
2002-10-13 00:53:58 +02:00
|
|
|
USE_GNOME= gnomehack
|
2000-09-18 14:55:15 +02:00
|
|
|
USE_PYTHON= yes
|
2002-07-18 18:01:29 +02:00
|
|
|
USE_LIBTOOL= yes
|
1999-03-15 04:17:10 +01:00
|
|
|
|
1999-09-19 17:48:50 +02:00
|
|
|
EG_SRC_DIR= ${WRKSRC}/examples
|
|
|
|
EG_DST_DIR= ${PREFIX}/share/examples/py-gtk
|
1999-02-22 22:59:16 +01:00
|
|
|
|
2002-11-11 20:50:48 +01:00
|
|
|
#
|
|
|
|
# Use the same way as the Python port to determine if we want
|
|
|
|
# threading support.
|
|
|
|
#
|
|
|
|
LIBC_R!= /sbin/ldconfig -r | grep c_r || true
|
|
|
|
.if (${LIBC_R} != "") && !defined(WITHOUT_THREADS)
|
|
|
|
CONFIGURE_ARGS+= --enable-thread
|
|
|
|
CFLAGS+= ${PTHREAD_CFLAGS}
|
|
|
|
CONFIGURE_ENV+= LDFLAGS="${PTHREAD_LIBS} ${LDFLAGS}"
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-thread
|
|
|
|
.endif
|
|
|
|
|
2002-10-08 10:31:52 +02:00
|
|
|
.if !defined(BATCH) && !defined(PACKAGE_BUILDING)
|
|
|
|
pre-build:
|
|
|
|
@${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
|
|
|
|
.endif
|
|
|
|
|
1998-06-02 09:41:06 +02:00
|
|
|
.if !defined(NOPORTDOCS)
|
1999-09-19 17:48:50 +02:00
|
|
|
post-install:
|
|
|
|
${MKDIR} ${EG_DST_DIR}
|
2002-10-08 10:31:52 +02:00
|
|
|
${TAR} -C ${EG_SRC_DIR} -cf - . | ${TAR} -C ${EG_DST_DIR} -xf -
|
1999-09-19 17:48:50 +02:00
|
|
|
${CHOWN} -R ${BINOWN}:${BINGRP} ${EG_DST_DIR}
|
2002-10-08 10:31:52 +02:00
|
|
|
${FIND} ${EG_DST_DIR} -type d -print | ${XARGS} ${CHMOD} 0555
|
|
|
|
${FIND} ${EG_DST_DIR} -type f -print | ${XARGS} ${CHMOD} 0444
|
1999-09-19 17:48:50 +02:00
|
|
|
${MKDIR} ${PREFIX}/share/doc/py-gtk
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/MAPPING ${PREFIX}/share/doc/py-gtk
|
2002-10-08 10:31:52 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/THREADS ${PREFIX}/share/doc/py-gtk
|
1998-06-02 09:41:06 +02:00
|
|
|
.endif
|
|
|
|
|
1998-12-31 06:40:14 +01:00
|
|
|
.include <bsd.port.mk>
|