[SCM] libav/experimental: Install only manpage if binary is present patch by (Nicolas Boos <nicolas.boos at wanadoo dot fr>)

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:40:41 UTC 2013


The following commit has been merged in the experimental branch:
commit bbec50d7abc2dc121d02c38272c0fc4467a35b62
Author: Nicolas Boos <nicolas.boos at wanadoo.fr>
Date:   Thu Jun 17 22:46:11 2004 +0000

    Install only manpage if binary is present patch by (Nicolas Boos <nicolas.boos at wanadoo dot fr>)
    
    Originally committed as revision 3230 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/Makefile b/Makefile
index dd95e1a..277be41 100644
--- a/Makefile
+++ b/Makefile
@@ -14,15 +14,18 @@ CFLAGS+=-p
 LDFLAGS+=-p
 endif
 
+MANPAGE=$(SRC_PATH)/doc/ffmpeg.1
 PROG=ffmpeg$(EXESUF)
 PROGTEST=output_example$(EXESUF)
 QTFASTSTART=qt-faststart$(EXESUF)
 
 ifeq ($(CONFIG_FFSERVER),yes)
+MANPAGE+=$(SRC_PATH)/doc/ffserver.1
 PROG+=ffserver$(EXESUF)
 endif
 
 ifeq ($(CONFIG_FFPLAY),yes)
+MANPAGE+=$(SRC_PATH)/doc/ffplay.1
 PROG+=ffplay$(EXESUF)
 endif
 
@@ -126,8 +129,7 @@ install-man:
 ifneq ($(CONFIG_WIN32),yes)
 	if [ -f $(SRC_PATH)/doc/ffmpeg.1 ] ; then \
 	    install -d $(mandir)/man1 ; \
-	    install -m 644 $(SRC_PATH)/doc/ffmpeg.1 $(SRC_PATH)/doc/ffplay.1 \
-                           $(SRC_PATH)/doc/ffserver.1 $(mandir)/man1 ; \
+	    install -m 644 $(MANPAGE) $(mandir)/man1 ; \
 	fi
 endif
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list