# New ports collection makefile for: mp3plot # Date created: 12 June 2007 # Whom: Andrew Pantyukhin # # $FreeBSD$ # PORTNAME= mp3plot DISTVERSION= 0.5.1 CATEGORIES= audio MASTER_SITES= http://p.outlyer.net/mp3plot/files/ MAINTAINER= ports@FreeBSD.org COMMENT= Mp3 bitrate plot tool LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost OPTIONS= GD "Enable support for GD library" on \ IMAGEMAGICK "Enable support for Magick++" off GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" MAN1= ${PORTNAME}.1 PLIST_FILES= bin/${PORTNAME} CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} .include .if defined(WITHOUT_GD) CONFIGURE_ARGS+= --disable-gd .else LIB_DEPENDS+= gd.4:${PORTSDIR}/graphics/gd .endif .if defined(WITH_IMAGEMAGICK) LIB_DEPENDS+= Magick++.2:${PORTSDIR}/graphics/ImageMagick .else CONFIGURE_ARGS+= --disable-magick .endif post-patch: @${REINPLACE_CMD} -e '/bldtype_/s|-O2||g' ${WRKSRC}/configure .include