From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 12 19:50:10 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F042216A41F for ; Fri, 12 Aug 2005 19:50:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB49743D45 for ; Fri, 12 Aug 2005 19:50:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7CJoAd4040928 for ; Fri, 12 Aug 2005 19:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7CJoA1A040927; Fri, 12 Aug 2005 19:50:10 GMT (envelope-from gnats) Date: Fri, 12 Aug 2005 19:50:10 GMT Message-Id: <200508121950.j7CJoA1A040927@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Emanuel Haupt Cc: Subject: Re: ports/84848: new port: finance/ccard - A command line offline credit card validator/analyzer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Emanuel Haupt List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Aug 2005 19:50:11 -0000 The following reply was made to PR ports/84848; it has been noted by GNATS. From: Emanuel Haupt To: bug-followup@FreeBSD.org, ehaupt@critical.ch Cc: Subject: Re: ports/84848: new port: finance/ccard - A command line offline credit card validator/analyzer Date: Fri, 12 Aug 2005 21:46:13 +0200 If the port is built with "make CFLAGS='-DYEAHCFLAGSARERESPECTED'" CFLAGS are respected, if defined in /etc/make.conf mysteriously not. The following patch fixes this behavior: --- Makefile.patch begins here --- --- Makefile.orig Fri Aug 12 21:37:08 2005 +++ Makefile Fri Aug 12 21:38:18 2005 @@ -15,6 +15,7 @@ COMMENT= A command line offline credit card validator/analyzer GNU_CONFIGURE= yes +MAKE_ARGS+= CFLAGS="${CFLAGS}" PLIST_FILES= bin/ccard MAN1= ccard.1 --- Makefile.patch ends here ---