[Bug 203579] multimedia/ffmpeg: simplify manpages and html docs installation
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Tue Oct 6 09:59:38 UTC 2015
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203579
Bug ID: 203579
Summary: multimedia/ffmpeg: simplify manpages and html docs
installation
Product: Ports & Packages
Version: Latest
Hardware: Any
OS: Any
Status: New
Keywords: patch
Severity: Affects Only Me
Priority: ---
Component: Individual Port(s)
Assignee: multimedia at FreeBSD.org
Reporter: jbeich at FreeBSD.org
Flags: maintainer-feedback?(multimedia at FreeBSD.org)
Assignee: multimedia at FreeBSD.org
Created attachment 161754
--> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=161754&action=edit
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
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-multimedia
mailing list