Received: by mail.netbsd.org (Postfix, from userid 605) id 09BC084EB1; Fri, 13 May 2022 20:55:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 425E284EA4 for ; Fri, 13 May 2022 20:55:47 +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 82-_tycd2z1j for ; Fri, 13 May 2022 20:55:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 86E3384CEE for ; Fri, 13 May 2022 20:55:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 05C60FA94; Fri, 13 May 2022 20:56:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1652475369115190" MIME-Version: 1.0 Date: Fri, 13 May 2022 20:56:09 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/graphics/gegl To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20220513205610.05C60FA94@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1652475369115190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Fri May 13 20:56:09 UTC 2022 Modified Files: pkgsrc/graphics/gegl: Makefile PLIST Log Message: gegl: fix PLIST for Darwin To generate a diff of this commit: cvs rdiff -u -r1.105 -r1.106 pkgsrc/graphics/gegl/Makefile cvs rdiff -u -r1.37 -r1.38 pkgsrc/graphics/gegl/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1652475369115190 Content-Disposition: inline Content-Length: 1606 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/gegl/Makefile diff -u pkgsrc/graphics/gegl/Makefile:1.105 pkgsrc/graphics/gegl/Makefile:1.106 --- pkgsrc/graphics/gegl/Makefile:1.105 Mon Apr 18 19:11:16 2022 +++ pkgsrc/graphics/gegl/Makefile Fri May 13 20:56:09 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.105 2022/04/18 19:11:16 adam Exp $ +# $NetBSD: Makefile,v 1.106 2022/05/13 20:56:09 tnn Exp $ DISTNAME= gegl-0.4.36 PKGREVISION= 2 @@ -29,10 +29,14 @@ PKGCONFIG_OVERRIDE+= gegl.pc.in PYTHON_FOR_BUILD_ONLY= tool .include "../../mk/bsd.prefs.mk" + +PLIST_VARS+= darwin notdarwin .if ${OPSYS} == "Darwin" PLIST_SUBST+= SOEXT="dylib" +PLIST.darwin= yes .else PLIST_SUBST+= SOEXT="so" +PLIST.notdarwin= yes .endif PLIST_VARS+= x86_64 Index: pkgsrc/graphics/gegl/PLIST diff -u pkgsrc/graphics/gegl/PLIST:1.37 pkgsrc/graphics/gegl/PLIST:1.38 --- pkgsrc/graphics/gegl/PLIST:1.37 Thu Mar 24 00:02:25 2022 +++ pkgsrc/graphics/gegl/PLIST Fri May 13 20:56:09 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.37 2022/03/24 00:02:25 tnn Exp $ +@comment $NetBSD: PLIST,v 1.38 2022/05/13 20:56:09 tnn Exp $ bin/gegl bin/gegl-imgcmp include/gegl-0.4/gegl-apply.h @@ -136,8 +136,9 @@ lib/gegl-0.4/vector-stroke.${SOEXT} lib/gegl-0.4/webp-load.${SOEXT} lib/gegl-0.4/webp-save.${SOEXT} lib/libgegl-0.4.${SOEXT} -lib/libgegl-0.4.${SOEXT}.0 -lib/libgegl-0.4.${SOEXT}.0.435.1 +${PLIST.darwin}lib/libgegl-0.4.0.dylib +${PLIST.notdarwin}lib/libgegl-0.4.${SOEXT}.0 +${PLIST.notdarwin}lib/libgegl-0.4.${SOEXT}.0.435.1 lib/libgegl-npd-0.4.${SOEXT} lib/libgegl-sc-0.4.${SOEXT} lib/pkgconfig/gegl-0.4.pc --_----------=_1652475369115190--