From owner-svn-ports-head@FreeBSD.ORG Sat Oct 19 11:21:57 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CDEA6865; Sat, 19 Oct 2013 11:21:57 +0000 (UTC) (envelope-from sanpei@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B9363254B; Sat, 19 Oct 2013 11:21:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9JBLv74082658; Sat, 19 Oct 2013 11:21:57 GMT (envelope-from sanpei@svn.freebsd.org) Received: (from sanpei@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9JBLvYc082656; Sat, 19 Oct 2013 11:21:57 GMT (envelope-from sanpei@svn.freebsd.org) Message-Id: <201310191121.r9JBLvYc082656@svn.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sat, 19 Oct 2013 11:21:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330860 - in head/deskutils/cal: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Oct 2013 11:21:57 -0000 Author: sanpei Date: Sat Oct 19 11:21:57 2013 New Revision: 330860 URL: http://svnweb.freebsd.org/changeset/ports/330860 Log: fix build error 10-current and use cc Modified: head/deskutils/cal/Makefile head/deskutils/cal/files/patch-aa Modified: head/deskutils/cal/Makefile ============================================================================== --- head/deskutils/cal/Makefile Sat Oct 19 11:19:35 2013 (r330859) +++ head/deskutils/cal/Makefile Sat Oct 19 11:21:57 2013 (r330860) @@ -10,8 +10,6 @@ MASTER_SITE_SUBDIR= utils/shell MAINTAINER= sanpei@FreeBSD.org COMMENT= Enhanced color version of standard calendar utility -USE_GCC= any - WRKSRC= ${WRKDIR}/cal-3.5/source MAKEFILE= makefile.unx ALL_TARGET= cal Modified: head/deskutils/cal/files/patch-aa ============================================================================== --- head/deskutils/cal/files/patch-aa Sat Oct 19 11:19:35 2013 (r330859) +++ head/deskutils/cal/files/patch-aa Sat Oct 19 11:21:57 2013 (r330860) @@ -1,15 +1,17 @@ -*** makefile.unx.orig Tue Mar 5 06:36:27 1996 ---- makefile.unx Mon May 12 15:23:42 1997 -*************** -*** 10,15 **** ---- 10,19 ---- - CC=gcc - CFLAGS=-O -Wall -DUNIX -DUSE_REMINDER - -+ .ifdef PREFIX -+ CFLAGS+=-DPREFIX="\"${PREFIX}\"" -+ .endif -+ - BINDIR=/usr/bin - MANDIR=/usr/man - +--- source/makefile.unx.orig 1996-03-05 06:36:27.000000000 +0900 ++++ source/makefile.unx 2013-10-19 20:15:02.149614385 +0900 +@@ -7,9 +7,13 @@ + # To use, enter "make -f makefile.unx" + + RM=rm -f +-CC=gcc ++CC=cc + CFLAGS=-O -Wall -DUNIX -DUSE_REMINDER + ++.ifdef PREFIX ++CFLAGS+=-DPREFIX="\"${PREFIX}\"" ++.endif ++ + BINDIR=/usr/bin + MANDIR=/usr/man +