1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/graphics/dcraw-m/Makefile
Daniel Engberg 664a2fa1e5 */*: Bump jpeg-turbo users treewide
New major version 3.0.0
2023-07-28 19:13:17 +02:00

39 lines
875 B
Makefile

PORTNAME= dcraw-m
PORTVERSION= 9.22
PORTREVISION= 9
CATEGORIES= graphics
MAINTAINER= waitman@waitman.net
COMMENT= Modified Decoder for RAW files from digital cameras
WWW= http://www.cybercom.net/~dcoffin/dcraw/
LICENSE= GPLv2
LIB_DEPENDS= libjasper.so:graphics/jasper \
liblcms2.so:graphics/lcms2
USE_GITHUB= yes
GH_ACCOUNT= waitman
GH_TAGNAME= 1392579
USES= jpeg magick:6 pkgconfig
CFLAGS+= -Wall -I${LOCALBASE}/include \
`MagickWand-config --cflags --cppflags` \
-DMAGICKCORE_HDRI_ENABLE=0 \
-DMAGICKCORE_QUANTUM_DEPTH=16
LDFLAGS+= `MagickWand-config --ldflags --libs` -lm -llcms2 -ljpeg \
-ljasper
LIBS+= -L${LOCALBASE}/lib
PLIST_FILES= bin/dcraw-m
do-build:
( cd ${WRKSRC} ; \
${CC} ${CFLAGS} ${LIBS} ${LDFLAGS} -o ${PORTNAME} ${PORTNAME}.c )
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
.include <bsd.port.mk>