Received: by mail.netbsd.org (Postfix, from userid 605) id 773A584FAD; Sat, 10 Sep 2022 06:33:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B0E2484FA5 for ; Sat, 10 Sep 2022 06:33:10 +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 yAOAvd8nkfgx for ; Sat, 10 Sep 2022 06:33:10 +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 0014B84CEA for ; Sat, 10 Sep 2022 06:33:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E7F5CFA90; Sat, 10 Sep 2022 06:33:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1662791589191330" MIME-Version: 1.0 Date: Sat, 10 Sep 2022 06:33:09 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/graphics/exiv2 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220910063309.E7F5CFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1662791589191330 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Sep 10 06:33:09 UTC 2022 Modified Files: pkgsrc/graphics/exiv2: Makefile Log Message: exiv2: turn on BMFF support Fix pkg-config file while here. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 pkgsrc/graphics/exiv2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1662791589191330 Content-Disposition: inline Content-Length: 1177 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/exiv2/Makefile diff -u pkgsrc/graphics/exiv2/Makefile:1.49 pkgsrc/graphics/exiv2/Makefile:1.50 --- pkgsrc/graphics/exiv2/Makefile:1.49 Sat Apr 23 20:25:38 2022 +++ pkgsrc/graphics/exiv2/Makefile Sat Sep 10 06:33:09 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.49 2022/04/23 20:25:38 tnn Exp $ +# $NetBSD: Makefile,v 1.50 2022/09/10 06:33:09 wiz Exp $ DISTNAME= exiv2-0.27.5-Source PKGNAME= ${DISTNAME:S/-Source//} +PKGREVISION= 1 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_GITHUB:=Exiv2/} GITHUB_RELEASE= v${PKGVERSION_NOREV} @@ -21,6 +22,8 @@ GCC_REQD+= 3.3 .include "../../mk/bsd.prefs.mk" CMAKE_ARGS+= -DEXIV2_BUILD_SAMPLES:BOOL=OFF +# turn on BMFF support -- will be default as of 1.00 +CMAKE_ARGS+= -DEXIV2_ENABLE_BMFF:BOOL=ON .if ${OPSYS} == "Darwin" CMAKE_ARGS+= -DIntl_INCLUDE_DIR=${BUILDLINK_PREFIX.gettext}/include .endif @@ -30,8 +33,7 @@ LDFLAGS.SunOS+= -lsocket -lnsl CXXFLAGS.SunOS+= -fPIC -USE_PKGLOCALEDIR= yes -PKGCONFIG_OVERRIDE= config/exiv2.pc.in +PKGCONFIG_OVERRIDE= cmake/exiv2.pc.in .include "../../converters/libiconv/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" --_----------=_1662791589191330--