From owner-svn-ports-all@freebsd.org Sun Mar 20 16:14:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ECACFAD6473; Sun, 20 Mar 2016 16:14:38 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 ABD72937; Sun, 20 Mar 2016 16:14:38 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2KGEbPJ078071; Sun, 20 Mar 2016 16:14:37 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2KGEbQB078064; Sun, 20 Mar 2016 16:14:37 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201603201614.u2KGEbQB078064@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 20 Mar 2016 16:14:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411459 - in head/devel: . libnsutils libnsutils/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2016 16:14:39 -0000 Author: olivierd Date: Sun Mar 20 16:14:36 2016 New Revision: 411459 URL: https://svnweb.freebsd.org/changeset/ports/411459 Log: NetSurf generalised utility library. WWW: http://www.netsurf-browser.org/ Added: head/devel/libnsutils/ head/devel/libnsutils/Makefile (contents, props changed) head/devel/libnsutils/distinfo (contents, props changed) head/devel/libnsutils/files/ head/devel/libnsutils/files/patch-Makefile (contents, props changed) head/devel/libnsutils/files/patch-libnsutils.pc.in (contents, props changed) head/devel/libnsutils/pkg-descr (contents, props changed) head/devel/libnsutils/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Mar 20 16:09:12 2016 (r411458) +++ head/devel/Makefile Sun Mar 20 16:14:36 2016 (r411459) @@ -1264,6 +1264,7 @@ SUBDIR += libnaji SUBDIR += libnfc SUBDIR += libnotify + SUBDIR += libnsutils SUBDIR += libnxt SUBDIR += liboil SUBDIR += libol Added: head/devel/libnsutils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libnsutils/Makefile Sun Mar 20 16:14:36 2016 (r411459) @@ -0,0 +1,29 @@ +# Created by: Olivier Duchateau +# $FreeBSD$ + +PORTNAME= libnsutils +PORTVERSION= 0.0.2 +CATEGORIES= devel +MASTER_SITES= http://download.netsurf-browser.org/libs/releases/ +DISTNAME= ${PORTNAME}-${PORTVERSION}-src + +MAINTAINER= olivierd@FreeBSD.org +COMMENT= NetSurf generalised utility library + +LICENSE= MIT + +BUILD_DEPENDS= netsurf-buildsystem>=1.5:${PORTSDIR}/devel/netsurf-buildsystem + +USES= gmake +USE_LDCONFIG= yes + +MAKE_ENV+= COMPONENT_TYPE="lib-shared" + +WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//} + +PLIST_SUB+= VERSION=${PORTVERSION} + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libnsutils.so* + +.include Added: head/devel/libnsutils/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libnsutils/distinfo Sun Mar 20 16:14:36 2016 (r411459) @@ -0,0 +1,2 @@ +SHA256 (libnsutils-0.0.2-src.tar.gz) = fed321149f8f16ab2fd69f58b2692a1aea5a19934c1de92d38127a045aede40e +SIZE (libnsutils-0.0.2-src.tar.gz) = 6770 Added: head/devel/libnsutils/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libnsutils/files/patch-Makefile Sun Mar 20 16:14:36 2016 (r411459) @@ -0,0 +1,10 @@ +--- Makefile.orig 2015-05-01 09:14:45 UTC ++++ Makefile +@@ -53,5 +53,5 @@ INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):i + INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):include/nsutils/base64.h + INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):include/nsutils/time.h + INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):include/nsutils/unistd.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/devel/libnsutils/files/patch-libnsutils.pc.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libnsutils/files/patch-libnsutils.pc.in Sun Mar 20 16:14:36 2016 (r411459) @@ -0,0 +1,10 @@ +--- libnsutils.pc.in.orig 2015-05-01 09:14:45 UTC ++++ libnsutils.pc.in +@@ -1,6 +1,6 @@ + prefix=PREFIX + exec_prefix=${prefix} +-libdir=${exec_prefix}/LIBDIR ++libdir=${exec_prefix}/lib + includedir=${prefix}/INCLUDEDIR + + Name: libnsutils Added: head/devel/libnsutils/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libnsutils/pkg-descr Sun Mar 20 16:14:36 2016 (r411459) @@ -0,0 +1,3 @@ +NetSurf generalised utility library. + +WWW: http://www.netsurf-browser.org/ Added: head/devel/libnsutils/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libnsutils/pkg-plist Sun Mar 20 16:14:36 2016 (r411459) @@ -0,0 +1,8 @@ +include/nsutils/base64.h +include/nsutils/errors.h +include/nsutils/time.h +include/nsutils/unistd.h +lib/libnsutils.so +lib/libnsutils.so.0 +lib/libnsutils.so.%%VERSION%% +libdata/pkgconfig/libnsutils.pc