aboutsummaryrefslogtreecommitdiffstats
path: root/misc/ree/Makefile
blob: 131e26dae3ac0107621cb22e3558e8420d0048b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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://gnu.ethz.ch/linuks.mine.nu/ree/ \
        CRITICAL

MAINTAINER= ehaupt@FreeBSD.org
COMMENT=    A tool to dump your ROM extensions

PLIST_FILES=    bin/rom-ree bin/fontdump
PORTDOCS=   readme

MAKE_JOBS_SAFE= yes

ONLY_FOR_ARCHS= i386 amd64

do-build:
.for f in ${PORTNAME} fontdump
    ${CC} ${CFLAGS} ${WRKSRC}/${f}.c -o ${WRKSRC}/${f}
.endfor

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/rom-${PORTNAME}
    ${INSTALL_PROGRAM} ${WRKSRC}/fontdump ${PREFIX}/bin

.if !defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/readme ${DOCSDIR}
.endif

.include <bsd.port.mk>