mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-30 10:38:37 +00:00
289883b11b
* Add PKGNAMESUFFIX and rename the directory. This was done to show that IM6 is not the "main" version. But still fully supported by upstream. * Convert a number of options to optionhelpers. * Add option for ISO/IEC 23008-12:2017 HEIF suport * Add comment to pkg-descr explaining IM6's "legacy" tag. * Add comment to the patch-config_policy.xml file why it still needed. Please note that IM7 is not a drop in replacement due to library API and command arguments changes. And as a result ports need to decide for themself which version to use. Chase these changes in all the ports that using IM6. PR: 225102 (based on, only the version update) [1] Submitted by: Pascal Christen <pascal.christen@hostpoint.ch>
42 lines
933 B
Makefile
42 lines
933 B
Makefile
# Created by: "Waitman Gobble" <uzimac@da3m0n8t3r.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dcraw-m
|
|
PORTVERSION= 9.22
|
|
PORTREVISION= 4
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= waitman@waitman.net
|
|
COMMENT= Modified Decoder for RAW files from digital cameras
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libjasper.so:graphics/jasper \
|
|
liblcms2.so:graphics/lcms2 \
|
|
libMagickWand-6.so:graphics/ImageMagick6
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= waitman
|
|
GH_TAGNAME= 1392579
|
|
|
|
USES= jpeg 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>
|