diff options
author | mm <mm@FreeBSD.org> | 2011-06-25 17:35:38 +0800 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2011-06-25 17:35:38 +0800 |
commit | 15ef543df6242e934ab5fb706d4e4a6898e90961 (patch) | |
tree | b34d6253eb6583495db50c2913005344b7af4a38 /multimedia | |
parent | 45a4fd11dacd2dcda2ed97fed598a7536643642a (diff) | |
download | freebsd-ports-gnome-15ef543df6242e934ab5fb706d4e4a6898e90961.tar.gz freebsd-ports-gnome-15ef543df6242e934ab5fb706d4e4a6898e90961.tar.zst freebsd-ports-gnome-15ef543df6242e934ab5fb706d4e4a6898e90961.zip |
Fix plist if defined WITHOUT_FFSERVER
Reported by: Stas Verberkt <legolas_at_legolasweb_dot_nl>
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/ffmpeg/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/multimedia/ffmpeg/Makefile b/multimedia/ffmpeg/Makefile index 51c38c6bb5de..c347e415ce0f 100644 --- a/multimedia/ffmpeg/Makefile +++ b/multimedia/ffmpeg/Makefile @@ -104,7 +104,7 @@ DOC_FILES= CREDITS INSTALL LICENSE MAINTAINERS README RELEASE # under doc subdirectory DOC_DOCFILES= APIchanges TODO avutil.txt build_system.txt \ developer.html faq.html fate.txt ffmpeg-mt-authorship.txt \ - ffmpeg.html ffprobe.html ffserver.html general.html \ + ffmpeg.html ffprobe.html general.html \ git-howto.txt issue_tracker.txt libavfilter.html \ multithreading.txt optimization.txt rate_distortion.txt \ snow.txt soc.txt swscale.txt tablegen.txt viterbi.txt @@ -154,6 +154,7 @@ BUILD_DEPENDS+= texi2html:${PORTSDIR}/textproc/texi2html MAN1+= ffmpeg.1 ffprobe.1 . if !defined(WITHOUT_FFSERVER) MAN1+= ffserver.1 +DOC_DOCFILES+= ffserver.html . endif .endif @@ -292,6 +293,7 @@ USE_SDL+= sdl PLIST_FILES+= bin/ffplay .if !defined(NOPORTDOCS) MAN1+= ffplay.1 +DOC_DOCFILES+= ffplay.html .endif .else CONFIGURE_ARGS+= --disable-ffplay |