blob: a9684d3b2465b9035f8c50817b870baac3806315 (
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.4 2002/10/09 23:46:15 jlam Exp $
.if !defined(PYTHON21_BUILDLINK2_MK)
PYTHON21_BUILDLINK2_MK= # defined
.include "../../mk/bsd.prefs.mk"
BUILDLINK_PACKAGES+= python21-pth
BUILDLINK_PKGBASE.python21-pth?= python21-pth
BUILDLINK_DEPENDS.python21-pth?= python21-pth>=2.1
BUILDLINK_PKGSRCDIR.python21-pth?= ../../lang/python21-pth
.if defined(BUILDLINK_DEPMETHOD.python)
BUILDLINK_DEPMETHOD.python21-pth?= ${BUILDLINK_DEPMETHOD.python}
.endif
EVAL_PREFIX+= BUILDLINK_PREFIX.python21-pth=python21-pth
BUILDLINK_PREFIX.python21-pth_DEFAULT= ${LOCALBASE}
_PY21_PTH_BLNK_FILES= \
${BUILDLINK_PLIST_CMD.python21-pth} | \
${GREP} '^\(include\|lib.*/lib[^/]*$$\)'
BUILDLINK_FILES.python21-pth= `${_PY21_PTH_BLNK_FILES}`
BUILDLINK_TRANSFORM+= l:python:python2p1
BUILDLINK_CPPFLAGS.python21-pth+= \
-I${BUILDLINK_PREFIX.python21-pth}/include/python2p1
BUILDLINK_LDFLAGS.python21-pth+= \
-L${BUILDLINK_PREFIX.python21-pth}/lib/python2p1/config \
-Wl,-R${BUILDLINK_PREFIX.python21-pth}/lib/python2p1/config
BUILDLINK_TARGETS+= python21-pth-buildlink
python21-pth-buildlink: _BUILDLINK_USE
.endif # PYTHON21_BUILDLINK2_MK
|