diff options
author | pat <pat@FreeBSD.org> | 2002-04-27 04:16:01 +0800 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-04-27 04:16:01 +0800 |
commit | 42b7a082ab0cff1ffd75904da2a0e87a049d0d81 (patch) | |
tree | 3afc7e20eb59a5b78f0d190d8890dc736a50c797 /sysutils/x86info | |
parent | b226671f4ba6e333d862e64bb59f42a623c97367 (diff) | |
download | freebsd-ports-gnome-42b7a082ab0cff1ffd75904da2a0e87a049d0d81.tar.gz freebsd-ports-gnome-42b7a082ab0cff1ffd75904da2a0e87a049d0d81.tar.zst freebsd-ports-gnome-42b7a082ab0cff1ffd75904da2a0e87a049d0d81.zip |
Update to 1.8
PR: ports/37493
Submitted by: maintainer
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 | 36 |
3 files changed, 30 insertions, 13 deletions
diff --git a/sysutils/x86info/Makefile b/sysutils/x86info/Makefile index d5bdf2e6d4f2..718803f7a04c 100644 --- a/sysutils/x86info/Makefile +++ b/sysutils/x86info/Makefile @@ -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 --git a/sysutils/x86info/distinfo b/sysutils/x86info/distinfo index 128434d9fba8..163fbef77987 100644 --- a/sysutils/x86info/distinfo +++ b/sysutils/x86info/distinfo @@ -1 +1 @@ -MD5 (x86info-1.7.tgz) = d9b4e19dae0aeab1a7b2247f6251bb22 +MD5 (x86info-1.8.tgz) = cdd0888d0bcb82a0d0b6e7d2b5309e69 diff --git a/sysutils/x86info/files/patch-Makefile b/sysutils/x86info/files/patch-Makefile index 225460eeaa61..77026469eb22 100644 --- a/sysutils/x86info/files/patch-Makefile +++ b/sysutils/x86info/files/patch-Makefile @@ -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 + |