diff options
author | antoine <antoine@FreeBSD.org> | 2013-05-31 16:08:28 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2013-05-31 16:08:28 +0800 |
commit | 77ea5939facb71de900845f65cc20e8bba1e7f4f (patch) | |
tree | 1f1fbcaf14b6649b04543ee82c85702d76e0f72d /games | |
parent | 08192a6af2eed81f8644a51c9791ea2404aeb7ac (diff) | |
download | freebsd-ports-gnome-77ea5939facb71de900845f65cc20e8bba1e7f4f.tar.gz freebsd-ports-gnome-77ea5939facb71de900845f65cc20e8bba1e7f4f.tar.zst freebsd-ports-gnome-77ea5939facb71de900845f65cc20e8bba1e7f4f.zip |
Unbreak with clang using -Wno-error=return-type (old K&R code)
Approved by: miwi, eadler (mentors, implicit)
Diffstat (limited to 'games')
-rw-r--r-- | games/spider/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/games/spider/Makefile b/games/spider/Makefile index 010f1703b034..49538e541ae3 100644 --- a/games/spider/Makefile +++ b/games/spider/Makefile @@ -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@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> |