Bug 117176 - sysutils/symon requires pod2man (perl) to build docs
Summary: sysutils/symon requires pod2man (perl) to build docs
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Jeremy Chadwick
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-14 10:40 UTC by Jeremy Chadwick
Modified: 2007-10-16 04:40 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jeremy Chadwick freebsd_committer freebsd_triage 2007-10-14 10:40:02 UTC
	It appears that the symux (client) portion requires pod2man during the
	build process.

Fix: 

Consider adding USE_PERL=yes.
How-To-Repeat: 	Run "make" on this port without perl installed:

strip symon
nroff -mandoc symon.8 > symon.cat8 || (rm -f symon.cat8; false)
===> client
pod2man SymuxClient.pm > SymuxClient.cat3p.tmp || (rm -f SymuxClient.cat3p; false)
pod2man: not found
*** Error code 1
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2007-10-14 10:40:18 UTC
Responsible Changed
From-To: freebsd-ports-bugs->koitsu

Submitter has GNATS access (via the GNATS Auto Assign Tool)
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2007-10-14 10:40:21 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 Ulrich Spoerlein 2007-10-15 20:16:02 UTC
Hi Jeremy,

Thanks for catching this. Please commit the attached patch

Ulrich Spoerlein


Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/sysutils/symon/Makefile,v
retrieving revision 1.14
diff -u -p -r1.14 Makefile
--- Makefile	4 Oct 2007 06:10:15 -0000	1.14
+++ Makefile	15 Oct 2007 19:13:48 -0000
@@ -16,6 +16,8 @@ COMMENT=	Performance and information mon
 WRKSRC=		${WRKDIR}/${PORTNAME}
 SUB_FILES=	pkg-message
 
+USE_PERL5_BUILD=yes
+
 # Synonym for WITHOUT_SYMUX
 .if defined(WITHOUT_RRD)
 WITHOUT_SYMUX=	yes
Comment 4 dfilter service freebsd_committer freebsd_triage 2007-10-16 04:30:13 UTC
koitsu      2007-10-16 03:30:09 UTC

  FreeBSD ports repository

  Modified files:
    sysutils/symon       Makefile 
  Log:
  Add reliance on USE_PERL5_BUILD; pod2man is required for building
  the documentation.
  
  PR:             ports/117176
  Submitted by:   Ulrich Spoerlein <uspoerlein@gmail.com>
  
  Revision  Changes    Path
  1.15      +2 -0      ports/sysutils/symon/Makefile
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 5 Jeremy Chadwick freebsd_committer freebsd_triage 2007-10-16 04:30:53 UTC
State Changed
From-To: feedback->closed

Committed. Thanks!