From owner-svn-ports-head@freebsd.org Wed May 17 21:03:30 2017 Return-Path: Delivered-To: svn-ports-head@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 6F1B1D71165; Wed, 17 May 2017 21:03:30 +0000 (UTC) (envelope-from jkim@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 4A8F51EF1; Wed, 17 May 2017 21:03:30 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4HL3T6u032345; Wed, 17 May 2017 21:03:29 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4HL3SZp032340; Wed, 17 May 2017 21:03:28 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201705172103.v4HL3SZp032340@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Wed, 17 May 2017 21:03:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r441119 - in head/graphics: . libzmf 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.23 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: Wed, 17 May 2017 21:03:30 -0000 Author: jkim Date: Wed May 17 21:03:28 2017 New Revision: 441119 URL: https://svnweb.freebsd.org/changeset/ports/441119 Log: Libzmf is a library that parses the file format of Zoner Callisto/Draw documents. WWW: https://wiki.documentfoundation.org/DLP/Libraries/libzmf Added: head/graphics/libzmf/ head/graphics/libzmf/Makefile (contents, props changed) head/graphics/libzmf/distinfo (contents, props changed) head/graphics/libzmf/pkg-descr (contents, props changed) head/graphics/libzmf/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Wed May 17 20:58:30 2017 (r441118) +++ head/graphics/Makefile Wed May 17 21:03:28 2017 (r441119) @@ -542,6 +542,7 @@ SUBDIR += libwmf-nox11 SUBDIR += libwpg03 SUBDIR += libyuv + SUBDIR += libzmf SUBDIR += lightzone SUBDIR += linplasma SUBDIR += linux-adobesvg Added: head/graphics/libzmf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libzmf/Makefile Wed May 17 21:03:28 2017 (r441119) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= libzmf +PORTVERSION= 0.0.1 +CATEGORIES= graphics +MASTER_SITES= LODEV + +MAINTAINER= office@FreeBSD.org +COMMENT= Library that parses the file format of Zoner Callisto/Draw documents + +LICENSE= MPL +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= ${LOCALBASE}/include/boost/cstdint.hpp:devel/boost-libs +LIB_DEPENDS= libicui18n.so:devel/icu \ + libpng.so:graphics/png \ + librevenge-0.0.so:textproc/librevenge + +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip +USE_LDCONFIG= yes +USES= compiler:c++11-lang libtool pathfix pkgconfig tar:xz + +CONFIGURE_ARGS= --disable-tests --disable-werror --without-docs +CPPFLAGS+= -I${LOCALBASE}/include + +.include Added: head/graphics/libzmf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libzmf/distinfo Wed May 17 21:03:28 2017 (r441119) @@ -0,0 +1,3 @@ +TIMESTAMP = 1495051161 +SHA256 (libzmf-0.0.1.tar.xz) = eaf533ea29f9b66e75c0dcb631f1616b4f3cec9474e4fa0d2835769056a0e57a +SIZE (libzmf-0.0.1.tar.xz) = 315060 Added: head/graphics/libzmf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libzmf/pkg-descr Wed May 17 21:03:28 2017 (r441119) @@ -0,0 +1,4 @@ +Libzmf is a library that parses the file format of Zoner Callisto/Draw +documents. + +WWW: https://wiki.documentfoundation.org/DLP/Libraries/libzmf Added: head/graphics/libzmf/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libzmf/pkg-plist Wed May 17 21:03:28 2017 (r441119) @@ -0,0 +1,8 @@ +bin/zmf2raw +bin/zmf2svg +include/libzmf-0.0/libzmf/ZMFDocument.h +include/libzmf-0.0/libzmf/libzmf.h +lib/libzmf-0.0.so +lib/libzmf-0.0.so.0 +lib/libzmf-0.0.so.0.0.1 +libdata/pkgconfig/libzmf-0.0.pc