Here is a Redports run for flashrom 0.9.7: https://redports.org/buildarchive/20130819213501-9400/ Changes are a simple increase of version and updated distinfo: https://redports.org/changeset/15824?format=diff&new=15824 Successfully flashed my BIOS on BIOSTAR TA790GX A3+.
State Changed From-To: open->feedback For some reason libpci was not detected in most buildlogs. Please check your log 9.1-FreeBSD-amd64 as an example.
But libpci is detected correctly, when OPTION FTDI is enabled. https://redports.org/buildarchive/20130829204500-16068/ https://redports.org/buildarchive/20130829210400-21395/ (with FTDI) The Makefile isn't thread safe, so with MAKE_JOBS_UNSAFE= yes this is corrected, thanks to stefanct and idwer. https://redports.org/buildarchive/20130829212801-18334/ Attached is a diff against the current version in ports.
Responsible Changed From-To: freebsd-ports-bugs->rm I will take it.
Author: rm Date: Sat Aug 31 21:13:21 2013 New Revision: 325832 URL: http://svnweb.freebsd.org/changeset/ports/325832 Log: - update to 0.9.7 - change maintainer's email - drop LICENSE_FILE for standard license (GPLv2) - mark MAKE_JOBS_UNSAFE (thanks to stefanct and idwer) - whitespace fixes, while here PR: 181654 Submitted by: Hakisho Nukama <nukama@gmail.com> (maintainer) Deleted: head/sysutils/flashrom/files/ Modified: head/sysutils/flashrom/Makefile head/sysutils/flashrom/distinfo Modified: head/sysutils/flashrom/Makefile ============================================================================== --- head/sysutils/flashrom/Makefile Sat Aug 31 20:23:20 2013 (r325831) +++ head/sysutils/flashrom/Makefile Sat Aug 31 21:13:21 2013 (r325832) @@ -2,15 +2,14 @@ # $FreeBSD$ PORTNAME= flashrom -PORTVERSION= 0.9.6.1 +PORTVERSION= 0.9.7 CATEGORIES= sysutils MASTER_SITES= http://download.flashrom.org/releases/ -MAINTAINER= nukama@gmail.com +MAINTAINER= nukama+maintainer@gmail.com COMMENT= Utility for reading, writing, verifying, and erasing flash ROM chips LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= pci:${PORTSDIR}/devel/libpci @@ -22,8 +21,9 @@ FTDI_DESC= Enable external FT2232SPI fla USE_BZIP2= yes USE_GMAKE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lc +MAKE_JOBS_UNSAFE= yes +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -lc ONLY_FOR_ARCHS= amd64 i386 Modified: head/sysutils/flashrom/distinfo ============================================================================== --- head/sysutils/flashrom/distinfo Sat Aug 31 20:23:20 2013 (r325831) +++ head/sysutils/flashrom/distinfo Sat Aug 31 21:13:21 2013 (r325832) @@ -1,2 +1,2 @@ -SHA256 (flashrom-0.9.6.1.tar.bz2) = 6f7b588cce74c90b4fe9c9c794de105de76e0323442fb5770b1aeab81e9d560a -SIZE (flashrom-0.9.6.1.tar.bz2) = 368133 +SHA256 (flashrom-0.9.7.tar.bz2) = 5a55212d00791981a9a1cb0cdca9d9e58bea6d399864251e7b410b4d3d6137e9 +SIZE (flashrom-0.9.7.tar.bz2) = 408883 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: feedback->closed Committed, thank you!