summaryrefslogtreecommitdiff
path: root/graphics/dcraw/options.mk
blob: 3c49fbbaaca5bc1369ea096384db4875b0322166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# $NetBSD: options.mk,v 1.2 2019/07/16 22:50:24 nia Exp $

PKG_OPTIONS_VAR=	PKG_OPTIONS.dcraw
PKG_SUPPORTED_OPTIONS=	lcms jasper
PKG_SUGGESTED_OPTIONS=	lcms

.include "../../mk/bsd.options.mk"

.if !empty(PKG_OPTIONS:Mlcms)
LIBS+=		-llcms2
.include "../../graphics/lcms2/buildlink3.mk"
.else
CPPFLAGS+=	-DNO_LCMS
.endif

.if !empty(PKG_OPTIONS:Mjasper)
LIBS+=		-ljasper
.include "../../graphics/jasper/buildlink3.mk"
.else
CPPFLAGS+=	-DNO_JASPER
.endif