forked from Lainports/freebsd-ports
errno must be accessed by a macro from errno.h. PR: 281784 Approved by: portmgr (build fix blanket), mikael
33 lines
976 B
Makefile
33 lines
976 B
Makefile
PORTNAME= pbasic
|
|
PORTVERSION= 2.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.berklix.org/pub/FreeBSD/ports/distfiles/ \
|
|
http://www.berklix.com/~jhs/ftp/distfiles/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-2017-04-08
|
|
|
|
MAINTAINER= jhs@berklix.com
|
|
COMMENT= Phil Cockroft's Basic Interpreter (previously Rabbit Basic)
|
|
# Author of generic sources: "phil@cockcroft.de"
|
|
|
|
LICENSE= PD
|
|
|
|
ALL_TARGET= freebsd
|
|
MAKEFILE= makefile
|
|
PLIST_FILES= bin/pbasic share/man/man1/pbasic.1.gz
|
|
|
|
post-patch: .SILENT
|
|
${REINPLACE_CMD} -e '/^CC/s/=/?=/' \
|
|
-e '/^CFLAGS/{s/=/+=/;s/-O//;}' \
|
|
${WRKSRC}/freebsd/makefile
|
|
${ECHO_CMD} '.PHONY: $$(SYSTEMS)' >>${WRKSRC}/makefile
|
|
|
|
do-configure:
|
|
-cd ${WRKSRC} ; ${RM} -r termio m68000 msdos vax pyramid ns32000 \
|
|
pdp11 cursor/cursor.dos cursor/cursor.ukc
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/basic ${STAGEDIR}${PREFIX}/bin/pbasic
|
|
${INSTALL_MAN} ${WRKSRC}/docs/basic.1 ${STAGEDIR}${PREFIX}/share/man/man1/pbasic.1
|
|
|
|
.include <bsd.port.mk>
|