aboutsummaryrefslogtreecommitdiff
path: root/graphics/py-gd/Makefile
blob: b9db35e79bede806a391810236ddd3ebe906653a (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
# New ports collection makefile for:	py-gd
# Date created:		23 December 2001
# Whom:			Hye-Shik Chang <perky@fallin.lv>
#
# $FreeBSD$

PORTNAME=	gd
PORTVERSION=	0.56
PORTREVISION=	5
CATEGORIES=	graphics python
MASTER_SITES=	http://newcenturycomputers.net/projects/download.cgi/
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
DISTNAME=	gdmodule-${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Python interface to the GD library

LIB_DEPENDS=	gd.4:${PORTSDIR}/graphics/gd

.if !defined(WITHOUT_X11)
USE_XORG=	xpm
.endif
USE_PYTHON=	yes
USE_PYDISTUTILS=	yes
USE_PYTHON_PREFIX=	yes
PYDISTUTILS_PKGNAME=	gdmodule
DISABLE_SIZE=	yes
PYSETUP=	Setup.py
EXAMPLESDIR=	${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}

post-patch:
	${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g' \
		-e 's,/usr/X11R6,${LOCALBASE},g' \
		-e 's,/usr/include/X11,${LOCALBASE}/include,g' \
		${WRKSRC}/${PYSETUP}
.if defined(WITHOUT_X11)
	${REINPLACE_CMD} -e 's/"X11", "Xpm",//' \
		-e 's/"ttf", "freetype",//' ${WRKSRC}/${PYSETUP}
.endif

post-install:
.if !defined(NOPORTDOCS)
	${MKDIR} ${EXAMPLESDIR}
	${INSTALL_DATA} ${WRKSRC}/gddemo.py ${EXAMPLESDIR}
.endif

.include <bsd.port.mk>