diff options
author | garga <garga@FreeBSD.org> | 2005-08-29 21:29:53 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2005-08-29 21:29:53 +0800 |
commit | d0f61a174125674d92a5c25161ee97ef28b28f9f (patch) | |
tree | 3ab94e8a90c88c39682f5021b39b3035d4e75cfc /misc/ree | |
parent | ffe9b3adf8c930b16bae2a8e1c6818f5d5c5fb37 (diff) | |
download | freebsd-ports-gnome-d0f61a174125674d92a5c25161ee97ef28b28f9f.tar.gz freebsd-ports-gnome-d0f61a174125674d92a5c25161ee97ef28b28f9f.tar.zst freebsd-ports-gnome-d0f61a174125674d92a5c25161ee97ef28b28f9f.zip |
Add ree 1.3, a tool to dump your ROM extensions.
PR: ports/83113
Submitted by: Emanuel Haupt <ehaupt@critical.ch>
Diffstat (limited to 'misc/ree')
-rw-r--r-- | misc/ree/Makefile | 35 | ||||
-rw-r--r-- | misc/ree/distinfo | 2 | ||||
-rw-r--r-- | misc/ree/pkg-descr | 18 |
3 files changed, 55 insertions, 0 deletions
diff --git a/misc/ree/Makefile b/misc/ree/Makefile new file mode 100644 index 000000000000..8929265762b9 --- /dev/null +++ b/misc/ree/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: ree +# Date created: 7 Jul 2005 +# Whom: Emanuel Haupt <ehaupt@critical.ch> +# +# $FreeBSD$ +# + +PORTNAME= ree +PORTVERSION= 1.3 +CATEGORIES= misc +MASTER_SITES= http://www.linuks.mine.nu/ree/ \ + http://critical.ch/distfiles/ + +MAINTAINER= ehaupt@critical.ch +COMMENT= A tool to dump your ROM extensions + +PLIST_FILES= bin/ree bin/fontdump +PORTDOCS= readme + +ONLY_FOR_ARCHS= i386 + +do-build: +.for f in ${PORTNAME} fontdump + ${CC} ${CFLAGS} ${WRKSRC}/${f}.c -o ${WRKSRC}/${f} +.endfor + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${WRKSRC}/fontdump ${PREFIX}/bin + +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/readme ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/misc/ree/distinfo b/misc/ree/distinfo new file mode 100644 index 000000000000..931c25df5917 --- /dev/null +++ b/misc/ree/distinfo @@ -0,0 +1,2 @@ +MD5 (ree-1.3.tar.gz) = bca000114cbbc3805983f97ab188a853 +SIZE (ree-1.3.tar.gz) = 13187 diff --git a/misc/ree/pkg-descr b/misc/ree/pkg-descr new file mode 100644 index 000000000000..90e504d3d1aa --- /dev/null +++ b/misc/ree/pkg-descr @@ -0,0 +1,18 @@ +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. + +WWW: http://www.linuks.mine.nu/ree/ + +- ehaupt +ehaupt@critical.ch |