Received: by mail.netbsd.org (Postfix, from userid 605) id DD1FC84D23; Mon, 23 Oct 2017 23:22:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 682D284D04 for ; Mon, 23 Oct 2017 23:22:00 +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 DYGooFDbVfLq for ; Mon, 23 Oct 2017 23:22:00 +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 C8C0D84C86 for ; Mon, 23 Oct 2017 23:21:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 60E6BFBDE; Mon, 23 Oct 2017 23:21:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1508800919166440" MIME-Version: 1.0 Date: Mon, 23 Oct 2017 23:21:59 +0000 From: "Pierre Pronchery" Subject: CVS commit: pkgsrc/misc/figlet To: pkgsrc-changes@NetBSD.org Reply-To: khorben@netbsd.org X-Mailer: log_accum Message-Id: <20171023232159.60E6BFBDE@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. --_----------=_1508800919166440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: khorben Date: Mon Oct 23 23:21:59 UTC 2017 Modified Files: pkgsrc/misc/figlet: Makefile Log Message: Add support for CFLAGS and LDFLAGS This notably fixes building with RELRO enabled. Bump PKGREVISION, since this generates a different binary now that SSP and FORTIFY are enabled. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/misc/figlet/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1508800919166440 Content-Disposition: inline Content-Length: 800 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/figlet/Makefile diff -u pkgsrc/misc/figlet/Makefile:1.25 pkgsrc/misc/figlet/Makefile:1.26 --- pkgsrc/misc/figlet/Makefile:1.25 Thu Oct 9 14:06:42 2014 +++ pkgsrc/misc/figlet/Makefile Mon Oct 23 23:21:59 2017 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.25 2014/10/09 14:06:42 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2017/10/23 23:21:59 khorben Exp $ DISTNAME= figlet-2.2.5 +PKGREVISION= 1 CATEGORIES= misc MASTER_SITES= ftp://ftp.figlet.org/pub/figlet/program/unix/ @@ -9,6 +10,8 @@ HOMEPAGE= http://www.figlet.org/ COMMENT= Print text banners in fancy ASCII art characters LICENSE= modified-bsd +MAKE_FLAGS+= CFLAGS=${CFLAGS:Q} +MAKE_FLAGS+= LDFLAGS=${LDFLAGS:Q} MAKE_FLAGS+= MANDIR=${PREFIX}/${PKGMANDIR}/man6 INSTALLATION_DIRS= bin ${PKGMANDIR}/man6 --_----------=_1508800919166440--