svn commit: r319467 - head/games/spider

Antoine Brodin antoine at FreeBSD.org
Fri May 31 08:08:29 UTC 2013


Author: antoine
Date: Fri May 31 08:08:28 2013
New Revision: 319467
URL: http://svnweb.freebsd.org/changeset/ports/319467

Log:
  Unbreak with clang using -Wno-error=return-type (old K&R code)
  
  Approved by:	miwi, eadler (mentors, implicit)

Modified:
  head/games/spider/Makefile

Modified: head/games/spider/Makefile
==============================================================================
--- head/games/spider/Makefile	Fri May 31 01:48:44 2013	(r319466)
+++ head/games/spider/Makefile	Fri May 31 08:08:28 2013	(r319467)
@@ -1,25 +1,22 @@
-# New ports collection makefile for:    spider
-# Date created:         2 Oct 1995
-# Whom:                 se
-#
+# Created by: se
 # $FreeBSD$
-#
 
 PORTNAME=	spider
 PORTVERSION=	1.1
 PORTREVISION=	3
 CATEGORIES=	games
-MASTER_SITES=	${MASTER_SITE_SUNSITE}
+MASTER_SITES=	SUNSITE
 MASTER_SITE_SUBDIR=	games/solitaires
 DISTNAME=	${PORTNAME}
 EXTRACT_SUFX=	.tar.Z
 
 MAINTAINER=	ports at FreeBSD.org
-COMMENT=	A challenging double decked solitaire game
+COMMENT=	Challenging double decked solitaire game
 
 USE_IMAKE=	yes
 USE_XORG=	x11 xext xaw xmu xt sm ice xpm
 INSTALL_TARGET=	install install.doc
 MAN1=		spider.1
+CFLAGS+=	-Wno-error=return-type
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list