Received: by mail.netbsd.org (Postfix, from userid 605) id 9EB9084E66; Sun, 17 Jul 2022 16:38:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D7FEC84D57 for ; Sun, 17 Jul 2022 16:38:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id WkKOicvJDrNy for ; Sun, 17 Jul 2022 16:38:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 5175B84C71 for ; Sun, 17 Jul 2022 16:38:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4AE62FB1A; Sun, 17 Jul 2022 16:38:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1658075905269070" MIME-Version: 1.0 Date: Sun, 17 Jul 2022 16:38:25 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/graphics/babl To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220717163825.4AE62FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1658075905269070 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Jul 17 16:38:25 UTC 2022 Modified Files: pkgsrc/graphics/babl: Makefile PLIST Log Message: babl: enable introspection and vala support Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 pkgsrc/graphics/babl/Makefile cvs rdiff -u -r1.21 -r1.22 pkgsrc/graphics/babl/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1658075905269070 Content-Disposition: inline Content-Length: 2084 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/babl/Makefile diff -u pkgsrc/graphics/babl/Makefile:1.48 pkgsrc/graphics/babl/Makefile:1.49 --- pkgsrc/graphics/babl/Makefile:1.48 Sun Jul 10 20:23:38 2022 +++ pkgsrc/graphics/babl/Makefile Sun Jul 17 16:38:25 2022 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.48 2022/07/10 20:23:38 wiz Exp $ +# $NetBSD: Makefile,v 1.49 2022/07/17 16:38:25 wiz Exp $ DISTNAME= babl-0.1.92 +PKGREVISION= 1 CATEGORIES= graphics MASTER_SITES= https://download.gimp.org/pub/babl/${PKGVERSION_NOREV:R}/ EXTRACT_SUFX= .tar.xz @@ -14,7 +15,6 @@ USE_TOOLS+= pkg-config USE_LANGUAGES= c99 MESON_ARGS+= -Dwith-docs=false -MESON_ARGS+= -Denable-gir=false PKGCONFIG_OVERRIDE+= babl.pc.in @@ -68,6 +68,8 @@ TEST_ENV+= LD_LIBRARY_PATH=${WRKSRC}/out .include "../../devel/meson/build.mk" .include "../../devel/glib2/buildlink3.mk" +.include "../../devel/gobject-introspection/buildlink3.mk" +.include "../../lang/vala/buildlink3.mk" .include "../../graphics/lcms2/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" .include "../../mk/dlopen.buildlink3.mk" Index: pkgsrc/graphics/babl/PLIST diff -u pkgsrc/graphics/babl/PLIST:1.21 pkgsrc/graphics/babl/PLIST:1.22 --- pkgsrc/graphics/babl/PLIST:1.21 Sun Jul 10 20:23:38 2022 +++ pkgsrc/graphics/babl/PLIST Sun Jul 17 16:38:25 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.21 2022/07/10 20:23:38 wiz Exp $ +@comment $NetBSD: PLIST,v 1.22 2022/07/17 16:38:25 wiz Exp $ include/babl-0.1/babl/babl-introspect.h include/babl-0.1/babl/babl-macros.h include/babl-0.1/babl/babl-types.h @@ -57,8 +57,12 @@ ${PLIST.x86_64}lib/babl-0.1/x86-64-v3-u1 ${PLIST.x86_64}lib/babl-0.1/x86-64-v3-u32.${SOEXT} ${PLIST.x86_64}lib/babl-0.1/x86-64-v3-ycbcr.${SOEXT} lib/babl-0.1/ycbcr.${SOEXT} +lib/girepository-1.0/Babl-0.1.typelib lib/libbabl-0.1.${SOEXT} ${PLIST.Darwin}lib/libbabl-0.1.0.${SOEXT} ${PLIST.not_Darwin}lib/libbabl-0.1.${SOEXT}.0 ${PLIST.not_Darwin}lib/libbabl-0.1.${SOEXT}.0.191.1 lib/pkgconfig/babl.pc +share/gir-1.0/Babl-0.1.gir +share/vala/vapi/babl-0.1.deps +share/vala/vapi/babl-0.1.vapi --_----------=_1658075905269070--