From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 7 21:10:19 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB03216A41F for ; Thu, 7 Jul 2005 21:10:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56FD343D46 for ; Thu, 7 Jul 2005 21:10:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j67LAJGp040823 for ; Thu, 7 Jul 2005 21:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j67LAJg1040822; Thu, 7 Jul 2005 21:10:19 GMT (envelope-from gnats) Resent-Date: Thu, 7 Jul 2005 21:10:19 GMT Resent-Message-Id: <200507072110.j67LAJg1040822@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Emanuel Haupt Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F05616A41C for ; Thu, 7 Jul 2005 21:09:06 +0000 (GMT) (envelope-from ehaupt@beaver.critical.ch) Received: from beaver.critical.ch (217-162-251-247.dclient.hispeed.ch [217.162.251.247]) by mx1.FreeBSD.org (Postfix) with ESMTP id 120E843D45 for ; Thu, 7 Jul 2005 21:09:05 +0000 (GMT) (envelope-from ehaupt@beaver.critical.ch) Received: from beaver.critical.ch (localhost [127.0.0.1]) by beaver.critical.ch (8.13.3/8.13.1) with ESMTP id j67L93Qh066833 for ; Thu, 7 Jul 2005 23:09:04 +0200 (CEST) (envelope-from ehaupt@beaver.critical.ch) Received: (from ehaupt@localhost) by beaver.critical.ch (8.13.3/8.13.1/Submit) id j67L93rC066832; Thu, 7 Jul 2005 23:09:03 +0200 (CEST) (envelope-from ehaupt) Message-Id: <200507072109.j67L93rC066832@beaver.critical.ch> Date: Thu, 7 Jul 2005 23:09:03 +0200 (CEST) From: Emanuel Haupt To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/83113: new port: misc/ree - A tool to dump your ROM extensions X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Emanuel Haupt List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2005 21:10:20 -0000 >Number: 83113 >Category: ports >Synopsis: new port: misc/ree - A tool to dump your ROM extensions >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 07 21:10:18 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Emanuel Haupt >Release: FreeBSD 5.4-RELEASE-p4 i386 >Organization: >Environment: System: FreeBSD beaver.critical.ch 5.4-RELEASE-p4 FreeBSD 5.4-RELEASE-p4 #0: Wed Jul 6 20:05:27 CEST 2005 root@beaver.critical.ch:/usr/obj/usr/src-release/src/sys/BEAVER i386 >Description: new port: misc/ree - A tool to dump your ROM extensions Ree stands for ROM extension extractor. Ree will scan your system memory, address c0000 - f0000 in 512 steps for identification of ROM extensions (55,aa), if found it will calculate its size (byte after id, multiplied by 512byte steps) and save the output to a .rom file. This package also comes with fontdump, a program to extract the fonts from your video BIOS ROMs. You might ask yourself why collect x86 ROM extensions? It's like collecting butterflies. A collection of various .rom files can be found on the project page. Please submit your ROMs there. >How-To-Repeat: >Fix: --- ree.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # ree # ree/Makefile # ree/pkg-descr # ree/distinfo # echo c - ree mkdir -p ree > /dev/null 2>&1 echo x - ree/Makefile sed 's/^X//' >ree/Makefile << 'END-of-ree/Makefile' X# New ports collection makefile for: ree X# Date created: 7 Jul 2005 X# Whom: Emanuel Haupt X# X# $FreeBSD$ X# X XPORTNAME= ree XPORTVERSION= 1.3 XCATEGORIES= misc XMASTER_SITES= http://www.linuks.mine.nu/ree/ \ X http://critical.ch/distfiles/ X XMAINTAINER= ehaupt@critical.ch XCOMMENT= A tool to dump your ROM extensions X XPLIST_FILES= bin/ree bin/fontdump XPORTDOCS= readme X XONLY_FOR_ARCHS= i386 X Xdo-build: X.for f in ${PORTNAME} fontdump X ${CC} ${CFLAGS} ${WRKSRC}/${f}.c -o ${WRKSRC}/${f} X.endfor X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${WRKSRC}/fontdump ${PREFIX}/bin X X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X ${INSTALL_DATA} ${WRKSRC}/readme ${DOCSDIR} X.endif X X.include END-of-ree/Makefile echo x - ree/pkg-descr sed 's/^X//' >ree/pkg-descr << 'END-of-ree/pkg-descr' XRee stands for ROM extension extractor. Ree will scan your system memory, Xaddress c0000 - f0000 in 512 steps for identification of ROM extensions X(55,aa), if found it will calculate its size (byte after id, multiplied by X512byte steps) and save the output to a .rom file. X XThis package also comes with fontdump, a program to extract the fonts from your Xvideo BIOS ROMs. X XYou might ask yourself why collect x86 ROM extensions? It's like collecting Xbutterflies. X XA collection of various .rom files can be found on the project page. Please Xsubmit your ROMs there. X XWWW: http://www.linuks.mine.nu/ree/ X X- ehaupt Xehaupt@critical.ch END-of-ree/pkg-descr echo x - ree/distinfo sed 's/^X//' >ree/distinfo << 'END-of-ree/distinfo' XMD5 (ree-1.3.tar.gz) = bca000114cbbc3805983f97ab188a853 XSIZE (ree-1.3.tar.gz) = 13187 END-of-ree/distinfo exit --- ree.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: