diff options
author | wg <wg@FreeBSD.org> | 2013-06-15 05:47:16 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-06-15 05:47:16 +0800 |
commit | 9830b300844b4c07106f93f5968a3a4179645052 (patch) | |
tree | 22416c1a737c4feca16cf523ea36b272433806c4 /games | |
parent | b671efa1cf7ba39e287ff6158d512aa79e641388 (diff) | |
download | freebsd-ports-gnome-9830b300844b4c07106f93f5968a3a4179645052.tar.gz freebsd-ports-gnome-9830b300844b4c07106f93f5968a3a4179645052.tar.zst freebsd-ports-gnome-9830b300844b4c07106f93f5968a3a4179645052.zip |
games/xrot: fix build with clang
- Fix build with clang, -Wno-return-type
- Trim Makefile header
- Remove leading article from COMMENT
Approved by: culot / jpaetzel (mentors, implicit)
Diffstat (limited to 'games')
-rw-r--r-- | games/xrot/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/games/xrot/Makefile b/games/xrot/Makefile index a39b28bf688c..e44f42c502a3 100644 --- a/games/xrot/Makefile +++ b/games/xrot/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: xrot -# Date created: Apr 2, 2001 -# Whom: Mark Pulford <mark@kyne.com.au> -# +# Created by: Mark Pulford <mark@kyne.com.au> # $FreeBSD$ -# PORTNAME= xrot PORTVERSION= 1.3.2 @@ -18,13 +14,14 @@ MASTER_SITES= http://hanzubon.jp/mirrors/Vine/%SUBDIR%/ \ MASTER_SITE_SUBDIR= VinePlus/1.1/JG-0.9.1/sources MAINTAINER= ports@FreeBSD.org -COMMENT= A falling ball puzzle game for X +COMMENT= Falling ball puzzle game for X WRKSRC= ${WRKDIR}/xrot USE_IMAKE= yes USE_XORG= xpm ALL_TARGET= xrot +CFLAGS+= -Wno-return-type PLIST_FILES= bin/xrot |