Received: by mail.netbsd.org (Postfix, from userid 605) id A224484D6A; Tue, 22 Aug 2017 12:10:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3319E84D76 for ; Tue, 22 Aug 2017 12:10:43 +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 KKpFENGd4daU for ; Tue, 22 Aug 2017 12:10:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8C53184D3C for ; Tue, 22 Aug 2017 12:10:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 87079FA7A; Tue, 22 Aug 2017 12:10:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150340384273100" MIME-Version: 1.0 Date: Tue, 22 Aug 2017 12:10:42 +0000 From: "Jared D. McNeill" Subject: CVS commit: pkgsrc/sysutils/upower To: pkgsrc-changes@NetBSD.org Reply-To: jmcneill@netbsd.org X-Mailer: log_accum Message-Id: <20170822121042.87079FA7A@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. --_----------=_150340384273100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jmcneill Date: Tue Aug 22 12:10:42 UTC 2017 Modified Files: pkgsrc/sysutils/upower: Makefile Log Message: Make sure the configure script picks up the correct copy of libintl. PR# pkg/51239 PR# pkg/51246 To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/sysutils/upower/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150340384273100 Content-Disposition: inline Content-Length: 1197 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/upower/Makefile diff -u pkgsrc/sysutils/upower/Makefile:1.7 pkgsrc/sysutils/upower/Makefile:1.8 --- pkgsrc/sysutils/upower/Makefile:1.7 Sat Mar 12 11:50:08 2016 +++ pkgsrc/sysutils/upower/Makefile Tue Aug 22 12:10:42 2017 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2016/03/12 11:50:08 ryoon Exp $ +# $NetBSD: Makefile,v 1.8 2017/08/22 12:10:42 jmcneill Exp $ DISTNAME= upower-0.99.4 +PKGREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://upower.freedesktop.org/releases/ EXTRACT_SUFX= .tar.xz @@ -17,6 +18,7 @@ BUILD_DEPENDS+= docbook-xsl-[0-9]*:../.. CONFIGURE_ARGS+= --localstatedir=${VARBASE} CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} +CONFIGURE_ARGS+= --with-libintl-prefix=${BUILDLINK_PREFIX.gettext} PKG_SYSCONFSUBDIR= UPower INSTALL_MAKE_FLAGS+= configdir=${EGDIR} dbusconfdir=${EGDIR} @@ -36,6 +38,7 @@ TEST_TARGET= check # with --nonet, xsltproc needs a helping hand finding some dtds XSLTPROC_PATH+= ${LOCALBASE}/share/doc/dbus +.include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/glib2/buildlink3.mk" .include "../../sysutils/dbus/buildlink3.mk" .include "../../sysutils/dbus-glib/buildlink3.mk" --_----------=_150340384273100--