Bug 83113 - new port: misc/ree - A tool to dump your ROM extensions
Summary: new port: misc/ree - A tool to dump your ROM extensions
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Renato Botelho
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-07-07 22:10 UTC by Emanuel Haupt
Modified: 2005-08-29 14:30 UTC (History)
0 users

See Also:


Attachments
ree.shar (2.09 KB, text/plain)
2005-07-07 22:10 UTC, Emanuel Haupt
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Emanuel Haupt 2005-07-07 22:10:18 UTC
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.
Comment 1 Emanuel Haupt 2005-07-08 08:23:20 UTC
I wasn't aware that there already /usr/bin/ree in the base 
(thanks Andrzej). Please use the following .shar instead:

Changes:
- misc/ree -> misc/rom-ree

--- rom-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:
#
#	rom-ree
#	rom-ree/Makefile
#	rom-ree/pkg-descr
#	rom-ree/distinfo
#
echo c - rom-ree
mkdir -p rom-ree > /dev/null 2>&1
echo x - rom-ree/Makefile
sed 's/^X//' >rom-ree/Makefile << 'END-of-rom-ree/Makefile'
X# New ports collection makefile for:	ree
X# Date created:				7 Jul 2005
X# Whom:					Emanuel Haupt <ehaupt@critical.ch>
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/
XPKGNAMEPREFIX=	rom-
X
XMAINTAINER=	ehaupt@critical.ch
XCOMMENT=	A tool to dump your ROM extensions
X
XPLIST_FILES=	bin/rom-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} ${PREFIX}/bin/${UNIQUENAME}
X	${INSTALL_PROGRAM} ${WRKSRC}/fontdump ${PREFIX}/bin
X
X.if !defined(NOPORTDOCS)
X	${MKDIR} ${DOCSDIR}
X	${INSTALL_DATA} ${WRKSRC}/readme ${DOCSDIR}
X.endif
X
X.include <bsd.port.mk>
END-of-rom-ree/Makefile
echo x - rom-ree/pkg-descr
sed 's/^X//' >rom-ree/pkg-descr << 'END-of-rom-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-rom-ree/pkg-descr
echo x - rom-ree/distinfo
sed 's/^X//' >rom-ree/distinfo << 'END-of-rom-ree/distinfo'
XMD5 (ree-1.3.tar.gz) = bca000114cbbc3805983f97ab188a853
XSIZE (ree-1.3.tar.gz) = 13187
END-of-rom-ree/distinfo
exit

--- rom-ree.shar ends here ---
Comment 2 Emanuel Haupt 2005-07-22 21:21:03 UTC
here would be the 3rd version that doesn't use PKGNAMEPREFIX

--- rom-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:
#
#	rom-ree
#	rom-ree/Makefile
#	rom-ree/pkg-descr
#	rom-ree/distinfo
#
echo c - rom-ree
mkdir -p rom-ree > /dev/null 2>&1
echo x - rom-ree/Makefile
sed 's/^X//' >rom-ree/Makefile << 'END-of-rom-ree/Makefile'
X# New ports collection makefile for:	ree
X# Date created:				7 Jul 2005
X# Whom:					Emanuel Haupt <ehaupt@critical.ch>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	rom-ree
XPORTVERSION=	1.3
XCATEGORIES=	misc
XMASTER_SITES=	http://www.linuks.mine.nu/ree/ \
X		http://critical.ch/distfiles/
XDISTNAME=	ree-${PORTVERSION}
X
XMAINTAINER=	ehaupt@critical.ch
XCOMMENT=	A tool to dump your ROM extensions
X
XPLIST_FILES=	bin/rom-ree bin/fontdump
XPORTDOCS=	readme
X
XONLY_FOR_ARCHS=	i386
X
Xdo-build:
X.for f in ree fontdump
X	${CC} ${CFLAGS} ${WRKSRC}/${f}.c -o ${WRKSRC}/${f}
X.endfor
X
Xdo-install:
X	${INSTALL_PROGRAM} ${WRKSRC}/ree ${PREFIX}/bin/${PORTNAME}
X	${INSTALL_PROGRAM} ${WRKSRC}/fontdump ${PREFIX}/bin
X
X.if !defined(NOPORTDOCS)
X	${MKDIR} ${DOCSDIR}
X	${INSTALL_DATA} ${WRKSRC}/readme ${DOCSDIR}
X.endif
X
X.include <bsd.port.mk>
END-of-rom-ree/Makefile
echo x - rom-ree/pkg-descr
sed 's/^X//' >rom-ree/pkg-descr << 'END-of-rom-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-rom-ree/pkg-descr
echo x - rom-ree/distinfo
sed 's/^X//' >rom-ree/distinfo << 'END-of-rom-ree/distinfo'
XMD5 (ree-1.3.tar.gz) = bca000114cbbc3805983f97ab188a853
XSIZE (ree-1.3.tar.gz) = 13187
END-of-rom-ree/distinfo
exit

--- rom-ree.shar ends here ---
Comment 3 Sergey Matveychuk freebsd_committer freebsd_triage 2005-07-31 13:15:34 UTC
Class Changed
From-To: maintainer-update->change-request

A right class for new ports is change-request, not maintainer-update.
Comment 4 Renato Botelho freebsd_committer freebsd_triage 2005-08-29 14:10:20 UTC
Responsible Changed
From-To: freebsd-ports-bugs->garga

Take
Comment 5 Renato Botelho freebsd_committer freebsd_triage 2005-08-29 14:30:37 UTC
State Changed
From-To: open->closed

New port added. Thanks!