diff options
author | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2007-07-09 20:16:42 +0000 |
---|---|---|
committer | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2007-07-09 20:16:42 +0000 |
commit | 2f581730ce6ac55da778852ffb3fe964e9dae97b (patch) | |
tree | 9b9db9a22a741354fc90d7368930e76c8d8b5d9d /emulators/lisaem/Makefile | |
parent | a2b767bd8a378bdac277a1cf0791a3f12b1e8b19 (diff) | |
download | ports-2f581730ce6ac55da778852ffb3fe964e9dae97b.tar.gz ports-2f581730ce6ac55da778852ffb3fe964e9dae97b.zip |
Notes
Diffstat (limited to 'emulators/lisaem/Makefile')
-rw-r--r-- | emulators/lisaem/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/emulators/lisaem/Makefile b/emulators/lisaem/Makefile new file mode 100644 index 000000000000..8be1d13b8fa4 --- /dev/null +++ b/emulators/lisaem/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: lisaem +# Date created: 2007-07-04 +# Whom: Edward Tomasz Napierala <trasz@freebsd.org> +# +# $FreeBSD$ +# + +PORTNAME= lisaem +DISTVERSION= 1.0.0 +CATEGORIES= emulators +MASTER_SITES= http://lisaem.sunder.net/20070707/ + +MAINTAINER= trasz@freebsd.org +COMMENT= Apple Lisa emulator + +BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash \ + pngtopnm:${PORTSDIR}/graphics/netpbm + +USE_BZIP2= yes +USE_WX= 2.8 +ALL_TARGET= build + +post-patch: + ${REINPLACE_CMD} -e "s|/usr/local|${PREFIX}|g" \ + -e "s|wx-config|${WX_CONFIG}|g" ${WRKSRC}/build.sh +do-build: + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${LOCALBASE}/bin/bash build.sh build + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/lisaem ${PREFIX}/bin + ${MKDIR} ${PREFIX}/share/LisaEm + ${INSTALL_DATA} ${WRKSRC}/resources/* ${PREFIX}/share/LisaEm/ + +.include <bsd.port.mk> |