aboutsummaryrefslogtreecommitdiffstats
path: root/x11-toolkits/py-kde/Makefile
blob: 1f98ad73c6aad9871dbebe1fa3113ac624027c50 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# New ports collection makefile for:    PyKDE
# Date created:     Sun Oct 17 00:24:28 PDT 1999
# Whom:         adsharma@sharmas.dhs.org
#
# $FreeBSD$
#

PORTNAME=   kde
PORTVERSION=    3.16.0
PORTREVISION=   2
PORTEPOCH=  1
CATEGORIES= x11-toolkits python kde
MASTER_SITES=   http://www.riverbankcomputing.com/Downloads/PyKDE3/ \
        http://freebsd.ricin.com/ports/distfiles/ \
        ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR=lofi
PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}
DISTNAME=   PyKDE-${PORTVERSION}

MAINTAINER= danny@ricin.com
COMMENT=    Python Bindings for KDE3

RUN_DEPENDS=    pyuic:${PORTSDIR}/x11-toolkits/py-qt
BUILD_DEPENDS=  ${RUN_DEPENDS}

USE_KDEBASE_VER=3
USE_PYTHON= yes

OPTIONS=    DEBUG "Enable debugging symbols" off \
        DOCS "Install documentation" on \
        EXAMPLES "Install examples" on \
        TEMPLATES "Install application templates" on \
        TRACING "Enable tracing in generated code" off

DATADIR=    ${PREFIX}/share/py-sip
DOCSDIR=    ${PREFIX}/share/doc/py-${PORTNAME}
EXAMPLESDIR=    ${PREFIX}/share/examples/py-${PORTNAME}
OPTIONSFILE=    ${PORT_DBDIR}/py-${PORTNAME}/options
CONCAT=     4
ARGS=       -k ${LOCALBASE} -v ${DATADIR} -j ${CONCAT} -d ${PYTHONPREFIX_SITELIBDIR}

.include <bsd.port.pre.mk>

.if ${OSVERSION} < 500000
BROKEN=     Does not compile. ERROR: \
        sipkdecorepart1.cpp:8662: invalid use of undefined type `struct _XDisplay' \
        /usr/X11R6/include/qwindowdefs.h:141: forward declaration of `struct _XDisplay'
.endif

.if defined(WITH_DEBUG)
ARGS+=      -u
.endif
.if defined(NOPORTDOCS) || defined(WITHOUT_DOCS)
PLIST_SUB+= DOCS="@comment "
.else
PLIST_SUB+= DOCS=""
.endif
.if defined(WITHOUT_EXAMPLES)
PLIST_SUB+= EXAMPLES="@comment "
.else
PLIST_SUB+= EXAMPLES=""
.endif
.if defined(WITHOUT_TEMPLATES)
PLIST_SUB+= TEMPLATES="@comment "
.else
PLIST_SUB+= TEMPLATES=""
.endif
.if defined(WITH_TRACING)
ARGS+=      -r
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|/usr/bin/python|${SETENV} python|' \
        ${WRKSRC}/postproc

do-configure:
    ( cd ${WRKSRC} && ${PYTHON_CMD} configure.py ${ARGS} )

post-build:
    ( cd ${WRKSRC} && ${MKDIR} tmp && \
        ${CP} pykdeconfig.py extensions/* tmp && \
        ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py tmp )
.if !defined(WITHOUT_EXAMPLES)
    ( cd ${WRKSRC} && \
        ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py examples )
.endif
    @${REINPLACE_CMD} -e 's|ln.*||g' ${WRKSRC}/Makefile

post-install:
    ( ${INSTALL_SCRIPT} ${WRKSRC}/contrib/kdepyuic ${PREFIX}/bin && \
        ${INSTALL_DATA} ${WRKSRC}/tmp/*.pyc ${PYTHONPREFIX_SITELIBDIR} )
.if !defined(NOPORTDOCS) && !defined(WITHOUT_DOCS)
    ( cd ${WRKSRC}/doc && \
        ${MKDIR} -m 0755 ${DOCSDIR}/classref ${DOCSDIR}/images && \
        ${INSTALL_DATA} kde.css *.html ${DOCSDIR} && \
        ${INSTALL_DATA} images/* ${DOCSDIR}/images && \
        ${INSTALL_DATA} classref/*.html ${DOCSDIR}/classref && \
        cd classref && \
        for i in `ls | ${GREP} -v allclasses | ${GREP} -v glossary | \
            ${GREP} -v index` ; do \
            ${MKDIR} -m 0755 ${DOCSDIR}/classref/$${i} && \
            ${INSTALL_DATA} $${i}/*.html \
            ${DOCSDIR}/classref/$${i} ; done )
.endif
.if !defined(WITHOUT_EXAMPLES)
    ( cd ${WRKSRC}/examples && \
        ${MKDIR} -m 0755 ${EXAMPLESDIR}/uimodules && \
        ${INSTALL_DATA} uimodules/* ${EXAMPLESDIR}/uimodules && \
        ${INSTALL_DATA} README *.dtd *.p* *.rc *.ui* ${EXAMPLESDIR} )
.endif
.if !defined(WITHOUT_TEMPLATES)
    ( cd ${WRKSRC}/templates && \
        ${MKDIR} -m 0755 ${EXAMPLESDIR}/templates/annotated \
            ${EXAMPLESDIR}/templates/basic && \
        ${INSTALL_DATA} annotated/* ${EXAMPLESDIR}/templates/annotated && \
        ${INSTALL_DATA} basic/* ${EXAMPLESDIR}/templates/basic )
.endif

.include <bsd.port.post.mk>