mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +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.
35 lines
747 B
Makefile
35 lines
747 B
Makefile
# Created by: Satoshi Asami <asami@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xgalaga
|
|
PORTVERSION= 2.1.1.0
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/${PORTNAME}
|
|
|
|
MAINTAINER= TsurutaniNaoki@gmail.com
|
|
COMMENT= Clone of the classic game Galaga for X11
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= gmake xorg
|
|
USE_XORG= xpm xmu
|
|
HAS_CONFIGURE= yes
|
|
|
|
# xgalaga has a very strange usage of these variables...
|
|
CONFIGURE_ARGS= --prefix=${LOCALBASE}/lib/X11/xgalaga \
|
|
--mandir=${LOCALBASE}/man \
|
|
--exec_prefix=${LOCALBASE}/bin
|
|
|
|
OPTIONS_DEFINE= SOUND
|
|
OPTIONS_DEFAULT= SOUND
|
|
OPTIONS_SUB= yes
|
|
|
|
SOUND_CONFIGURE_OFF= --without-sound
|
|
|
|
BROKEN_aarch64= Fails to configure: machine arm64-unknown not recognized
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/xgalaga
|
|
|
|
.include <bsd.port.mk>
|