blob: 82e8a6704c6f20ab9183500a9e963c92a5530430 (
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
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
|
# $NetBSD: buildlink.mk,v 1.2 2001/05/28 02:50:24 jlam Exp $
#
# This Makefile fragment is included by packages that use libtiff.
#
# To use this Makefile fragment, simply:
#
# (1) Optionally define TIFF_REQD to the version of libtiff desired.
# (2) Include this Makefile fragment in the package Makefile,
# (3) Optionally define BUILDLINK_INCDIR and BUILDLINK_LIBDIR,
# (4) Add ${BUILDLINK_TARGETS} to the prerequisite targets for pre-configure,
# (5) Add ${BUILDLINK_INCDIR} to the front of the C preprocessor's header
# search path, and
# (6) Add ${BUILDLINK_LIBDIR} to the front of the linker's library search
# path.
.if !defined(TIFF_BUILDLINK_MK)
TIFF_BUILDLINK_MK= # defined
.include "../../devel/zlib/buildlink.mk"
.include "../../graphics/jpeg/buildlink.mk"
TIFF_REQD?= 3.5.4
DEPENDS+= tiff>=${TIFF_REQD}:../../graphics/tiff
TIFF_HEADERS= ${LOCALBASE}/include/tiff.h
TIFF_HEADERS+= ${LOCALBASE}/include/tiffconf.h
TIFF_HEADERS+= ${LOCALBASE}/include/tiffio.h
TIFF_LIBS= ${LOCALBASE}/lib/libtiff.*
BUILDLINK_INCDIR?= ${WRKDIR}/include
BUILDLINK_LIBDIR?= ${WRKDIR}/lib
BUILDLINK_TARGETS+= link-tiff-headers
BUILDLINK_TARGETS+= link-tiff-libs
# This target links the headers into ${BUILDLINK_INCDIR}, which should
# be searched first by the C preprocessor.
#
link-tiff-headers:
@${ECHO} "Linking tiff headers into ${BUILDLINK_INCDIR}."
@${MKDIR} ${BUILDLINK_INCDIR}
@for inc in ${TIFF_HEADERS}; do \
dest=${BUILDLINK_INCDIR}/`${BASENAME} $${inc}`; \
if [ -f $${inc} ]; then \
${RM} -f $${dest}; \
${LN} -sf $${inc} $${dest}; \
fi; \
done
# This target links the libraries into ${BUILDLINK_LIBDIR}, which should
# be searched first by the linker.
#
link-tiff-libs:
@${ECHO} "Linking tiff libraries into ${BUILDLINK_LIBDIR}."
@${MKDIR} ${BUILDLINK_LIBDIR}
@for lib in ${TIFF_LIBS}; do \
dest=${BUILDLINK_LIBDIR}/`${BASENAME} $${lib}`; \
if [ -f $${lib} ]; then \
${RM} -f $${dest}; \
${LN} -sf $${lib} $${dest}; \
fi; \
done
.endif # TIFF_BUILDLINK_MK
|