aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/py-imaging/Makefile
blob: aad2ceea8ecca8edd57964ba5c6526ce6ef5a6f4 (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
# New ports collection makefile for:    PIL
# Date created:         02 November 1998
# Whom:                 Thomas Gellekum <tg@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   imaging
PORTVERSION=    1.1.6
PORTREVISION=   2
CATEGORIES= graphics python
MASTER_SITES=   http://effbot.org/downloads/ \
        http://www.pythonware.net/storage/
PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}
DISTNAME=   Imaging-${PORTVERSION}

MAINTAINER= mainland@apeiron.net
COMMENT=    The Python Imaging Library

LIB_DEPENDS=    jpeg.9:${PORTSDIR}/graphics/jpeg \
        freetype.9:${PORTSDIR}/print/freetype2

UNIQUENAME= py-${PORTNAME}

DIST_SUBDIR=    python
USE_PYTHON= yes
USE_PYDISTUTILS=    yes
PYDISTUTILS_PKGNAME=    PIL
PYDISTUTILS_EGGINFODIR= ${PYTHON_SITELIBDIR}/PIL

PORTDOCS=   *

DOCSDIR=    ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
EXAMPLESDIR=    ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}

OPTIONS=    TKINTER "Build with tkinter for X support" on

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_TKINTER)
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter
RUN_DEPENDS+=   ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter
PLIST_SUB+= TKINTER=""
.else
PLIST_SUB+= TKINTER="@comment "
.endif

.if defined(WITHOUT_TKINTER)
post-patch:
    @${REINPLACE_CMD} -e 's|if _tkinter|if None|g' ${WRKSRC}/setup.py
.endif

post-install:
.for file in ImPlatform.h Imaging.h
    ${INSTALL_DATA} ${WRKSRC}/libImaging/${file} ${PYTHON_INCLUDEDIR}
.endfor
    @${MKDIR} ${EXAMPLESDIR}
    ${INSTALL_DATA} ${WRKSRC}/Scripts/* ${EXAMPLESDIR}
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/Docs/* ${DOCSDIR}
.endif

.include <bsd.port.post.mk>