mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
7663d078ca
Differential Revision: https://reviews.freebsd.org/D1582 Reviewed by: bapt, mat
34 lines
745 B
Makefile
34 lines
745 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Handle dependency on jpeg
|
|
#
|
|
# Feature: jpeg
|
|
# Usage: USES=jpeg or USES=jpeg:ARGS
|
|
# Valid ARGS: lib (default, implicit), build, run, both
|
|
#
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_JPEG_MK)
|
|
|
|
_INCLUDE_USES_JPEG_MK= yes
|
|
JPEG_PORT?= graphics/jpeg
|
|
|
|
.if empty(jpeg_ARGS)
|
|
jpeg_ARGS= lib
|
|
.endif
|
|
|
|
.if ${jpeg_ARGS} == lib
|
|
LIB_DEPENDS+= libjpeg.so:${PORTSDIR}/${JPEG_PORT}
|
|
.elif ${jpeg_ARGS} == build
|
|
BUILD_DEPENDS+= cjpeg:${PORTSDIR}/${JPEG_PORT}
|
|
.elif ${jpeg_ARGS} == run
|
|
RUN_DEPENDS+= cjpeg:${PORTSDIR}/${JPEG_PORT}
|
|
.elif ${jpeg_ARGS} == both
|
|
BUILD_DEPENDS+= cjpeg:${PORTSDIR}/${JPEG_PORT}
|
|
RUN_DEPENDS+= cjpeg:${PORTSDIR}/${JPEG_PORT}
|
|
.else
|
|
IGNORE= USES=jpeg - invalid args: [${jpeg_ARGS}] specified
|
|
.endif
|
|
|
|
.endif
|