Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Jul 2014 16:23:08 +0000 (UTC)
From:      Adam Weinberger <adamw@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r361962 - in head/math: R arpack-ng cblas crlibm glpk kktdirect lapacke libflame lrng metis msieve ocaml-ocamlgraph prng rkward-kde4 scilab sfft spblas superlu_mt taucs vtk5 xppaut
Message-ID:  <201407151623.s6FGN87l059723@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adamw
Date: Tue Jul 15 16:23:08 2014
New Revision: 361962
URL: http://svnweb.freebsd.org/changeset/ports/361962
QAT: https://qat.redports.org/buildarchive/r361962/

Log:
  Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS.

Modified:
  head/math/R/Makefile
  head/math/arpack-ng/Makefile
  head/math/cblas/Makefile
  head/math/crlibm/Makefile
  head/math/glpk/Makefile
  head/math/kktdirect/Makefile
  head/math/lapacke/Makefile
  head/math/libflame/Makefile
  head/math/lrng/Makefile
  head/math/metis/Makefile
  head/math/msieve/Makefile
  head/math/ocaml-ocamlgraph/Makefile
  head/math/prng/Makefile
  head/math/rkward-kde4/Makefile
  head/math/scilab/Makefile
  head/math/sfft/Makefile
  head/math/spblas/Makefile
  head/math/superlu_mt/Makefile
  head/math/taucs/Makefile
  head/math/vtk5/Makefile
  head/math/xppaut/Makefile

Modified: head/math/R/Makefile
==============================================================================
--- head/math/R/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/R/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -37,7 +37,7 @@ CONFIGURE_ENV=		LIBR_LDFLAGS="${LDFLAGS}
 			SED="${LOCALBASE}/bin/gsed" \
 			ac_cv_have_decl_powl=yes ac_cv_have_decl_log1pl=yes
 
-OPTIONS_DEFINE=		MISSING
+OPTIONS_DEFINE=		MISSING DOCS
 
 MISSING_DESC=		use libmissing rather than libquadmath
 

Modified: head/math/arpack-ng/Makefile
==============================================================================
--- head/math/arpack-ng/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/arpack-ng/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -20,7 +20,7 @@ CONFLICTS=	arpack-[0-9]*
 
 GNU_CONFIGURE=	yes
 
-CONFIGURE_ARGS =	--disable-mpi --with-blas="${BLAS}" \
+CONFIGURE_ARGS=	--disable-mpi --with-blas="${BLAS}" \
 			--with-lapack="${LAPACK}"
 LDFLAGS+=	-L${LOCALBASE}/lib
 
@@ -32,6 +32,8 @@ PLIST_FILES=	lib/libarpack.a \
 
 WRKSRC=	${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
+OPTIONS_DEFINE=	DOCS
+
 .include <bsd.port.pre.mk>
 
 .if ${PORT_OPTIONS:MDOCS}

Modified: head/math/cblas/Makefile
==============================================================================
--- head/math/cblas/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/cblas/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -17,7 +17,7 @@ USES=		fortran
 
 CONFLICTS_INSTALL=	atlas-[0-9]* atlas-devel-[0-9]*
 
-OPTIONS_DEFINE=	PROFILE SHARED STATIC
+OPTIONS_DEFINE=	PROFILE SHARED STATIC DOCS
 OPTIONS_DEFAULT=	SHARED STATIC
 PROFILE_DESC=	Build profiling libraries
 SHARED_DESC=	Build shared libraries and PIC archives

Modified: head/math/crlibm/Makefile
==============================================================================
--- head/math/crlibm/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/crlibm/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -21,7 +21,7 @@ GNU_CONFIGURE=	yes
 
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
-OPTIONS_DEFINE=	TEST
+OPTIONS_DEFINE=	TEST DOCS
 OPTIONS_DEFAULT=	TEST
 TEST_DESC=	Include all test capabilities (requires MPFR)
 

Modified: head/math/glpk/Makefile
==============================================================================
--- head/math/glpk/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/glpk/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -15,7 +15,7 @@ LICENSE=	GPLv3
 
 LIB_DEPENDS=	libgmp.so:${PORTSDIR}/math/gmp
 
-OPTIONS_DEFINE=	IODBC MYSQL
+OPTIONS_DEFINE=	IODBC MYSQL DOCS
 IODBC_DESC=	MathProg iodbc support
 MYSQL_DESC=	MathProg mysql support
 

Modified: head/math/kktdirect/Makefile
==============================================================================
--- head/math/kktdirect/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/kktdirect/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -19,6 +19,8 @@ LDFLAGS+=	-L${LOCALBASE}/lib ${LAPACK} $
 PLIST_FILES=	include/kktdirect.h lib/libkktdirect.a lib/libkktdirect_pic.a \
 		lib/libkktdirect.so lib/libkktdirect.so.0
 
+OPTIONS_DEFINE=	DOCS EXAMPLES
+
 .include <bsd.port.pre.mk>
 
 .if ${ARCH} == "sparc64"

Modified: head/math/lapacke/Makefile
==============================================================================
--- head/math/lapacke/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/lapacke/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -19,7 +19,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 USE_LDCONFIG=	yes
 USES=		fortran
 
-OPTIONS_DEFINE=	PROFILE XLAPACKE
+OPTIONS_DEFINE=	PROFILE XLAPACKE DOCS
 PROFILE_DESC=	Build a profiling library
 XLAPACKE_DESC=	Install interfaces to XLAPACK
 

Modified: head/math/libflame/Makefile
==============================================================================
--- head/math/libflame/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/libflame/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -25,7 +25,7 @@ CONFIGURE_ARGS	=	--enable-dynamic-build 
 
 OPTIONS_DEFINE=	BLAS3_CNTL BUILTIN_BLAS CBLAS EXTERNAL_LAPACK GOTOBLAS \
 		LAPACK2FLAME LAPACK_SUBPROBLEMS OPENMP SHARED STATIC \
-		SUPERMATRIX THREADS
+		SUPERMATRIX THREADS DOCS EXAMPLES
 OPTIONS_DEFAULT=	BLAS3_CNTL LAPACK2FLAME SHARED SUPERMATRIX THREADS
 BLAS3_CNTL_DESC=	Set Level-3 BLAS variant and blocksize
 BUILTIN_BLAS_DESC=	Build the (suboptimal) internal BLAS

Modified: head/math/lrng/Makefile
==============================================================================
--- head/math/lrng/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/lrng/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -26,7 +26,7 @@ MAKE_ENV+=	CLEANFILES="${CLEANFILES}" \
 		LIB="${LIB}" LIBDIR="${LIBDIR}" SHLIB_MAJOR="${SHLIB_MAJOR}" \
 		SRCS="${SRCS}" SRCCONF="${SRCCONF}"
 NO_WRKSUBDIR=	yes
-OPTIONS_DEFINE=	PROFILE
+OPTIONS_DEFINE=	PROFILE DOCS EXAMPLES
 PLIST_DIRS=	include/${PORTNAME}
 PLIST_FILES=	${DISTFILES:M*.h\:1:S|:1$||:S|^|include/${PORTNAME}/|:} \
 		lib/lib${LIB}.a lib/lib${LIB}.so \

Modified: head/math/metis/Makefile
==============================================================================
--- head/math/metis/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/metis/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -15,7 +15,7 @@ CONFLICTS=	metis4-4* metis-edf-[0-9]*
 
 USES=		cmake
 
-OPTIONS_DEFINE =	OPENMP SHARED STATIC
+OPTIONS_DEFINE=	OPENMP SHARED STATIC DOCS
 
 OPENMP_DESC=	multithreading via OpenMP
 #PROFILE_DESC=	profiling libraries

Modified: head/math/msieve/Makefile
==============================================================================
--- head/math/msieve/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/msieve/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -23,7 +23,7 @@ PLIST_FILES=	bin/msieve lib/libmsieve.a 
 PLIST_DIRS=	include/msieve
 PORTDOCS=	Changes Readme Readme.nfs Readme.qs
 
-OPTIONS_DEFINE=		OPTIMIZED_CFLAGS
+OPTIONS_DEFINE=		OPTIMIZED_CFLAGS DOCS
 OPTIONS_DEFAULT=	OPTIMIZED_CFLAGS
 
 .include <bsd.port.options.mk>

Modified: head/math/ocaml-ocamlgraph/Makefile
==============================================================================
--- head/math/ocaml-ocamlgraph/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/ocaml-ocamlgraph/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -11,7 +11,7 @@ PKGNAMEPREFIX=	ocaml-
 MAINTAINER=	johans@FreeBSD.org
 COMMENT=	Graph manipulation library for OCaml
 
-OPTIONS_DEFINE=	GUI
+OPTIONS_DEFINE=	GUI DOCS
 OPTIONS_DEFAULT=GUI
 OPTIONS_SUB=	yes
 GUI_DESC=		Include GUI user programs: viewer and editor

Modified: head/math/prng/Makefile
==============================================================================
--- head/math/prng/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/prng/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -18,6 +18,8 @@ PLIST_FILES=	include/prng.h lib/libprng.
 PORTDOCS=	prng.dvi prng.pdf prng.ps prng.txt
 PORTEXAMPLES=	Makefile pairs.c tuples.c
 
+OPTIONS_DEFINE=	DOCS EXAMPLES
+
 .include <bsd.port.options.mk>
 
 post-install:

Modified: head/math/rkward-kde4/Makefile
==============================================================================
--- head/math/rkward-kde4/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/rkward-kde4/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -31,7 +31,7 @@ CFLAGS+=	-I${LOCALBASE}/include
 
 DOCSDIR=	${PREFIX}/share/doc/HTML/en/rkward
 
-OPTIONS_DEFINE=	RECDEP
+OPTIONS_DEFINE=	RECDEP DOCS NLS
 RECDEP_DESC=	Recommended runtime dependencies
 OPTIONS_DEFAULT=RECDEP
 

Modified: head/math/scilab/Makefile
==============================================================================
--- head/math/scilab/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/scilab/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -34,7 +34,7 @@ CONFIGURE_ENV=	ac_cv_search_pthread_join
 MAKE_ENV=	LANG=en_US.UTF-8 \
 		LC_ALL=en_US.UTF-8
 
-OPTIONS_DEFINE=	ATLAS FFTW GUI HELP NLS MATIO OCAML PVM TK UMFPACK
+OPTIONS_DEFINE=	ATLAS FFTW GUI HELP NLS MATIO OCAML PVM TK UMFPACK DOCS
 OPTIONS_DEFAULT=	FFTW GUI HELP
 
 ATLAS_DESC=	Use Atlas instead of Blas

Modified: head/math/sfft/Makefile
==============================================================================
--- head/math/sfft/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/sfft/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -20,7 +20,7 @@ USES=		zip
 USE_GCC=	yes
 USE_LDCONFIG=	yes
 
-OPTIONS_DEFINE=		OPTIMIZED_CFLAGS PROFILE
+OPTIONS_DEFINE=		OPTIMIZED_CFLAGS PROFILE DOCS
 OPTIONS_DEFAULT=	OPTIMIZED_CFLAGS
 
 BUILD_WRKSRC=	${WRKSRC}/src

Modified: head/math/spblas/Makefile
==============================================================================
--- head/math/spblas/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/spblas/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -20,7 +20,7 @@ MAKE_ENV=	LIB=spblas SHLIB_MAJOR="${SHLI
 		SRCCONF=/dev/null SRCS="${SRCS}"
 
 NO_WRKSUBDIR=	yes
-OPTIONS_DEFINE=	PROFILE
+OPTIONS_DEFINE=	PROFILE DOCS EXAMPLES
 
 PLIST_DIRS=	${HDIR}
 PLIST_FILES=	${HEADERS:S|^|${HDIR}/|} lib/libspblas.a lib/libspblas.so \

Modified: head/math/superlu_mt/Makefile
==============================================================================
--- head/math/superlu_mt/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/superlu_mt/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -17,6 +17,8 @@ COMMENT=	Routines for performing multith
 
 USES=		fortran gmake
 
+OPTIONS_DEFINE=	DOCS
+
 .include <bsd.port.pre.mk>
 
 .if exists(${LOCALBASE}/lib/libgoto2.so)

Modified: head/math/taucs/Makefile
==============================================================================
--- head/math/taucs/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/taucs/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -21,6 +21,8 @@ USE_LDCONFIG=	yes
 
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
+OPTIONS_DEFINE=	DOCS
+
 .include <bsd.port.pre.mk>
 
 LDFLAGS+=	-L${LOCALBASE}/lib

Modified: head/math/vtk5/Makefile
==============================================================================
--- head/math/vtk5/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/vtk5/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -31,7 +31,7 @@ USE_LDCONFIG=	${PREFIX}/lib/vtk-${PORTVE
 CXXFLAGS+=	-DUSE_INTERP_ERRORLINE
 
 OPTIONS_DEFINE=	SHARED THEORA VTKMPEG2 GL2PS OSMESA QT4 JAVA \
-		PYTHON TCLTK DBGLEAKS LEGACY
+		PYTHON TCLTK DBGLEAKS LEGACY DOCS
 OPTIONS_DEFAULT=SHARED GL2PS QT4 TCLTK LEGACY
 
 SHARED_DESC=	Build shared libraries

Modified: head/math/xppaut/Makefile
==============================================================================
--- head/math/xppaut/Makefile	Tue Jul 15 16:14:15 2014	(r361961)
+++ head/math/xppaut/Makefile	Tue Jul 15 16:23:08 2014	(r361962)
@@ -22,6 +22,8 @@ ALL_TARGET=	xppaut
 post-build:
 	${RM} -f ${WRKSRC}/ode/._*
 
+OPTIONS_DEFINE=	DOCS EXAMPLES
+
 .include <bsd.port.options.mk>
 
 .if !${PORT_OPTIONS:MDOCS}



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