mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
be6c15b5c6
Add USES=xorg and USES=gl to ports in categories starting with 'g'. While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
28 lines
644 B
Makefile
28 lines
644 B
Makefile
# Created by: Joel Sutton <jsutton@bbcon.com.au>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= oonsoo
|
|
PORTVERSION= 1.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= games
|
|
MASTER_SITES= SUNSITE/games/solitaires \
|
|
http://www4.ncsu.edu/~bwmott/www/oonsoo/distributions/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Solitaire card game for X
|
|
|
|
USES= xorg
|
|
USE_XORG= x11
|
|
PLIST_FILES= bin/oonsoo
|
|
MAKEFILE= Makefile.Linux
|
|
MAKE_ARGS= CC="${CXX}" CPPFLAGS="${CXXFLAGS} -ansi" \
|
|
SYS_INCLUDE="-I${LOCALBASE}/include" \
|
|
SYS_LIBS="-L${LOCALBASE}/lib -lX11"
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/oonsoo ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|