Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 06 Oct 2015 09:59:37 +0000
From:      bugzilla-noreply@freebsd.org
To:        multimedia@FreeBSD.org
Subject:   maintainer-feedback requested: [Bug 203579] multimedia/ffmpeg: simplify manpages and html docs installation
Message-ID:  <bug-203579-12827-Rb56FwiR7q@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-203579-12827@https.bugs.freebsd.org/bugzilla/>
References:  <bug-203579-12827@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
Jan Beich <jbeich@FreeBSD.org> has reassigned Bugzilla Automation
<bugzilla@FreeBSD.org>'s request for maintainer-feedback to
multimedia@FreeBSD.org:
Bug 203579: multimedia/ffmpeg: simplify manpages and html docs installation
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D203579



--- Description ---
Created attachment 161754
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D161754&action=
=3Dedit
v0

Let's take advantage of the following code in doc/Makefile:

  install-doc: install-html install-man

  install-html:

  install-man:

  ifdef CONFIG_HTMLPAGES
  install-progs-$(CONFIG_DOC): install-html

  install-html: $(HTMLPAGES)
	  $(Q)mkdir -p "$(DOCDIR)"
	  $(INSTALL) -m 644 $(HTMLPAGES) "$(DOCDIR)"
  endif

  ifdef CONFIG_MANPAGES
  #install-progs-$(CONFIG_DOC): install-man

  install-man: $(MANPAGES)
	  $(Q)mkdir -p "$(MANDIR)/man1"
	  $(INSTALL) -m 644 $(MANPAGES1) "$(MANDIR)/man1"
	  $(Q)mkdir -p "$(MANDIR)/man3"
	  $(INSTALL) -m 644 $(MANPAGES3) "$(MANDIR)/man3"
  endif=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-203579-12827-Rb56FwiR7q>