svn commit: r361333 - in head/lang: . ceylon
Li-Wen Hsu
lwhsu at FreeBSD.org
Wed Jul 9 04:51:48 UTC 2014
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 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= ceylon
+PORTVERSION= 1.0.0
+CATEGORIES= lang java
+MASTER_SITES= http://downloads.ceylon-lang.org/cli/
+
+MAINTAINER= lwhsu at 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
More information about the svn-ports-head
mailing list