* Disable FPX (FlashPix) support by default. This image format is really rare these days coupled with that there are known CVE's in libfpx and it doesn't seem to be maintained these days. It doesn't make sense to keep it enabled by default anymore. [1] * Add new option for RAW support * Fix portscout macro to only show 6.9.x versions Bump other ports for the shared library bumps in IM 6. PR: 222309 [1] Submitted by: Anton Yuzhaninov <citrin+pr@citrin.ru> [1]
39 lines
954 B
Makefile
39 lines
954 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mp3plot
|
|
DISTVERSION= 0.6.0
|
|
PORTREVISION= 19
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://p.outlyer.net/mp3plot/files/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Mp3 bitrate plot tool
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libboost_thread.so:devel/boost-libs
|
|
|
|
OPTIONS_DEFINE= GD IMAGEMAGICK
|
|
OPTIONS_DEFAULT=GD
|
|
|
|
CONFIGURE_ARGS= --with-boost-program-options=boost_program_options \
|
|
--with-boost-thread=boost_thread
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
GNU_CONFIGURE= yes
|
|
LIBS+= -L${LOCALBASE}/lib -lboost_system
|
|
|
|
PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
|
|
|
|
GD_CONFIGURE_ENABLE= gd
|
|
GD_LIB_DEPENDS= libgd.so:graphics/gd
|
|
IMAGEMAGICK_CONFIGURE_ENABLE= magick
|
|
IMAGEMAGICK_LIB_DEPENDS=libMagick++-6.so:graphics/ImageMagick
|
|
|
|
BROKEN_powerpc64= Does not build on powerpc64
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/bldtype_/s|-O2||g; s|^extra_LD.*||g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|