svn commit: r377843 - in head/devel: . editline

Baptiste Daroussin bapt at FreeBSD.org
Sun Jan 25 00:10:25 UTC 2015


Author: bapt
Date: Sun Jan 25 00:10:22 2015
New Revision: 377843
URL: https://svnweb.freebsd.org/changeset/ports/377843
QAT: https://qat.redports.org/buildarchive/r377843/

Log:
  This is a line editing library. It can be linked into almost any program to
  provide command-line editing and history. It is call-compatible with the FSF
  readline library, but is a fraction of the size (and offers fewer features).
  
  The editline library was created by Simmule Turner and Rich Salz back in 1992.
  At the time they chose to distribute the code under a "C News-like" copyright,
  see the file LICENSE for details.
  
  The small size (<30k), lack of dependencies (no ncurses needed!) and the free
  license should make this library interesting to many embedded developers
  
  WWW: https://github.com/troglobit/editline

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jan 25 00:06:22 2015	(r377842)
+++ head/devel/Makefile	Sun Jan 25 00:10:22 2015	(r377843)
@@ -387,6 +387,7 @@
     SUBDIR += ebnf2yacc
     SUBDIR += ecgi
     SUBDIR += edb
+    SUBDIR += editline
     SUBDIR += efivar
     SUBDIR += efl
     SUBDIR += eggdbus

Added: head/devel/editline/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/editline/Makefile	Sun Jan 25 00:10:22 2015	(r377843)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	editline
+PORTVERSION=	1.14.2
+CATEGORIES=	devel
+MASTER_SITES=	GHR
+
+MAINTAINER=	bapt at FreeBSD.org
+COMMENT=	Minix editline: A free readline() for UNIX
+
+LICENSE=	BSD4CLAUSE
+
+USES=		libtool
+USE_GITHUB=	yes
+GH_ACCOUNT=	troglobit
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
+
+USE_LDCONFIG=	yes
+
+GNU_CONFIGURE=	yes
+INSTALL_TARGET=	install-strip
+
+.include <bsd.port.mk>

Added: head/devel/editline/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/editline/distinfo	Sun Jan 25 00:10:22 2015	(r377843)
@@ -0,0 +1,2 @@
+SHA256 (editline-1.14.2.tar.gz) = a4ee39906c87f843ecac4d95e4d7586429f6ead92cdadc9a3c1e28fe82c3c9da
+SIZE (editline-1.14.2.tar.gz) = 338506

Added: head/devel/editline/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/editline/pkg-descr	Sun Jan 25 00:10:22 2015	(r377843)
@@ -0,0 +1,12 @@
+This is a line editing library. It can be linked into almost any program to
+provide command-line editing and history. It is call-compatible with the FSF
+readline library, but is a fraction of the size (and offers fewer features).
+
+The editline library was created by Simmule Turner and Rich Salz back in 1992.
+At the time they chose to distribute the code under a "C News-like" copyright,
+see the file LICENSE for details.
+
+The small size (<30k), lack of dependencies (no ncurses needed!) and the free
+license should make this library interesting to many embedded developers
+
+WWW: https://github.com/troglobit/editline

Added: head/devel/editline/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/editline/pkg-plist	Sun Jan 25 00:10:22 2015	(r377843)
@@ -0,0 +1,6 @@
+include/editline.h
+lib/libeditline.a
+lib/libeditline.so
+lib/libeditline.so.0
+lib/libeditline.so.0.0.0
+man/man3/editline.3.gz


More information about the svn-ports-all mailing list