Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 460567A1F8 for ; Sat, 4 Feb 2017 01:38:38 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id EC87C8560B; Sat, 4 Feb 2017 01:38:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7ACCB85603 for ; Sat, 4 Feb 2017 01:38:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 9nPxtOJXVFyF for ; Sat, 4 Feb 2017 01:38:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EEF1084CD9 for ; Sat, 4 Feb 2017 01:38:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ECC82FBE4; Sat, 4 Feb 2017 01:38:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1486172316223100" MIME-Version: 1.0 Date: Sat, 4 Feb 2017 01:38:36 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/converters/libzmf To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20170204013836.ECC82FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1486172316223100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sat Feb 4 01:38:36 UTC 2017 Added Files: pkgsrc/converters/libzmf: DESCR Makefile PLIST buildlink3.mk distinfo Log Message: Import libzmf-0.0.1 as converters/libzmf. libzmf is a library that parses the file format of Zoner Callisto/Draw documents. Currently it only understands documents created by Zoner Draw version 4 and 5. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/converters/libzmf/DESCR \ pkgsrc/converters/libzmf/Makefile pkgsrc/converters/libzmf/PLIST \ pkgsrc/converters/libzmf/buildlink3.mk pkgsrc/converters/libzmf/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1486172316223100 Content-Disposition: inline Content-Length: 3050 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/converters/libzmf/DESCR diff -u /dev/null pkgsrc/converters/libzmf/DESCR:1.1 --- /dev/null Sat Feb 4 01:38:36 2017 +++ pkgsrc/converters/libzmf/DESCR Sat Feb 4 01:38:36 2017 @@ -0,0 +1,3 @@ +libzmf is a library that parses the file format of Zoner Callisto/Draw +documents. Currently it only understands documents created by Zoner +Draw version 4 and 5. Index: pkgsrc/converters/libzmf/Makefile diff -u /dev/null pkgsrc/converters/libzmf/Makefile:1.1 --- /dev/null Sat Feb 4 01:38:36 2017 +++ pkgsrc/converters/libzmf/Makefile Sat Feb 4 01:38:36 2017 @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.1 2017/02/04 01:38:36 ryoon Exp $ + +DISTNAME= libzmf-0.0.1 +CATEGORIES= converters +MASTER_SITES= http://dev-www.libreoffice.org/src/libzmf/ +EXTRACT_SUFX= .tar.xz + +MAINTAINER= ryoon@NetBSD.org +HOMEPAGE= http://dev-www.libreoffice.org/src/libzmf/ +COMMENT= Library to parse Zoner Callisto/Draw documents +LICENSE= mpl-2.0 + +GNU_CONFIGURE= yes +USE_LIBTOOL= yes +USE_TOOLS+= pkg-config +USE_LANGUAGES= c c++ + +CONFIGURE_ARGS+= --without-docs +CONFIGURE_ARGS+= --disable-werror + +PKGCONFIG_OVERRIDE+= libzmf.pc.in + +.include "../../converters/librevenge/buildlink3.mk" +.include "../../devel/boost-libs/buildlink3.mk" +.include "../../devel/cppunit/buildlink3.mk" +.include "../../devel/zlib/buildlink3.mk" +.include "../../graphics/png/buildlink3.mk" +.include "../../textproc/icu/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/converters/libzmf/PLIST diff -u /dev/null pkgsrc/converters/libzmf/PLIST:1.1 --- /dev/null Sat Feb 4 01:38:36 2017 +++ pkgsrc/converters/libzmf/PLIST Sat Feb 4 01:38:36 2017 @@ -0,0 +1,7 @@ +@comment $NetBSD: PLIST,v 1.1 2017/02/04 01:38:36 ryoon Exp $ +bin/zmf2raw +bin/zmf2svg +include/libzmf-0.0/libzmf/ZMFDocument.h +include/libzmf-0.0/libzmf/libzmf.h +lib/libzmf-0.0.la +lib/pkgconfig/libzmf-0.0.pc Index: pkgsrc/converters/libzmf/buildlink3.mk diff -u /dev/null pkgsrc/converters/libzmf/buildlink3.mk:1.1 --- /dev/null Sat Feb 4 01:38:36 2017 +++ pkgsrc/converters/libzmf/buildlink3.mk Sat Feb 4 01:38:36 2017 @@ -0,0 +1,13 @@ +# $NetBSD: buildlink3.mk,v 1.1 2017/02/04 01:38:36 ryoon Exp $ + +BUILDLINK_TREE+= libzmf + +.if !defined(LIBZMF_BUILDLINK3_MK) +LIBZMF_BUILDLINK3_MK:= + +BUILDLINK_API_DEPENDS.libzmf+= libzmf>=0.0.1 +BUILDLINK_PKGSRCDIR.libzmf?= ../../converters/libzmf + +.endif # LIBZMF_BUILDLINK3_MK + +BUILDLINK_TREE+= -libzmf Index: pkgsrc/converters/libzmf/distinfo diff -u /dev/null pkgsrc/converters/libzmf/distinfo:1.1 --- /dev/null Sat Feb 4 01:38:36 2017 +++ pkgsrc/converters/libzmf/distinfo Sat Feb 4 01:38:36 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/02/04 01:38:36 ryoon Exp $ + +SHA1 (libzmf-0.0.1.tar.xz) = 3b40b97ee7fea13c466e3430dd2a1c923255d6c9 +RMD160 (libzmf-0.0.1.tar.xz) = 21e8909d7279a759d4c2f784421040b850376a7d +SHA512 (libzmf-0.0.1.tar.xz) = cf601974a762ddee45430c136f40231e7659884544881ab37563a97e169201bfd335bad1ddc220e882612e2480070c4a36ba3826242a48e12105e20bb6f717e2 +Size (libzmf-0.0.1.tar.xz) = 315060 bytes --_----------=_1486172316223100--