2013-01-15 14:40:28 +01:00
|
|
|
# Created by: Emanuel Haupt <ehaupt@critical.ch>
|
2005-08-29 15:29:53 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= ree
|
|
|
|
PORTVERSION= 1.3
|
|
|
|
CATEGORIES= misc
|
2008-05-06 09:53:05 +02:00
|
|
|
MASTER_SITES= http://gnu.ethz.ch/linuks.mine.nu/ree/ \
|
|
|
|
CRITICAL
|
2005-08-29 15:29:53 +02:00
|
|
|
|
2005-10-06 13:57:11 +02:00
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
2013-03-08 15:00:30 +01:00
|
|
|
COMMENT= Tool to dump your ROM extensions
|
2005-08-29 15:29:53 +02:00
|
|
|
|
2005-08-30 12:41:44 +02:00
|
|
|
PLIST_FILES= bin/rom-ree bin/fontdump
|
2005-08-29 15:29:53 +02:00
|
|
|
PORTDOCS= readme
|
|
|
|
|
2009-03-27 19:20:25 +01:00
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
2005-08-29 15:29:53 +02:00
|
|
|
|
2013-01-15 14:40:28 +01:00
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
|
2013-09-20 22:50:57 +02:00
|
|
|
NO_STAGE= yes
|
2013-01-15 14:40:28 +01:00
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
|
2005-08-29 15:29:53 +02:00
|
|
|
do-build:
|
|
|
|
.for f in ${PORTNAME} fontdump
|
|
|
|
${CC} ${CFLAGS} ${WRKSRC}/${f}.c -o ${WRKSRC}/${f}
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
do-install:
|
2005-08-30 12:41:44 +02:00
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/rom-${PORTNAME}
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fontdump ${PREFIX}/bin
|
2005-08-29 15:29:53 +02:00
|
|
|
|
2013-01-15 14:40:28 +01:00
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
2005-08-29 15:29:53 +02:00
|
|
|
${MKDIR} ${DOCSDIR}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/readme ${DOCSDIR}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|