graphics/povray37: Clean up Makefile
- set COMPILED_BY variable as proposed by diizzy@ - drop the STATIC option - make use of ports framework for options PNG, JPEG, TIFF, OPENEXR PR: 273299 Reported by: bsd@philippost.de (maintainer)
This commit is contained in:
parent
bd189a7ca1
commit
cbf6cea662
1 changed files with 18 additions and 54 deletions
|
@ -1,7 +1,7 @@
|
||||||
PORTNAME= povray
|
PORTNAME= povray
|
||||||
DISTVERSIONPREFIX= v
|
DISTVERSIONPREFIX= v
|
||||||
DISTVERSION= 3.7.0.10
|
DISTVERSION= 3.7.0.10
|
||||||
PORTREVISION= 9
|
PORTREVISION= 10
|
||||||
CATEGORIES= graphics
|
CATEGORIES= graphics
|
||||||
PKGNAMESUFFIX= 37
|
PKGNAMESUFFIX= 37
|
||||||
|
|
||||||
|
@ -20,73 +20,43 @@ USE_GITHUB= yes
|
||||||
GH_ACCOUNT= POV-Ray
|
GH_ACCOUNT= POV-Ray
|
||||||
|
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
CONFIGURE_ARGS= COMPILED_BY=${MAINTAINER} \
|
CONFIGURE_ARGS= COMPILED_BY=${HOSTARCH}-portbld-${OPSYS:tl}-${OSREL:R} \
|
||||||
--program-transform-name='s/povray/${PKGBASE}/' \
|
--program-transform-name='s/povray/${PKGBASE}/' \
|
||||||
--disable-optimiz
|
--disable-optimiz
|
||||||
|
|
||||||
VERSION_BASE= ${PORTVERSION:C/([0-9]+\.[0-9]+).*/\1/}
|
VERSION_BASE= ${PORTVERSION:C/([0-9]+\.[0-9]+).*/\1/}
|
||||||
|
ETCDIR= ${PREFIX}/etc/${PORTNAME}/${VERSION_BASE}
|
||||||
DATADIR= ${PREFIX}/share/${PORTNAME}-${VERSION_BASE}
|
DATADIR= ${PREFIX}/share/${PORTNAME}-${VERSION_BASE}
|
||||||
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${VERSION_BASE}
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${VERSION_BASE}
|
||||||
ETCDIR= ${PREFIX}/etc/${PORTNAME}/${VERSION_BASE}
|
|
||||||
EXAMPLESDIR= ${PREFIX}/share/examples/${PORTNAME}-${VERSION_BASE}
|
EXAMPLESDIR= ${PREFIX}/share/examples/${PORTNAME}-${VERSION_BASE}
|
||||||
|
|
||||||
OPTIONS_DEFINE= X11 PNG JPEG TIFF OPENEXR STATIC IO EXAMPLES DOCS
|
OPTIONS_DEFINE= X11 PNG JPEG TIFF OPENEXR IO EXAMPLES DOCS
|
||||||
OPTIONS_DEFAULT=PNG JPEG
|
OPTIONS_DEFAULT=PNG JPEG
|
||||||
OPTIONS_SUB= yes
|
OPTIONS_SUB= yes
|
||||||
|
|
||||||
DOCS_DESC= Install HTML documentation
|
|
||||||
EXAMPLES_DESC= Install example scenes
|
|
||||||
IO_DESC= Without I/O restrictions (security risk)
|
IO_DESC= Without I/O restrictions (security risk)
|
||||||
|
|
||||||
IO_CONFIGURE_ON= --disable-io-restrictions
|
IO_CONFIGURE_ON= --disable-io-restrictions
|
||||||
STATIC_CONFIGURE_ON= --enable-static
|
|
||||||
|
JPEG_USES= jpeg
|
||||||
|
JPEG_CONFIGURE_OFF= --without-jpeg
|
||||||
|
|
||||||
|
OPENEXR_LIB_DEPENDS= libImath.so:math/Imath \
|
||||||
|
libOpenEXR.so:graphics/openexr
|
||||||
|
OPENEXR_CONFIGURE_WITH= openexr
|
||||||
|
|
||||||
|
PNG_LIB_DEPENDS= libpng.so:graphics/png
|
||||||
|
PNG_CONFIGURE_WITH= libpng
|
||||||
|
|
||||||
|
TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff
|
||||||
|
TIFF_CONFIGURE_WITH= libtiff
|
||||||
|
|
||||||
X11_USES= sdl xorg
|
X11_USES= sdl xorg
|
||||||
X11_USE= XORG=xpm,sm,ice,x11 SDL=sdl
|
X11_USE= XORG=xpm,sm,ice,x11 SDL=sdl
|
||||||
X11_CONFIGURE_OFF= --without-x
|
X11_CONFIGURE_OFF= --without-x
|
||||||
|
|
||||||
.include <bsd.port.options.mk>
|
.include <bsd.port.options.mk>
|
||||||
|
|
||||||
.if ${PORT_OPTIONS:MPNG}
|
|
||||||
.if ${PORT_OPTIONS:MSTATIC}
|
|
||||||
BUILD_DEPENDS+= png>=1.4:graphics/png
|
|
||||||
.else
|
|
||||||
LIB_DEPENDS+= libpng.so:graphics/png
|
|
||||||
.endif
|
|
||||||
.else
|
|
||||||
CONFIGURE_ARGS+=--without-libpng
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if ${PORT_OPTIONS:MJPEG}
|
|
||||||
.if ${PORT_OPTIONS:MSTATIC}
|
|
||||||
USES+= jpeg:build
|
|
||||||
.else
|
|
||||||
USES+= jpeg
|
|
||||||
.endif
|
|
||||||
.else
|
|
||||||
CONFIGURE_ARGS+=--without-libjpeg
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if ${PORT_OPTIONS:MTIFF}
|
|
||||||
.if ${PORT_OPTIONS:MSTATIC}
|
|
||||||
BUILD_DEPENDS+= tiff>=4:graphics/tiff
|
|
||||||
.else
|
|
||||||
LIB_DEPENDS+= libtiff.so:graphics/tiff
|
|
||||||
.endif
|
|
||||||
.else
|
|
||||||
CONFIGURE_ARGS+=--without-libtiff
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if ${PORT_OPTIONS:MOPENEXR}
|
|
||||||
.if ${PORT_OPTIONS:MSTATIC}
|
|
||||||
BUILD_DEPENDS+= openexr>=1.6:graphics/openexr
|
|
||||||
.else
|
|
||||||
LIB_DEPENDS+= libOpenEXR.so:graphics/openexr libImath.so:math/Imath
|
|
||||||
CPPFLAGS+= -I${LOCALBASE}/include/OpenEXR -I${LOCALBASE}/include/Imath -DInt64=uint64_t
|
|
||||||
.endif
|
|
||||||
.else
|
|
||||||
CONFIGURE_ARGS+=--without-openexr
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if !${PORT_OPTIONS:MPNG} || !${PORT_OPTIONS:MJPEG} || !${PORT_OPTIONS:MTIFF}
|
.if !${PORT_OPTIONS:MPNG} || !${PORT_OPTIONS:MJPEG} || !${PORT_OPTIONS:MTIFF}
|
||||||
CONFIGURE_ARGS+=NON_REDISTRIBUTABLE_BUILD=yes
|
CONFIGURE_ARGS+=NON_REDISTRIBUTABLE_BUILD=yes
|
||||||
.endif
|
.endif
|
||||||
|
@ -102,12 +72,6 @@ post-patch:
|
||||||
pre-configure:
|
pre-configure:
|
||||||
cd ${WRKSRC}/unix && ./prebuild.sh
|
cd ${WRKSRC}/unix && ./prebuild.sh
|
||||||
|
|
||||||
pre-build:
|
|
||||||
.if ${PORT_OPTIONS:MSTATIC} && ${PORT_OPTIONS:MTIFF}
|
|
||||||
# graphics/tiff adds dependencies on libjpeg, libjbig and liblzma
|
|
||||||
@${REINPLACE_CMD} -e 's,^\(LIBS = .*\)-ltiff\(.*\),\1-ltiff -ljpeg -ljbig -llzma\2,' ${WRKSRC}/unix/Makefile
|
|
||||||
.endif
|
|
||||||
|
|
||||||
post-install:
|
post-install:
|
||||||
${MV} ${STAGEDIR}${DATADIR}/scenes ${STAGEDIR}${EXAMPLESDIR}
|
${MV} ${STAGEDIR}${DATADIR}/scenes ${STAGEDIR}${EXAMPLESDIR}
|
||||||
.for i in povray.conf povray.ini
|
.for i in povray.conf povray.ini
|
||||||
|
|
Loading…
Reference in a new issue