Update to 1.10

PR:		ports/40953
Submitted by:	maintainer
This commit is contained in:
Patrick Li 2002-07-24 17:38:33 +00:00
parent b9559edd4c
commit 821c2339a3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=63489
3 changed files with 4 additions and 43 deletions

View file

@ -6,9 +6,10 @@
#
PORTNAME= x86info
PORTVERSION= 1.9
PORTVERSION= 1.10
CATEGORIES= sysutils
MASTER_SITES= ftp://ftp.suse.com/pub/people/davej/x86info/ \
MASTER_SITES= http://www.codemonkey.org.uk/x86info/ \
ftp://ftp.suse.com/pub/people/davej/x86info/ \
${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
EXTRACT_SUFX= .tgz

View file

@ -1 +1 @@
MD5 (x86info-1.9.tgz) = b0a31bc1bedf6b15e17e185f8d44c172
MD5 (x86info-1.10.tgz) = 7e9176094848dfaaebeaa07aca4cea69

View file

@ -1,40 +0,0 @@
--- 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
OBJS =\
AMD/identify.o\
@@ -38,13 +34,13 @@
get_model_name.o\
x86info: $(OBJS)
- gcc $(CFLAGS) -o x86info $(OBJS)
+ ${CC} $(CFLAGS) -o x86info $(OBJS)
.c.o:
- gcc $(CFLAGS) -o $@ -c $<
+ ${CC} $(CFLAGS) -o $@ -c $<
.S.o:
- 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 "*~" -exec rm {} \;
- @rm -f x86info x86info.exe
+ @find . -name "*.o" -exec ${RM} {} \;
+ @find . -name "*~" -exec ${RM} {} \;
+ @${RM-F} x86info