From owner-svn-ports-head@FreeBSD.ORG Thu May 28 09:17:03 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3B1714D; Thu, 28 May 2015 09:17:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B480CA71; Thu, 28 May 2015 09:17:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4S9H3mH098807; Thu, 28 May 2015 09:17:03 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4S9H2YM098794; Thu, 28 May 2015 09:17:02 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201505280917.t4S9H2YM098794@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 28 May 2015 09:17:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387712 - in head/devel: . unibilium X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 May 2015 09:17:03 -0000 Author: amdmi3 Date: Thu May 28 09:17:01 2015 New Revision: 387712 URL: https://svnweb.freebsd.org/changeset/ports/387712 Log: Unibilium is a very basic terminfo library. It doesn't depend on curses or any other library. It also doesn't use global variables, so it should be thread-safe. WWW: https://github.com/mauke/unibilium PR: 198709 Submitted by: antont@inbox.lv Added: head/devel/unibilium/ head/devel/unibilium/Makefile (contents, props changed) head/devel/unibilium/distinfo (contents, props changed) head/devel/unibilium/pkg-descr (contents, props changed) head/devel/unibilium/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu May 28 08:16:26 2015 (r387711) +++ head/devel/Makefile Thu May 28 09:17:01 2015 (r387712) @@ -4953,6 +4953,7 @@ SUBDIR += umbrello SUBDIR += umem SUBDIR += umlgraph + SUBDIR += unibilium SUBDIR += universalindentgui SUBDIR += upnp SUBDIR += upp Added: head/devel/unibilium/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/unibilium/Makefile Thu May 28 09:17:01 2015 (r387712) @@ -0,0 +1,28 @@ +# Created by: Anton Tornqvist +# $FreeBSD$ + +PORTNAME= unibilium +PORTVERSION= 1.1.2 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= antont@inbox.lv +COMMENT= Unibilium is a very basic terminfo library + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/LGPLv3 + +USE_GITHUB= yes +GH_ACCOUNT= mauke + +USES= gmake libtool:build perl5 pkgconfig +USE_PERL5= build +USE_LDCONFIG= yes + +pre-build: + ${REINPLACE_CMD} -e 's|$$(LIBDIR)/pkgconfig|${PREFIX}/libdata/pkgconfig|g' ${WRKSRC}/Makefile + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libunibilium.so + +.include Added: head/devel/unibilium/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/unibilium/distinfo Thu May 28 09:17:01 2015 (r387712) @@ -0,0 +1,2 @@ +SHA256 (mauke-unibilium-v1.1.2_GH0.tar.gz) = bdf3750b9e6ecdb30ba42dd0ef041c34222051495ff420c8c76d391f11e149e3 +SIZE (mauke-unibilium-v1.1.2_GH0.tar.gz) = 76823 Added: head/devel/unibilium/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/unibilium/pkg-descr Thu May 28 09:17:01 2015 (r387712) @@ -0,0 +1,5 @@ +Unibilium is a very basic terminfo library. It doesn't depend on curses or any +other library. It also doesn't use global variables, so it should be +thread-safe. + +WWW: https://github.com/mauke/unibilium Added: head/devel/unibilium/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/unibilium/pkg-plist Thu May 28 09:17:01 2015 (r387712) @@ -0,0 +1,54 @@ +include/unibilium.h +lib/libunibilium.a +lib/libunibilium.so +lib/libunibilium.so.0 +lib/libunibilium.so.0.2.1 +libdata/pkgconfig/unibilium.pc +share/man/man3/unibi_add_ext_bool.3.gz +share/man/man3/unibi_add_ext_num.3.gz +share/man/man3/unibi_add_ext_str.3.gz +share/man/man3/unibi_count_ext_bool.3.gz +share/man/man3/unibi_count_ext_num.3.gz +share/man/man3/unibi_count_ext_str.3.gz +share/man/man3/unibi_del_ext_bool.3.gz +share/man/man3/unibi_destroy.3.gz +share/man/man3/unibi_dummy.3.gz +share/man/man3/unibi_dump.3.gz +share/man/man3/unibi_format.3.gz +share/man/man3/unibi_from_env.3.gz +share/man/man3/unibi_from_fd.3.gz +share/man/man3/unibi_from_file.3.gz +share/man/man3/unibi_from_fp.3.gz +share/man/man3/unibi_from_mem.3.gz +share/man/man3/unibi_from_term.3.gz +share/man/man3/unibi_get_aliases.3.gz +share/man/man3/unibi_get_bool.3.gz +share/man/man3/unibi_get_ext_bool.3.gz +share/man/man3/unibi_get_ext_bool_name.3.gz +share/man/man3/unibi_get_ext_num.3.gz +share/man/man3/unibi_get_ext_num_name.3.gz +share/man/man3/unibi_get_ext_str.3.gz +share/man/man3/unibi_get_ext_str_name.3.gz +share/man/man3/unibi_get_name.3.gz +share/man/man3/unibi_get_num.3.gz +share/man/man3/unibi_get_str.3.gz +share/man/man3/unibi_name_bool.3.gz +share/man/man3/unibi_name_num.3.gz +share/man/man3/unibi_name_str.3.gz +share/man/man3/unibi_run.3.gz +share/man/man3/unibi_set_aliases.3.gz +share/man/man3/unibi_set_bool.3.gz +share/man/man3/unibi_set_ext_bool.3.gz +share/man/man3/unibi_set_ext_bool_name.3.gz +share/man/man3/unibi_set_ext_num.3.gz +share/man/man3/unibi_set_ext_num_name.3.gz +share/man/man3/unibi_set_ext_str.3.gz +share/man/man3/unibi_set_ext_str_name.3.gz +share/man/man3/unibi_set_name.3.gz +share/man/man3/unibi_set_num.3.gz +share/man/man3/unibi_set_str.3.gz +share/man/man3/unibi_short_name_bool.3.gz +share/man/man3/unibi_short_name_num.3.gz +share/man/man3/unibi_short_name_str.3.gz +share/man/man3/unibi_terminfo_dirs.3.gz +share/man/man3/unibilium.h.3.gz