aboutsummaryrefslogtreecommitdiffstats
path: root/emulators/x48/Makefile
blob: 358173d1b6f3060c7ebdd972054220e4090daaff (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
39
40
41
42
43
44
45
46
47
48
49
50
# New ports collection makefile for:    x48
# Date created:     Thu Oct 24 13:10:59 CDT 1996
# Whom:         erich@FreeBSD.org
#
# $FreeBSD$
#

PORTNAME=   x48
PORTVERSION=    0.4.1e
PORTREVISION=   1
CATEGORIES= emulators
MASTER_SITES=   http://www.hpcalc.org/hp48/pc/emulators/
DISTFILES=  ${PORTNAME}-${PORTVERSION:S/.//g}.tgz \
        gxrom-r.zip sxrom-e.zip
EXTRACT_ONLY=   ${PORTNAME}-${PORTVERSION:S/.//g}.tgz

MAINTAINER= danfe@FreeBSD.org
COMMENT=    A HP48 SX/GX calculator emulator

BUILD_DEPENDS=  unzip:${PORTSDIR}/archivers/unzip

WRKSRC=     ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/e//}

USE_IMAKE=  yes
NO_INSTALL_MANPAGES=    yes
USE_REINPLACE=  yes

ROMPATH=    ${PREFIX}/share/x48

.include <bsd.port.pre.mk>

post-patch:
    @${REINPLACE_CMD} -e 's+rom.dump+${ROMPATH}/gxrom-r+' \
        ${WRKSRC}/src/X48.ad
.if ${OSVERSION} > 600004
    @${REINPLACE_CMD} -e 's+cuaa+cuad+' ${WRKSRC}/src/X48.ad
.endif

post-install:
    @${MKDIR} ${ROMPATH}
    ${UNZIP_CMD} ${DISTDIR}/${DISTSUBDIR}/gxrom-r -d ${ROMPATH}
    ${UNZIP_CMD} -p ${DISTDIR}/${DISTSUBDIR}/sxrom-e > ${ROMPATH}/sxrom-e
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for file in README doc/CARDS.doc doc/ROMDump.doc
    ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.post.mk>