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.
27 lines
603 B
Makefile
27 lines
603 B
Makefile
# Created by: Yukihiro Nakai <nakai@mlab.t.u-tokyo.ac.jp>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xeyes+
|
|
PORTVERSION= 2.02
|
|
PORTREVISION= 2
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.asahi-net.or.jp/~fj9y-ynym/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Horrible eyes looking at your mouse cursor
|
|
|
|
USES= xorg
|
|
USE_XORG= xpm
|
|
|
|
PLIST_FILES= bin/xeyes+
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} -I${LOCALBASE}/include -DXPM -DUSLEEP \
|
|
-o xeyes+ xeyes+.c -L${LOCALBASE}/lib -lX11 -lXpm -lm
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xeyes+ ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|