Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Nov 2012 23:17:48 +0000 (UTC)
From:      "Jason E. Hale" <jhale@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r307402 - head/benchmarks/iozone
Message-ID:  <201211132317.qADNHmRR042055@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhale
Date: Tue Nov 13 23:17:48 2012
New Revision: 307402
URL: http://svnweb.freebsd.org/changeset/ports/307402

Log:
  - Convert to new options framework
  - Trim Makefile header
  
  While here:
  - Whitespace alignment
  - Respect MANPREFIX
  - Remove STRIP_CMD as this is done by INSTALL_PROGRAM
  - Merge duplicate post-patch targets into one
  
  PR:		ports/173548
  Submitted by:	Edward <is.a.relay@gmail.com>
  Approved by:	maintainer
  Feature safe:	yes

Modified:
  head/benchmarks/iozone/Makefile   (contents, props changed)

Modified: head/benchmarks/iozone/Makefile
==============================================================================
--- head/benchmarks/iozone/Makefile	Tue Nov 13 22:26:47 2012	(r307401)
+++ head/benchmarks/iozone/Makefile	Tue Nov 13 23:17:48 2012	(r307402)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:    iozone
-# Date created:         26 September 1994
-# Whom:                 jmz
-#
+# Created by: jmz
 # $FreeBSD$
-#
 
 PORTNAME=	iozone
 PORTVERSION=	3.397
@@ -27,29 +23,29 @@ MAKE_JOBS_UNSAFE=	yes
 MAN1=		iozone.1
 PLIST_FILES=	bin/iozone
 
-OPTIONS=	THREADS "Enable threading (uses pthreads)"	on \
-		SSH "Use ssh in distributed measurement"	on
+OPTIONS_DEFINE=	SSH THREADS
+OPTIONS_DEFAULT=SSH THREADS
 
-.include <bsd.port.pre.mk>
+SSH_DESC=	Use ssh in distributed measurement
+THREADS_DESC=	Enable threading (uses pthreads)
 
-.if defined (WITH_THREADS)
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MTHREADS}
 CFLAGS+=	${PTHREAD_CFLAGS}
 LDFLAGS+=	${PTHREAD_LIBS}
 .else
-CFLAGS+=-DNO_THREADS
+CFLAGS+=	-DNO_THREADS
 .endif
 
-.if defined (WITH_SSH)
-post-patch::
+post-patch:
+.if ${PORT_OPTIONS:MSSH}
 	@${REINPLACE_CMD} -e 's|shell\,\"rsh\"|shell\,\"ssh\"|' ${WRKSRC}/iozone.c
 .endif
-
-post-patch::
 	@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/makefile
 
 do-install:
-	${STRIP_CMD} ${WRKSRC}/iozone
 	${INSTALL_PROGRAM} ${WRKSRC}/iozone ${PREFIX}/bin
-	${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/docs/iozone.1 ${PREFIX}/man/man1
+	${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/docs/iozone.1 ${MANPREFIX}/man/man1
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>



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