Index: head/benchmarks/dhrystone/Makefile =================================================================== --- head/benchmarks/dhrystone/Makefile (revision 377437) +++ head/benchmarks/dhrystone/Makefile (revision 377438) @@ -1,31 +1,31 @@ # Created by: Radim Kolar # $FreeBSD$ PORTNAME= dhrystone PORTVERSION= 2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= benchmarks MASTER_SITES= NETLIB/benchmark DISTNAME= dhry-c EXTRACT_SUFX= MAINTAINER= hsn@sendmail.cz COMMENT= Computing benchmark for integer operations 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} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include Index: head/benchmarks/dhrystone/files/patch-Makefile =================================================================== --- head/benchmarks/dhrystone/files/patch-Makefile (revision 377437) +++ head/benchmarks/dhrystone/files/patch-Makefile (nonexistent) @@ -1,12 +0,0 @@ ---- Makefile.orig 2015-01-16 10:40:03.233485586 +0000 -+++ Makefile 2015-01-16 10:50:21.034404184 +0000 -@@ -0,0 +1,9 @@ -+OBJ= dhry_1.o dhry_2.o -+ -+all: dhry -+ -+dhry: $(OBJ) -+ $(CC) $(LDFLAGS) $(OBJ) -o $@ -+ -+%.o: %.c -+ $(CC) -o $@ $< $(CFLAGS) Property changes on: head/benchmarks/dhrystone/files/patch-Makefile ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/benchmarks/dhrystone/files/Makefile =================================================================== --- head/benchmarks/dhrystone/files/Makefile (nonexistent) +++ head/benchmarks/dhrystone/files/Makefile (revision 377438) @@ -0,0 +1,9 @@ +OBJS= dhry_1.o dhry_2.o + +all: dhry + +dhry: $(OBJS) + $(CC) $(LDFLAGS) -o $@ $(OBJS) + +%.o: %.c + $(CC) $(CFLAGS) -o $@ $< Property changes on: head/benchmarks/dhrystone/files/Makefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/benchmarks/dhrystone/pkg-descr =================================================================== --- head/benchmarks/dhrystone/pkg-descr (revision 377437) +++ head/benchmarks/dhrystone/pkg-descr (revision 377438) @@ -1,10 +1,10 @@ Dhrystone is a synthetic computing benchmark program developed in 1984 by Reinhold P. Weicker intended to be representative of system (integer) programming. The Dhrystone grew to become representative of general 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/