Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Mar 2016 16:34:30 +0000 (UTC)
From:      Olivier Duchateau <olivierd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r411464 - in head/textproc: . libutf8proc libutf8proc/files
Message-ID:  <201603201634.u2KGYU0l085289@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: olivierd
Date: Sun Mar 20 16:34:30 2016
New Revision: 411464
URL: https://svnweb.freebsd.org/changeset/ports/411464

Log:
  This is the Public software group utf8proc library repackaged as a
  conveniance library for NetSurf.
  
  This takes the unicode 5 capable version 1.1.6 of the library and
  converts it to the NetSurf build system. additional API has been added
  with a normalisation function but there are no data changes from
  upstream.
  
  WWW: http://www.netsurf-browser.org/

Added:
  head/textproc/libutf8proc/
  head/textproc/libutf8proc/Makefile   (contents, props changed)
  head/textproc/libutf8proc/distinfo   (contents, props changed)
  head/textproc/libutf8proc/files/
  head/textproc/libutf8proc/files/patch-Makefile   (contents, props changed)
  head/textproc/libutf8proc/files/patch-libutf8proc.pc.in   (contents, props changed)
  head/textproc/libutf8proc/pkg-descr   (contents, props changed)
  head/textproc/libutf8proc/pkg-plist   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sun Mar 20 16:30:37 2016	(r411463)
+++ head/textproc/Makefile	Sun Mar 20 16:34:30 2016	(r411464)
@@ -421,6 +421,7 @@
     SUBDIR += libucl
     SUBDIR += libunibreak
     SUBDIR += libuninameslist
+    SUBDIR += libutf8proc
     SUBDIR += libvisio
     SUBDIR += libvisio01
     SUBDIR += libwapcaplet

Added: head/textproc/libutf8proc/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libutf8proc/Makefile	Sun Mar 20 16:34:30 2016	(r411464)
@@ -0,0 +1,29 @@
+# Created by: Olivier Duchateau
+# $FreeBSD$
+
+PORTNAME=	libutf8proc
+PORTVERSION=	1.3.1
+CATEGORIES=	textproc
+MASTER_SITES=	http://download.netsurf-browser.org/libs/releases/
+DISTNAME=	${PORTNAME}-${PORTVERSION}-src
+
+MAINTAINER=	olivierd@FreeBSD.org
+COMMENT=	UTF8 Processing library
+
+LICENSE=	MIT
+
+BUILD_DEPENDS=	netsurf-buildsystem>=1.5:${PORTSDIR}/devel/netsurf-buildsystem
+
+USES=	gmake
+USE_LDCONFIG=	yes
+
+WRKSRC=	${WRKDIR}/${DISTNAME:S/-src//}
+
+MAKE_ENV+=	COMPONENT_TYPE="lib-shared"
+
+PLIST_SUB+=	VERSION=${PORTVERSION}
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libutf8proc.so*
+
+.include <bsd.port.mk>

Added: head/textproc/libutf8proc/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libutf8proc/distinfo	Sun Mar 20 16:34:30 2016	(r411464)
@@ -0,0 +1,2 @@
+SHA256 (libutf8proc-1.3.1-src.tar.gz) = 78e950bfc691182d3b61109b1b4e234399743607231f72a395331a367c2ac675
+SIZE (libutf8proc-1.3.1-src.tar.gz) = 144963

Added: head/textproc/libutf8proc/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libutf8proc/files/patch-Makefile	Sun Mar 20 16:34:30 2016	(r411464)
@@ -0,0 +1,10 @@
+--- Makefile.orig	2016-01-07 00:18:19 UTC
++++ Makefile
+@@ -46,5 +46,5 @@ endif
+ # Extra installation rules
+ I := /$(INCLUDEDIR)/libutf8proc
+ INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):include/libutf8proc/utf8proc.h
+-INSTALL_ITEMS := $(INSTALL_ITEMS) /$(LIBDIR)/pkgconfig:lib$(COMPONENT).pc.in
+-INSTALL_ITEMS := $(INSTALL_ITEMS) /$(LIBDIR):$(OUTPUT)
++INSTALL_ITEMS := $(INSTALL_ITEMS) /libdata/pkgconfig:lib$(COMPONENT).pc.in
++INSTALL_ITEMS := $(INSTALL_ITEMS) /lib:$(OUTPUT)

Added: head/textproc/libutf8proc/files/patch-libutf8proc.pc.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libutf8proc/files/patch-libutf8proc.pc.in	Sun Mar 20 16:34:30 2016	(r411464)
@@ -0,0 +1,10 @@
+--- libutf8proc.pc.in.orig	2016-01-07 00:18:19 UTC
++++ libutf8proc.pc.in
+@@ -1,6 +1,6 @@
+ prefix=PREFIX
+ exec_prefix=${prefix}
+-libdir=${exec_prefix}/LIBDIR
++libdir=${exec_prefix}/lib
+ includedir=${prefix}/INCLUDEDIR
+ 
+ Name: libutf8proc

Added: head/textproc/libutf8proc/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libutf8proc/pkg-descr	Sun Mar 20 16:34:30 2016	(r411464)
@@ -0,0 +1,9 @@
+This is the Public software group utf8proc library repackaged as a
+conveniance library for NetSurf.
+
+This takes the unicode 5 capable version 1.1.6 of the library and
+converts it to the NetSurf build system. additional API has been added
+with a normalisation function but there are no data changes from
+upstream.
+
+WWW: http://www.netsurf-browser.org/

Added: head/textproc/libutf8proc/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libutf8proc/pkg-plist	Sun Mar 20 16:34:30 2016	(r411464)
@@ -0,0 +1,5 @@
+include/libutf8proc/utf8proc.h
+lib/libutf8proc.so
+lib/libutf8proc.so.1
+lib/libutf8proc.so.%%VERSION%%
+libdata/pkgconfig/libutf8proc.pc



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