Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 Feb 2013 15:05:40 +0200 (EET)
From:      Andriy Gapon <avg@icyb.net.ua>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/175761: [PATCH] sysutils/superiotool: [SUMMARIZE CHANGES]
Message-ID:  <201302011305.r11D5e6u088896@odyssey.starpoint.kiev.ua>
Resent-Message-ID: <201302011310.r11DA0Ih001043@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         175761
>Category:       ports
>Synopsis:       [PATCH] sysutils/superiotool: [SUMMARIZE CHANGES]
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Feb 01 13:10:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Andriy Gapon
>Release:        FreeBSD 10.0-CURRENT amd64
>Organization:
>Environment:
System: FreeBSD odyssey.starpoint.kiev.ua 10.0-CURRENT FreeBSD 10.0-CURRENT #60 r244281+da9de2d-dirty: Tue Dec 18 18:59:29 EET
>Description:
[DESCRIBE CHANGES]

Added file(s):
- files/patch-Makefile

Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: suffix)
>How-To-Repeat:
>Fix:

--- superiotool-20121019.patch begins here ---
diff -ruN --exclude=CVS ../superiotool.orig/Makefile ./Makefile
--- ../superiotool.orig/Makefile	2012-11-17 08:01:46.000000000 +0200
+++ ./Makefile	2013-02-01 15:04:25.125180623 +0200
@@ -1,50 +1,29 @@
-# New ports collection makefile for:	superiotool
-# Date created:		2009-09-30
-# Whom:			Andriy Gapon <avg@icyb.net.ua>
-#
-# $FreeBSD: ports/sysutils/superiotool/Makefile,v 1.5 2012/11/17 06:01:46 svnexp Exp $
-#
-
-PORTNAME=	superiotool
-DISTVERSION=	20090930
-CATEGORIES=	sysutils
-MASTER_SITES=	http://www.icyb.net.ua/~avg/distfiles/
-
-MAINTAINER=	avg@icyb.net.ua
-COMMENT=	Helper tool for Super I/O chip detection and analysis
-
-USE_BZIP2=	yes
-USE_GMAKE=	yes
-
-PLIST_FILES=	sbin/superiotool
-MAN8=		superiotool.8
-
-WRKSRC=		${WRKDIR}/${PORTNAME}
-SVNROOT=	svn://coreboot.org/repos/trunk/util/superiotool
-
-gen-dist:
-	@if [ ! -f ${LOCALBASE}/bin/svn ]; then \
-		${ECHO_CMD} "ERROR: You need to have devel/subversion installed for gen-dist target"; \
-		${FALSE}; \
-	fi
-	@if [ ! -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ]; then \
-		${MKDIR} ${WRKDIR}/svn; \
-		cd ${WRKDIR}/svn && svn co ${SVNROOT}; \
-		${TAR} cfj ${_DISTDIR}${DISTFILES} ${PORTNAME}; \
-		cd ${WRKDIR} && ${RM} -rf svn; \
-		cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} makesum; \
-	fi
-
-post-patch:
-	@${REINPLACE_CMD} -e 's#/share/man/#/man/#g' -e 's#-ansi##g' \
-		-Ee '\#^(CC|INSTALL|PREFIX)#s#=#?=#' \
-		-e '\#^CFLAGS#s#=#+=#' -e 's#-O2##' \
-		${WRKSRC}/Makefile
-
-.include <bsd.port.pre.mk>
-
-.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
-BROKEN=		Does not compile on ia64, powerpc, or sparc64: attempts to use i386 asm
-.endif
+# Created by: Andriy Gapon <avg@icyb.net.ua>
+# $FreeBSD: ports/sysutils/superiotool/Makefile,v 1.4 2010/09/25 18:20:25 makc Exp $
 
-.include <bsd.port.post.mk>
+PORTNAME=		superiotool
+DISTVERSION=		20121019
+CATEGORIES=		sysutils
+MASTER_SITES=		${MASTER_SITE_LOCAL} \
+			http://www.icyb.net.ua/~avg/distfiles/
+MASTER_SITE_SUBDIR=	avg
+
+MAINTAINER=		avg@icyb.net.ua
+COMMENT=		Helper tool for Super I/O chip detection and analysis
+
+LIB_DEPENDS=		pci:${PORTSDIR}/devel/libpci
+
+ONLY_FOR_ARCHS=		i386 amd64
+ONLY_FOR_ARCHS_REASON=	The tool is for x86-specific hardware
+
+USE_BZIP2=		yes
+USE_GMAKE=		yes
+
+PLIST_FILES=		sbin/superiotool
+MAN8=			superiotool.8
+
+WRKSRC=			${WRKDIR}/${PORTNAME}
+UPSTREAM_VERS=		4.0-2827-g1a00cf0
+MAKE_ENV+=		VERSION=-DSUPERIOTOOL_VERSION='\"${UPSTREAM_VERS}\"'
+
+.include <bsd.port.mk>
diff -ruN --exclude=CVS ../superiotool.orig/distinfo ./distinfo
--- ../superiotool.orig/distinfo	2011-03-19 14:33:24.000000000 +0200
+++ ./distinfo	2012-11-02 17:33:07.293125000 +0200
@@ -1,2 +1,2 @@
-SHA256 (superiotool-20090930.tar.bz2) = 2d06800cc1e24622526d6a1dc729eaee94e7a50ffd2600e60064a77fcebb3dca
-SIZE (superiotool-20090930.tar.bz2) = 29348
+SHA256 (superiotool-20121019.tar.bz2) = d4140f3a50e53f46dd9b1edfc8353113f29f437201907d613150d431dbfc7a62
+SIZE (superiotool-20121019.tar.bz2) = 29827
diff -ruN --exclude=CVS ../superiotool.orig/files/patch-Makefile ./files/patch-Makefile
--- ../superiotool.orig/files/patch-Makefile	1970-01-01 03:00:00.000000000 +0300
+++ ./files/patch-Makefile	2012-11-02 17:33:07.295126000 +0200
@@ -0,0 +1,49 @@
+--- Makefile.orig	2012-10-19 16:44:32.000000000 +0300
++++ Makefile	2012-10-20 01:32:35.427651135 +0300
+@@ -20,28 +20,24 @@
+ 
+ PROGRAM = superiotool
+ 
+-CC      = gcc
+-INSTALL = /usr/bin/install
+-PREFIX  = /usr/local
++CC      ?= gcc
++INSTALL ?= /usr/bin/install
++PREFIX  ?= /usr/local
+ 
+ # Set the superiotool version string to the output of 'git describe'.
+ 
+-VERSION := -D'SUPERIOTOOL_VERSION="$(shell git describe 2>/dev/null)"'
+-
+-CFLAGS += -O2 -Wall -Wstrict-prototypes -Wundef -Wstrict-aliasing \
+-         -Werror-implicit-function-declaration -ansi -pedantic $(VERSION)
+-LDFLAGS += -lz
++VERSION ?= -D'SUPERIOTOOL_VERSION="$(shell git describe 2>/dev/null)"'
+ 
+ OBJS = superiotool.o serverengines.o ali.o fintek.o ite.o nsc.o nuvoton.o \
+        smsc.o winbond.o infineon.o
+ 
+-OS_ARCH = $(shell uname)
++OS_ARCH = FreeBSD
+ ifeq ($(OS_ARCH), Darwin)
+ LIBS = -framework IOKit -framework DirectHW -lpci -lz
+ endif
+ ifeq ($(OS_ARCH), FreeBSD)
+-CFLAGS = -O2 -Wall -Werror -Wstrict-prototypes -Wundef -Wstrict-aliasing \
+-         -Werror-implicit-function-declaration -ansi $(VERSION) \
++CFLAGS += -Wall -Werror -Wstrict-prototypes -Wundef -Wstrict-aliasing \
++         -Werror-implicit-function-declaration $(VERSION) \
+          -I/usr/local/include
+ LDFLAGS += -L/usr/local/lib
+ LIBS = -lz
+@@ -69,8 +65,8 @@ $(PROGRAM): $(OBJS) superiotool.h
+ install: $(PROGRAM)
+ 	mkdir -p $(DESTDIR)$(PREFIX)/sbin
+ 	$(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin
+-	mkdir -p $(DESTDIR)$(PREFIX)/share/man/man8
+-	$(INSTALL) $(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
++	mkdir -p $(DESTDIR)$(PREFIX)/man/man8
++	$(INSTALL) $(PROGRAM).8 $(DESTDIR)$(PREFIX)/man/man8
+ 
+ clean:
+ 	rm -f $(PROGRAM) *.o
--- superiotool-20121019.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302011305.r11D5e6u088896>