svn commit: r411463 - in head/textproc: . libwapcaplet libwapcaplet/files
Olivier Duchateau
olivierd at FreeBSD.org
Sun Mar 20 16:30:39 UTC 2016
Author: olivierd
Date: Sun Mar 20 16:30:37 2016
New Revision: 411463
URL: https://svnweb.freebsd.org/changeset/ports/411463
Log:
LibWapcaplet is a string internment library, written in C.
It provides reference counted string interment and rapid string comparison
functionality.
WWW: http://www.netsurf-browser.org/projects/libwapcaplet/
Added:
head/textproc/libwapcaplet/
head/textproc/libwapcaplet/Makefile (contents, props changed)
head/textproc/libwapcaplet/distinfo (contents, props changed)
head/textproc/libwapcaplet/files/
head/textproc/libwapcaplet/files/patch-Makefile (contents, props changed)
head/textproc/libwapcaplet/files/patch-libwapcaplet.pc.in (contents, props changed)
head/textproc/libwapcaplet/pkg-descr (contents, props changed)
head/textproc/libwapcaplet/pkg-plist (contents, props changed)
Modified:
head/textproc/Makefile
Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile Sun Mar 20 16:26:14 2016 (r411462)
+++ head/textproc/Makefile Sun Mar 20 16:30:37 2016 (r411463)
@@ -423,6 +423,7 @@
SUBDIR += libuninameslist
SUBDIR += libvisio
SUBDIR += libvisio01
+ SUBDIR += libwapcaplet
SUBDIR += libwpd
SUBDIR += libwpd010
SUBDIR += libwps
Added: head/textproc/libwapcaplet/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/libwapcaplet/Makefile Sun Mar 20 16:30:37 2016 (r411463)
@@ -0,0 +1,31 @@
+# Created by: Olivier Duchateau
+# $FreeBSD$
+
+PORTNAME= libwapcaplet
+PORTVERSION= 0.3.0
+CATEGORIES= textproc
+MASTER_SITES= http://download.netsurf-browser.org/libs/releases/
+DISTNAME= ${PORTNAME}-${PORTVERSION}-src
+
+MAINTAINER= olivierd at FreeBSD.org
+COMMENT= String internment library
+
+LICENSE= MIT
+
+BUILD_DEPENDS= netsurf-buildsystem>=1.5:${PORTSDIR}/devel/netsurf-buildsystem \
+ ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex
+
+USES= gmake
+USE_LDCONFIG= yes
+
+WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//}
+
+MAKE_ENV+= COMPONENT_TYPE="lib-shared" \
+ FLEX="${LOCALBASE}/bin/flex"
+
+PLIST_SUB+= VERSION=${PORTVERSION}
+
+post-install:
+ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libwapcaplet.so*
+
+.include <bsd.port.mk>
Added: head/textproc/libwapcaplet/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/libwapcaplet/distinfo Sun Mar 20 16:30:37 2016 (r411463)
@@ -0,0 +1,2 @@
+SHA256 (libwapcaplet-0.3.0-src.tar.gz) = 4359ee9d9fd08e721ba1976e9c6e5eaa49b32119e4e1571c1fec49a7446b4133
+SIZE (libwapcaplet-0.3.0-src.tar.gz) = 31362
Added: head/textproc/libwapcaplet/files/patch-Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/libwapcaplet/files/patch-Makefile Sun Mar 20 16:30:37 2016 (r411463)
@@ -0,0 +1,10 @@
+--- Makefile.orig 2016-02-16 08:47:11 UTC
++++ Makefile
+@@ -51,5 +51,5 @@ endif
+ # Extra installation rules
+ I := /$(INCLUDEDIR)/libwapcaplet
+ INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):include/libwapcaplet/libwapcaplet.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/libwapcaplet/files/patch-libwapcaplet.pc.in
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/libwapcaplet/files/patch-libwapcaplet.pc.in Sun Mar 20 16:30:37 2016 (r411463)
@@ -0,0 +1,10 @@
+--- libwapcaplet.pc.in.orig 2016-02-16 08:47:11 UTC
++++ libwapcaplet.pc.in
+@@ -1,6 +1,6 @@
+ prefix=PREFIX
+ exec_prefix=${prefix}
+-libdir=${exec_prefix}/LIBDIR
++libdir=${exec_prefix}/lib
+ includedir=${prefix}/INCLUDEDIR
+
+ Name: libwapcaplet
Added: head/textproc/libwapcaplet/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/libwapcaplet/pkg-descr Sun Mar 20 16:30:37 2016 (r411463)
@@ -0,0 +1,5 @@
+LibWapcaplet is a string internment library, written in C.
+It provides reference counted string interment and rapid string comparison
+functionality.
+
+WWW: http://www.netsurf-browser.org/projects/libwapcaplet/
Added: head/textproc/libwapcaplet/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/libwapcaplet/pkg-plist Sun Mar 20 16:30:37 2016 (r411463)
@@ -0,0 +1,5 @@
+include/libwapcaplet/libwapcaplet.h
+lib/libwapcaplet.so
+lib/libwapcaplet.so.0
+lib/libwapcaplet.so.%%VERSION%%
+libdata/pkgconfig/libwapcaplet.pc
More information about the svn-ports-all
mailing list