Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Oct 2013 11:21:57 +0000 (UTC)
From:      MIHIRA Sanpei Yoshiro <sanpei@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r330860 - in head/deskutils/cal: . files
Message-ID:  <201310191121.r9JBLvYc082656@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310191121.r9JBLvYc082656>