diff options
author | wg <wg@FreeBSD.org> | 2013-10-09 06:11:23 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-10-09 06:11:23 +0800 |
commit | 9f21b4fa453701b58e9b318408d72e821f1bba33 (patch) | |
tree | 53bd7667fcd0c050680a711716f2cdf7571b1b80 | |
parent | c7cda75bac33a1c040247a58704d1eb1da122847 (diff) | |
download | freebsd-ports-gnome-9f21b4fa453701b58e9b318408d72e821f1bba33.tar.gz freebsd-ports-gnome-9f21b4fa453701b58e9b318408d72e821f1bba33.tar.zst freebsd-ports-gnome-9f21b4fa453701b58e9b318408d72e821f1bba33.zip |
graphics/amide: link using ffmpeg0
- Link using ffmpeg0
Approved by: portmgr (bapt, implicit)
-rw-r--r-- | graphics/amide/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/graphics/amide/Makefile b/graphics/amide/Makefile index d0bdd61d9bfb..516acc4c7c2c 100644 --- a/graphics/amide/Makefile +++ b/graphics/amide/Makefile @@ -2,7 +2,7 @@ PORTNAME= amide PORTVERSION= 1.0.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF EXTRACT_SUFX= .tgz @@ -40,7 +40,7 @@ DCMTK_LIB_DEPENDS= libdcmdata.so:${PORTSDIR}/devel/dcmtk FAME_CONFIGURE_ENABLE= libfame FAME_LIB_DEPENDS= libfame.so:${PORTSDIR}/multimedia/libfame FFMPEG_CONFIGURE_ENABLE= ffmpeg -FFMPEG_LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg +FFMPEG_LIB_DEPENDS= libavcodec0.so:${PORTSDIR}/multimedia/ffmpeg0 GSL_CONFIGURE_ENABLE= libgsl GSL_LIB_DEPENDS= libgsl.so:${PORTSDIR}/math/gsl VOLPACK_CONFIGURE_ENABLE= libvolpack @@ -52,7 +52,10 @@ NLS_CONFIGURE_ENABLE= nls post-patch: @${TOUCH} ${WRKSRC}/aclocal.m4 ${WRKSRC}/Makefile.in \ ${WRKSRC}/amide_config.h.in - @${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|' \ + @${REINPLACE_CMD} \ + -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ + -e 's|libavcodec|libavcodec0|g' \ + -e 's|libavutil|libavutil0|g' \ ${WRKSRC}/configure .include <bsd.port.mk> |