Received: by mail.netbsd.org (Postfix, from userid 605) id 32D2C850E9; Thu, 8 Apr 2021 08:44:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6E519850C6 for ; Thu, 8 Apr 2021 08:44:13 +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 MrlpBsr5D5Fm for ; Thu, 8 Apr 2021 08:44:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C158184D26 for ; Thu, 8 Apr 2021 08:44:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BC1C0FA95; Thu, 8 Apr 2021 08:44:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1617871452104610" MIME-Version: 1.0 Date: Thu, 8 Apr 2021 08:44:12 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/print/electrix To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20210408084412.BC1C0FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1617871452104610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Apr 8 08:44:12 UTC 2021 Modified Files: pkgsrc/print/electrix: Makefile Log Message: electrix: switch to waf.mk Now honors CFLAGS + LDFLAGS. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.78 -r1.79 pkgsrc/print/electrix/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1617871452104610 Content-Disposition: inline Content-Length: 1104 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/electrix/Makefile diff -u pkgsrc/print/electrix/Makefile:1.78 pkgsrc/print/electrix/Makefile:1.79 --- pkgsrc/print/electrix/Makefile:1.78 Thu Apr 8 06:19:47 2021 +++ pkgsrc/print/electrix/Makefile Thu Apr 8 08:44:12 2021 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.78 2021/04/08 06:19:47 adam Exp $ +# $NetBSD: Makefile,v 1.79 2021/04/08 08:44:12 wiz Exp $ DISTNAME= electrix-0.2.0 -PKGREVISION= 73 +PKGREVISION= 74 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=electrix/} EXTRACT_SUFX= .tar.bz2 @@ -14,18 +14,10 @@ LICENSE= gnu-gpl-v2 USE_TOOLS+= intltool pkg-config PYTHON_VERSIONS_ACCEPTED= 27 -do-configure: - cd ${WRKSRC} && \ - ${PYTHONBIN} ./waf configure --prefix=${DESTDIR}${PREFIX} - -do-build: - cd ${WRKSRC} && \ - ${PYTHONBIN} ./waf build - -do-install: - cd ${WRKSRC} && \ - ${PYTHONBIN} ./waf install +WAF_HAS_LIBDIR= no +WAF_HAS_MANDIR= no +.include "../../devel/waf/waf.mk" .include "../../print/poppler-glib/buildlink3.mk" .include "../../print/libspectre/buildlink3.mk" .include "../../sysutils/dbus-glib/buildlink3.mk" --_----------=_1617871452104610--