mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
e519aa2ec3
Add a EXAMPLES option
38 lines
869 B
Makefile
38 lines
869 B
Makefile
# Created by: Patrick Li <pat@databits.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hp48cc
|
|
PORTVERSION= 1.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel lang
|
|
MASTER_SITES= ${MASTER_SITE_SUNSITE} http://www.sigala.it/sandro/files/
|
|
MASTER_SITE_SUBDIR= devel/lang/c
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= C-like compiler that translates input code to the HP48 RPL language
|
|
|
|
LICENSE= GPLv2
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
USES= bison
|
|
GNU_CONFIGURE= yes
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}"
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
man/man1/${PORTNAME}.1.gz
|
|
PORTEXAMPLES= *
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
post-patch:
|
|
# Fix the Makefile to unbreak parallel builds
|
|
@${REINPLACE_CMD} -e 's,(YACC),& -o parser.c, ; \
|
|
s,(LEX),& -olexer.c, ; /mv/d' ${WRKSRC}/src/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|