blob: e8a9a89c45ea3373ed03c5bb57e239032e248d71 (
plain)
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
|
# $NetBSD: buildlink2.mk,v 1.3 2003/05/02 11:55:36 wiz Exp $
.if !defined(PYTHON22_BUILDLINK2_MK)
PYTHON22_BUILDLINK2_MK= # defined
.include "../../mk/bsd.prefs.mk"
BUILDLINK_PACKAGES+= python22-pth
BUILDLINK_PKGBASE.python22-pth?= python22-pth
BUILDLINK_DEPENDS.python22-pth?= python22-pth>=2.2.2nb1
BUILDLINK_PKGSRCDIR.python22-pth?= ../../lang/python22-pth
.if defined(BUILDLINK_DEPMETHOD.python)
BUILDLINK_DEPMETHOD.python22-pth?= ${BUILDLINK_DEPMETHOD.python}
.endif
EVAL_PREFIX+= BUILDLINK_PREFIX.python22-pth=python22-pth
BUILDLINK_PREFIX.python22-pth_DEFAULT= ${LOCALBASE}
BUILDLINK_FILES_CMD.python22-pth= \
${BUILDLINK_PLIST_CMD.python22-pth} | \
${GREP} '^\(include\|lib.*/lib[^/]*$$\)'
BUILDLINK_TRANSFORM+= l:python:python2p2
BUILDLINK_CPPFLAGS.python22-pth+= \
-I${BUILDLINK_PREFIX.python22-pth}/include/python2p2
BUILDLINK_LDFLAGS.python22-pth+= \
-L${BUILDLINK_PREFIX.python22-pth}/lib/python2p2/config \
-Wl,${RPATH_FLAG}${BUILDLINK_PREFIX.python22-pth}/lib/python2p2/config
FIX_RPATH+= BUILDLINK_LDFLAGS.python22-pth
BUILDLINK_TARGETS+= python22-pth-buildlink
python22-pth-buildlink: _BUILDLINK_USE
.endif # PYTHON22_BUILDLINK2_MK
|