diff options
author | Patrick Li <pat@FreeBSD.org> | 2002-07-24 17:38:33 +0000 |
---|---|---|
committer | Patrick Li <pat@FreeBSD.org> | 2002-07-24 17:38:33 +0000 |
commit | 821c2339a3cb9df79ccc0627560a6ca3699e869f (patch) | |
tree | 2c31682bc4170c0919befbcc476a7c334379b560 /sysutils/x86info | |
parent | b9559edd4c7561c6782a784994c4e1719bc2b7b0 (diff) | |
download | ports-821c2339a3cb9df79ccc0627560a6ca3699e869f.tar.gz ports-821c2339a3cb9df79ccc0627560a6ca3699e869f.zip |
Notes
Diffstat (limited to 'sysutils/x86info')
-rw-r--r-- | sysutils/x86info/Makefile | 5 | ||||
-rw-r--r-- | sysutils/x86info/distinfo | 2 | ||||
-rw-r--r-- | sysutils/x86info/files/patch-Makefile | 40 |
3 files changed, 4 insertions, 43 deletions
diff --git a/sysutils/x86info/Makefile b/sysutils/x86info/Makefile index c58c1a7f2337..7388571f2794 100644 --- a/sysutils/x86info/Makefile +++ b/sysutils/x86info/Makefile @@ -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 diff --git a/sysutils/x86info/distinfo b/sysutils/x86info/distinfo index 375cd4d38b00..60a85ce63a13 100644 --- a/sysutils/x86info/distinfo +++ b/sysutils/x86info/distinfo @@ -1 +1 @@ -MD5 (x86info-1.9.tgz) = b0a31bc1bedf6b15e17e185f8d44c172 +MD5 (x86info-1.10.tgz) = 7e9176094848dfaaebeaa07aca4cea69 diff --git a/sysutils/x86info/files/patch-Makefile b/sysutils/x86info/files/patch-Makefile deleted file mode 100644 index 77026469eb22..000000000000 --- a/sysutils/x86info/files/patch-Makefile +++ /dev/null @@ -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 - |