mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
e1d35c638e
Approved by: portmgr blanket
84 lines
2.2 KiB
Makefile
84 lines
2.2 KiB
Makefile
# Created by: Sergey A. Osokin <osa@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libraw
|
|
PORTVERSION= 0.15.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.libraw.org/data/
|
|
DISTNAME= LibRaw-${PORTVERSION}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= osa@FreeBSD.org
|
|
COMMENT= Library for manipulating raw images
|
|
|
|
LICENSE= LGPL21 CDDL
|
|
LICENSE_COMB= dual
|
|
|
|
LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg
|
|
|
|
USE_LDCONFIG= yes
|
|
USES= pathfix pkgconfig libtool
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-examples --disable-jasper
|
|
CFLAGS+= -fPIC
|
|
|
|
OPTIONS_DEFINE= DEMOSAIC_PACK_GPL2 DEMOSAIC_PACK_GPL3 DOCS EXAMPLES LCMS2 \
|
|
OPTIMIZED_CFLAGS OPENMP
|
|
OPTIONS_DEFAULT= LCMS2
|
|
|
|
DEMOSAIC_PACK_GPL2_DESC= Enable GPLv2 demosaic pack
|
|
DEMOSAIC_PACK_GPL3_DESC= Enable GPLv3 demosaic pack
|
|
OPTIMIZED_CFLAGS_DESC= Enable optimizations (on x86)
|
|
OPENMP_DESC= Enable OpenMP (implies GCC 4.6+)
|
|
|
|
DEMOSAIC_PACK_GPL2_CONFIGURE_OFF= --disable-demosaic-pack-gpl2
|
|
DEMOSAIC_PACK_GPL2_CONFIGURE_ON= --enable-demosaic-pack-gpl2=../LibRaw-demosaic-pack-GPL2-${PORTVERSION}
|
|
DEMOSAIC_PACK_GPL2_DISTFILES= LibRaw-demosaic-pack-GPL2-${PORTVERSION}.tar.gz
|
|
DEMOSAIC_PACK_GPL3_CONFIGURE_OFF= --disable-demosaic-pack-gpl3
|
|
DEMOSAIC_PACK_GPL3_CONFIGURE_ON= --enable-demosaic-pack-gpl3=../LibRaw-demosaic-pack-GPL3-${PORTVERSION}
|
|
DEMOSAIC_PACK_GPL3_DISTFILES= LibRaw-demosaic-pack-GPL3-${PORTVERSION}.tar.gz
|
|
LCMS2_CONFIGURE_ENABLE= lcms
|
|
LCMS2_LIB_DEPENDS= liblcms2.so:${PORTSDIR}/graphics/lcms2
|
|
OPENMP_CONFIGURE_ENABLE= openmp
|
|
OPENMP_USE= GCC=yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
|
|
.if ${ARCH} == "i386"
|
|
CFLAGS+= -O3
|
|
.endif
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDEMOSAIC_PACK_GPL2}
|
|
LICENSE= GPLv2
|
|
LICENSE_COMB= single
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDEMOSAIC_PACK_GPL3}
|
|
LICENSE= GPLv3
|
|
LICENSE_COMB= single
|
|
.endif
|
|
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/doc && \
|
|
${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${WRKSRC}/samples && \
|
|
${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s/-lstdc++//g" ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|