Received: by mail.netbsd.org (Postfix, from userid 605) id 1E7CF84D48; Fri, 23 Apr 2021 20:15:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 597BE84D0F for ; Fri, 23 Apr 2021 20:15:15 +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 Frf-3EJNfZDk for ; Fri, 23 Apr 2021 20:15:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D451D84CED for ; Fri, 23 Apr 2021 20:15:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CF7C3FA95; Fri, 23 Apr 2021 20:15:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1619208914206420" MIME-Version: 1.0 Date: Fri, 23 Apr 2021 20:15:14 +0000 From: "Dr. Thomas Orgis" Subject: CVS commit: pkgsrc/geography/gdal-lib To: pkgsrc-changes@NetBSD.org Reply-To: thor@netbsd.org X-Mailer: log_accum Message-Id: <20210423201514.CF7C3FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1619208914206420 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: thor Date: Fri Apr 23 20:15:14 UTC 2021 Modified Files: pkgsrc/geography/gdal-lib: Makefile buildlink3.mk Log Message: geography/gdal-lib: explicit dep on libgeotiff and qhull To generate a diff of this commit: cvs rdiff -u -r1.136 -r1.137 pkgsrc/geography/gdal-lib/Makefile cvs rdiff -u -r1.69 -r1.70 pkgsrc/geography/gdal-lib/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1619208914206420 Content-Disposition: inline Content-Length: 1878 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/geography/gdal-lib/Makefile diff -u pkgsrc/geography/gdal-lib/Makefile:1.136 pkgsrc/geography/gdal-lib/Makefile:1.137 --- pkgsrc/geography/gdal-lib/Makefile:1.136 Wed Apr 21 13:24:11 2021 +++ pkgsrc/geography/gdal-lib/Makefile Fri Apr 23 20:15:14 2021 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.136 2021/04/21 13:24:11 adam Exp $ +# $NetBSD: Makefile,v 1.137 2021/04/23 20:15:14 thor Exp $ #PKGREVISION= 0 -PKGREVISION= 2 +PKGREVISION= 3 .include "../../geography/gdal-lib/Makefile.common" PKGNAME= ${DISTNAME:S/gdal/gdal-lib/} @@ -39,6 +39,8 @@ CPPFLAGS+= -D__STDC_LIMIT_MACROS .include "../../devel/zlib/buildlink3.mk" .include "../../geography/geos/buildlink3.mk" .include "../../geography/proj/buildlink3.mk" +.include "../../geography/libgeotiff/buildlink3.mk" +.include "../../math/qhull/buildlink3.mk" .include "../../graphics/giflib/buildlink3.mk" .include "../../graphics/libwebp/buildlink3.mk" .include "../../graphics/openjpeg/buildlink3.mk" Index: pkgsrc/geography/gdal-lib/buildlink3.mk diff -u pkgsrc/geography/gdal-lib/buildlink3.mk:1.69 pkgsrc/geography/gdal-lib/buildlink3.mk:1.70 --- pkgsrc/geography/gdal-lib/buildlink3.mk:1.69 Wed Apr 21 13:24:11 2021 +++ pkgsrc/geography/gdal-lib/buildlink3.mk Fri Apr 23 20:15:14 2021 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.69 2021/04/21 13:24:11 adam Exp $ +# $NetBSD: buildlink3.mk,v 1.70 2021/04/23 20:15:14 thor Exp $ BUILDLINK_TREE+= gdal-lib @@ -26,6 +26,8 @@ pkgbase := gdal-lib .include "../../devel/zlib/buildlink3.mk" .include "../../geography/geos/buildlink3.mk" .include "../../geography/proj/buildlink3.mk" +.include "../../math/qhull/buildlink3.mk" +.include "../../geography/libgeotiff/buildlink3.mk" .include "../../graphics/giflib/buildlink3.mk" .include "../../graphics/libwebp/buildlink3.mk" .include "../../graphics/openjpeg/buildlink3.mk" --_----------=_1619208914206420--