Received: by mail.netbsd.org (Postfix, from userid 605) id 0983484E2C; Wed, 4 Dec 2019 05:40:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8625D84E2B for ; Wed, 4 Dec 2019 05:40:48 +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 KMVWFHS2b_HM for ; Wed, 4 Dec 2019 05:40:48 +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 0D14C84E29 for ; Wed, 4 Dec 2019 05:40:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 00FB2FA97; Wed, 4 Dec 2019 05:40:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157543804783280" MIME-Version: 1.0 Date: Wed, 4 Dec 2019 05:40:47 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/editors To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20191204054048.00FB2FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_157543804783280 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Wed Dec 4 05:40:47 UTC 2019 Modified Files: pkgsrc/editors/abiword: Makefile pkgsrc/editors/abiword-plugins: Makefile Log Message: abiword & abiword-plugins: fix builds As of 3.0.3, Abiword's configure.ac now depends on macros provided by GNU's autoconf-archive collection. Since we're using autoconf, we need these available as a build dependency. (TBD: there's a lot of duplication between these two files that could probably be unified.) To generate a diff of this commit: cvs rdiff -u -r1.192 -r1.193 pkgsrc/editors/abiword/Makefile cvs rdiff -u -r1.107 -r1.108 pkgsrc/editors/abiword-plugins/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157543804783280 Content-Disposition: inline Content-Length: 1525 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/abiword/Makefile diff -u pkgsrc/editors/abiword/Makefile:1.192 pkgsrc/editors/abiword/Makefile:1.193 --- pkgsrc/editors/abiword/Makefile:1.192 Wed Nov 27 16:01:09 2019 +++ pkgsrc/editors/abiword/Makefile Wed Dec 4 05:40:47 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.192 2019/11/27 16:01:09 nia Exp $ +# $NetBSD: Makefile,v 1.193 2019/12/04 05:40:47 gutteridge Exp $ .include "Makefile.common" @@ -14,6 +14,7 @@ LICENSE= gnu-gpl-v2 CONFLICTS= abiword-personal-[0-9]* abiword2-[0-9]* DEPENDS+= adwaita-icon-theme>0:../../graphics/adwaita-icon-theme +BUILD_DEPENDS+= autoconf-archive-[0-9]*:../../devel/autoconf-archive GNU_CONFIGURE= yes USE_LIBTOOL= yes Index: pkgsrc/editors/abiword-plugins/Makefile diff -u pkgsrc/editors/abiword-plugins/Makefile:1.107 pkgsrc/editors/abiword-plugins/Makefile:1.108 --- pkgsrc/editors/abiword-plugins/Makefile:1.107 Wed Nov 27 16:01:09 2019 +++ pkgsrc/editors/abiword-plugins/Makefile Wed Dec 4 05:40:47 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.107 2019/11/27 16:01:09 nia Exp $ +# $NetBSD: Makefile,v 1.108 2019/12/04 05:40:47 gutteridge Exp $ .include "../../editors/abiword/Makefile.common" DISTNAME= abiword-${ABIVERSION} @@ -16,6 +16,8 @@ PATCHDIR= ${.CURDIR}/../../editors/abiwo CONFLICTS= abiword-plugins-[0-9]* abiword-personal-[0-9]* abiword2-[0-9]* +BUILD_DEPENDS+= autoconf-archive-[0-9]*:../../devel/autoconf-archive + GNU_CONFIGURE= yes USE_LIBTOOL= yes USE_TOOLS+= autoconf automake gmake pkg-config --_----------=_157543804783280--