diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-08-29 12:34:54 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-08-29 12:34:54 +0000 |
commit | d71b137e0bd213367b45103473f949bcafe61850 (patch) | |
tree | 5edc7b4fc41b2785541cdda66b0830c8391183e8 /devel/hp48cc/Makefile | |
parent | update to 20010701. (diff) |
add hp48cc
C-like compiler that translates input code to the HP48 RPN language
PR: 29642
Submitted by: Patrick Li <pat@databits.net>
Notes
Notes:
svn path=/head/; revision=47090
Diffstat (limited to 'devel/hp48cc/Makefile')
-rw-r--r-- | devel/hp48cc/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/devel/hp48cc/Makefile b/devel/hp48cc/Makefile new file mode 100644 index 000000000000..19b50a339667 --- /dev/null +++ b/devel/hp48cc/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: hp48cc +# Date created: Sun Aug 12 04:33:37 EDT 2001 +# Whom: Patrick Li <pat@databits.net> +# +# $FreeBSD$ +# + +PORTNAME= hp48cc +PORTVERSION= 1.3 +CATEGORIES= devel lang +MASTER_SITES= http://www.sigala.it/sandro/files/ + +MAINTAINER= pat@databits.net + +USE_BISON= yes +GNU_CONFIGURE= yes + +MAN1= ${PORTNAME}.1 + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/examples/${PORTNAME} + @${INSTALL_DATA} ${WRKSRC}/examples/* \ + ${PREFIX}/share/examples/${PORTNAME} +.endif #NOPORTDOCS + +.include <bsd.port.mk> |