summaryrefslogtreecommitdiffstats
path: root/x11-toolkits/py-gtk2/Makefile
blob: e6ca4e9ec242f4f2769fae2298162cadbeec8b91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# New ports collection makefile for:    py-gtk2
# Date created:             08/13/2002
# Whom:                 marc@informatik.uni-bremen.de
#
# $FreeBSD$
#   $MCom: ports/x11-toolkits/py-gtk2/Makefile,v 1.48 2006/09/05 06:08:54 marcus Exp $
#

PORTNAME=   gtk
PORTVERSION=    2.10.2
CATEGORIES= x11-toolkits python
MASTER_SITES=   ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/pygtk/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}
DISTNAME=   pygtk-${PORTVERSION}
DIST_SUBDIR=    gnome2

MAINTAINER= gnome@FreeBSD.org
COMMENT=    A set of Python bindings for GTK

BUILD_DEPENDS=  ${PYTHON_SITELIBDIR}/cairo/__init__.py:${PORTSDIR}/graphics/py-cairo \
        ${PYTHON_SITELIBDIR}/gtk-2.0/gobject/_gobject.so:${PORTSDIR}/devel/py-gobject
RUN_DEPENDS=    ${PYNUMERIC} \
        ${PYTHON_SITELIBDIR}/cairo/__init__.py:${PORTSDIR}/graphics/py-cairo \
        ${PYTHON_SITELIBDIR}/gtk-2.0/gobject/_gobject.so:${PORTSDIR}/devel/py-gobject

USE_BZIP2=  yes
USE_GMAKE=  yes
USE_GNOME=  gnomehack gnometarget libglade2
USE_PYTHON= yes
USE_GETTEXT=    yes
GNU_CONFIGURE=  yes
CONFIGURE_ENV=  CPPFLAGS="-I${LOCALBASE}/include" \
        LIBS="-lintl"
CONFIGURE_ARGS= --disable-docs
LDFLAGS+=   -L${LOCALBASE}/lib

DOCSDIR=    ${PREFIX}/share/doc/py-gtk
EG_SRC_DIR= ${WRKSRC}/examples
EXAMPLESDIR=    ${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} ${EXAMPLESDIR}
    ${TAR} -C ${EG_SRC_DIR} -cf - . | ${TAR} -C ${EXAMPLESDIR} -xf -
    ${CHOWN} -R ${BINOWN}:${BINGRP} ${EXAMPLESDIR}
    ${FIND} ${EXAMPLESDIR} -type d -print | ${XARGS} ${CHMOD} 0555
    ${FIND} ${EXAMPLESDIR} -type f -print | ${XARGS} ${CHMOD} 0444
    ${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/MAPPING ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/THREADS ${DOCSDIR}
.endif

.include <bsd.port.mk>