diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-04-01 14:00:51 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-04-01 14:00:51 +0000 |
commit | 4e1b79a0a61f4973df8b4b0864d22086c769e219 (patch) | |
tree | 78ceaf1b099c56a40c240ab46278cdf4ae9e7c01 /graphics/gnash | |
parent | 7f4572eae4327c4403d9ef714cb6de917650662a (diff) | |
download | ports-4e1b79a0a61f4973df8b4b0864d22086c769e219.tar.gz ports-4e1b79a0a61f4973df8b4b0864d22086c769e219.zip |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight
Notes
Notes:
svn path=/head/; revision=412346
Diffstat (limited to 'graphics/gnash')
-rw-r--r-- | graphics/gnash/Makefile | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/graphics/gnash/Makefile b/graphics/gnash/Makefile index 09993afe7f1d..28560561345a 100644 --- a/graphics/gnash/Makefile +++ b/graphics/gnash/Makefile @@ -10,12 +10,12 @@ MASTER_SITES= GNU/${PORTNAME}/${PORTVERSION}/ MAINTAINER= ports@FreeBSD.org COMMENT= GNU Flash movie player -LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \ - libltdl.so:${PORTSDIR}/devel/libltdl \ - libcurl.so:${PORTSDIR}/ftp/curl \ - libgif.so:${PORTSDIR}/graphics/giflib \ - libspeex.so:${PORTSDIR}/audio/speex \ - libnspr4.so:${PORTSDIR}/devel/nspr +LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ + libltdl.so:devel/libltdl \ + libcurl.so:ftp/curl \ + libgif.so:graphics/giflib \ + libspeex.so:audio/speex \ + libnspr4.so:devel/nspr CONFLICTS= gnash-devel-[0-9]* @@ -98,8 +98,8 @@ WEBPLUGIN_FILES= libgnashplugin.so WEBPLUGIN_DIR=${_WEBPLUGIN_LIBDIR:S,^${LOCALBASE}/,${PREFIX}/,}/${WEBPLUGIN_NAME} PLIST_SUB+= NPAPI="" CONFIGURE_ARGS+=--with-npapi-plugindir="${WEBPLUGIN_DIR}" -BUILD_DEPENDS+= ${LOCALBASE}/bin/xulrunner:${PORTSDIR}/www/libxul -RUN_DEPENDS+= ${LOCALBASE}/bin/xulrunner:${PORTSDIR}/www/libxul +BUILD_DEPENDS+= ${LOCALBASE}/bin/xulrunner:www/libxul +RUN_DEPENDS+= ${LOCALBASE}/bin/xulrunner:www/libxul .else PLIST_SUB+= NPAPI="@comment " CONFIGURE_ARGS+= --disable-npapi @@ -143,7 +143,7 @@ CONFIGURE_ARGS+=--enable-gui=`${ECHO} ${GNASH_GUIS} | ${TR} ' ' ,` GNASH_RENDERERS= .if ${PORT_OPTIONS:MAGG} -LIB_DEPENDS+= libagg.so:${PORTSDIR}/graphics/agg +LIB_DEPENDS+= libagg.so:graphics/agg GNASH_RENDERERS+= agg .endif @@ -151,7 +151,7 @@ GNASH_RENDERERS+= agg USE_GL= yes GNASH_RENDERERS+= ogl .if ${PORT_OPTIONS:MGTK2} -LIB_DEPENDS+= libgdkglext-x11-1.0.so:${PORTSDIR}/x11-toolkits/gtkglext +LIB_DEPENDS+= libgdkglext-x11-1.0.so:x11-toolkits/gtkglext .endif .endif @@ -159,7 +159,7 @@ LIB_DEPENDS+= libgdkglext-x11-1.0.so:${PORTSDIR}/x11-toolkits/gtkglext .if ${PORT_OPTIONS:MKDE4} IGNORE= doesn't support Cairo renderer with KDE4 gui. Please rerun 'make config' and select different renderer or disable KDE4 GUI .endif -LIB_DEPENDS+= libcairo.so:${PORTSDIR}/graphics/cairo +LIB_DEPENDS+= libcairo.so:graphics/cairo GNASH_RENDERERS+= cairo .endif @@ -176,7 +176,7 @@ CONFIGURE_ARGS+= --enable-renderer=`${ECHO} ${GNASH_RENDERERS} | ${TR} ' ' ,` .if empty(PORT_OPTIONS:MFFMPEG) && empty(PORT_OPTIONS:MFFMPEG2) IGNORE= VAAPI currently works only with FFMPEG. Please rerun 'make config' and enable FFMPEG .endif -LIB_DEPENDS+= libva.so:${PORTSDIR}/multimedia/libva +LIB_DEPENDS+= libva.so:multimedia/libva .else CONFIGURE_ARGS+= --enable-hwaccel=none # XVideo .endif @@ -185,7 +185,7 @@ CONFIGURE_ARGS+= --enable-hwaccel=none # XVideo # Media handler options processing # .if ${PORT_OPTIONS:MFFMPEG2} && empty(PORT_OPTIONS:MFFMPEG) && empty(PORT_OPTIONS:MGSTREAMER) -LIB_DEPENDS+= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg +LIB_DEPENDS+= libavcodec.so:multimedia/ffmpeg CONFIGURE_ARGS+= --enable-media=ffmpeg \ --with-ffmpeg-incl=${LOCALBASE}/include/libavcodec \ --with-ffmpeg-lib=${LOCALBASE}/lib @@ -193,7 +193,7 @@ USE_SDL+= sdl MAKE_ARGS+= INCLUDES="-I${LOCALBASE}/include/ffmpeg" .elif ${PORT_OPTIONS:MFFMPEG} && empty(PORT_OPTIONS:MFFMPEG2) && empty(PORT_OPTIONS:MGSTREAMER) EXTRA_PATCHES+= ${FILESDIR}/ffmpeg0.patch -LIB_DEPENDS+= libavcodec0.so:${PORTSDIR}/multimedia/ffmpeg0 +LIB_DEPENDS+= libavcodec0.so:multimedia/ffmpeg0 CONFIGURE_ARGS+= --enable-media=ffmpeg \ --with-ffmpeg-incl=${LOCALBASE}/include/ffmpeg0/libavcodec \ --with-ffmpeg-lib=${LOCALBASE}/lib/ffmpeg0 |