bb89f80c35
- Normalize the ImageMagick library name so it stays the same regardless of what the 16-bit and HDRI option are set to [1]. Teach cmake to look for the new name. Bump ports that link to the libraries due to this. - As a result do away with the "HALFSUPPORTED" option block, and list 16-bit and HDRI with the other options. - ImageMagick ships a basic SVG plugin when not using librsvg2 for SVG support. This basic SVG plugin needs libxml2 to work [2]. Make libxml2 a mandatory dependency (instead of only when the SVG option was selected). - Don't touch .keep files in the modules directory, there files there so it useless. PR: 194949 [1] PR: 195227 [2] Requested by: many [1] Submitted by: software-freebsd@interfasys.ch [2]
36 lines
943 B
Makefile
36 lines
943 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mp3plot
|
|
DISTVERSION= 0.6.0
|
|
PORTREVISION= 12
|
|
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:${PORTSDIR}/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:${PORTSDIR}/graphics/gd
|
|
IMAGEMAGICK_CONFIGURE_ENABLE= magick
|
|
IMAGEMAGICK_LIB_DEPENDS=libMagick++-6.so:${PORTSDIR}/graphics/ImageMagick
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/bldtype_/s|-O2||g; s|^extra_LD.*||g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|