From owner-svn-ports-head@freebsd.org Sat May 12 16:08:11 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32E3EFAD6DB; Sat, 12 May 2018 16:08:11 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DCA7C6D113; Sat, 12 May 2018 16:08:10 +0000 (UTC) (envelope-from kwm@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BEEE520899; Sat, 12 May 2018 16:08:10 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4CG8AeO047146; Sat, 12 May 2018 16:08:10 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4CG899a047140; Sat, 12 May 2018 16:08:09 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201805121608.w4CG899a047140@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sat, 12 May 2018 16:08:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469735 - in head/graphics: . libmypaint X-SVN-Group: ports-head X-SVN-Commit-Author: kwm X-SVN-Commit-Paths: in head/graphics: . libmypaint X-SVN-Commit-Revision: 469735 X-SVN-Commit-Repository: ports 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.25 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: Sat, 12 May 2018 16:08:11 -0000 Author: kwm Date: Sat May 12 16:08:09 2018 New Revision: 469735 URL: https://svnweb.freebsd.org/changeset/ports/469735 Log: Add libmypaint. This is the brush library from the MyPaint project. Added: head/graphics/libmypaint/ head/graphics/libmypaint/Makefile (contents, props changed) head/graphics/libmypaint/distinfo (contents, props changed) head/graphics/libmypaint/pkg-descr (contents, props changed) head/graphics/libmypaint/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sat May 12 15:35:25 2018 (r469734) +++ head/graphics/Makefile Sat May 12 16:08:09 2018 (r469735) @@ -546,6 +546,7 @@ SUBDIR += liblug SUBDIR += libmng SUBDIR += libmorph + SUBDIR += libmypaint SUBDIR += libnsbmp SUBDIR += libnsgif SUBDIR += libopenraw Added: head/graphics/libmypaint/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libmypaint/Makefile Sat May 12 16:08:09 2018 (r469735) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= libmypaint +PORTVERSION= 1.3.0 +CATEGORIES= graphics +MASTER_SITES= https://github.com/mypaint/libmypaint/releases/download/v${PORTVERSION}/ + +MAINTAINER= kwm@FreeBSD.org +COMMENT= Brush library from the MyPaint project + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libjson-c.so:devel/json-c + +USES= gmake gnome libtool localbase pkgconfig tar:xz +USE_GNOME= glib20 intltool introspection:build +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip + +TEST_TARGET= check + +OPTIONS_SUB= yes +OPTIONS_DEFINE= NLS + +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls + +.include Added: head/graphics/libmypaint/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libmypaint/distinfo Sat May 12 16:08:09 2018 (r469735) @@ -0,0 +1,3 @@ +TIMESTAMP = 1506878475 +SHA256 (libmypaint-1.3.0.tar.xz) = 6a07d9d57fea60f68d218a953ce91b168975a003db24de6ac01ad69dcc94a671 +SIZE (libmypaint-1.3.0.tar.xz) = 438160 Added: head/graphics/libmypaint/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libmypaint/pkg-descr Sat May 12 16:08:09 2018 (r469735) @@ -0,0 +1,3 @@ +This is the brush library used by MyPaint. + +WWW: http://mypaint.org/ Added: head/graphics/libmypaint/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libmypaint/pkg-plist Sat May 12 16:08:09 2018 (r469735) @@ -0,0 +1,48 @@ +include/libmypaint/mypaint-brush-settings-gen.h +include/libmypaint/mypaint-brush-settings.h +include/libmypaint/mypaint-brush.h +include/libmypaint/mypaint-config.h +include/libmypaint/mypaint-fixed-tiled-surface.h +include/libmypaint/mypaint-glib-compat.h +include/libmypaint/mypaint-mapping.h +include/libmypaint/mypaint-rectangle.h +include/libmypaint/mypaint-surface.h +include/libmypaint/mypaint-tiled-surface.h +lib/girepository-1.0/MyPaint-1.3.typelib +lib/libmypaint-1.3.so.0 +lib/libmypaint-1.3.so.0.0.0 +lib/libmypaint.so +libdata/pkgconfig/libmypaint.pc +share/gir-1.0/MyPaint-1.3.gir +%%NLS%%share/locale/ar/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/ca/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/cs/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/da/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/de/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/en_CA/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/es/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/es_ES/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/fa/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/fi/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/fr/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/he/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/hu/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/id/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/it/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/ja/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/ko/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/nb/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/nn_NO/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/pl/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/ro/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/ru/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/sc/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/sk/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/sl/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/sv/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/tr/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/uk/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/libmypaint.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/libmypaint.mo