mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
30 lines
677 B
Makefile
30 lines
677 B
Makefile
# New ports collection makefile for: xeyes+
|
|
# Date created: 20 Oct 1996
|
|
# Whom: 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
|
|
|
|
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+ ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|