blob: cb8bb86e33ebd881dd4a6888f8e0d240d3d1c48d (
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
|
# New ports collection makefile for: py-paint
# Date created: 8 July 2001
# Whom: Hye-Shik Chang <perky@python.or.kr>
#
# $FreeBSD$
#
PORTNAME= paint
PORTVERSION= 0.1
CATEGORIES= graphics python
MASTER_SITES= http://object-craft.com.au/projects/paint/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= perky@python.or.kr
BUILD_DEPENDS= ${PYDISTUTILS}
LIB_DEPENDS= ttf.4:${PORTSDIR}/print/freetype \
png.4:${PORTSDIR}/graphics/png \
art_lgpl.5:${PORTSDIR}/graphics/libart
USE_PYTHON= yes
PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S,^${LOCALBASE}/,,g} \
SHARE_SUBDIR=${SHARE_SUBDIR}
WRKSRC= ${WRKDIR}/${PORTNAME}
SHARE_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME}
PYDIST_SETUP= cd ${WRKSRC} && ${PYTHON_CMD} setup.py
INC_DIRS= ["${LOCALBASE}/include","${X11BASE}/include","${LOCALBASE}/include/freetype"]
LIB_DIRS= ["${LOCALBASE}/lib","${X11BASE}/lib"]
REPATCH= cd ${WRKSRC} && ${SED}
REPATCHSUBST= -e 's@^\(.*libraries.*\)$$@\1include_dirs=${INC_DIRS},library_dirs=${LIB_DIRS},@g'
REPATCHFILES= setup.py
TMPSUFFIX= .temp
EXAMPLES= test_bar.py test_paint.py testpie.py
.include <bsd.port.pre.mk>
post-patch:
.if ${PYTHON_REL} >= 160
cd ${WRKSRC} && ${PATCH} -s <${PATCHDIR}/optpatch-aa
.endif
.for file in ${REPATCHFILES}
${REPATCH} ${REPATCHSUBST} ${file} > ${file}${TMPSUFFIX} && \
${CAT} ${file}${TMPSUFFIX} > ${file}
.endfor
do-build:
${PYDIST_SETUP} build
do-install:
${PYDIST_SETUP} install
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/examples/${SHARE_SUBDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${PREFIX}/share/examples/${SHARE_SUBDIR}
.endif
.include <bsd.port.post.mk>
|