Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 May 2013 21:40:02 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/177675: commit references a PR
Message-ID:  <201305112140.r4BLe2vI007941@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/177675; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/177675: commit references a PR
Date: Sat, 11 May 2013 21:38:10 +0000 (UTC)

 Author: rakuco
 Date: Sat May 11 21:37:57 2013
 New Revision: 317919
 URL: http://svnweb.freebsd.org/changeset/ports/317919
 
 Log:
   Fix building with MANPAGES=no.
   
   Turning off the MANPAGES option generates lots of errors on install and
   fatal errors when attempting to create a package.
   
   PR:		ports/177675
   Submitted by:	Craig Leres <leres@ee.lbl.gov>
   Approved by:	Paul Schmehl <pauls@utdallas.edu> (maintainer)
 
 Modified:
   head/net-mgmt/argus3-clients/Makefile
 
 Modified: head/net-mgmt/argus3-clients/Makefile
 ==============================================================================
 --- head/net-mgmt/argus3-clients/Makefile	Sat May 11 21:21:37 2013	(r317918)
 +++ head/net-mgmt/argus3-clients/Makefile	Sat May 11 21:37:57 2013	(r317919)
 @@ -33,7 +33,9 @@ CONFIGURE_ARGS+=	--with-sasl=${LOCALBASE
  .if ${PORT_OPTIONS:MMYSQL}
  USE_MYSQL=	yes
  PLIST_SUB+=	MYSQL=""
 +.if ${PORT_OPTIONS:MMANPAGES}
  MAN1+=		rasql.1 rasqlinsert.1 rasqltimeindex.1
 +.endif
  .else
  PLIST_SUB+=	MYSQL="@comment "
  .endif
 @@ -43,11 +45,13 @@ LIB_DEPENDS+=	GeoIP:${PORTSDIR}/net/GeoI
  CONFIGURE_ARGS+=	--with-GeoIP=${LOCALBASE}
  .endif
  
 +.if ${PORT_OPTIONS:MMANPAGES}
  MAN1+=	ra.1 rabins.1 racluster.1 raconvert.1 racount.1 radump.1 raevent.1 \
  	rafilteraddr.1 ragraph.1 ragrep.1 rahisto.1 ralabel.1 ranonymize.1 \
  	rapath.1 rapolicy.1 rasort.1 rasplit.1 rastream.1 rastrip.1
  MAN5=	racluster.5 radium.conf.5 ralabel.conf.5 ranonymize.5 rarc.5
  MAN8=	radium.8
 +.endif
  
  do-install:
  .for i in ra rabins racluster raconvert racount radium radump raevent \
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305112140.r4BLe2vI007941>