From owner-freebsd-ports Fri Apr 26 13:10:28 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F7CF37B41C for ; Fri, 26 Apr 2002 13:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3QKA1g08169; Fri, 26 Apr 2002 13:10:01 -0700 (PDT) (envelope-from gnats) Received: from csc.smsu.edu (csc.smsu.edu [146.7.45.212]) by hub.freebsd.org (Postfix) with ESMTP id 6912037B420 for ; Fri, 26 Apr 2002 13:02:49 -0700 (PDT) Received: (from greenwald@localhost) by csc.smsu.edu (8.11.1/8.11.1) id g3QK2j743111; Fri, 26 Apr 2002 15:02:45 -0500 (CDT) (envelope-from greenwald) Message-Id: <200204262002.g3QK2j743111@csc.smsu.edu> Date: Fri, 26 Apr 2002 15:02:45 -0500 (CDT) From: Erik Greenwald Reply-To: greenwald@csc.smsu.edu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.2 Subject: ports/37493: [Maintainer Update] x86info 1.7 -> 1.8 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 37493 >Category: ports >Synopsis: [Maintainer Update] x86info 1.7 -> 1.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Apr 26 13:10:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 4.5-STABLE ix86 >Organization: >Environment: FreeBSD fenris 4.5-STABLE FreeBSD 4.5-STABLE #31: Thu Apr 25 10:05:48 CDT 2002 erik@fenris:/usr/tmp/FENRIS i386 >Description: routine update. primary site has moved, I'm leaving the sourceforge listing in even though it's broken, as I'm anticipating Dave will scp it into place later... from the freshmeat post: Changes: This release recognizes several new steppings of Intel CPUs. Several bugfixes have been made for x86-64 simulation. Intel P4 Xeon hyperthreading support and Intel cache Size/TLB information fixes and updates have been added. The MP bit of newer Athlons is now recognized. Warnings about the cpuid driver on UP are no longer printed. A script to make /dev/cpu nodes and National Semiconductor CPU recognition have been added. >How-To-Repeat: >Fix: diff -Nubr sysutils/x86info.orig/Makefile sysutils/x86info/Makefile --- sysutils/x86info.orig/Makefile Fri Apr 26 14:38:32 2002 +++ sysutils/x86info/Makefile Fri Apr 26 14:42:44 2002 @@ -6,9 +6,10 @@ # PORTNAME= x86info -PORTVERSION= 1.7 +PORTVERSION= 1.8 CATEGORIES= sysutils -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITES= ftp://ftp.suse.com/pub/people/davej/x86info/\ + ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} EXTRACT_SUFX= .tgz diff -Nubr sysutils/x86info.orig/distinfo sysutils/x86info/distinfo --- sysutils/x86info.orig/distinfo Fri Apr 26 14:38:32 2002 +++ sysutils/x86info/distinfo Fri Apr 26 14:43:44 2002 @@ -1 +1 @@ -MD5 (x86info-1.7.tgz) = d9b4e19dae0aeab1a7b2247f6251bb22 +MD5 (x86info-1.8.tgz) = cdd0888d0bcb82a0d0b6e7d2b5309e69 diff -Nubr sysutils/x86info.orig/files/patch-Makefile sysutils/x86info/files/patch-Makefile --- sysutils/x86info.orig/files/patch-Makefile Fri Apr 26 14:38:32 2002 +++ sysutils/x86info/files/patch-Makefile Fri Apr 26 14:51:30 2002 @@ -1,16 +1,21 @@ ---- Makefile.orig Tue Dec 11 12:01:40 2001 -+++ Makefile Tue Dec 18 15:48:37 2001 -@@ -1,4 +1,3 @@ --CFLAGS = -Wall -W -g -O2 - #CFLAGS += -mwin32 -DWIN32_LEAN_AND_MEAN - SHELL = /bin/sh +--- Makefile.orig Fri Apr 26 14:48:53 2002 ++++ Makefile Fri Apr 26 14:51:26 2002 +@@ -1,8 +1,4 @@ +-CFLAGS = -Wall -W -g -O2 #-m32 +-#CFLAGS += -mwin32 -DWIN32_LEAN_AND_MEAN +-SHELL = /bin/sh +- +-all: x86info test ++all: x86info -@@ -36,13 +35,13 @@ + OBJS =\ + AMD/identify.o\ +@@ -38,13 +34,13 @@ get_model_name.o\ x86info: $(OBJS) -- gcc -o x86info $(OBJS) -+ ${CC} -o x86info $(OBJS) +- gcc $(CFLAGS) -o x86info $(OBJS) ++ ${CC} $(CFLAGS) -o x86info $(OBJS) .c.o: - gcc $(CFLAGS) -o $@ -c $< @@ -20,5 +25,16 @@ - gcc $(CFLAGS) -o $@ -c $< + ${CC} $(CFLAGS) -o $@ -c $< + nodes: + scripts/makenodes +@@ -53,7 +49,7 @@ + scripts/testnodes + clean: - @find . -name "*.o" -exec rm {} \; +- @find . -name "*.o" -exec rm {} \; +- @find . -name "*~" -exec rm {} \; +- @rm -f x86info x86info.exe ++ @find . -name "*.o" -exec ${RM} {} \; ++ @find . -name "*~" -exec ${RM} {} \; ++ @${RM-F} x86info + >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message