Received: by mail.netbsd.org (Postfix, from userid 605) id 7F84F84E3F; Thu, 3 Oct 2019 14:43:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 06C2684CEE for ; Thu, 3 Oct 2019 14:43:00 +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 xjeXS_0bgpRw for ; Thu, 3 Oct 2019 14:42:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7258384CCF for ; Thu, 3 Oct 2019 14:42:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6F104FBF4; Thu, 3 Oct 2019 14:42:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1570113779273730" MIME-Version: 1.0 Date: Thu, 3 Oct 2019 14:42:59 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20191003144259.6F104FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1570113779273730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Oct 3 14:42:59 UTC 2019 Modified Files: pkgsrc/graphics: Makefile Added Files: pkgsrc/graphics/gst-plugins1-gdk_pixbuf: DESCR Makefile PLIST Log Message: Add graphics/gst-plugins1-gdk_pixbuf. GStreamer is a library that allows the construction of graphs of media-handling components, ranging from simple mp3 playback to complex audio (mixing) and video (non-linear editing) processing. Applications can take advantage of advances in codec and filter technology transparently. Developers can add new codecs and filters by writing a simple plugin with a clean, generic interface. This package provides the gdk-pixbuf2 plugin for GStreamer, which allows encoding and decoding images. To generate a diff of this commit: cvs rdiff -u -r1.850 -r1.851 pkgsrc/graphics/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/graphics/gst-plugins1-gdk_pixbuf/DESCR \ pkgsrc/graphics/gst-plugins1-gdk_pixbuf/Makefile \ pkgsrc/graphics/gst-plugins1-gdk_pixbuf/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1570113779273730 Content-Disposition: inline Content-Length: 2345 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/Makefile diff -u pkgsrc/graphics/Makefile:1.850 pkgsrc/graphics/Makefile:1.851 --- pkgsrc/graphics/Makefile:1.850 Thu Sep 19 09:29:15 2019 +++ pkgsrc/graphics/Makefile Thu Oct 3 14:42:59 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.850 2019/09/19 09:29:15 nia Exp $ +# $NetBSD: Makefile,v 1.851 2019/10/03 14:42:59 nia Exp $ # COMMENT= Graphics tools and libraries @@ -225,6 +225,7 @@ SUBDIR+= gst-plugins0.10-cairo SUBDIR+= gst-plugins0.10-jpeg SUBDIR+= gst-plugins0.10-png SUBDIR+= gst-plugins1-cairo +SUBDIR+= gst-plugins1-gdk_pixbuf SUBDIR+= gst-plugins1-jpeg SUBDIR+= gst-plugins1-png SUBDIR+= gthumb Added files: Index: pkgsrc/graphics/gst-plugins1-gdk_pixbuf/DESCR diff -u /dev/null pkgsrc/graphics/gst-plugins1-gdk_pixbuf/DESCR:1.1 --- /dev/null Thu Oct 3 14:42:59 2019 +++ pkgsrc/graphics/gst-plugins1-gdk_pixbuf/DESCR Thu Oct 3 14:42:59 2019 @@ -0,0 +1,10 @@ +GStreamer is a library that allows the construction of graphs of +media-handling components, ranging from simple mp3 playback to complex +audio (mixing) and video (non-linear editing) processing. + +Applications can take advantage of advances in codec and filter technology +transparently. Developers can add new codecs and filters by writing a +simple plugin with a clean, generic interface. + +This package provides the gdk-pixbuf2 plugin for GStreamer, which allows +encoding and decoding images. Index: pkgsrc/graphics/gst-plugins1-gdk_pixbuf/Makefile diff -u /dev/null pkgsrc/graphics/gst-plugins1-gdk_pixbuf/Makefile:1.1 --- /dev/null Thu Oct 3 14:42:59 2019 +++ pkgsrc/graphics/gst-plugins1-gdk_pixbuf/Makefile Thu Oct 3 14:42:59 2019 @@ -0,0 +1,9 @@ +# $NetBSD: Makefile,v 1.1 2019/10/03 14:42:59 nia Exp $ + +GST_PLUGINS1_NAME= gdk_pixbuf +GST_PLUGINS1_DIRS= ext/gdk_pixbuf +GST_PLUGINS1_FLAGS= gdk_pixbuf + +.include "../../multimedia/gst-plugins1-good/Makefile.common" +.include "../../graphics/gdk-pixbuf2/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/graphics/gst-plugins1-gdk_pixbuf/PLIST diff -u /dev/null pkgsrc/graphics/gst-plugins1-gdk_pixbuf/PLIST:1.1 --- /dev/null Thu Oct 3 14:42:59 2019 +++ pkgsrc/graphics/gst-plugins1-gdk_pixbuf/PLIST Thu Oct 3 14:42:59 2019 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2019/10/03 14:42:59 nia Exp $ +lib/gstreamer-1.0/libgstgdkpixbuf.la --_----------=_1570113779273730--