diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-11 14:35:36 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-11 14:35:36 +0000 |
commit | 5978476c353873821167189c3e7e7d3ce7b9909a (patch) | |
tree | 5c7b83e7642fc29f698d59a6bc145001dbd04783 /audio/mp3plot | |
parent | 95ab3035bfc8b040822f80592efa7b9f2b7a51b6 (diff) |
Notes
Diffstat (limited to 'audio/mp3plot')
-rw-r--r-- | audio/mp3plot/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/mp3plot/Makefile b/audio/mp3plot/Makefile index 1b241278d502..6d316f56140b 100644 --- a/audio/mp3plot/Makefile +++ b/audio/mp3plot/Makefile @@ -10,7 +10,7 @@ MASTER_SITES= http://p.outlyer.net/mp3plot/files/ MAINTAINER= sylvio@FreeBSD.org COMMENT= Mp3 bitrate plot tool -LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs OPTIONS_DEFINE= GD IMAGEMAGICK OPTIONS_DEFAULT= GD @@ -32,13 +32,13 @@ LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MGD} -LIB_DEPENDS+= gd:${PORTSDIR}/graphics/gd +LIB_DEPENDS+= libgd.so:${PORTSDIR}/graphics/gd .else CONFIGURE_ARGS+= --disable-gd .endif .if ${PORT_OPTIONS:MIMAGEMAGICK} -LIB_DEPENDS+= Magick++.5:${PORTSDIR}/graphics/ImageMagick +LIB_DEPENDS+= libMagick++.so:${PORTSDIR}/graphics/ImageMagick .else CONFIGURE_ARGS+= --disable-magick .endif |