svn commit: r377881 - in head/lang: . lci

Johannes Jost Meixner xmj at FreeBSD.org
Sun Jan 25 11:27:08 UTC 2015


Author: xmj
Date: Sun Jan 25 11:27:06 2015
New Revision: 377881
URL: https://svnweb.freebsd.org/changeset/ports/377881
QAT: https://qat.redports.org/buildarchive/r377881/

Log:
  lang/lci: Add port.
  
  This is the original LOLCODE interpreter.
  
  WWW: http://lolcode.org
  
  PR:			196785
  Differential Revision:	https://reviews.freebsd.org/D1632
  Submitted by:		Maxim Filimonov <che at bein.link>
  Approved by:		koobs (mentor)

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

Modified: head/lang/Makefile
==============================================================================
--- head/lang/Makefile	Sun Jan 25 11:15:40 2015	(r377880)
+++ head/lang/Makefile	Sun Jan 25 11:27:06 2015	(r377881)
@@ -126,6 +126,7 @@
     SUBDIR += kawa
     SUBDIR += kturtle
     SUBDIR += lafontaine
+    SUBDIR += lci
     SUBDIR += libhx
     SUBDIR += libjit
     SUBDIR += libobjc2

Added: head/lang/lci/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/lci/Makefile	Sun Jan 25 11:27:06 2015	(r377881)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	lci
+PORTVERSION=	0.11.2
+CATEGORIES=	lang
+
+MAINTAINER=	che at bein.link
+COMMENT=	Original LOLCODE interpreter
+
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	justinmeza
+GH_COMMIT=                     2464d0c
+GH_TAGNAME=                    v0.11.2
+
+USES=		cmake
+PLIST_FILES=	bin/lci
+
+.include <bsd.port.mk>

Added: head/lang/lci/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/lci/distinfo	Sun Jan 25 11:27:06 2015	(r377881)
@@ -0,0 +1,2 @@
+SHA256 (lci-0.11.2.tar.gz) = 92a97b9dd35a68e29f256cf359026076daf6dcb381391808ad1b4f94a772c8be
+SIZE (lci-0.11.2.tar.gz) = 312142

Added: head/lang/lci/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/lci/pkg-descr	Sun Jan 25 11:27:06 2015	(r377881)
@@ -0,0 +1,3 @@
+This is the original LOLCODE interpreter.
+
+WWW: http://lolcode.org


More information about the svn-ports-all mailing list