diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-08-29 20:34:54 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-08-29 20:34:54 +0800 |
commit | 0f0880d22861761c036cb5f707835b729437a6d9 (patch) | |
tree | 8327a19295036efff7a622568f034ab3b1d68e73 | |
parent | 1e8dcad51f367244d2228f0f6cfd0a1d726dd443 (diff) | |
download | freebsd-ports-gnome-0f0880d22861761c036cb5f707835b729437a6d9.tar.gz freebsd-ports-gnome-0f0880d22861761c036cb5f707835b729437a6d9.tar.zst freebsd-ports-gnome-0f0880d22861761c036cb5f707835b729437a6d9.zip |
add hp48cc
C-like compiler that translates input code to the HP48 RPN language
PR: 29642
Submitted by: Patrick Li <pat@databits.net>
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/hp48cc/Makefile | 27 | ||||
-rw-r--r-- | devel/hp48cc/distinfo | 1 | ||||
-rw-r--r-- | devel/hp48cc/pkg-comment | 1 | ||||
-rw-r--r-- | devel/hp48cc/pkg-descr | 10 | ||||
-rw-r--r-- | devel/hp48cc/pkg-plist | 16 |
6 files changed, 56 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index f268c40a763e..36f657a88d62 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -164,6 +164,7 @@ SUBDIR += gvd SUBDIR += happy SUBDIR += happydoc + SUBDIR += hp48cc SUBDIR += hypersrc SUBDIR += i386-rtems-binutils SUBDIR += i386-rtems-chill 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> diff --git a/devel/hp48cc/distinfo b/devel/hp48cc/distinfo new file mode 100644 index 000000000000..2139a9ede557 --- /dev/null +++ b/devel/hp48cc/distinfo @@ -0,0 +1 @@ +MD5 (hp48cc-1.3.tar.gz) = 23f41a6168d3c17ea50537fe6ec2124a diff --git a/devel/hp48cc/pkg-comment b/devel/hp48cc/pkg-comment new file mode 100644 index 000000000000..1dc264fa8d64 --- /dev/null +++ b/devel/hp48cc/pkg-comment @@ -0,0 +1 @@ +C-like compiler that translates input code to the HP48 RPN language diff --git a/devel/hp48cc/pkg-descr b/devel/hp48cc/pkg-descr new file mode 100644 index 000000000000..2232c0c905a6 --- /dev/null +++ b/devel/hp48cc/pkg-descr @@ -0,0 +1,10 @@ +hp48cc is a C-like compiler that translates the input code +into the HP48 RPN language. The language recognized by the +compiler is only a small subset of the C language, with +some non-standard extensions, but powerful enough to write +complex programs simply. + +WWW: http://www.sigala.it/sandro/software.html#hp48cc +Author: Sandro Sigala <sandro@sigala.it> + +- Patrick Li <pat@databits.net> diff --git a/devel/hp48cc/pkg-plist b/devel/hp48cc/pkg-plist new file mode 100644 index 000000000000..7eb27e46da41 --- /dev/null +++ b/devel/hp48cc/pkg-plist @@ -0,0 +1,16 @@ +bin/hp48cc +%%PORTDOCS%%share/examples/hp48cc/README +%%PORTDOCS%%share/examples/hp48cc/accuracy.hpc +%%PORTDOCS%%share/examples/hp48cc/astro.hpc +%%PORTDOCS%%share/examples/hp48cc/fact.hpc +%%PORTDOCS%%share/examples/hp48cc/gcd.hpc +%%PORTDOCS%%share/examples/hp48cc/hello.hpc +%%PORTDOCS%%share/examples/hp48cc/inform.hpc +%%PORTDOCS%%share/examples/hp48cc/pi1.hpc +%%PORTDOCS%%share/examples/hp48cc/pi2.hpc +%%PORTDOCS%%share/examples/hp48cc/sort.hpc +%%PORTDOCS%%share/examples/hp48cc/tutorial.hpc +%%PORTDOCS%%share/examples/hp48cc/xcos.hpc +%%PORTDOCS%%share/examples/hp48cc/xexp.hpc +%%PORTDOCS%%share/examples/hp48cc/xsin.hpc +%%PORTDOCS%%@dirrm share/examples/hp48cc |