Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Jul 2014 04:51:47 +0000 (UTC)
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r361333 - in head/lang: . ceylon
Message-ID:  <201407090451.s694plur068960@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lwhsu
Date: Wed Jul  9 04:51:47 2014
New Revision: 361333
URL: http://svnweb.freebsd.org/changeset/ports/361333
QAT: https://qat.redports.org/buildarchive/r361333/

Log:
  Add ceylon, which is a language for writing large programs in teams

Added:
  head/lang/ceylon/
  head/lang/ceylon/Makefile   (contents, props changed)
  head/lang/ceylon/distinfo   (contents, props changed)
  head/lang/ceylon/pkg-descr   (contents, props changed)
  head/lang/ceylon/pkg-plist   (contents, props changed)
Modified:
  head/lang/Makefile

Modified: head/lang/Makefile
==============================================================================
--- head/lang/Makefile	Wed Jul  9 04:49:07 2014	(r361332)
+++ head/lang/Makefile	Wed Jul  9 04:51:47 2014	(r361333)
@@ -27,6 +27,7 @@
     SUBDIR += ccl
     SUBDIR += cdent
     SUBDIR += cduce
+    SUBDIR += ceylon
     SUBDIR += cfortran
     SUBDIR += chicken
     SUBDIR += cint

Added: head/lang/ceylon/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/ceylon/Makefile	Wed Jul  9 04:51:47 2014	(r361333)
@@ -0,0 +1,44 @@
+# Created by: Li-Wen Hsu <lwhsu@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	ceylon
+PORTVERSION=	1.0.0
+CATEGORIES=	lang java
+MASTER_SITES=	http://downloads.ceylon-lang.org/cli/
+
+MAINTAINER=	lwhsu@FreeBSD.org
+COMMENT=	Ceylon is a language for writing large programs in teams
+
+LICENSE=	APACHE20 GPLv2
+LICENSE_COMB=	multi
+
+NO_BUILD=	yes
+USES=	zip
+
+USE_JAVA=	yes
+JAVA_VERSION=	1.7
+JAVA_RUN=	yes
+
+PORTDATA=	*
+
+CEYLON_SCRIPTS=	ceylon ceylon-sh-setup
+CEYLON_DIRS=	contrib lib repo samples templates
+
+.include <bsd.port.pre.mk>
+
+do-install:
+	${RM} -f ${WRKSRC}/bin/*.bat
+
+	${INSTALL_MAN} ${WRKSRC}/doc/man/man1/* ${STAGEDIR}/${MAN1PREFIX}/man/man1
+
+	${MKDIR} ${STAGEDIR}${DATADIR}
+.for d in ${CEYLON_DIRS}
+	cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DATADIR}
+.endfor
+
+	cd ${WRKSRC} && ${COPYTREE_BIN} bin ${STAGEDIR}${DATADIR}
+.for s in ${CEYLON_SCRIPTS}
+	${LN} -s ${DATADIR}/bin/${s} ${STAGEDIR}/${PREFIX}/bin/${s}
+.endfor
+
+.include <bsd.port.post.mk>

Added: head/lang/ceylon/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/ceylon/distinfo	Wed Jul  9 04:51:47 2014	(r361333)
@@ -0,0 +1,2 @@
+SHA256 (ceylon-1.0.0.zip) = d8d902b3bbe56a790fee71bdfd6d3206bdaaf6ef9c6ff5cf545358b446f5ad19
+SIZE (ceylon-1.0.0.zip) = 11617390

Added: head/lang/ceylon/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/ceylon/pkg-descr	Wed Jul  9 04:51:47 2014	(r361333)
@@ -0,0 +1,5 @@
+Ceylon is a new programming language that's deeply influenced by Java,
+designed by people who are unapologetic fans of Java. It's a language
+designed specifically for writing large programs in teams.
+
+WWW: http://ceylon-lang.org

Added: head/lang/ceylon/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/ceylon/pkg-plist	Wed Jul  9 04:51:47 2014	(r361333)
@@ -0,0 +1,18 @@
+bin/ceylon
+bin/ceylon-sh-setup
+man/man1/ceylon-bash-completion.1.gz
+man/man1/ceylon-compile-js.1.gz
+man/man1/ceylon-compile.1.gz
+man/man1/ceylon-config.1.gz
+man/man1/ceylon-doc-tool.1.gz
+man/man1/ceylon-doc.1.gz
+man/man1/ceylon-help.1.gz
+man/man1/ceylon-import-jar.1.gz
+man/man1/ceylon-info.1.gz
+man/man1/ceylon-new.1.gz
+man/man1/ceylon-run-js.1.gz
+man/man1/ceylon-run.1.gz
+man/man1/ceylon-src.1.gz
+man/man1/ceylon-test.1.gz
+man/man1/ceylon-version.1.gz
+man/man1/ceylon.1.gz



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407090451.s694plur068960>