Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Jan 2015 15:05:13 +0000 (UTC)
From:      Rodrigo Osorio <rodrigo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r377438 - in head/benchmarks/dhrystone: . files
Message-ID:  <201501191505.t0JF5DN9070536@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rodrigo
Date: Mon Jan 19 15:05:12 2015
New Revision: 377438
URL: https://svnweb.freebsd.org/changeset/ports/377438
QAT: https://qat.redports.org/buildarchive/r377438/

Log:
  - Remove duplicate spaces and fix typo
  - Delete makefil as a patch
  - Add new makefile for the project without BSD dependencies
  - Fix out of order declarations in makefile
  - Install doc by default
  - bump port revision
  
  Submitted by:	rodrigo
  Reviewed by:	bapt, danfe

Added:
  head/benchmarks/dhrystone/files/Makefile   (contents, props changed)
Deleted:
  head/benchmarks/dhrystone/files/patch-Makefile
Modified:
  head/benchmarks/dhrystone/Makefile
  head/benchmarks/dhrystone/pkg-descr

Modified: head/benchmarks/dhrystone/Makefile
==============================================================================
--- head/benchmarks/dhrystone/Makefile	Mon Jan 19 14:54:23 2015	(r377437)
+++ head/benchmarks/dhrystone/Makefile	Mon Jan 19 15:05:12 2015	(r377438)
@@ -3,7 +3,7 @@
 
 PORTNAME=	dhrystone
 PORTVERSION=	2.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	benchmarks
 MASTER_SITES=	NETLIB/benchmark
 DISTNAME=	dhry-c
@@ -16,13 +16,13 @@ LICENSE=	BSD2CLAUSE
 
 EXTRACT_CMD=	${SH}
 NO_WRKSUBDIR=	yes
+MAKEFILE=	${FILESDIR}/Makefile
 
 PLIST_FILES=	bin/dhry
+PORTDOCS=	RATIONALE submit.frm README_C VARIATIONS
 
 OPTIONS_DEFINE=	DOCS
 
-PORTDOCS=	RATIONALE submit.frm README_C VARIATIONS
-
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/dhry ${STAGEDIR}${PREFIX}/bin
 	${MKDIR} ${STAGEDIR}${DOCSDIR}

Added: head/benchmarks/dhrystone/files/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/benchmarks/dhrystone/files/Makefile	Mon Jan 19 15:05:12 2015	(r377438)
@@ -0,0 +1,9 @@
+OBJS= dhry_1.o dhry_2.o
+
+all: dhry
+
+dhry: $(OBJS)
+	$(CC) $(LDFLAGS) -o $@ $(OBJS)
+
+%.o: %.c
+	$(CC) $(CFLAGS) -o $@ $<

Modified: head/benchmarks/dhrystone/pkg-descr
==============================================================================
--- head/benchmarks/dhrystone/pkg-descr	Mon Jan 19 14:54:23 2015	(r377437)
+++ head/benchmarks/dhrystone/pkg-descr	Mon Jan 19 15:05:12 2015	(r377438)
@@ -4,7 +4,7 @@ programming. The Dhrystone grew to becom
 processor (CPU) performance.
 
 DMIPS value is result of dhrystone test divided by 1757, results are often
-reported in DMIPS/MHz. For more information, see 
+reported in DMIPS/MHz. For more information, see
 http://en.wikipedia.org/wiki/Dhrystone.
 
 WWW: http://www.netlib.org/benchmark/



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