Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 May 2017 21:03:28 +0000 (UTC)
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r441119 - in head/graphics: . libzmf
Message-ID:  <201705172103.v4HL3SZp032340@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



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