Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 33AB884D66 for ; Sun, 24 Sep 2023 22:45: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 Laegl3ROrFr0 for ; Sun, 24 Sep 2023 22:45:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7E23384D09 for ; Sun, 24 Sep 2023 22:45:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C7907FBDB; Sun, 24 Sep 2023 22:42:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169559534976110" MIME-Version: 1.0 Date: Sun, 24 Sep 2023 22:42:29 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc/graphics/lepton To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20230924224229.C7907FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169559534976110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Sun Sep 24 22:42:29 UTC 2023 Modified Files: pkgsrc/graphics/lepton: Makefile Log Message: lepton: use pkgsrc zlib to fix build, bump pkgrevision To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/graphics/lepton/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169559534976110 Content-Disposition: inline Content-Length: 966 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/lepton/Makefile diff -u pkgsrc/graphics/lepton/Makefile:1.3 pkgsrc/graphics/lepton/Makefile:1.4 --- pkgsrc/graphics/lepton/Makefile:1.3 Wed May 3 08:38:42 2017 +++ pkgsrc/graphics/lepton/Makefile Sun Sep 24 22:42:29 2023 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2017/05/03 08:38:42 jperkin Exp $ +# $NetBSD: Makefile,v 1.4 2023/09/24 22:42:29 nros Exp $ DISTNAME= lepton-1.2.1 +PKGREVISION= 1 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_GITHUB:=dropbox/} GITHUB_TAG= 911d79a560c303a2a62e5412117d0a4ccb41836d @@ -17,12 +18,15 @@ USE_TOOLS+= autoconf autoreconf automake AUTO_MKDIRS= yes +CONFIGURE_ARGS+= --enable-system-dependencies + pre-configure: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} sh ./autogen.sh do-install: ${INSTALL_PROGRAM} ${WRKSRC}/lepton ${DESTDIR}${PREFIX}/bin +.include "../../devel/zlib/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_169559534976110--