Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Aug 2004 12:53:29 +0200 (CEST)
From:      Simon Barner <barner@in.tum.de>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/70898: devel/boost: convert to OPTIONS
Message-ID:  <20040824105329.62A6BC1B9@zi025.glhnet.mhn.de>
Resent-Message-ID: <200408241100.i7OB0Xr5080684@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         70898
>Category:       ports
>Synopsis:       devel/boost: convert to OPTIONS
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Tue Aug 24 11:00:32 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator:     Simon Barner
>Release:        FreeBSD 5.3-ALPHA i386
>Organization:
>Environment:
FreeBSD zi025.glhnet.mhn.de 5.3-ALPHA FreeBSD 5.3-ALPHA #0: Mon Aug 23 14:34:13
CEST 2004     root@zi025.glhnet.mhn.de:/mnt/fbsd521/usr/src/sys/i386/compile/KIS
TE  i386

>Description:

I finally remembered to change the boost port to make use of the
OPTIONS infrastructure.

>How-To-Repeat:
N/A

>Fix:

--- Makefile.patch begins here ---
--- Makefile.orig	Tue Aug 24 12:41:57 2004
+++ Makefile	Tue Aug 24 12:43:36 2004
@@ -4,18 +4,6 @@
 # Whom:				  Paul Marquis <pmarquis@pobox.com>
 #
 # $FreeBSD: ports/devel/boost/Makefile,v 1.17 2004/05/29 21:06:36 pav Exp $
-#
-# This port has the following tunable options:
-#
-# option                | desscription                | default
-# ----------------------+-----------------------------+---------
-# WITH_PYTHON           | enable Python support       | off
-# WITH_DEBUG            | build debugging symbols     | off
-# WITHOUT_THREADS       | turn off threading support  | off
-# WITH_OPTIMIZED_CFLAGS | enable -O3 optimization     | off
-#                       | (otherwise CFLAGS are       |
-#                       |  respected)                 |
-# VERBOSE_BUILD         | show compiler messages      | off
 
 PORTNAME=	boost
 PORTVERSION=	1.31.0
@@ -46,9 +34,15 @@
 PLIST_SUB=	BOOST_PYTHON="@comment "
 .endif
 
+OPTIONS=	VERBOSE_BUILD	"Show compiler messages"	off \
+		DEBUG		"Build debugging symbols"	off \
+		THREADS		"Thread support"		on  \
+		OPTIMIZED_CFLAGS "Enable -O3 optimization"	off \
+		PYTHON		"Build Python bindings"		off
+
 .include <bsd.port.pre.mk>
 
-.if defined (VERBOSE_BUILD)
+.if defined (WITH_VERBOSE_BUILD)
 BJAM_OPTIONS=	-d2
 .endif
 
@@ -109,41 +103,6 @@
 		${WRKSRC}/tools/build/v1/gcc-tools.jam
 
 do-build:
-# Print configuration
-	@${ECHO_CMD}
-	@${ECHO_CMD} Selected options:
-	@${ECHO_CMD} \(see the Makefile for a description of available tunables\)
-	@${ECHO_CMD}
-	@${ECHO_CMD} -n o Debugging symbols....
-.if defined (WITH_DEBUG)
-	@${ECHO_CMD} yes
-.else
-	@${ECHO_CMD} no
-.endif
-
-	@${ECHO_CMD} -n o Thread support.......
-.if defined (WITHOUT_THREADS)
-	@${ECHO_CMD} no
-.else
-	@${ECHO_CMD} yes
-.endif
-
-	@${ECHO_CMD} -n o Extra optimization...
-.if defined (WITH_OPTIMIZED_CFLAGS)
-	@${ECHO_CMD} yes
-.else
-	@${ECHO_CMD} no
-.endif
-
-	@${ECHO_CMD} -n o Python support.......
-.if defined (WITH_PYTHON)
-	@${ECHO_CMD} yes
-.else
-	@${RM} -rf ${WRKSRC}/libs/python
-	@${ECHO_CMD} no
-.endif
-	@${ECHO_CMD}
-
 # build the bjam project build tool
 	@cd ${WRKSRC}/tools/build/jam_src && ./build.sh gcc
 
--- Makefile.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



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