- Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery)
80 lines
2.2 KiB
Makefile
80 lines
2.2 KiB
Makefile
# Created by: Martin Wilke <miwi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kdegraphics
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics kde
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Graphics utilities for KDE 4 (meta port)
|
|
|
|
RUN_DEPENDS= ${KDE4_PREFIX}/lib/kde4/mobithumbnail.so:${PORTSDIR}/graphics/kdegraphics4-mobipocket \
|
|
${KDE4_PREFIX}/lib/strigi/strigiea_dvi.so:${PORTSDIR}/graphics/kdegraphics4-strigi-analyzer \
|
|
${KDE4_PREFIX}/lib/kde4/svgpart.so:${PORTSDIR}/graphics/kdegraphics4-svgpart \
|
|
${KDE4_PREFIX}/lib/kde4/gsthumbnail.so:${PORTSDIR}/graphics/kdegraphics4-thumbnailers
|
|
|
|
LATEST_LINK= ${PORTNAME}4
|
|
|
|
USE_KDE4= kdeprefix
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS_DEFINE= GPHOTO GWENVIEW KCOLORCHOOSER KGAMMA KRULER \
|
|
KOLOURPAINT KSNAPSHOT OKULAR SANE
|
|
OPTIONS_DEFAULT=${OPTIONS_DEFINE}
|
|
|
|
GPHOTO_DESC= Digital camera manager
|
|
GWENVIEW_DESC= Image viewer and browser
|
|
KCOLORCHOOSER_DESC= Utility for colors selection
|
|
KGAMMA_DESC= Monitor calibration tool
|
|
KRULER_DESC= Screen ruler
|
|
KOLOURPAINT_DESC= Paint application
|
|
KSNAPSHOT_DESC= Screen capture program
|
|
OKULAR_DESC= Universal document viewer
|
|
SANE_DESC= Plugin for scanning on KDE
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MGPHOTO}
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/lib/kde4/kio_kamera.so:${PORTSDIR}/graphics/kamera-kde4
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGWENVIEW}
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/gwenview:${PORTSDIR}/graphics/gwenview-kde4
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MKCOLORCHOOSER}
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kcolorchooser:${PORTSDIR}/graphics/kcolorchooser
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MKGAMMA}
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/xf86gammacfg:${PORTSDIR}/x11/kgamma
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MKRULER}
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kruler:${PORTSDIR}/deskutils/kruler
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MKOLOURPAINT}
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kolourpaint:${PORTSDIR}/graphics/kolourpaint
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MKSNAPSHOT}
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/ksnapshot:${PORTSDIR}/graphics/ksnapshot
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MOKULAR}
|
|
USE_KDE4+= okular_run
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSANE}
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/lib/kde4/ksaneplugin.so:${PORTSDIR}/graphics/ksaneplugin
|
|
.endif
|
|
|
|
do-install:
|
|
${DO_NADA}
|
|
|
|
.include <bsd.port.mk>
|