diff options
author | antoine <antoine@FreeBSD.org> | 2013-05-31 16:11:55 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2013-05-31 16:11:55 +0800 |
commit | e8ff41bdcb1ccc26423a574322100fd566125739 (patch) | |
tree | 99981b05826c2d5ffaebc8bd8ae5257bcb91b5f2 /games | |
parent | 69634967275aac863352232eced044fa632365c8 (diff) | |
download | freebsd-ports-gnome-e8ff41bdcb1ccc26423a574322100fd566125739.tar.gz freebsd-ports-gnome-e8ff41bdcb1ccc26423a574322100fd566125739.tar.zst freebsd-ports-gnome-e8ff41bdcb1ccc26423a574322100fd566125739.zip |
- Trim Makefile header
- 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/xblackjack/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/games/xblackjack/Makefile b/games/xblackjack/Makefile index 2b879dfa2fdf..1b8ba01e5e23 100644 --- a/games/xblackjack/Makefile +++ b/games/xblackjack/Makefile @@ -1,24 +1,22 @@ -# New ports collection makefile for: xblackjack -# Date created: 8/16/1996 -# Whom: erich@FreeBSD.org -# +# Created by: erich@FreeBSD.org # $FreeBSD$ -# PORTNAME= xblackjack PORTVERSION= 2.2 PORTREVISION= 3 CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_XCONTRIB} +MASTER_SITES= XCONTRIB MASTER_SITE_SUBDIR= games EXTRACT_SUFX= .tar.Z MAINTAINER= ports@FreeBSD.org -COMMENT= An X11/Motif blackjack game +COMMENT= X11/Motif blackjack game + +LIB_DEPENDS= Xm:${PORTSDIR}/x11-toolkits/lesstif USE_IMAKE= yes USE_XORG= x11 xext xp xt xmu -LIB_DEPENDS+= Xm.2:${PORTSDIR}/x11-toolkits/lesstif MAN1= xblackjack.1 +CFLAGS+= -Wno-error=return-type .include <bsd.port.mk> |