svn commit: r352254 - head/net/mpd5

Renato Botelho garga at FreeBSD.org
Sat Apr 26 13:06:33 UTC 2014


Author: garga
Date: Sat Apr 26 13:06:32 2014
New Revision: 352254
URL: http://svnweb.freebsd.org/changeset/ports/352254
QAT: https://qat.redports.org/buildarchive/r352254/

Log:
  Fix build when WITHOUT_MAN is defined
  
  PR:		ports/189008
  Submitted by:	Lev Serebryakov <lev at FreeBSD.org>

Modified:
  head/net/mpd5/Makefile

Modified: head/net/mpd5/Makefile
==============================================================================
--- head/net/mpd5/Makefile	Sat Apr 26 13:03:20 2014	(r352253)
+++ head/net/mpd5/Makefile	Sat Apr 26 13:06:32 2014	(r352254)
@@ -38,6 +38,10 @@ DOCSDIR=	${PREFIX}/share/doc/mpd5
 PORTDOCS=	${HTMLNUM:S/^/mpd/:S/$/.html/} mpd.html mpd.ps README	\
 		mpd_toc.html
 PLIST_DIRS=	etc/mpd5
-PLIST_FILES=	${CONFSUF:S/^/etc\/mpd5\/mpd./:S/$/.sample/} sbin/mpd5 man/man8/mpd5.8.gz
+PLIST_FILES=	${CONFSUF:S/^/etc\/mpd5\/mpd./:S/$/.sample/} sbin/mpd5
+
+.if !defined(WITHOUT_MAN)
+PLIST_FILES+=	man/man8/mpd5.8.gz
+.endif
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list