View | Details | Raw Unified | Return to bug 175012
Collapse All | Expand All

(-)emulators/prodosemu/Makefile (-11 / +9 lines)
Lines 1-9 Link Here
1
# New ports collection makefile for:	prodosemu
1
# Created by: Joel Sutton <sutton@aardvark.apana.org.au>
2
# Date created:		18th February 1997
3
# Whom:			Joel Sutton <sutton@aardvark.apana.org.au>
4
#
5
# $FreeBSD: head/emulators/prodosemu/Makefile 300896 2012-07-14 13:54:48Z beat $
2
# $FreeBSD: head/emulators/prodosemu/Makefile 300896 2012-07-14 13:54:48Z beat $
6
#
7
3
8
PORTNAME=	prodosemu
4
PORTNAME=	prodosemu
9
PORTVERSION=	0.1
5
PORTVERSION=	0.1
Lines 12-33 Link Here
12
DISTNAME=	${PORTNAME}.v${PORTVERSION}
8
DISTNAME=	${PORTNAME}.v${PORTVERSION}
13
9
14
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	ports@FreeBSD.org
15
COMMENT=	A text based Apple IIe ProDOS emulator
11
COMMENT=	Text based Apple IIe ProDOS emulator
16
12
17
RESTRICTED=	apple.rom copyright is owned by Apple and cannot be distributed.
13
RESTRICTED=	apple.rom copyright is owned by Apple and cannot be distributed.
14
18
WRKSRC=		${WRKDIR}/${PORTNAME}-v${PORTVERSION}
15
WRKSRC=		${WRKDIR}/${PORTNAME}-v${PORTVERSION}
19
16
17
MAKE_JOBS_SAFE=	yes
18
19
PORTDOCS=	README
20
PLIST_FILES=	bin/prodos share/apple2/prodos-2e.rom
20
PLIST_FILES=	bin/prodos share/apple2/prodos-2e.rom
21
PLIST_DIRS=	share/apple2
21
PLIST_DIRS=	share/apple2
22
22
23
.if !defined(NOPORTDOCS)
23
.include <bsd.port.options.mk>
24
PORTDOCS=	README
25
.endif
26
24
27
post-install:
25
post-install:
28
.if !defined(NOPORTDOCS)
26
.if ${PORT_OPTIONS:MDOCS}
29
	@${MKDIR} ${DOCSDIR}
27
	@${MKDIR} ${DOCSDIR}
30
	${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
28
	(cd ${WRKSRC} && ${INSTALL_DATA} README ${DOCSDIR})
31
.endif
29
.endif
32
30
33
.include <bsd.port.mk>
31
.include <bsd.port.mk>
(-)emulators/prodosemu/files/patch-ac (+9 lines)
Lines 12-14 Link Here
12
 
12
 
13
 extern char prodosroot[];
13
 extern char prodosroot[];
14
 
14
 
15
@@ -24,7 +28,7 @@
16
   exit (1);
17
 }
18
 
19
-void main (int argc,char **argv)
20
+int main (int argc,char **argv)
21
 {
22
   short int byte;
23
   int i, addr;                  /* Loop iterators */

Return to bug 175012